From c23a642d1e5ddd47bca5ce20094c6b44805b7139 Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:16:04 +0530 Subject: [PATCH 1/8] Create README.md --- Term Deposit Prediction/README.md | 237 ++++++++++++++++++++++++++++++ 1 file changed, 237 insertions(+) create mode 100644 Term Deposit Prediction/README.md diff --git a/Term Deposit Prediction/README.md b/Term Deposit Prediction/README.md new file mode 100644 index 000000000..de99c8ae2 --- /dev/null +++ b/Term Deposit Prediction/README.md @@ -0,0 +1,237 @@ +## Term Deposit Campaign Analysis and Classification + +--- + +### ๐ŸŽฏ **Goal** + +The goal of this project is to analyze a bank marketing campaign dataset and build various machine learning models to predict the success of the campaign. We aim to understand the characteristics of the clients who responded positively and identify patterns that can help improve future marketing strategies. + + +### ๐Ÿงพ **Description** + +This project involves: +1. Data cleaning and preprocessing. +2. Exploratory Data Analysis (EDA) to uncover insights and patterns. +3. Building and evaluating multiple machine learning models. +4. Comparing model performance based on key metrics. + +### ๐Ÿ“œ **Repo Structure** + +```bash + +Term Deposit Prediction +|- Dataset + |- dataset.csv + |- README.md +|- Images + |- img1.png + |- img2.png + : + : + |- README.md +|- Models + |- Notebook.ipynb + |- README.md +|- requirements.txt + +``` + + +### ๐Ÿงฎ **What I had done!** + +1. **Data Cleaning**: Replaced 'unknown' values with NaN and dropped rows with missing values. +2. **EDA**: Conducted visual and statistical analysis to understand the distribution and relationships of features. +3. **Feature Engineering**: Encoded categorical features and scaled numerical features. +4. **Model Training**: Trained and evaluated several machine learning models + + +### ๐Ÿš€ **Models Implemented** + +- Random Forest +- Decision Tree +- k-Nearest Neighbors (KNN) +- XGBoost +- AdaBoost +- Logistic Regression +- Naive Bayes +- Support Vector Classifier (SVC) + + +### ๐Ÿ“š **Libraries Needed** + +- `numpy` +- `pandas` +- `seaborn` +- `matplotlib` +- `plotly` +- `scikit-learn` + + +### ๐Ÿ“Š **Exploratory Data Analysis Results** + +1. **Age Distribution**: + - Most clients are in the age range of 30-40 years. + - Age distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2c7fae04-f030-4e9c-b3e3-e621390a6d2d) + + +2. **Job Distribution**: + - The most common job types are blue-collar, management, and technician. + - Job distribution is visualized using a bar chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/b0d6a595-40c0-46f5-9b2f-3b2ac2728097) + + +3. **Education Level**: + - Most clients have a university degree, followed by high school education. + - Education distribution is visualized using a bar chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/11d9f16c-7233-4e3d-b7d4-21e387123f92) + + +4. **Loan Status**: + - Majority of clients do not have personal loans, housing loans, or defaults. + - Loan status distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/a14127e0-d8fc-4b78-a9ad-9d573d0ef489) + + +5. **Marital Status**: + - Most clients are married, followed by single and divorced. + - Marital status distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2de201d4-a4d4-4d4a-8b39-587068057977) + + +6. **Contact Type**: + - The preferred contact type is cellular. + - Contact type distribution is visualized using a histogram. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/e6de612d-8229-4aef-93f3-2abcd6ce78a7) + + +7. **Call Duration**: + - Total call duration peaks in certain months and days of the week. + - Call duration by month and day is visualized using line charts. + + +
+ + +
+ +8. **### Addressing Class Imbalance in the Target Variable Distribution** + + - The histogram shows a significant class imbalance in the target variable 'y', with the 'no' class having approximately 27,000 instances and the 'yes' class having only 3,859 instances. + - This imbalance indicates that the dataset is heavily skewed towards the 'no' class, which can lead to biased model performance if not addressed properly. + + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/f2e9ed95-fc66-4ca2-8d55-9ce712ee439b) + + - Adjusting Class Weights: In models that support it, I adjusted the class weights to give more importance to the minority class during training. + - Evaluation Metrics: Focused on metrics that are sensitive to class imbalance, such as precision, recall, and the F1 score, rather than just accuracy. + +9. **Correlation Analysis**: + - Heatmap reveals the correlation between numerical features. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2b5505c4-b4c4-4a43-bfe0-87065db6f15a) + + +### ๐Ÿ“ˆ **Performance of the Models based on the Accuracy Scores** + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ModelAccuracyPrecisionRecallF1 Score
Random Forest87.40%0.500.870.64
Decision Tree88.22%0.540.520.53
KNN89.07%0.610.390.47
XGBoost90.11%0.630.540.58
Adaboost89.98%0.680.400.50
Logistic Regression89.95%0.670.410.51
Naive Bayes82.98%0.390.570.46
SVC89.69%0.670.370.48
+
+ + +![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/8ecf69f4-e2da-4ead-8683-0ce3c14ad324) + +### ๐Ÿ“ข **Conclusion** + +- The XGBoost model achieved the highest accuracy and F1 score, making it the best-performing model in this study. +- The exploratory data analysis provided valuable insights into client demographics and behavior patterns. +- The findings from this project can help in optimizing future marketing campaigns and improving client targeting strategies. + + +### โœ’๏ธ **Signature** + +

+ +

+

+ Kamalakar Satapathi +

+ + +Connect with me on [![LinkedIn](https://img.shields.io/badge/-Kamalakar_Satapathi-0077B5?style=flat-square&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/sgvkamalakar) + +Explore my codes [![GitHub](https://img.shields.io/badge/-Sgvkamalakar-181717?style=flat-square&logo=github)](https://github.com/sgvkamalakar) From f2be2014daea3db64d8007e5d16570e6147e688b Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:16:41 +0530 Subject: [PATCH 2/8] Create requirements.txt --- Term Deposit Prediction/requirements.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Term Deposit Prediction/requirements.txt diff --git a/Term Deposit Prediction/requirements.txt b/Term Deposit Prediction/requirements.txt new file mode 100644 index 000000000..e1d5d0825 --- /dev/null +++ b/Term Deposit Prediction/requirements.txt @@ -0,0 +1,7 @@ +numpy +pandas +seaborn +matplotlib +plotly +scikit-learn +xgboost From cfe6613a65164a9b54da7782fc8fdf8c62f44f77 Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:19:03 +0530 Subject: [PATCH 3/8] Create README.md --- Term Deposit Prediction/Dataset/README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Term Deposit Prediction/Dataset/README.md diff --git a/Term Deposit Prediction/Dataset/README.md b/Term Deposit Prediction/Dataset/README.md new file mode 100644 index 000000000..841ec0cc6 --- /dev/null +++ b/Term Deposit Prediction/Dataset/README.md @@ -0,0 +1,6 @@ +The dataset used in this project is related to a bank marketing campaign, containing various client attributes and the outcome of the marketing campaign. + +You can download the dataset from the following sources: + +- Kaggle Dataset: [Bank Marketing Dataset](https://www.kaggle.com/datasets/henriqueyamahata/bank-marketing/data) +- Direct Download: `dataset.csv` From 89c0c9948f5cfe2e17645373dc71975ac9000770 Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:20:51 +0530 Subject: [PATCH 4/8] Add files via upload --- Term Deposit Prediction/Dataset/dataset.csv | 41189 ++++++++++++++++++ 1 file changed, 41189 insertions(+) create mode 100644 Term Deposit Prediction/Dataset/dataset.csv diff --git a/Term Deposit Prediction/Dataset/dataset.csv b/Term Deposit Prediction/Dataset/dataset.csv new file mode 100644 index 000000000..8c47ee2f0 --- /dev/null +++ b/Term Deposit Prediction/Dataset/dataset.csv @@ -0,0 +1,41189 @@ +age,job,marital,education,default,housing,loan,contact,month,day_of_week,duration,campaign,pdays,previous,poutcome,emp.var.rate,cons.price.idx,cons.conf.idx,euribor3m,nr.employed,y +56,housemaid,married,basic.4y,no,no,no,telephone,may,mon,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,services,married,high.school,unknown,no,no,telephone,may,mon,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,married,high.school,no,yes,no,telephone,may,mon,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,basic.6y,no,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,high.school,no,no,yes,telephone,may,mon,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,basic.9y,unknown,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,admin.,married,professional.course,no,no,no,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,technician,single,professional.course,no,yes,no,telephone,may,mon,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,services,single,high.school,no,yes,no,telephone,may,mon,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,services,single,high.school,no,yes,no,telephone,may,mon,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,high.school,no,no,yes,telephone,may,mon,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,housemaid,divorced,basic.4y,no,yes,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,basic.9y,unknown,yes,yes,telephone,may,mon,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,single,basic.9y,unknown,no,no,telephone,may,mon,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,unemployed,married,high.school,no,no,no,telephone,may,mon,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,retired,single,high.school,no,yes,no,telephone,may,mon,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,single,high.school,no,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,university.degree,no,no,yes,telephone,may,mon,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,technician,married,unknown,no,yes,no,telephone,may,mon,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,single,university.degree,unknown,no,no,telephone,may,mon,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,unknown,married,university.degree,unknown,unknown,unknown,telephone,may,mon,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,unknown,no,no,no,telephone,may,mon,348,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,technician,married,unknown,no,yes,no,telephone,may,mon,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,unknown,no,no,no,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,married,basic.4y,unknown,yes,no,telephone,may,mon,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,unknown,married,basic.4y,unknown,yes,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,mon,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,basic.9y,no,yes,no,telephone,may,mon,1666,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,university.degree,no,yes,no,telephone,may,mon,577,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,basic.4y,no,yes,no,telephone,may,mon,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,unknown,university.degree,no,yes,no,telephone,may,mon,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,professional.course,no,no,no,telephone,may,mon,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,married,university.degree,no,no,yes,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,professional.course,unknown,no,no,telephone,may,mon,22,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,married,university.degree,no,yes,yes,telephone,may,mon,616,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,admin.,married,high.school,no,no,no,telephone,may,mon,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,no,no,yes,telephone,may,mon,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,admin.,married,high.school,no,no,no,telephone,may,mon,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,single,professional.course,no,no,no,telephone,may,mon,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,professional.course,unknown,yes,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,university.degree,unknown,no,yes,telephone,may,mon,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,high.school,unknown,yes,no,telephone,may,mon,787,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,unemployed,married,professional.course,unknown,yes,yes,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,technician,single,university.degree,no,yes,no,telephone,may,mon,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,entrepreneur,married,university.degree,unknown,no,no,telephone,may,mon,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,812,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,high.school,no,no,no,telephone,may,mon,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,mon,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,unknown,no,yes,no,telephone,may,mon,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,basic.9y,no,yes,no,telephone,may,mon,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,basic.4y,unknown,yes,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,basic.6y,no,no,no,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,divorced,university.degree,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,176,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,unknown,married,unknown,unknown,no,no,telephone,may,mon,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,1575,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +55,technician,married,university.degree,no,no,no,telephone,may,mon,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,unknown,yes,no,telephone,may,mon,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,management,married,unknown,unknown,yes,no,telephone,may,mon,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,unknown,no,no,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,mon,1042,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,technician,single,university.degree,no,no,yes,telephone,may,mon,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,mon,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,basic.6y,no,no,no,telephone,may,mon,529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,yes,yes,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,basic.9y,no,no,no,telephone,may,mon,1467,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +34,admin.,married,high.school,no,yes,no,telephone,may,mon,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,unknown,married,unknown,unknown,yes,no,telephone,may,mon,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,admin.,married,unknown,unknown,no,yes,telephone,may,mon,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,unemployed,married,basic.9y,no,no,no,telephone,may,mon,545,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,no,no,yes,telephone,may,mon,583,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,professional.course,no,yes,no,telephone,may,mon,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,no,no,telephone,may,mon,426,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,divorced,university.degree,unknown,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,professional.course,no,no,no,telephone,may,mon,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,services,married,unknown,no,yes,no,telephone,may,mon,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,55,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,services,married,unknown,no,no,no,telephone,may,mon,400,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,single,high.school,unknown,no,no,telephone,may,mon,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,housemaid,married,basic.6y,no,yes,no,telephone,may,mon,300,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,unknown,unknown,yes,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,unknown,unknown,yes,yes,telephone,may,mon,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,university.degree,unknown,no,no,telephone,may,mon,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,unemployed,married,basic.4y,unknown,no,no,telephone,may,mon,849,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,divorced,high.school,no,yes,no,telephone,may,mon,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,married,university.degree,no,no,no,telephone,may,mon,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,high.school,no,no,no,telephone,may,mon,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,divorced,university.degree,no,no,no,telephone,may,mon,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,mon,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,unknown,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,divorced,high.school,no,no,no,telephone,may,mon,439,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,no,no,no,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,high.school,no,yes,no,telephone,may,mon,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,married,university.degree,no,yes,yes,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,no,no,yes,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,basic.6y,no,no,no,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,divorced,professional.course,no,yes,yes,telephone,may,mon,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,no,yes,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,unknown,yes,no,telephone,may,mon,579,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +37,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,unknown,no,no,telephone,may,mon,677,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,unknown,no,yes,no,telephone,may,mon,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,university.degree,no,no,no,telephone,may,mon,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,divorced,university.degree,no,no,no,telephone,may,mon,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,69,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,yes,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +43,unemployed,single,university.degree,no,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,married,unknown,no,yes,no,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unknown,divorced,high.school,unknown,yes,no,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,528,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,541,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,mon,338,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,entrepreneur,married,unknown,unknown,yes,no,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,divorced,high.school,unknown,yes,no,telephone,may,mon,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,entrepreneur,married,unknown,unknown,no,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,unknown,no,yes,yes,telephone,may,mon,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,unknown,unknown,yes,no,telephone,may,mon,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,single,professional.course,no,yes,no,telephone,may,mon,186,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,services,married,high.school,no,no,no,telephone,may,mon,579,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,management,single,university.degree,no,yes,no,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,559,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,divorced,high.school,unknown,no,no,telephone,may,mon,2033,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,yes,yes,telephone,may,mon,506,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,divorced,unknown,unknown,no,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,unknown,no,no,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,mon,843,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,high.school,unknown,no,yes,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,unknown,no,no,telephone,may,mon,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,university.degree,no,yes,yes,telephone,may,mon,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,university.degree,unknown,no,no,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,no,telephone,may,mon,93,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,basic.9y,no,no,no,telephone,may,mon,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,married,high.school,no,yes,yes,telephone,may,mon,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,single,basic.6y,no,no,no,telephone,may,mon,303,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,high.school,no,yes,no,telephone,may,mon,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,high.school,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,673,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +36,admin.,married,university.degree,no,yes,no,telephone,may,mon,233,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,university.degree,no,no,no,telephone,may,mon,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,basic.6y,unknown,no,no,telephone,may,mon,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,high.school,unknown,no,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,mon,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,no,no,no,telephone,may,mon,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,divorced,university.degree,no,no,no,telephone,may,mon,19,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,university.degree,no,no,no,telephone,may,mon,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,717,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,unknown,yes,no,telephone,may,mon,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,basic.9y,unknown,yes,no,telephone,may,mon,683,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,1077,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,no,no,no,telephone,may,mon,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,single,basic.6y,no,no,no,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,high.school,no,yes,no,telephone,may,mon,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,unknown,no,no,no,telephone,may,mon,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,university.degree,unknown,no,no,telephone,may,mon,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,university.degree,unknown,yes,yes,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,unemployed,married,professional.course,no,no,no,telephone,may,mon,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.4y,no,no,no,telephone,may,mon,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,university.degree,unknown,yes,no,telephone,may,mon,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,student,single,basic.9y,no,yes,no,telephone,may,mon,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,housemaid,divorced,university.degree,no,no,no,telephone,may,mon,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,admin.,married,university.degree,no,no,no,telephone,may,mon,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,unknown,unknown,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,unknown,yes,no,telephone,may,mon,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,unknown,no,yes,no,telephone,may,mon,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,unknown,no,yes,yes,telephone,may,mon,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,high.school,no,no,no,telephone,may,mon,322,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,mon,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,unknown,unknown,no,no,telephone,may,mon,366,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.6y,unknown,yes,no,telephone,may,mon,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,married,basic.4y,unknown,yes,no,telephone,may,mon,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,basic.9y,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,retired,married,university.degree,no,no,no,telephone,may,mon,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,university.degree,no,no,no,telephone,may,mon,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,mon,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,retired,married,basic.4y,unknown,no,no,telephone,may,mon,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,professional.course,no,yes,no,telephone,may,mon,580,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,divorced,professional.course,no,yes,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,divorced,basic.4y,unknown,yes,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,unknown,no,no,telephone,may,mon,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,self-employed,married,university.degree,unknown,no,no,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,professional.course,no,yes,no,telephone,may,mon,300,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,high.school,no,no,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,unknown,no,yes,telephone,may,mon,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,university.degree,unknown,no,yes,telephone,may,mon,213,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,high.school,no,no,no,telephone,may,mon,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,single,professional.course,no,no,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,mon,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,single,basic.9y,no,no,no,telephone,may,mon,730,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,university.degree,unknown,no,no,telephone,may,mon,40,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,divorced,unknown,no,no,no,telephone,may,mon,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,professional.course,no,no,no,telephone,may,mon,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,single,high.school,no,yes,no,telephone,may,mon,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,no,yes,telephone,may,mon,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,high.school,no,no,no,telephone,may,mon,702,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,divorced,professional.course,no,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,married,basic.6y,no,yes,no,telephone,may,mon,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,mon,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,unknown,no,no,no,telephone,may,mon,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,services,married,high.school,no,yes,yes,telephone,may,mon,370,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,basic.9y,no,no,yes,telephone,may,mon,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,unknown,no,yes,no,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,yes,telephone,may,mon,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,yes,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.6y,no,unknown,unknown,telephone,may,mon,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,high.school,no,no,no,telephone,may,mon,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,divorced,basic.9y,no,no,no,telephone,may,mon,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,mon,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.6y,no,no,no,telephone,may,mon,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,self-employed,single,university.degree,no,yes,no,telephone,may,mon,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,student,single,university.degree,unknown,no,no,telephone,may,mon,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,divorced,university.degree,no,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,self-employed,married,basic.4y,unknown,no,no,telephone,may,mon,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,unemployed,married,high.school,unknown,yes,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,divorced,university.degree,no,no,no,telephone,may,mon,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.9y,unknown,no,no,telephone,may,mon,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,high.school,no,no,no,telephone,may,mon,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,single,high.school,unknown,yes,yes,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,mon,962,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,single,basic.9y,no,no,no,telephone,may,mon,10,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,retired,married,professional.course,no,no,no,telephone,may,mon,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,basic.4y,no,yes,no,telephone,may,mon,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,basic.9y,no,no,no,telephone,may,mon,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,mon,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.9y,no,yes,no,telephone,may,mon,935,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +37,admin.,single,high.school,no,yes,yes,telephone,may,mon,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,blue-collar,married,unknown,unknown,yes,no,telephone,may,mon,5,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,no,telephone,may,mon,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,divorced,university.degree,no,yes,no,telephone,may,mon,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,no,yes,yes,telephone,may,mon,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,divorced,professional.course,unknown,no,yes,telephone,may,mon,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,professional.course,no,yes,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,self-employed,married,professional.course,no,no,no,telephone,may,mon,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,divorced,high.school,no,no,yes,telephone,may,mon,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,divorced,high.school,no,no,no,telephone,may,mon,122,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unknown,married,unknown,unknown,no,no,telephone,may,mon,362,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,single,high.school,unknown,no,no,telephone,may,mon,357,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,divorced,high.school,unknown,no,yes,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,professional.course,unknown,no,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unknown,married,unknown,no,yes,no,telephone,may,mon,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,high.school,no,yes,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,basic.6y,unknown,yes,no,telephone,may,mon,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,housemaid,divorced,basic.4y,no,yes,yes,telephone,may,mon,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,no,yes,no,telephone,may,mon,261,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,mon,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,single,university.degree,no,no,no,telephone,may,mon,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,management,married,university.degree,unknown,yes,no,telephone,may,mon,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,453,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,high.school,no,no,no,telephone,may,mon,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.6y,no,no,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,yes,no,telephone,may,mon,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,single,basic.9y,no,yes,no,telephone,may,mon,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,single,basic.6y,no,yes,yes,telephone,may,mon,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,unknown,no,no,no,telephone,may,mon,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,basic.6y,unknown,no,no,telephone,may,mon,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,married,professional.course,no,yes,yes,telephone,may,mon,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,housemaid,single,professional.course,no,no,no,telephone,may,mon,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,university.degree,no,yes,no,telephone,may,mon,231,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,mon,316,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,669,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,single,high.school,no,yes,no,telephone,may,mon,425,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,management,married,high.school,no,yes,no,telephone,may,mon,174,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,self-employed,single,university.degree,no,no,yes,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,services,married,high.school,unknown,yes,no,telephone,may,mon,313,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,135,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,professional.course,unknown,yes,no,telephone,may,mon,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,yes,yes,telephone,may,mon,402,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,university.degree,unknown,no,no,telephone,may,mon,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,professional.course,unknown,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,single,high.school,no,yes,no,telephone,may,mon,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,married,basic.9y,no,no,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,unknown,married,unknown,unknown,yes,no,telephone,may,mon,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,mon,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,high.school,no,yes,no,telephone,may,mon,503,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,divorced,professional.course,no,no,no,telephone,may,mon,680,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,421,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,174,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,professional.course,no,no,no,telephone,may,mon,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,management,married,university.degree,no,no,no,telephone,may,mon,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,yes,no,telephone,may,mon,347,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,university.degree,no,yes,no,telephone,may,mon,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unemployed,single,university.degree,no,no,no,telephone,may,mon,404,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,no,no,telephone,may,mon,396,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,basic.4y,no,no,no,telephone,may,mon,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,entrepreneur,married,basic.4y,no,yes,no,telephone,may,mon,350,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,unemployed,divorced,high.school,unknown,no,no,telephone,may,tue,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,university.degree,no,yes,no,telephone,may,tue,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,high.school,no,yes,no,telephone,may,tue,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,university.degree,no,yes,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,high.school,no,yes,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,divorced,basic.9y,no,no,no,telephone,may,tue,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,divorced,high.school,no,no,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,high.school,no,yes,no,telephone,may,tue,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +22,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,unknown,no,no,no,telephone,may,tue,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,basic.6y,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,married,university.degree,no,yes,yes,telephone,may,tue,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,unknown,no,no,no,telephone,may,tue,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,yes,no,telephone,may,tue,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,single,university.degree,no,no,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,student,single,unknown,unknown,no,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,management,married,basic.4y,unknown,yes,yes,telephone,may,tue,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,management,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,437,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,university.degree,no,no,no,telephone,may,tue,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,housemaid,married,basic.6y,unknown,yes,yes,telephone,may,tue,501,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,unknown,single,unknown,unknown,yes,yes,telephone,may,tue,1201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +44,services,married,high.school,no,yes,no,telephone,may,tue,1030,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +59,retired,unknown,university.degree,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,high.school,unknown,no,no,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,high.school,no,no,no,telephone,may,tue,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.9y,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,tue,769,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,high.school,unknown,no,no,telephone,may,tue,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,university.degree,no,yes,yes,telephone,may,tue,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,single,high.school,no,no,no,telephone,may,tue,455,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,services,married,high.school,unknown,unknown,unknown,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unemployed,married,university.degree,unknown,yes,no,telephone,may,tue,424,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,divorced,basic.6y,no,no,no,telephone,may,tue,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,yes,no,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,yes,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,tue,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,basic.4y,no,no,yes,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,unknown,basic.4y,no,no,no,telephone,may,tue,673,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,tue,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,self-employed,single,basic.9y,unknown,yes,yes,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,high.school,unknown,no,no,telephone,may,tue,505,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,married,high.school,no,yes,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,university.degree,no,yes,no,telephone,may,tue,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,623,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,unknown,no,no,telephone,may,tue,496,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,basic.6y,no,no,no,telephone,may,tue,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,professional.course,no,yes,no,telephone,may,tue,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,unknown,married,unknown,unknown,yes,no,telephone,may,tue,185,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,unknown,no,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,self-employed,divorced,university.degree,no,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,self-employed,married,basic.9y,unknown,no,no,telephone,may,tue,744,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,self-employed,single,university.degree,no,yes,no,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,single,professional.course,no,yes,yes,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,married,unknown,unknown,no,no,telephone,may,tue,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,housemaid,married,basic.9y,no,yes,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,professional.course,no,no,no,telephone,may,tue,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,divorced,university.degree,no,no,no,telephone,may,tue,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,unknown,no,yes,no,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,unknown,no,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,housemaid,married,university.degree,no,no,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,university.degree,no,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,basic.9y,no,no,no,telephone,may,tue,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,professional.course,no,no,no,telephone,may,tue,1623,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +57,technician,married,basic.4y,unknown,no,yes,telephone,may,tue,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,basic.4y,unknown,no,no,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,basic.4y,unknown,no,no,telephone,may,tue,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,student,single,basic.9y,unknown,yes,no,telephone,may,tue,354,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,management,married,university.degree,no,no,no,telephone,may,tue,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,university.degree,no,yes,no,telephone,may,tue,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,professional.course,no,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,high.school,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,management,married,professional.course,unknown,yes,no,telephone,may,tue,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,unemployed,single,basic.4y,no,yes,no,telephone,may,tue,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,housemaid,married,basic.4y,no,no,no,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,divorced,high.school,no,no,no,telephone,may,tue,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,self-employed,married,university.degree,no,yes,no,telephone,may,tue,678,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,no,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,yes,yes,telephone,may,tue,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,basic.6y,unknown,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,professional.course,unknown,yes,no,telephone,may,tue,699,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,married,basic.4y,no,yes,no,telephone,may,tue,358,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,no,no,telephone,may,tue,1677,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +42,technician,single,professional.course,unknown,unknown,unknown,telephone,may,tue,529,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,professional.course,no,yes,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,unknown,married,unknown,unknown,no,no,telephone,may,tue,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,university.degree,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,unknown,unknown,no,no,telephone,may,tue,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,high.school,unknown,no,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,retired,married,basic.4y,no,no,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,unknown,married,unknown,unknown,yes,no,telephone,may,tue,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,married,basic.6y,unknown,yes,yes,telephone,may,tue,381,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,unknown,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,housemaid,married,professional.course,unknown,no,no,telephone,may,tue,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,unknown,no,yes,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,yes,no,telephone,may,tue,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,unemployed,married,basic.9y,unknown,no,no,telephone,may,tue,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,basic.9y,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,unknown,unknown,unknown,telephone,may,tue,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,unknown,unknown,unknown,telephone,may,tue,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,tue,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,professional.course,no,yes,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,married,basic.6y,unknown,yes,no,telephone,may,tue,531,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,unknown,unknown,telephone,may,tue,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,divorced,high.school,unknown,yes,no,telephone,may,tue,568,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,unknown,yes,no,telephone,may,tue,918,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +45,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,single,university.degree,no,no,no,telephone,may,tue,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,unknown,single,unknown,unknown,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,university.degree,no,yes,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,high.school,no,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,married,university.degree,no,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,basic.9y,no,yes,yes,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,entrepreneur,married,high.school,no,yes,no,telephone,may,tue,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,married,unknown,unknown,yes,no,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,housemaid,single,basic.4y,unknown,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,unknown,no,no,no,telephone,may,tue,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,management,married,basic.9y,unknown,unknown,unknown,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,no,no,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,single,unknown,unknown,yes,no,telephone,may,tue,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,high.school,no,no,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,divorced,high.school,no,yes,yes,telephone,may,tue,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,divorced,university.degree,no,no,no,telephone,may,tue,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,tue,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,tue,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,unknown,yes,yes,telephone,may,tue,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,high.school,no,no,no,telephone,may,tue,358,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,unknown,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,high.school,no,yes,yes,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,basic.6y,unknown,no,no,telephone,may,tue,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,married,university.degree,no,no,no,telephone,may,tue,792,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,self-employed,married,unknown,unknown,no,no,telephone,may,tue,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,tue,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,professional.course,unknown,no,yes,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,entrepreneur,single,university.degree,no,yes,no,telephone,may,tue,242,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,self-employed,single,high.school,no,yes,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,professional.course,no,yes,yes,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,university.degree,no,no,no,telephone,may,tue,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,divorced,high.school,no,no,yes,telephone,may,tue,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,university.degree,no,yes,yes,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,university.degree,no,no,no,telephone,may,tue,424,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,basic.6y,no,no,no,telephone,may,tue,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,university.degree,no,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,basic.4y,no,no,yes,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,high.school,no,no,yes,telephone,may,tue,1297,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +40,technician,married,basic.4y,no,no,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,university.degree,unknown,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,basic.6y,no,yes,no,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,unknown,no,no,no,telephone,may,tue,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +23,admin.,single,university.degree,no,no,no,telephone,may,tue,266,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unemployed,married,university.degree,unknown,unknown,unknown,telephone,may,tue,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,entrepreneur,married,professional.course,no,unknown,unknown,telephone,may,tue,524,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,unknown,yes,yes,telephone,may,tue,316,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,housemaid,married,high.school,no,no,no,telephone,may,tue,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,high.school,no,no,no,telephone,may,tue,695,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,divorced,high.school,no,no,no,telephone,may,tue,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,unknown,no,yes,telephone,may,tue,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,university.degree,no,no,no,telephone,may,tue,310,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,unknown,no,no,no,telephone,may,tue,390,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,management,married,university.degree,unknown,no,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unknown,married,unknown,unknown,no,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,technician,single,professional.course,no,no,yes,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unknown,married,unknown,unknown,no,no,telephone,may,tue,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,university.degree,no,no,yes,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,university.degree,unknown,no,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,424,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,36,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,tue,1906,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,tue,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,married,university.degree,no,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,single,high.school,no,unknown,unknown,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,university.degree,no,no,no,telephone,may,tue,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,professional.course,no,yes,no,telephone,may,tue,402,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,basic.9y,no,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,professional.course,no,yes,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,yes,yes,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,unknown,no,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,yes,no,telephone,may,tue,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,tue,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,no,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,258,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,high.school,no,no,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,tue,635,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,management,married,university.degree,no,yes,no,telephone,may,tue,170,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,yes,no,telephone,may,tue,802,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,basic.6y,no,yes,no,telephone,may,tue,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,unknown,no,no,telephone,may,tue,218,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,basic.9y,no,yes,no,telephone,may,tue,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,no,yes,yes,telephone,may,tue,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,professional.course,no,no,no,telephone,may,tue,79,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,tue,262,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,unknown,no,no,telephone,may,tue,392,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,unknown,no,yes,yes,telephone,may,tue,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,professional.course,no,no,no,telephone,may,tue,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,single,basic.4y,no,no,no,telephone,may,tue,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,married,unknown,unknown,yes,no,telephone,may,tue,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,no,no,no,telephone,may,tue,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,tue,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,single,university.degree,no,no,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,basic.6y,no,no,no,telephone,may,tue,532,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,management,single,basic.4y,no,no,no,telephone,may,tue,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,management,married,university.degree,unknown,yes,no,telephone,may,tue,416,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,single,professional.course,no,yes,no,telephone,may,tue,37,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,yes,yes,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,tue,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,unknown,unknown,yes,no,telephone,may,tue,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,management,divorced,university.degree,no,yes,no,telephone,may,tue,90,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,524,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,high.school,no,yes,no,telephone,may,tue,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,311,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,high.school,unknown,yes,no,telephone,may,tue,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,single,professional.course,no,no,no,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,single,university.degree,no,yes,no,telephone,may,tue,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,housemaid,divorced,university.degree,no,no,no,telephone,may,tue,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,high.school,no,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,basic.9y,unknown,yes,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,high.school,no,no,no,telephone,may,tue,328,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,housemaid,married,high.school,no,yes,no,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,housemaid,married,high.school,no,no,no,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,333,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,divorced,unknown,unknown,yes,yes,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,no,no,no,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,basic.4y,no,no,no,telephone,may,tue,202,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,married,university.degree,unknown,no,yes,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,divorced,university.degree,unknown,yes,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,single,university.degree,no,no,no,telephone,may,tue,739,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,divorced,basic.4y,unknown,no,no,telephone,may,tue,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,unknown,no,yes,no,telephone,may,tue,339,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,yes,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,308,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,467,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,married,basic.9y,no,no,yes,telephone,may,tue,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,tue,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,admin.,married,high.school,no,no,no,telephone,may,tue,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,married,university.degree,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,services,single,high.school,unknown,yes,no,telephone,may,tue,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,high.school,no,no,yes,telephone,may,tue,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,high.school,no,yes,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,professional.course,no,no,yes,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,high.school,unknown,no,no,telephone,may,tue,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,married,university.degree,no,yes,no,telephone,may,tue,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,entrepreneur,married,professional.course,no,no,no,telephone,may,tue,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,divorced,university.degree,unknown,yes,no,telephone,may,tue,378,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,basic.4y,unknown,no,no,telephone,may,tue,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,housemaid,married,professional.course,unknown,yes,no,telephone,may,tue,1597,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +36,self-employed,married,university.degree,no,no,no,telephone,may,tue,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,management,married,professional.course,unknown,yes,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,services,married,high.school,no,no,no,telephone,may,tue,60,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,276,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,housemaid,married,basic.4y,unknown,yes,no,telephone,may,tue,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,single,high.school,no,yes,no,telephone,may,tue,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,university.degree,no,yes,no,telephone,may,tue,716,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,single,university.degree,no,no,no,telephone,may,tue,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,high.school,no,yes,no,telephone,may,tue,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,13,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,married,high.school,unknown,no,no,telephone,may,tue,296,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.4y,no,no,no,telephone,may,tue,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,admin.,married,university.degree,unknown,no,no,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,self-employed,married,basic.9y,no,yes,no,telephone,may,tue,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,housemaid,married,basic.6y,unknown,yes,no,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,self-employed,divorced,basic.9y,no,yes,no,telephone,may,tue,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,self-employed,married,university.degree,no,no,no,telephone,may,tue,31,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,unemployed,single,basic.9y,no,yes,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,yes,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,married,university.degree,no,no,no,telephone,may,tue,87,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,high.school,unknown,yes,no,telephone,may,tue,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,university.degree,unknown,yes,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,university.degree,unknown,no,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,university.degree,unknown,no,no,telephone,may,tue,172,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,basic.9y,no,no,no,telephone,may,tue,631,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,university.degree,no,no,no,telephone,may,tue,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,high.school,no,no,no,telephone,may,tue,176,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,services,married,basic.6y,no,no,no,telephone,may,tue,32,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,1529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,no,yes,no,telephone,may,tue,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,tue,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,800,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,yes,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,basic.9y,no,no,no,telephone,may,tue,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,no,no,no,telephone,may,tue,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,technician,single,professional.course,no,no,no,telephone,may,tue,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,single,unknown,unknown,yes,yes,telephone,may,tue,410,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,high.school,no,yes,yes,telephone,may,tue,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,self-employed,single,basic.4y,unknown,yes,no,telephone,may,tue,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,single,university.degree,unknown,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,no,no,no,telephone,may,tue,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,married,high.school,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,unemployed,divorced,university.degree,no,no,no,telephone,may,tue,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,336,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,divorced,high.school,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,housemaid,married,basic.4y,no,yes,yes,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,management,married,basic.4y,unknown,yes,no,telephone,may,tue,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,single,professional.course,no,yes,yes,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,329,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unemployed,married,basic.4y,unknown,yes,yes,telephone,may,tue,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,yes,no,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,tue,122,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,professional.course,no,yes,no,telephone,may,tue,343,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,divorced,basic.9y,no,no,yes,telephone,may,tue,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,blue-collar,married,professional.course,no,no,no,telephone,may,tue,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,tue,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,no,no,no,telephone,may,tue,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,university.degree,no,yes,no,telephone,may,wed,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,unemployed,married,basic.4y,no,no,no,telephone,may,wed,275,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,no,yes,no,telephone,may,wed,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,married,university.degree,unknown,no,no,telephone,may,wed,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,wed,479,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,married,university.degree,no,yes,no,telephone,may,wed,285,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,university.degree,no,no,no,telephone,may,wed,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,self-employed,married,university.degree,unknown,no,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,unknown,unknown,unknown,unknown,telephone,may,wed,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,student,single,high.school,unknown,no,no,telephone,may,wed,216,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,housemaid,divorced,unknown,no,yes,no,telephone,may,wed,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,management,married,unknown,unknown,yes,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,professional.course,no,no,no,telephone,may,wed,720,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,housemaid,married,basic.9y,no,no,no,telephone,may,wed,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,unknown,unknown,no,yes,telephone,may,wed,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,141,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,married,high.school,no,yes,no,telephone,may,wed,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,high.school,unknown,no,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,basic.6y,no,yes,no,telephone,may,wed,261,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,high.school,unknown,yes,no,telephone,may,wed,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,divorced,professional.course,no,no,no,telephone,may,wed,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,wed,131,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,self-employed,married,university.degree,no,no,no,telephone,may,wed,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,275,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,admin.,married,basic.4y,unknown,no,yes,telephone,may,wed,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,professional.course,no,yes,no,telephone,may,wed,333,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,management,single,university.degree,unknown,yes,yes,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,management,married,high.school,no,no,no,telephone,may,wed,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,unknown,single,basic.9y,unknown,no,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,single,unknown,no,yes,no,telephone,may,wed,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,single,high.school,no,no,no,telephone,may,wed,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,divorced,unknown,no,yes,no,telephone,may,wed,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,divorced,basic.6y,unknown,yes,yes,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,divorced,high.school,no,no,no,telephone,may,wed,421,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,entrepreneur,single,professional.course,no,no,no,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,technician,married,basic.6y,no,no,no,telephone,may,wed,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,single,unknown,no,yes,no,telephone,may,wed,852,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,wed,416,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,single,university.degree,no,yes,yes,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,self-employed,single,high.school,unknown,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,no,no,no,telephone,may,wed,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,high.school,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,admin.,married,university.degree,no,no,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,blue-collar,single,high.school,unknown,unknown,unknown,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,technician,single,unknown,unknown,yes,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,management,married,high.school,unknown,yes,no,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,admin.,single,basic.9y,no,yes,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,wed,992,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +31,admin.,married,university.degree,unknown,no,no,telephone,may,wed,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,management,single,university.degree,no,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,management,divorced,high.school,no,no,yes,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,professional.course,no,yes,no,telephone,may,wed,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,divorced,professional.course,no,no,no,telephone,may,wed,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,university.degree,no,yes,no,telephone,may,wed,425,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,technician,married,university.degree,no,yes,no,telephone,may,wed,464,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,439,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,wed,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,student,single,basic.9y,unknown,yes,yes,telephone,may,wed,732,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +53,technician,married,high.school,no,yes,no,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,high.school,unknown,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,professional.course,no,yes,no,telephone,may,wed,274,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,single,university.degree,no,yes,no,telephone,may,wed,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,single,unknown,no,yes,no,telephone,may,wed,1521,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,wed,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,wed,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,divorced,high.school,unknown,yes,no,telephone,may,wed,800,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,615,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +24,services,single,high.school,no,no,no,telephone,may,wed,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,technician,married,professional.course,no,yes,no,telephone,may,wed,327,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,management,divorced,university.degree,no,yes,no,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,married,basic.6y,no,yes,no,telephone,may,wed,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,housemaid,married,basic.4y,unknown,yes,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,entrepreneur,married,university.degree,no,yes,no,telephone,may,wed,1138,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +47,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,single,unknown,no,yes,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,management,married,university.degree,no,yes,no,telephone,may,wed,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,professional.course,unknown,yes,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,single,university.degree,no,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,unknown,no,yes,yes,telephone,may,wed,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,professional.course,no,yes,no,telephone,may,wed,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,single,unknown,unknown,no,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,591,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +40,blue-collar,married,high.school,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,high.school,no,yes,no,telephone,may,wed,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,single,university.degree,no,no,no,telephone,may,wed,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,786,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +41,admin.,married,university.degree,no,yes,no,telephone,may,wed,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,unknown,single,basic.9y,unknown,yes,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,services,married,high.school,unknown,yes,no,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,single,high.school,no,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,single,university.degree,no,yes,no,telephone,may,wed,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,divorced,unknown,no,yes,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,unknown,married,high.school,unknown,no,no,telephone,may,wed,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,technician,married,professional.course,no,yes,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,admin.,married,university.degree,no,no,no,telephone,may,wed,388,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,university.degree,no,no,no,telephone,may,wed,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,services,single,unknown,unknown,yes,no,telephone,may,wed,256,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,283,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,retired,single,high.school,no,yes,no,telephone,may,wed,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,professional.course,no,no,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,wed,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,management,married,basic.6y,no,no,no,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,technician,married,professional.course,no,yes,no,telephone,may,wed,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,divorced,professional.course,no,yes,no,telephone,may,wed,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,basic.4y,unknown,no,no,telephone,may,wed,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,401,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,management,divorced,university.degree,no,unknown,unknown,telephone,may,wed,435,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,basic.4y,unknown,no,yes,telephone,may,wed,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,technician,single,professional.course,no,no,no,telephone,may,wed,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,basic.9y,unknown,no,no,telephone,may,wed,423,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,services,divorced,high.school,no,no,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,unknown,unknown,no,yes,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,wed,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,married,professional.course,no,no,no,telephone,may,wed,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,high.school,no,no,no,telephone,may,wed,799,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,high.school,unknown,yes,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,retired,married,basic.9y,no,yes,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,68,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,single,high.school,no,yes,no,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,divorced,basic.4y,no,yes,no,telephone,may,wed,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,wed,444,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,university.degree,no,yes,no,telephone,may,wed,223,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,university.degree,no,yes,no,telephone,may,wed,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,high.school,no,yes,no,telephone,may,wed,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,49,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,married,high.school,unknown,yes,no,telephone,may,wed,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,wed,511,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,management,married,high.school,unknown,yes,yes,telephone,may,wed,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,married,basic.9y,unknown,no,no,telephone,may,wed,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,management,divorced,university.degree,no,yes,no,telephone,may,wed,866,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,professional.course,unknown,yes,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,single,university.degree,unknown,yes,no,telephone,may,wed,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,divorced,high.school,unknown,no,no,telephone,may,wed,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,1581,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,divorced,high.school,unknown,no,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,university.degree,unknown,no,no,telephone,may,wed,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,279,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,180,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,high.school,no,yes,no,telephone,may,wed,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,129,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,divorced,high.school,no,yes,yes,telephone,may,wed,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,technician,divorced,unknown,no,yes,yes,telephone,may,wed,432,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,divorced,high.school,no,no,yes,telephone,may,wed,516,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,management,married,basic.9y,no,no,no,telephone,may,wed,617,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,housemaid,divorced,basic.9y,unknown,no,no,telephone,may,wed,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,unknown,no,no,no,telephone,may,wed,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,396,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,services,married,high.school,no,no,no,telephone,may,wed,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,unknown,married,unknown,unknown,no,no,telephone,may,wed,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,professional.course,no,no,yes,telephone,may,wed,485,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,406,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,unknown,no,no,no,telephone,may,wed,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,university.degree,no,yes,no,telephone,may,wed,37,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,650,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,unemployed,divorced,professional.course,no,no,no,telephone,may,wed,590,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,management,single,unknown,no,yes,no,telephone,may,wed,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,admin.,single,basic.6y,no,unknown,unknown,telephone,may,wed,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,entrepreneur,divorced,university.degree,no,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,high.school,no,no,no,telephone,may,wed,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,entrepreneur,married,basic.4y,no,yes,no,telephone,may,wed,474,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,wed,559,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,1101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,entrepreneur,single,university.degree,no,unknown,unknown,telephone,may,wed,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,management,divorced,university.degree,no,no,no,telephone,may,wed,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,university.degree,unknown,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,unemployed,married,professional.course,unknown,no,no,telephone,may,wed,912,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,wed,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,housemaid,divorced,basic.4y,no,no,no,telephone,may,wed,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,unknown,yes,no,telephone,may,wed,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,single,high.school,no,unknown,unknown,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,technician,single,basic.6y,unknown,no,no,telephone,may,wed,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,basic.9y,no,no,no,telephone,may,wed,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,entrepreneur,married,basic.6y,no,yes,no,telephone,may,wed,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,single,high.school,no,yes,yes,telephone,may,wed,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,housemaid,married,basic.6y,no,yes,no,telephone,may,wed,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,technician,married,basic.9y,no,yes,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,unknown,no,no,no,telephone,may,wed,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,high.school,no,no,no,telephone,may,wed,1062,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,divorced,unknown,no,no,no,telephone,may,wed,258,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,married,university.degree,no,unknown,unknown,telephone,may,wed,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,self-employed,single,high.school,unknown,no,no,telephone,may,wed,688,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,unknown,yes,no,telephone,may,wed,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,unemployed,married,basic.4y,no,yes,no,telephone,may,wed,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,services,married,high.school,no,yes,no,telephone,may,wed,78,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,management,married,university.degree,no,no,no,telephone,may,wed,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,single,university.degree,no,no,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,high.school,no,no,no,telephone,may,wed,224,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,252,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,607,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,331,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,basic.4y,unknown,yes,no,telephone,may,wed,398,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,single,high.school,no,no,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,technician,married,professional.course,unknown,no,no,telephone,may,wed,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,professional.course,no,no,no,telephone,may,wed,96,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,management,married,high.school,no,no,no,telephone,may,wed,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,self-employed,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,technician,married,professional.course,unknown,yes,no,telephone,may,wed,481,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,119,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,divorced,high.school,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,admin.,married,high.school,no,no,yes,telephone,may,wed,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,married,high.school,no,yes,no,telephone,may,wed,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,421,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,high.school,no,no,yes,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,high.school,no,yes,no,telephone,may,wed,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,management,married,university.degree,no,no,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,professional.course,unknown,yes,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,professional.course,unknown,no,no,telephone,may,wed,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,technician,single,professional.course,no,yes,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,single,high.school,unknown,no,yes,telephone,may,wed,278,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,professional.course,no,no,no,telephone,may,wed,306,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,retired,divorced,high.school,no,no,no,telephone,may,wed,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,divorced,high.school,no,yes,no,telephone,may,wed,24,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,single,university.degree,unknown,no,no,telephone,may,wed,79,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,married,high.school,unknown,no,no,telephone,may,wed,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,263,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,management,married,university.degree,no,yes,no,telephone,may,wed,353,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,108,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,retired,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,441,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,single,professional.course,no,unknown,unknown,telephone,may,wed,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,services,married,basic.6y,unknown,no,no,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,housemaid,divorced,professional.course,no,yes,no,telephone,may,wed,222,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,1009,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,services,married,high.school,no,no,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,basic.4y,unknown,yes,no,telephone,may,wed,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,wed,228,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,management,married,university.degree,no,no,no,telephone,may,wed,550,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,management,married,professional.course,no,no,no,telephone,may,wed,764,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,management,divorced,basic.4y,unknown,no,no,telephone,may,wed,396,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,42,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,self-employed,married,university.degree,no,yes,no,telephone,may,wed,234,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,housemaid,married,basic.4y,no,no,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,unknown,no,yes,no,telephone,may,wed,274,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,305,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,retired,married,basic.4y,no,no,no,telephone,may,wed,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,admin.,single,university.degree,no,yes,no,telephone,may,wed,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,management,divorced,university.degree,no,no,no,telephone,may,wed,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,wed,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,married,university.degree,no,no,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,services,married,unknown,no,no,no,telephone,may,wed,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,wed,1273,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,wed,1574,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +26,technician,single,basic.9y,no,yes,no,telephone,may,wed,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,62,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,single,high.school,unknown,no,yes,telephone,may,wed,256,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,divorced,high.school,no,yes,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,single,high.school,no,yes,no,telephone,may,wed,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,management,married,basic.6y,no,yes,yes,telephone,may,wed,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,591,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,technician,married,professional.course,no,yes,no,telephone,may,wed,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,divorced,basic.4y,no,yes,no,telephone,may,wed,517,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,basic.6y,unknown,no,no,telephone,may,wed,193,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,technician,divorced,professional.course,unknown,no,no,telephone,may,wed,348,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,university.degree,no,no,no,telephone,may,wed,299,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,technician,married,professional.course,no,yes,no,telephone,may,wed,253,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,technician,married,professional.course,no,yes,no,telephone,may,wed,164,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,244,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,married,high.school,no,no,no,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,married,professional.course,no,yes,no,telephone,may,wed,157,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,548,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,services,divorced,basic.6y,unknown,no,yes,telephone,may,wed,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,126,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,unknown,unknown,yes,yes,telephone,may,wed,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,services,married,unknown,no,yes,no,telephone,may,wed,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,wed,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,married,university.degree,no,yes,yes,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,wed,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,single,university.degree,no,unknown,unknown,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,married,university.degree,no,no,no,telephone,may,wed,984,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,admin.,divorced,university.degree,no,no,no,telephone,may,wed,1689,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +58,self-employed,married,professional.course,no,yes,no,telephone,may,wed,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,services,married,high.school,no,yes,yes,telephone,may,wed,27,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,130,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,wed,41,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,single,unknown,no,yes,no,telephone,may,wed,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,married,basic.4y,unknown,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,married,professional.course,unknown,unknown,unknown,telephone,may,wed,865,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,management,married,high.school,unknown,no,no,telephone,may,wed,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,management,married,university.degree,no,yes,no,telephone,may,wed,281,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,no,no,no,telephone,may,wed,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,married,university.degree,unknown,no,no,telephone,may,wed,361,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,944,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,management,married,university.degree,no,yes,no,telephone,may,wed,319,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,unknown,married,high.school,unknown,no,no,telephone,may,wed,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,505,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,single,high.school,no,yes,no,telephone,may,wed,17,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,404,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,high.school,no,yes,no,telephone,may,wed,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,retired,married,basic.9y,no,yes,yes,telephone,may,wed,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,basic.4y,unknown,no,no,telephone,may,wed,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,408,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,married,professional.course,no,yes,no,telephone,may,wed,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,365,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,divorced,high.school,no,yes,no,telephone,may,thu,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,thu,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,31,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,retired,married,university.degree,no,no,no,telephone,may,thu,425,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,admin.,married,high.school,no,yes,yes,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,thu,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,professional.course,no,no,no,telephone,may,thu,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,thu,308,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,high.school,no,no,no,telephone,may,thu,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,admin.,married,university.degree,no,no,yes,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,self-employed,married,high.school,no,yes,no,telephone,may,thu,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,services,married,professional.course,unknown,no,no,telephone,may,thu,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,single,unknown,no,no,no,telephone,may,thu,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,retired,married,basic.9y,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,thu,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,high.school,no,no,no,telephone,may,thu,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,single,university.degree,no,no,no,telephone,may,thu,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,unknown,married,basic.4y,no,no,no,telephone,may,thu,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,services,married,professional.course,no,yes,no,telephone,may,thu,813,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,housemaid,married,basic.6y,no,no,no,telephone,may,thu,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,single,high.school,no,yes,no,telephone,may,thu,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,single,high.school,no,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,blue-collar,married,high.school,unknown,no,yes,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,admin.,married,high.school,no,no,no,telephone,may,thu,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,thu,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,thu,489,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,services,divorced,basic.6y,no,no,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,unemployed,married,basic.9y,unknown,no,no,telephone,may,thu,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,married,professional.course,unknown,no,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,basic.6y,unknown,no,no,telephone,may,thu,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,unknown,married,basic.6y,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,technician,married,professional.course,no,no,yes,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,technician,married,high.school,no,yes,yes,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,thu,528,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,high.school,no,yes,no,telephone,may,thu,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,self-employed,single,university.degree,no,no,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,basic.6y,no,no,yes,telephone,may,thu,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,high.school,no,no,no,telephone,may,thu,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,541,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +49,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,services,married,unknown,no,yes,no,telephone,may,thu,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,single,university.degree,unknown,yes,yes,telephone,may,thu,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,604,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,divorced,unknown,no,yes,no,telephone,may,thu,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,professional.course,no,no,no,telephone,may,thu,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,380,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,11,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,management,married,university.degree,unknown,no,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,405,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,married,basic.9y,no,yes,yes,telephone,may,thu,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,married,basic.9y,no,yes,no,telephone,may,thu,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,management,single,university.degree,no,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,married,university.degree,unknown,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,single,professional.course,no,no,no,telephone,may,thu,462,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,services,married,high.school,unknown,no,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,unemployed,married,basic.4y,no,yes,yes,telephone,may,thu,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,418,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,management,married,university.degree,no,yes,yes,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,retired,married,unknown,no,yes,no,telephone,may,thu,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,unemployed,married,high.school,no,yes,no,telephone,may,thu,39,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,services,married,high.school,unknown,yes,no,telephone,may,thu,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,technician,married,university.degree,unknown,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,entrepreneur,single,university.degree,no,yes,no,telephone,may,thu,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,housemaid,married,high.school,unknown,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,housemaid,married,high.school,unknown,no,no,telephone,may,thu,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,unemployed,single,university.degree,no,no,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,services,married,high.school,no,no,no,telephone,may,thu,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,single,basic.4y,unknown,no,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,521,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,technician,married,professional.course,no,no,no,telephone,may,thu,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,professional.course,no,no,no,telephone,may,thu,1119,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +55,admin.,married,high.school,no,no,no,telephone,may,thu,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,admin.,married,basic.4y,unknown,no,yes,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,student,single,high.school,unknown,no,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,12,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,services,married,basic.9y,no,no,no,telephone,may,thu,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,high.school,no,no,no,telephone,may,thu,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,technician,married,basic.9y,no,no,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,admin.,married,high.school,unknown,no,yes,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,university.degree,no,no,yes,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,single,high.school,no,no,no,telephone,may,thu,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,technician,married,professional.course,no,no,no,telephone,may,thu,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,student,single,university.degree,no,no,no,telephone,may,thu,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,student,single,university.degree,no,yes,no,telephone,may,thu,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,divorced,professional.course,no,yes,no,telephone,may,thu,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,services,single,high.school,no,yes,yes,telephone,may,thu,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,technician,married,university.degree,no,no,yes,telephone,may,thu,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,thu,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,technician,single,university.degree,no,yes,no,telephone,may,thu,1120,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +35,admin.,married,university.degree,no,yes,yes,telephone,may,thu,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,single,high.school,unknown,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,technician,married,professional.course,unknown,yes,no,telephone,may,thu,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,housemaid,married,basic.4y,no,no,no,telephone,may,thu,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,admin.,married,high.school,no,yes,yes,telephone,may,thu,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,high.school,no,yes,no,telephone,may,thu,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,divorced,university.degree,no,no,no,telephone,may,thu,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,thu,784,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,technician,married,professional.course,no,yes,yes,telephone,may,thu,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,married,basic.9y,no,no,no,telephone,may,thu,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,retired,married,university.degree,unknown,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +57,retired,married,high.school,unknown,yes,no,telephone,may,thu,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,entrepreneur,married,basic.6y,no,yes,no,telephone,may,thu,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,services,married,high.school,no,yes,no,telephone,may,thu,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,student,single,high.school,no,yes,no,telephone,may,thu,287,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,entrepreneur,married,basic.6y,no,no,no,telephone,may,thu,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,divorced,high.school,no,no,no,telephone,may,thu,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,services,divorced,high.school,no,yes,no,telephone,may,thu,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,basic.6y,no,no,no,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,single,university.degree,no,no,no,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,housemaid,married,basic.9y,no,yes,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,services,married,basic.9y,no,yes,yes,telephone,may,thu,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,services,single,high.school,no,yes,no,telephone,may,thu,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,unknown,no,yes,no,telephone,may,thu,475,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,unemployed,married,professional.course,no,no,no,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,unemployed,married,professional.course,no,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,basic.6y,no,yes,no,telephone,may,thu,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,services,married,professional.course,unknown,yes,no,telephone,may,thu,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,thu,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,362,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,712,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,338,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,married,university.degree,no,yes,no,telephone,may,thu,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,unemployed,married,high.school,no,no,yes,telephone,may,thu,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,admin.,divorced,university.degree,unknown,no,no,telephone,may,thu,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,divorced,professional.course,no,yes,no,telephone,may,thu,176,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,management,married,university.degree,no,no,no,telephone,may,thu,1007,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,services,married,high.school,no,no,no,telephone,may,thu,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,thu,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,thu,500,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,services,divorced,basic.6y,no,no,no,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,high.school,unknown,no,no,telephone,may,thu,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,admin.,married,university.degree,no,yes,no,telephone,may,thu,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,364,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,entrepreneur,married,university.degree,no,yes,yes,telephone,may,thu,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,married,university.degree,no,no,no,telephone,may,thu,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,single,high.school,no,yes,no,telephone,may,thu,789,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,admin.,married,university.degree,no,no,no,telephone,may,thu,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +37,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,280,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,thu,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,technician,married,professional.course,no,no,no,telephone,may,thu,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,technician,married,university.degree,no,yes,no,telephone,may,thu,159,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,services,divorced,high.school,no,no,no,telephone,may,thu,366,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,unemployed,married,university.degree,no,yes,no,telephone,may,thu,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,468,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,professional.course,no,no,no,telephone,may,thu,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,352,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,management,single,basic.6y,no,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,services,married,high.school,no,no,no,telephone,may,thu,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,admin.,divorced,high.school,no,yes,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,technician,married,high.school,no,yes,no,telephone,may,thu,756,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,unemployed,married,professional.course,no,no,no,telephone,may,thu,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,entrepreneur,married,basic.4y,unknown,no,yes,telephone,may,thu,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,university.degree,no,no,no,telephone,may,thu,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +20,entrepreneur,single,high.school,no,no,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,management,single,unknown,no,yes,no,telephone,may,thu,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,14,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,married,high.school,no,no,no,telephone,may,thu,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,269,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,technician,single,professional.course,no,no,no,telephone,may,thu,22,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,management,married,university.degree,unknown,yes,no,telephone,may,thu,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,989,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,1170,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,management,married,university.degree,no,yes,yes,telephone,may,thu,807,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,single,basic.6y,unknown,yes,no,telephone,may,thu,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,534,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,services,single,basic.9y,no,no,no,telephone,may,thu,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,343,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,married,basic.9y,no,no,no,telephone,may,thu,461,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,thu,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,thu,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,admin.,married,high.school,unknown,no,no,telephone,may,thu,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,single,basic.4y,unknown,no,no,telephone,may,thu,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,married,high.school,no,yes,no,telephone,may,thu,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,married,professional.course,no,no,yes,telephone,may,thu,32,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,services,married,high.school,unknown,no,yes,telephone,may,thu,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,20,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,professional.course,no,no,no,telephone,may,thu,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,single,high.school,unknown,no,no,telephone,may,thu,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,university.degree,unknown,no,yes,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,single,high.school,no,no,no,telephone,may,thu,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,self-employed,single,basic.6y,no,no,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,high.school,unknown,no,no,telephone,may,thu,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,unemployed,married,basic.4y,no,no,no,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,services,married,basic.6y,no,no,no,telephone,may,thu,2087,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +35,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,divorced,professional.course,no,yes,no,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,admin.,married,university.degree,no,no,no,telephone,may,thu,42,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,technician,married,professional.course,unknown,no,no,telephone,may,thu,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,high.school,unknown,unknown,unknown,telephone,may,thu,242,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,services,single,high.school,no,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,management,single,university.degree,no,no,no,telephone,may,thu,477,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,self-employed,single,university.degree,no,no,no,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,entrepreneur,married,basic.6y,no,yes,yes,telephone,may,thu,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,single,basic.9y,no,yes,yes,telephone,may,thu,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,technician,divorced,professional.course,no,yes,yes,telephone,may,thu,453,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,housemaid,divorced,university.degree,no,no,no,telephone,may,thu,767,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,housemaid,married,basic.9y,no,yes,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,retired,married,basic.6y,unknown,no,yes,telephone,may,thu,298,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,unemployed,married,basic.9y,no,yes,no,telephone,may,thu,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,admin.,married,high.school,no,no,yes,telephone,may,thu,627,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,self-employed,divorced,professional.course,no,no,no,telephone,may,thu,242,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,high.school,no,yes,no,telephone,may,thu,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,403,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,self-employed,married,professional.course,no,no,no,telephone,may,thu,626,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,married,high.school,no,no,no,telephone,may,thu,12,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,divorced,basic.6y,no,no,no,telephone,may,thu,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,unemployed,divorced,basic.4y,no,unknown,unknown,telephone,may,thu,23,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,thu,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,admin.,married,university.degree,no,no,no,telephone,may,thu,10,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,301,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,services,single,basic.4y,no,no,yes,telephone,may,thu,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,services,single,professional.course,no,no,no,telephone,may,thu,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,services,divorced,high.school,no,no,no,telephone,may,thu,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,543,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,technician,married,university.degree,unknown,no,no,telephone,may,thu,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,technician,married,professional.course,no,yes,no,telephone,may,thu,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,retired,married,high.school,unknown,yes,no,telephone,may,thu,23,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,management,married,university.degree,no,yes,no,telephone,may,thu,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,1178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +35,services,married,basic.9y,no,yes,yes,telephone,may,thu,442,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,thu,1120,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +46,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,186,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,617,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,self-employed,single,university.degree,no,yes,no,telephone,may,thu,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,technician,married,professional.course,no,yes,no,telephone,may,thu,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,management,single,university.degree,no,no,no,telephone,may,thu,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,thu,74,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,261,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,high.school,no,yes,yes,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,thu,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,services,married,high.school,unknown,yes,no,telephone,may,thu,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,divorced,high.school,no,no,yes,telephone,may,thu,15,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,student,married,university.degree,no,no,yes,telephone,may,thu,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,management,married,university.degree,no,yes,no,telephone,may,thu,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,230,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,self-employed,single,university.degree,no,no,no,telephone,may,thu,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +57,services,divorced,high.school,unknown,no,yes,telephone,may,thu,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,entrepreneur,married,high.school,no,yes,no,telephone,may,thu,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,high.school,unknown,yes,no,telephone,may,thu,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,single,university.degree,no,no,no,telephone,may,thu,335,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,single,university.degree,no,yes,no,telephone,may,thu,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,divorced,high.school,no,yes,no,telephone,may,thu,956,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,services,married,basic.9y,no,no,no,telephone,may,thu,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,self-employed,single,university.degree,no,no,no,telephone,may,thu,459,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +57,blue-collar,divorced,professional.course,no,no,no,telephone,may,thu,100,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,divorced,unknown,no,no,yes,telephone,may,thu,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,255,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,technician,divorced,basic.9y,no,yes,no,telephone,may,thu,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,technician,married,professional.course,unknown,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,management,married,university.degree,no,yes,no,telephone,may,thu,4,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +57,services,married,basic.6y,no,no,no,telephone,may,thu,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,admin.,single,basic.6y,no,yes,no,telephone,may,thu,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,21,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,services,divorced,high.school,no,yes,no,telephone,may,thu,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,services,divorced,high.school,no,no,no,telephone,may,thu,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,thu,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,retired,divorced,high.school,no,yes,no,telephone,may,thu,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,services,married,high.school,no,no,no,telephone,may,thu,205,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,unknown,high.school,no,yes,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,technician,married,professional.course,no,yes,yes,telephone,may,thu,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,technician,married,professional.course,no,no,no,telephone,may,thu,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,high.school,no,no,yes,telephone,may,thu,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,married,high.school,no,yes,yes,telephone,may,thu,10,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,services,divorced,high.school,no,yes,no,telephone,may,thu,985,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +58,services,married,basic.4y,no,no,no,telephone,may,thu,249,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,300,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,thu,672,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,professional.course,no,no,no,telephone,may,thu,390,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,high.school,no,yes,yes,telephone,may,thu,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,married,basic.9y,unknown,no,no,telephone,may,thu,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,professional.course,unknown,yes,no,telephone,may,thu,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,services,married,basic.9y,unknown,no,no,telephone,may,thu,13,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,thu,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,married,university.degree,no,yes,no,telephone,may,thu,330,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,married,university.degree,unknown,yes,yes,telephone,may,thu,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,high.school,no,yes,no,telephone,may,thu,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,management,married,university.degree,unknown,no,no,telephone,may,thu,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,high.school,no,yes,no,telephone,may,thu,399,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,married,high.school,unknown,yes,no,telephone,may,thu,89,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,services,married,basic.9y,no,yes,no,telephone,may,thu,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,technician,married,professional.course,no,yes,no,telephone,may,thu,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,single,professional.course,no,yes,no,telephone,may,thu,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,thu,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,886,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,self-employed,married,university.degree,no,no,yes,telephone,may,thu,49,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,single,basic.6y,unknown,no,no,telephone,may,thu,89,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,management,divorced,university.degree,unknown,yes,yes,telephone,may,thu,341,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,admin.,married,university.degree,no,yes,no,telephone,may,thu,461,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,single,university.degree,no,no,yes,telephone,may,thu,515,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,technician,married,university.degree,no,yes,no,telephone,may,thu,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,married,high.school,no,no,no,telephone,may,thu,179,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,services,married,high.school,no,no,yes,telephone,may,thu,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,unemployed,married,university.degree,no,yes,yes,telephone,may,thu,272,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,married,high.school,no,yes,no,telephone,may,thu,17,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,divorced,professional.course,no,no,yes,telephone,may,thu,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,divorced,high.school,no,yes,no,telephone,may,thu,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,services,married,high.school,no,no,no,telephone,may,thu,1187,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,high.school,no,yes,no,telephone,may,thu,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,admin.,married,university.degree,no,yes,yes,telephone,may,thu,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,management,married,high.school,no,no,no,telephone,may,thu,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,married,university.degree,no,yes,no,telephone,may,thu,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,services,single,high.school,no,no,no,telephone,may,thu,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,management,married,university.degree,no,no,no,telephone,may,thu,627,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,divorced,university.degree,no,no,no,telephone,may,thu,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,self-employed,married,university.degree,unknown,no,no,telephone,may,thu,826,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +20,entrepreneur,single,high.school,no,no,no,telephone,may,thu,598,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,professional.course,unknown,yes,no,telephone,may,thu,120,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,185,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,technician,married,professional.course,no,yes,no,telephone,may,thu,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,technician,single,professional.course,no,yes,yes,telephone,may,thu,337,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,single,professional.course,no,no,no,telephone,may,thu,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,27,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,single,basic.6y,unknown,no,no,telephone,may,thu,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,university.degree,no,no,no,telephone,may,thu,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,single,professional.course,no,no,no,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,management,divorced,basic.6y,unknown,yes,no,telephone,may,thu,271,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,thu,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,thu,379,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,technician,divorced,professional.course,no,yes,no,telephone,may,thu,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,732,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,single,university.degree,no,no,no,telephone,may,thu,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,technician,single,high.school,no,yes,no,telephone,may,thu,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,retired,single,high.school,no,no,no,telephone,may,thu,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,married,high.school,no,yes,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,management,married,university.degree,no,yes,no,telephone,may,thu,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,housemaid,married,university.degree,no,yes,no,telephone,may,thu,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,admin.,married,high.school,no,yes,no,telephone,may,thu,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,technician,married,basic.9y,no,no,no,telephone,may,thu,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,thu,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,married,high.school,no,no,no,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,admin.,married,high.school,no,yes,no,telephone,may,fri,110,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,married,professional.course,unknown,no,yes,telephone,may,fri,203,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,married,professional.course,unknown,no,no,telephone,may,fri,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,technician,married,university.degree,unknown,yes,no,telephone,may,fri,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,single,high.school,no,no,no,telephone,may,fri,132,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,technician,married,basic.9y,unknown,unknown,unknown,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,single,high.school,no,no,no,telephone,may,fri,346,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,management,married,high.school,no,no,no,telephone,may,fri,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,university.degree,no,yes,no,telephone,may,fri,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,services,married,high.school,no,no,no,telephone,may,fri,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,technician,married,university.degree,no,yes,no,telephone,may,fri,93,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,housemaid,divorced,basic.6y,unknown,unknown,unknown,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,admin.,married,high.school,no,unknown,unknown,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,self-employed,married,professional.course,no,unknown,unknown,telephone,may,fri,252,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,high.school,no,yes,yes,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,unemployed,married,high.school,no,no,no,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,unemployed,married,high.school,no,yes,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,unemployed,married,high.school,no,yes,no,telephone,may,fri,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,fri,584,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,371,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,professional.course,no,no,no,telephone,may,fri,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,married,basic.9y,no,no,no,telephone,may,fri,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,blue-collar,married,university.degree,no,no,yes,telephone,may,fri,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,unknown,unknown,university.degree,no,no,no,telephone,may,fri,617,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +33,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,married,high.school,unknown,no,no,telephone,may,fri,483,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +54,admin.,married,university.degree,no,no,no,telephone,may,fri,847,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,services,married,high.school,no,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,married,high.school,no,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,services,married,high.school,no,yes,no,telephone,may,fri,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,single,high.school,no,yes,no,telephone,may,fri,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,university.degree,no,no,yes,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,university.degree,no,no,no,telephone,may,fri,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,management,married,university.degree,no,no,no,telephone,may,fri,659,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,technician,married,basic.9y,unknown,yes,no,telephone,may,fri,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,married,basic.6y,no,no,no,telephone,may,fri,296,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,services,married,high.school,no,no,no,telephone,may,fri,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,single,professional.course,no,no,no,telephone,may,fri,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,housemaid,divorced,high.school,no,no,no,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,high.school,no,yes,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,management,married,basic.9y,unknown,no,no,telephone,may,fri,772,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +28,services,married,high.school,unknown,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,management,married,basic.4y,unknown,yes,no,telephone,may,fri,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,housemaid,married,high.school,unknown,no,no,telephone,may,fri,929,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +32,student,single,university.degree,no,no,no,telephone,may,fri,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,unemployed,single,basic.9y,unknown,yes,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,services,married,basic.4y,unknown,yes,yes,telephone,may,fri,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +20,entrepreneur,single,high.school,no,no,no,telephone,may,fri,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,admin.,married,university.degree,no,yes,yes,telephone,may,fri,375,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,technician,single,university.degree,unknown,no,no,telephone,may,fri,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,admin.,single,university.degree,no,no,no,telephone,may,fri,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,divorced,basic.9y,no,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,university.degree,unknown,no,no,telephone,may,fri,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,unemployed,married,high.school,unknown,yes,no,telephone,may,fri,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,technician,single,professional.course,no,no,no,telephone,may,fri,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,services,divorced,high.school,no,no,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,blue-collar,married,professional.course,no,yes,yes,telephone,may,fri,710,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +35,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,131,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,admin.,married,high.school,no,no,no,telephone,may,fri,498,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,basic.9y,no,no,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,unemployed,divorced,professional.course,unknown,yes,no,telephone,may,fri,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,unemployed,married,high.school,unknown,yes,no,telephone,may,fri,239,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,retired,married,high.school,no,no,no,telephone,may,fri,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,admin.,divorced,university.degree,no,no,no,telephone,may,fri,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,high.school,no,yes,yes,telephone,may,fri,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,entrepreneur,single,basic.9y,no,no,no,telephone,may,fri,341,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,unemployed,single,professional.course,unknown,no,no,telephone,may,fri,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,unknown,married,basic.4y,unknown,no,no,telephone,may,fri,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,services,divorced,university.degree,no,no,no,telephone,may,fri,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,technician,divorced,professional.course,no,yes,no,telephone,may,fri,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,single,high.school,unknown,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,retired,married,university.degree,unknown,no,no,telephone,may,fri,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,retired,married,university.degree,unknown,yes,no,telephone,may,fri,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,single,high.school,unknown,no,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,high.school,no,yes,no,telephone,may,fri,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,married,high.school,no,yes,no,telephone,may,fri,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unknown,single,basic.4y,unknown,no,no,telephone,may,fri,121,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,admin.,single,high.school,no,no,no,telephone,may,fri,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,university.degree,no,yes,no,telephone,may,fri,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,399,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,divorced,high.school,no,no,no,telephone,may,fri,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,management,married,unknown,unknown,yes,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,management,single,university.degree,no,yes,no,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,high.school,no,no,yes,telephone,may,fri,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,management,married,university.degree,no,yes,yes,telephone,may,fri,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,admin.,married,high.school,no,yes,yes,telephone,may,fri,2462,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,fri,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,1132,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,high.school,unknown,no,no,telephone,may,fri,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,management,married,basic.9y,no,no,no,telephone,may,fri,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,management,married,professional.course,no,no,no,telephone,may,fri,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,technician,single,professional.course,unknown,no,no,telephone,may,fri,384,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,management,single,university.degree,no,no,no,telephone,may,fri,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,management,single,university.degree,no,no,no,telephone,may,fri,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,retired,divorced,university.degree,no,yes,no,telephone,may,fri,825,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,services,married,high.school,unknown,no,no,telephone,may,fri,331,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,479,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,high.school,no,no,no,telephone,may,fri,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,fri,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,management,married,university.degree,unknown,no,no,telephone,may,fri,490,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,308,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,admin.,divorced,high.school,no,yes,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,unemployed,married,high.school,unknown,no,no,telephone,may,fri,545,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,technician,married,high.school,no,no,no,telephone,may,fri,257,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,services,married,high.school,no,no,no,telephone,may,fri,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,services,married,professional.course,no,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,basic.9y,unknown,no,no,telephone,may,fri,646,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,services,single,high.school,no,no,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,admin.,married,professional.course,no,yes,yes,telephone,may,fri,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,services,single,high.school,no,yes,no,telephone,may,fri,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,653,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +59,admin.,married,university.degree,no,no,yes,telephone,may,fri,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,fri,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,services,single,high.school,no,no,no,telephone,may,fri,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,admin.,married,university.degree,unknown,no,no,telephone,may,fri,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,fri,46,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,technician,single,professional.course,no,yes,yes,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,unemployed,married,basic.9y,unknown,no,no,telephone,may,fri,471,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,unemployed,single,basic.4y,unknown,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,married,professional.course,unknown,yes,no,telephone,may,fri,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,self-employed,married,university.degree,no,no,no,telephone,may,fri,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,divorced,high.school,no,yes,no,telephone,may,fri,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,single,high.school,no,no,no,telephone,may,fri,164,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,services,married,high.school,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,admin.,married,high.school,no,yes,yes,telephone,may,fri,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,admin.,married,high.school,unknown,yes,yes,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,admin.,married,high.school,no,yes,yes,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,management,single,university.degree,no,yes,yes,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,technician,divorced,professional.course,no,yes,no,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,single,university.degree,no,no,no,telephone,may,fri,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,married,high.school,no,no,no,telephone,may,fri,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,fri,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,admin.,single,university.degree,no,yes,no,telephone,may,fri,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,single,high.school,unknown,no,no,telephone,may,fri,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,single,basic.9y,no,no,no,telephone,may,fri,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,housemaid,married,high.school,unknown,no,yes,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,services,single,high.school,no,no,yes,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,management,married,basic.4y,no,yes,no,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,services,single,high.school,no,yes,no,telephone,may,fri,654,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +49,entrepreneur,married,high.school,no,no,no,telephone,may,fri,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,high.school,no,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,married,high.school,no,yes,yes,telephone,may,fri,1087,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,housemaid,married,basic.4y,no,yes,yes,telephone,may,fri,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,entrepreneur,married,high.school,no,no,no,telephone,may,fri,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,admin.,single,high.school,no,yes,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,fri,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,technician,married,professional.course,no,yes,yes,telephone,may,fri,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,single,basic.6y,no,no,no,telephone,may,fri,557,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,basic.9y,no,yes,no,telephone,may,fri,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,technician,married,professional.course,no,no,yes,telephone,may,fri,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,fri,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,technician,divorced,professional.course,unknown,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,retired,married,high.school,no,no,no,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,housemaid,divorced,high.school,no,no,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,342,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,fri,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,married,professional.course,no,no,yes,telephone,may,fri,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,316,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,79,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,housemaid,married,basic.4y,unknown,yes,yes,telephone,may,fri,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,fri,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,university.degree,no,no,yes,telephone,may,fri,1692,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,professional.course,no,yes,no,telephone,may,fri,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,admin.,married,university.degree,no,no,no,telephone,may,fri,622,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,single,university.degree,no,yes,yes,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,self-employed,married,university.degree,no,no,no,telephone,may,fri,404,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,technician,married,professional.course,no,no,no,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,married,high.school,no,no,yes,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,married,high.school,no,no,no,telephone,may,fri,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,fri,93,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,married,high.school,no,yes,yes,telephone,may,fri,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,management,married,unknown,no,yes,no,telephone,may,fri,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,2016,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,1054,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,admin.,married,basic.9y,no,no,no,telephone,may,fri,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,admin.,married,university.degree,no,no,no,telephone,may,fri,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,technician,divorced,professional.course,no,no,no,telephone,may,fri,251,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,management,married,high.school,unknown,yes,no,telephone,may,fri,113,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,university.degree,no,no,no,telephone,may,fri,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +49,services,married,high.school,no,yes,no,telephone,may,fri,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,fri,665,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,yes +41,technician,married,university.degree,no,yes,no,telephone,may,fri,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,single,high.school,no,yes,no,telephone,may,fri,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,single,university.degree,no,yes,no,telephone,may,fri,395,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,admin.,single,high.school,no,yes,no,telephone,may,fri,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,management,single,university.degree,no,no,no,telephone,may,fri,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,management,single,university.degree,no,yes,no,telephone,may,fri,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,technician,single,university.degree,no,no,no,telephone,may,fri,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,married,university.degree,no,yes,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,single,high.school,no,no,no,telephone,may,fri,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,admin.,married,university.degree,no,yes,yes,telephone,may,fri,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,self-employed,married,university.degree,no,no,no,telephone,may,fri,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,fri,286,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,single,university.degree,no,yes,yes,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +60,management,married,university.degree,unknown,no,no,telephone,may,fri,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,single,university.degree,no,yes,yes,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,unemployed,married,basic.9y,no,yes,no,telephone,may,fri,1713,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +47,management,divorced,basic.4y,no,no,no,telephone,may,fri,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,technician,married,university.degree,no,no,no,telephone,may,fri,338,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,services,married,high.school,no,no,no,telephone,may,fri,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,346,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,management,married,unknown,no,no,no,telephone,may,fri,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,551,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,663,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,fri,338,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,services,married,high.school,no,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,fri,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,technician,married,high.school,no,yes,no,telephone,may,fri,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,fri,1080,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,admin.,married,university.degree,no,no,no,telephone,may,fri,1461,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,entrepreneur,single,university.degree,no,no,no,telephone,may,fri,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,technician,single,professional.course,no,no,no,telephone,may,fri,98,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,housemaid,married,high.school,no,yes,no,telephone,may,fri,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +55,unemployed,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,147,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,technician,single,professional.course,no,no,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,unknown,married,university.degree,no,unknown,unknown,telephone,may,fri,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,services,married,high.school,no,yes,no,telephone,may,fri,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,admin.,single,university.degree,no,no,no,telephone,may,fri,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,455,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,admin.,married,high.school,no,yes,no,telephone,may,fri,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,entrepreneur,married,unknown,unknown,yes,no,telephone,may,fri,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,management,married,basic.4y,unknown,no,no,telephone,may,fri,345,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,fri,154,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,basic.9y,unknown,yes,no,telephone,may,fri,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,750,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,admin.,married,university.degree,no,yes,no,telephone,may,fri,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,admin.,married,university.degree,no,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,divorced,university.degree,no,no,no,telephone,may,fri,279,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,admin.,married,high.school,no,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,housemaid,married,high.school,unknown,yes,no,telephone,may,fri,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,70,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,self-employed,single,university.degree,unknown,yes,no,telephone,may,fri,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +58,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,107,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,technician,single,professional.course,unknown,no,no,telephone,may,fri,180,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,management,married,professional.course,no,unknown,unknown,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,technician,single,high.school,no,no,yes,telephone,may,fri,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,single,university.degree,no,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,blue-collar,single,high.school,unknown,no,no,telephone,may,fri,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,229,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,management,single,university.degree,no,yes,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,management,married,university.degree,no,no,no,telephone,may,fri,32,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,married,high.school,no,no,no,telephone,may,fri,73,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,fri,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,services,married,high.school,unknown,yes,no,telephone,may,fri,26,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,fri,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,married,high.school,unknown,yes,no,telephone,may,fri,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,retired,married,basic.4y,unknown,yes,no,telephone,may,fri,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,fri,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +30,technician,married,professional.course,no,no,yes,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,admin.,single,high.school,unknown,yes,no,telephone,may,fri,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,single,basic.9y,no,no,no,telephone,may,fri,1178,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,self-employed,married,basic.9y,unknown,yes,no,telephone,may,fri,182,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,management,married,high.school,no,yes,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,housemaid,divorced,high.school,no,no,no,telephone,may,fri,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,technician,single,basic.9y,unknown,no,no,telephone,may,fri,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +57,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,divorced,basic.9y,unknown,no,no,telephone,may,fri,488,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,services,married,professional.course,unknown,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,unknown,single,basic.9y,unknown,unknown,unknown,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,services,married,high.school,no,no,no,telephone,may,fri,460,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,services,married,high.school,no,yes,no,telephone,may,fri,432,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,housemaid,single,basic.9y,unknown,yes,yes,telephone,may,fri,136,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,fri,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,married,basic.9y,no,yes,no,telephone,may,fri,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,housemaid,single,university.degree,no,yes,no,telephone,may,fri,237,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,services,married,high.school,unknown,no,yes,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,admin.,married,high.school,no,yes,no,telephone,may,fri,44,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,47,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +29,services,married,basic.9y,no,no,no,telephone,may,fri,116,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,technician,single,professional.course,no,no,no,telephone,may,fri,182,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,admin.,single,university.degree,no,yes,no,telephone,may,fri,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,high.school,no,no,no,telephone,may,fri,51,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +59,retired,married,basic.4y,unknown,no,no,telephone,may,fri,260,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,technician,single,professional.course,no,no,no,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,407,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,married,high.school,no,yes,no,telephone,may,fri,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,fri,31,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +48,admin.,married,basic.9y,no,no,yes,telephone,may,fri,145,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +44,services,divorced,high.school,unknown,yes,no,telephone,may,fri,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,878,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,self-employed,married,professional.course,no,no,no,telephone,may,fri,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,fri,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +24,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,101,6,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,management,married,high.school,no,yes,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +56,services,divorced,high.school,unknown,no,no,telephone,may,fri,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +50,technician,married,university.degree,no,yes,no,telephone,may,fri,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,blue-collar,married,high.school,no,no,no,telephone,may,fri,18,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,self-employed,single,university.degree,no,unknown,unknown,telephone,may,fri,317,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,services,single,high.school,no,unknown,unknown,telephone,may,fri,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +34,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,fri,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +27,services,single,high.school,no,no,no,telephone,may,fri,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +31,admin.,married,university.degree,unknown,no,no,telephone,may,fri,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +39,housemaid,married,basic.4y,no,yes,yes,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,entrepreneur,married,unknown,no,no,no,telephone,may,fri,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +25,student,single,high.school,no,no,no,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +33,services,married,high.school,no,yes,no,telephone,may,fri,263,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,unknown,no,no,no,telephone,may,fri,338,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,entrepreneur,single,university.degree,no,no,no,telephone,may,fri,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +46,housemaid,married,basic.9y,no,no,no,telephone,may,fri,322,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +53,admin.,divorced,high.school,no,yes,no,telephone,may,fri,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +32,unemployed,married,basic.9y,no,no,no,telephone,may,fri,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,services,divorced,basic.9y,no,yes,no,telephone,may,fri,284,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,technician,single,professional.course,no,yes,no,telephone,may,fri,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,technician,married,professional.course,no,yes,no,telephone,may,fri,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,admin.,married,basic.4y,unknown,no,no,telephone,may,fri,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +51,services,married,professional.course,unknown,no,no,telephone,may,fri,328,7,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +42,admin.,married,basic.9y,no,yes,no,telephone,may,fri,164,8,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,management,single,unknown,no,no,no,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,services,single,high.school,no,no,no,telephone,may,fri,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +38,housemaid,married,basic.6y,unknown,yes,no,telephone,may,fri,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +54,technician,married,unknown,unknown,no,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +41,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +26,blue-collar,single,high.school,no,no,no,telephone,may,fri,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,management,married,basic.4y,no,yes,no,telephone,may,fri,257,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +28,technician,single,professional.course,no,yes,no,telephone,may,fri,315,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +35,technician,divorced,professional.course,no,no,yes,telephone,may,fri,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +45,admin.,married,high.school,no,no,yes,telephone,may,fri,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,admin.,married,high.school,no,no,no,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,fri,834,9,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +52,technician,married,university.degree,no,no,no,telephone,may,fri,244,5,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,fri,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,1534,2,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,291,4,999,0,nonexistent,1.1,93.994,-36.4,4.855,5191,no +36,blue-collar,single,high.school,no,no,yes,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,149,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,professional.course,unknown,no,no,telephone,may,mon,144,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,unknown,yes,yes,telephone,may,mon,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,40,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,79,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,university.degree,unknown,no,no,telephone,may,mon,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,university.degree,no,yes,no,telephone,may,mon,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,836,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,high.school,no,yes,no,telephone,may,mon,290,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,divorced,professional.course,no,yes,no,telephone,may,mon,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,divorced,high.school,no,yes,no,telephone,may,mon,289,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,self-employed,married,university.degree,no,yes,no,telephone,may,mon,1002,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,unknown,yes,no,telephone,may,mon,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,management,married,university.degree,no,no,no,telephone,may,mon,460,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +33,unemployed,married,professional.course,unknown,yes,no,telephone,may,mon,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,entrepreneur,married,high.school,no,yes,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,single,professional.course,no,yes,no,telephone,may,mon,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,mon,98,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,unknown,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,divorced,professional.course,no,yes,no,telephone,may,mon,150,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,399,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unknown,married,unknown,unknown,no,no,telephone,may,mon,139,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,149,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,university.degree,no,no,yes,telephone,may,mon,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,university.degree,unknown,no,no,telephone,may,mon,92,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,single,high.school,no,no,no,telephone,may,mon,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,yes,no,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,self-employed,married,university.degree,no,no,no,telephone,may,mon,592,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,unknown,no,no,telephone,may,mon,105,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,yes,yes,telephone,may,mon,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,114,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,management,divorced,high.school,no,no,no,telephone,may,mon,144,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,basic.9y,no,yes,yes,telephone,may,mon,346,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,basic.6y,no,yes,no,telephone,may,mon,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,married,high.school,no,yes,no,telephone,may,mon,396,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,286,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,38,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,divorced,professional.course,unknown,yes,no,telephone,may,mon,252,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,services,married,basic.4y,unknown,yes,no,telephone,may,mon,566,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,university.degree,no,yes,no,telephone,may,mon,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,unknown,no,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,married,high.school,unknown,unknown,unknown,telephone,may,mon,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unemployed,married,high.school,unknown,no,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,mon,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,divorced,university.degree,no,yes,no,telephone,may,mon,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,divorced,high.school,no,no,no,telephone,may,mon,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,services,single,high.school,no,no,no,telephone,may,mon,757,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +49,management,divorced,high.school,unknown,yes,no,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,management,divorced,high.school,unknown,no,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,single,university.degree,no,no,no,telephone,may,mon,36,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,professional.course,no,no,no,telephone,may,mon,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,basic.6y,unknown,no,no,telephone,may,mon,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,unemployed,married,unknown,unknown,no,no,telephone,may,mon,33,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,divorced,basic.9y,unknown,yes,no,telephone,may,mon,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,high.school,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,married,university.degree,no,no,no,telephone,may,mon,405,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,management,single,university.degree,no,yes,yes,telephone,may,mon,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,325,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,student,single,high.school,unknown,no,no,telephone,may,mon,57,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,university.degree,unknown,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,unknown,no,no,telephone,may,mon,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,divorced,university.degree,no,no,no,telephone,may,mon,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,divorced,high.school,unknown,no,no,telephone,may,mon,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,professional.course,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,mon,744,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +32,blue-collar,married,professional.course,no,no,no,telephone,may,mon,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,divorced,university.degree,no,no,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,married,university.degree,no,no,no,telephone,may,mon,523,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,self-employed,married,university.degree,no,no,no,telephone,may,mon,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,high.school,no,no,no,telephone,may,mon,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,entrepreneur,married,university.degree,unknown,no,no,telephone,may,mon,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,divorced,high.school,no,no,no,telephone,may,mon,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,mon,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,single,university.degree,no,no,no,telephone,may,mon,1147,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,university.degree,no,yes,yes,telephone,may,mon,486,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,49,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,housemaid,single,university.degree,no,no,yes,telephone,may,mon,539,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,university.degree,unknown,no,no,telephone,may,mon,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,entrepreneur,married,basic.4y,no,no,no,telephone,may,mon,820,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,mon,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,divorced,high.school,no,no,no,telephone,may,mon,398,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,yes,no,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,no,no,telephone,may,mon,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,high.school,unknown,no,no,telephone,may,mon,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,95,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,services,married,high.school,no,no,no,telephone,may,mon,788,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,university.degree,no,no,no,telephone,may,mon,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,306,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,self-employed,married,university.degree,unknown,no,no,telephone,may,mon,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,unemployed,married,university.degree,no,yes,no,telephone,may,mon,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,yes,no,telephone,may,mon,832,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,entrepreneur,married,high.school,no,no,no,telephone,may,mon,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,unemployed,married,high.school,unknown,yes,yes,telephone,may,mon,283,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,professional.course,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,university.degree,no,yes,yes,telephone,may,mon,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,management,single,unknown,no,no,no,telephone,may,mon,290,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,housemaid,married,university.degree,no,no,no,telephone,may,mon,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,unknown,no,yes,yes,telephone,may,mon,1111,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +27,admin.,single,high.school,unknown,unknown,unknown,telephone,may,mon,1495,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,professional.course,no,no,no,telephone,may,mon,480,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,unknown,yes,yes,telephone,may,mon,146,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,professional.course,no,no,no,telephone,may,mon,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,entrepreneur,single,university.degree,no,yes,no,telephone,may,mon,744,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,university.degree,no,yes,no,telephone,may,mon,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,basic.9y,no,yes,no,telephone,may,mon,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,basic.9y,no,yes,no,telephone,may,mon,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,high.school,no,yes,no,telephone,may,mon,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,basic.9y,no,no,no,telephone,may,mon,493,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,student,single,university.degree,unknown,yes,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,student,single,university.degree,unknown,yes,no,telephone,may,mon,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,mon,80,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,divorced,professional.course,no,no,no,telephone,may,mon,39,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,high.school,no,yes,no,telephone,may,mon,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,may,mon,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,457,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,mon,891,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,high.school,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,high.school,unknown,no,no,telephone,may,mon,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,high.school,no,yes,yes,telephone,may,mon,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,1083,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,high.school,no,unknown,unknown,telephone,may,mon,1266,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,married,basic.9y,no,no,no,telephone,may,mon,171,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,married,basic.4y,unknown,yes,no,telephone,may,mon,160,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,156,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unemployed,married,basic.9y,unknown,no,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,basic.9y,no,no,no,telephone,may,mon,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,basic.9y,no,yes,yes,telephone,may,mon,163,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,university.degree,unknown,no,no,telephone,may,mon,268,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,793,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,basic.9y,no,no,no,telephone,may,mon,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,retired,divorced,basic.4y,no,no,no,telephone,may,mon,460,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,professional.course,no,yes,yes,telephone,may,mon,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,university.degree,no,yes,no,telephone,may,mon,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,married,basic.4y,unknown,yes,no,telephone,may,mon,574,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,256,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,divorced,university.degree,no,yes,yes,telephone,may,mon,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,divorced,university.degree,no,yes,no,telephone,may,mon,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,single,high.school,no,unknown,unknown,telephone,may,mon,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,mon,577,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,yes,no,telephone,may,mon,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,136,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,289,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,529,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,no,unknown,unknown,telephone,may,mon,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,high.school,no,yes,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,university.degree,no,yes,no,telephone,may,mon,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,mon,307,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,divorced,professional.course,no,no,no,telephone,may,mon,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,services,divorced,professional.course,no,no,no,telephone,may,mon,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,mon,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,professional.course,no,no,no,telephone,may,mon,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,mon,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,university.degree,no,no,yes,telephone,may,mon,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,high.school,no,yes,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,self-employed,married,university.degree,no,yes,yes,telephone,may,mon,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,high.school,no,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,unknown,no,no,telephone,may,mon,66,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,basic.6y,no,no,yes,telephone,may,mon,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,professional.course,unknown,no,no,telephone,may,mon,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,63,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,university.degree,no,no,no,telephone,may,mon,236,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,management,single,university.degree,no,yes,no,telephone,may,mon,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,basic.4y,no,yes,no,telephone,may,mon,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,basic.9y,unknown,no,no,telephone,may,mon,10,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,professional.course,no,no,no,telephone,may,mon,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,484,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,university.degree,unknown,no,no,telephone,may,mon,467,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,university.degree,no,yes,no,telephone,may,mon,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,single,university.degree,no,no,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,divorced,high.school,no,no,no,telephone,may,mon,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,yes,yes,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,58,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,high.school,no,unknown,unknown,telephone,may,mon,456,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,high.school,no,no,no,telephone,may,mon,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,basic.9y,unknown,yes,yes,telephone,may,mon,184,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,high.school,unknown,yes,no,telephone,may,mon,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,65,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,299,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,22,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,170,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,unknown,no,no,no,telephone,may,mon,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,mon,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,unemployed,married,basic.9y,no,unknown,unknown,telephone,may,mon,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,high.school,no,yes,yes,telephone,may,mon,197,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,unknown,yes,no,telephone,may,mon,395,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,professional.course,no,yes,no,telephone,may,mon,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,mon,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,married,university.degree,unknown,no,yes,telephone,may,mon,123,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,334,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,university.degree,unknown,yes,yes,telephone,may,mon,186,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,services,divorced,high.school,no,no,no,telephone,may,mon,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,high.school,no,no,no,telephone,may,mon,13,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,unknown,no,no,no,telephone,may,mon,51,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,unknown,no,no,telephone,may,mon,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,unknown,married,unknown,unknown,no,no,telephone,may,mon,103,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,basic.4y,unknown,no,no,telephone,may,mon,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,basic.9y,unknown,yes,no,telephone,may,mon,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,housemaid,married,basic.4y,unknown,yes,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,basic.9y,unknown,yes,no,telephone,may,mon,344,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,mon,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,249,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,university.degree,no,no,no,telephone,may,mon,24,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,unknown,unknown,telephone,may,mon,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,divorced,university.degree,unknown,yes,no,telephone,may,mon,212,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,mon,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,143,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,management,married,university.degree,no,yes,no,telephone,may,mon,274,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,152,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,high.school,no,no,no,telephone,may,mon,325,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,249,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,single,high.school,no,yes,yes,telephone,may,mon,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,mon,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,unemployed,single,professional.course,no,no,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,entrepreneur,divorced,unknown,no,yes,no,telephone,may,tue,141,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,tue,182,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,services,married,high.school,no,yes,no,telephone,may,tue,530,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,housemaid,single,university.degree,no,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,services,married,high.school,no,yes,no,telephone,may,tue,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,management,married,university.degree,no,no,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,married,professional.course,unknown,unknown,unknown,telephone,may,tue,514,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,181,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,504,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +60,technician,divorced,professional.course,unknown,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,267,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,tue,907,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,tue,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,single,professional.course,no,no,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,university.degree,no,yes,no,telephone,may,tue,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,unemployed,married,basic.4y,unknown,yes,no,telephone,may,tue,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,housemaid,married,basic.4y,unknown,no,yes,telephone,may,tue,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,single,basic.9y,no,unknown,unknown,telephone,may,tue,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,723,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,basic.9y,no,yes,no,telephone,may,tue,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,high.school,no,yes,yes,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,single,university.degree,unknown,no,no,telephone,may,tue,1346,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +53,admin.,married,high.school,no,yes,no,telephone,may,tue,520,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,611,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,unemployed,married,basic.9y,unknown,yes,no,telephone,may,tue,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,tue,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,retired,divorced,basic.4y,no,yes,no,telephone,may,tue,276,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,single,professional.course,unknown,no,no,telephone,may,tue,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,management,single,university.degree,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,divorced,university.degree,no,no,no,telephone,may,tue,382,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,housemaid,married,basic.4y,no,no,no,telephone,may,tue,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,married,high.school,no,yes,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,unknown,married,university.degree,no,no,yes,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,self-employed,married,university.degree,no,yes,no,telephone,may,tue,50,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,single,university.degree,no,no,yes,telephone,may,tue,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,unknown,married,basic.4y,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,university.degree,no,yes,no,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,management,single,university.degree,no,no,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,unemployed,married,basic.9y,unknown,no,no,telephone,may,tue,1386,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,admin.,married,high.school,unknown,no,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,428,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,entrepreneur,married,professional.course,no,yes,no,telephone,may,tue,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,single,high.school,unknown,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,500,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,divorced,high.school,no,no,no,telephone,may,tue,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,management,married,basic.4y,no,yes,yes,telephone,may,tue,568,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +22,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,may,tue,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,technician,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,no,no,no,telephone,may,tue,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,professional.course,no,no,no,telephone,may,tue,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,university.degree,no,yes,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,3366,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,divorced,professional.course,no,no,no,telephone,may,tue,259,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,management,married,basic.9y,no,yes,no,telephone,may,tue,1000,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +35,admin.,single,high.school,no,yes,yes,telephone,may,tue,618,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,single,university.degree,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,single,university.degree,no,no,no,telephone,may,tue,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,housemaid,married,high.school,unknown,yes,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,services,single,high.school,no,no,yes,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,divorced,high.school,no,no,yes,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,married,professional.course,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,blue-collar,single,high.school,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,unknown,no,unknown,unknown,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,unknown,no,unknown,unknown,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,tue,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,2231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +40,technician,divorced,university.degree,no,yes,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,tue,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,227,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,married,professional.course,no,yes,no,telephone,may,tue,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,technician,married,high.school,no,no,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,single,basic.9y,no,yes,yes,telephone,may,tue,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,single,high.school,no,no,no,telephone,may,tue,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,tue,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,basic.9y,no,no,no,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,married,basic.6y,no,yes,no,telephone,may,tue,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,unknown,yes,yes,telephone,may,tue,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,unknown,single,university.degree,no,no,no,telephone,may,tue,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,technician,married,high.school,no,no,no,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,tue,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,services,divorced,basic.9y,no,yes,no,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,technician,married,high.school,no,no,yes,telephone,may,tue,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,university.degree,unknown,no,no,telephone,may,tue,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,technician,married,professional.course,unknown,yes,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,self-employed,married,university.degree,no,yes,yes,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,university.degree,unknown,no,no,telephone,may,tue,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,married,professional.course,no,yes,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,admin.,married,university.degree,no,yes,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,no,yes,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,basic.9y,unknown,yes,no,telephone,may,tue,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,technician,single,university.degree,no,yes,no,telephone,may,tue,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,divorced,university.degree,no,no,yes,telephone,may,tue,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,tue,1167,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,unknown,married,basic.6y,unknown,no,no,telephone,may,tue,39,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,divorced,high.school,no,no,no,telephone,may,tue,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,self-employed,single,university.degree,no,no,no,telephone,may,tue,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,no,yes,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,single,basic.9y,unknown,no,yes,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,single,basic.9y,unknown,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,high.school,no,yes,no,telephone,may,tue,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,services,married,unknown,unknown,no,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,unknown,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,services,married,unknown,unknown,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,technician,married,professional.course,unknown,no,no,telephone,may,tue,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,single,unknown,no,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,high.school,no,no,yes,telephone,may,tue,174,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,self-employed,single,professional.course,unknown,yes,yes,telephone,may,tue,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,single,professional.course,no,yes,no,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,technician,married,professional.course,no,no,yes,telephone,may,tue,334,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,609,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,married,university.degree,unknown,no,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,married,university.degree,unknown,no,no,telephone,may,tue,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,no,no,no,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,technician,married,professional.course,unknown,no,no,telephone,may,tue,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,services,divorced,professional.course,unknown,no,no,telephone,may,tue,806,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,admin.,divorced,unknown,unknown,yes,yes,telephone,may,tue,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,unknown,no,no,telephone,may,tue,21,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,334,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,university.degree,no,yes,yes,telephone,may,tue,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,married,professional.course,no,no,no,telephone,may,tue,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,single,university.degree,no,no,yes,telephone,may,tue,766,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,services,married,high.school,unknown,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,255,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,university.degree,no,no,no,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,services,married,high.school,unknown,yes,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,high.school,no,no,no,telephone,may,tue,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,university.degree,unknown,yes,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,admin.,married,unknown,unknown,yes,no,telephone,may,tue,705,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,services,married,unknown,no,no,no,telephone,may,tue,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,retired,married,basic.4y,unknown,no,no,telephone,may,tue,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,married,high.school,unknown,yes,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,single,high.school,no,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,no,yes,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,university.degree,no,no,no,telephone,may,tue,1015,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +45,technician,married,university.degree,unknown,yes,no,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,tue,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,married,university.degree,no,yes,no,telephone,may,tue,683,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +36,blue-collar,married,high.school,no,no,yes,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,married,high.school,no,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,single,basic.6y,no,no,no,telephone,may,tue,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +46,housemaid,married,basic.4y,no,no,yes,telephone,may,tue,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,high.school,unknown,no,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,retired,single,professional.course,unknown,yes,no,telephone,may,tue,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,retired,married,basic.4y,unknown,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,management,married,university.degree,unknown,no,no,telephone,may,tue,730,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,services,married,unknown,unknown,no,no,telephone,may,tue,521,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,unemployed,single,university.degree,no,no,no,telephone,may,tue,349,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,retired,married,university.degree,no,yes,no,telephone,may,tue,768,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,management,married,university.degree,unknown,yes,no,telephone,may,tue,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,divorced,high.school,no,no,no,telephone,may,tue,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,retired,married,basic.6y,unknown,no,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,married,basic.6y,unknown,no,no,telephone,may,tue,1001,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +38,technician,married,professional.course,no,yes,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,self-employed,married,professional.course,no,yes,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,self-employed,divorced,basic.9y,no,yes,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,admin.,single,university.degree,no,yes,yes,telephone,may,tue,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,technician,married,university.degree,no,yes,yes,telephone,may,tue,845,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +34,management,divorced,university.degree,no,yes,no,telephone,may,tue,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,technician,single,professional.course,no,no,no,telephone,may,tue,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,single,unknown,no,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,853,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,professional.course,unknown,no,yes,telephone,may,tue,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,admin.,divorced,basic.9y,unknown,no,no,telephone,may,tue,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,university.degree,no,unknown,unknown,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,813,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,retired,married,university.degree,unknown,unknown,unknown,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,divorced,basic.9y,no,no,no,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,self-employed,married,professional.course,no,no,no,telephone,may,tue,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,unknown,married,basic.4y,no,no,yes,telephone,may,tue,295,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,married,university.degree,no,no,no,telephone,may,tue,916,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,basic.6y,no,no,no,telephone,may,tue,60,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,student,single,university.degree,unknown,no,no,telephone,may,tue,443,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,divorced,high.school,no,no,no,telephone,may,tue,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,high.school,no,yes,no,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,tue,753,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +35,technician,married,professional.course,no,no,no,telephone,may,tue,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,708,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,divorced,basic.9y,unknown,yes,yes,telephone,may,tue,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,255,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,434,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,admin.,single,university.degree,no,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,basic.6y,no,no,no,telephone,may,tue,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,management,married,basic.4y,unknown,yes,no,telephone,may,tue,805,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,admin.,married,high.school,no,no,no,telephone,may,tue,242,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,19,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,housemaid,married,university.degree,no,no,no,telephone,may,tue,93,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,management,single,university.degree,no,yes,no,telephone,may,tue,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,divorced,high.school,no,no,no,telephone,may,tue,31,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,management,married,unknown,unknown,yes,no,telephone,may,tue,213,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,high.school,no,yes,no,telephone,may,tue,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,342,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,admin.,married,university.degree,no,no,no,telephone,may,tue,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,management,single,university.degree,no,yes,yes,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,divorced,professional.course,unknown,yes,no,telephone,may,tue,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,married,high.school,unknown,yes,no,telephone,may,tue,514,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,self-employed,married,professional.course,no,yes,no,telephone,may,tue,276,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,176,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,housemaid,divorced,unknown,no,no,no,telephone,may,tue,20,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,services,married,high.school,no,yes,no,telephone,may,tue,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,housemaid,single,unknown,no,yes,no,telephone,may,tue,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,services,married,unknown,unknown,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,married,university.degree,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,married,university.degree,no,yes,no,telephone,may,tue,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,married,basic.4y,unknown,no,no,telephone,may,tue,188,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,no,no,no,telephone,may,tue,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,divorced,basic.9y,no,unknown,unknown,telephone,may,tue,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,unknown,divorced,basic.4y,unknown,no,no,telephone,may,tue,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,high.school,unknown,no,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,services,single,high.school,no,yes,no,telephone,may,tue,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,professional.course,no,yes,no,telephone,may,tue,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,tue,54,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,married,basic.9y,no,yes,no,telephone,may,tue,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,technician,married,basic.9y,no,yes,no,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,professional.course,no,no,yes,telephone,may,tue,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,technician,married,basic.9y,no,no,no,telephone,may,tue,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,management,married,university.degree,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,single,unknown,no,no,no,telephone,may,tue,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,married,basic.9y,no,yes,yes,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,technician,single,professional.course,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,tue,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,basic.6y,no,yes,no,telephone,may,tue,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,3,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,professional.course,unknown,unknown,unknown,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,no,no,no,telephone,may,tue,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,married,basic.9y,no,yes,no,telephone,may,tue,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,unknown,yes,no,telephone,may,tue,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,high.school,unknown,yes,no,telephone,may,tue,354,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,services,married,high.school,unknown,no,no,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,367,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,retired,married,basic.4y,unknown,yes,yes,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,tue,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,high.school,unknown,no,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,768,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,unemployed,married,basic.9y,unknown,no,yes,telephone,may,tue,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,no,yes,yes,telephone,may,tue,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,single,university.degree,no,yes,yes,telephone,may,tue,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,married,basic.9y,unknown,yes,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,basic.9y,unknown,no,yes,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,divorced,high.school,no,unknown,unknown,telephone,may,tue,299,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,unknown,married,unknown,no,no,no,telephone,may,tue,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,housemaid,married,high.school,no,no,no,telephone,may,tue,141,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,services,married,high.school,no,yes,no,telephone,may,tue,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,tue,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,retired,married,high.school,unknown,no,no,telephone,may,tue,119,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,married,high.school,unknown,yes,no,telephone,may,tue,101,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,management,married,university.degree,no,no,no,telephone,may,tue,129,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,481,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,tue,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,entrepreneur,married,basic.9y,no,yes,no,telephone,may,tue,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,tue,411,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,management,married,university.degree,no,no,no,telephone,may,tue,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,single,high.school,no,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,divorced,high.school,no,no,no,telephone,may,tue,531,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,married,professional.course,no,no,no,telephone,may,tue,34,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,788,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,unknown,no,no,yes,telephone,may,tue,431,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,management,married,university.degree,no,no,no,telephone,may,tue,851,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,tue,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,single,high.school,no,no,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,tue,92,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,single,unknown,unknown,no,no,telephone,may,tue,181,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,services,married,high.school,no,no,no,telephone,may,tue,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,technician,married,professional.course,no,no,no,telephone,may,tue,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,tue,1052,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,services,married,high.school,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,tue,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,admin.,married,basic.6y,no,yes,no,telephone,may,tue,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,single,high.school,no,no,no,telephone,may,tue,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,tue,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,tue,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,retired,divorced,basic.4y,no,yes,no,telephone,may,tue,584,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,management,single,university.degree,no,yes,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,entrepreneur,single,basic.9y,no,no,no,telephone,may,tue,185,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,technician,single,high.school,no,no,no,telephone,may,tue,151,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,high.school,unknown,no,yes,telephone,may,tue,69,11,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,professional.course,unknown,yes,no,telephone,may,tue,15,11,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,437,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,self-employed,married,professional.course,unknown,yes,yes,telephone,may,tue,139,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,tue,259,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,single,university.degree,unknown,yes,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,services,married,high.school,unknown,yes,no,telephone,may,tue,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,management,divorced,university.degree,no,no,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,retired,married,high.school,unknown,yes,no,telephone,may,tue,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,married,high.school,no,no,no,telephone,may,tue,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,tue,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,tue,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,unknown,no,yes,no,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,unknown,yes,no,telephone,may,tue,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,379,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,services,married,high.school,no,no,yes,telephone,may,tue,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,married,professional.course,unknown,no,no,telephone,may,tue,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,high.school,no,no,no,telephone,may,tue,64,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,university.degree,no,yes,yes,telephone,may,tue,232,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,647,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,basic.9y,no,yes,no,telephone,may,tue,322,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,high.school,no,no,no,telephone,may,tue,337,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,133,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,entrepreneur,married,professional.course,no,no,no,telephone,may,tue,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,771,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,single,unknown,no,yes,no,telephone,may,tue,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,single,university.degree,no,yes,no,telephone,may,tue,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,basic.9y,unknown,no,no,telephone,may,tue,109,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,single,high.school,no,no,no,telephone,may,tue,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,single,professional.course,unknown,unknown,unknown,telephone,may,tue,271,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,single,basic.4y,no,yes,yes,telephone,may,tue,1093,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,services,divorced,high.school,no,no,no,telephone,may,tue,326,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,tue,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,single,high.school,unknown,no,no,telephone,may,tue,264,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,high.school,no,no,no,telephone,may,tue,1106,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,single,basic.9y,no,unknown,unknown,telephone,may,tue,195,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,technician,single,unknown,no,unknown,unknown,telephone,may,tue,69,19,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,married,high.school,no,no,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,retired,married,basic.9y,no,yes,no,telephone,may,tue,87,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,122,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,married,basic.9y,no,no,no,telephone,may,tue,945,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +52,management,married,basic.4y,unknown,yes,no,telephone,may,tue,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,unknown,no,no,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,816,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,entrepreneur,married,basic.6y,no,yes,no,telephone,may,tue,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +23,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,116,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,single,university.degree,no,yes,no,telephone,may,tue,72,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,high.school,no,no,no,telephone,may,tue,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,services,single,high.school,no,no,yes,telephone,may,tue,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,married,high.school,no,yes,no,telephone,may,tue,190,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,1721,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +27,technician,single,high.school,unknown,no,yes,telephone,may,tue,351,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,tue,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,divorced,high.school,no,yes,yes,telephone,may,tue,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,tue,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,tue,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,384,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,tue,1032,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,unknown,no,no,no,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,technician,single,professional.course,no,yes,yes,telephone,may,wed,65,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,194,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,married,university.degree,no,no,no,telephone,may,wed,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,96,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,20,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,323,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,management,married,basic.6y,unknown,no,no,telephone,may,wed,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,management,married,university.degree,no,yes,no,telephone,may,wed,735,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,high.school,no,no,no,telephone,may,wed,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,technician,married,high.school,no,yes,yes,telephone,may,wed,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,management,married,university.degree,no,unknown,unknown,telephone,may,wed,407,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,management,divorced,basic.9y,unknown,no,no,telephone,may,wed,174,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,management,divorced,university.degree,unknown,no,no,telephone,may,wed,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,student,single,high.school,unknown,yes,no,telephone,may,wed,313,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,single,high.school,no,unknown,unknown,telephone,may,wed,137,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,self-employed,married,unknown,unknown,no,no,telephone,may,wed,22,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,wed,328,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,unknown,married,university.degree,no,no,no,telephone,may,wed,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,unemployed,married,professional.course,unknown,yes,no,telephone,may,wed,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,455,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,management,married,university.degree,no,no,yes,telephone,may,wed,103,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,services,married,unknown,no,no,no,telephone,may,wed,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,management,married,unknown,no,yes,yes,telephone,may,wed,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,admin.,married,basic.9y,unknown,yes,yes,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,admin.,married,high.school,no,yes,no,telephone,may,wed,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,admin.,married,basic.4y,unknown,yes,no,telephone,may,wed,942,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +31,admin.,single,university.degree,no,no,no,telephone,may,wed,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,unknown,no,yes,no,telephone,may,wed,108,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,services,divorced,high.school,unknown,yes,no,telephone,may,wed,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,305,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,unemployed,married,university.degree,no,yes,no,telephone,may,wed,387,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,admin.,married,high.school,unknown,yes,no,telephone,may,wed,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,married,university.degree,no,yes,yes,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,management,married,unknown,unknown,yes,no,telephone,may,wed,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +58,housemaid,married,university.degree,unknown,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,single,university.degree,unknown,no,no,telephone,may,wed,117,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,381,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,single,university.degree,no,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,476,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +53,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,wed,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,services,married,high.school,no,no,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,entrepreneur,married,high.school,no,no,no,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,married,basic.6y,unknown,yes,yes,telephone,may,wed,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,technician,single,professional.course,no,no,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,unknown,unknown,no,yes,telephone,may,wed,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,606,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,management,divorced,high.school,unknown,no,no,telephone,may,wed,82,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,single,university.degree,no,no,no,telephone,may,wed,451,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,technician,married,university.degree,unknown,no,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,married,high.school,no,yes,no,telephone,may,wed,832,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +29,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,admin.,single,high.school,no,yes,yes,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,technician,married,professional.course,unknown,no,no,telephone,may,wed,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,283,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,421,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,high.school,unknown,no,no,telephone,may,wed,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,unknown,married,unknown,unknown,unknown,unknown,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,management,married,basic.4y,unknown,no,no,telephone,may,wed,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,138,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,management,married,university.degree,no,no,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,unemployed,divorced,basic.9y,no,yes,no,telephone,may,wed,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,blue-collar,divorced,professional.course,no,no,no,telephone,may,wed,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,management,married,high.school,no,no,no,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,824,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,university.degree,no,no,yes,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,488,12,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,self-employed,single,university.degree,no,yes,no,telephone,may,wed,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,single,professional.course,unknown,unknown,unknown,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,services,married,high.school,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,452,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,services,married,high.school,no,yes,no,telephone,may,wed,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,services,married,high.school,no,yes,no,telephone,may,wed,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,housemaid,married,basic.9y,unknown,yes,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,admin.,single,high.school,no,yes,no,telephone,may,wed,1328,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +50,admin.,married,university.degree,no,yes,no,telephone,may,wed,686,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,services,married,high.school,unknown,yes,no,telephone,may,wed,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,management,married,university.degree,unknown,yes,no,telephone,may,wed,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,married,high.school,no,yes,no,telephone,may,wed,300,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,retired,married,university.degree,unknown,no,no,telephone,may,wed,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,housemaid,married,high.school,no,no,no,telephone,may,wed,534,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,unemployed,single,university.degree,no,no,yes,telephone,may,wed,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,services,single,basic.6y,unknown,yes,no,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,services,married,high.school,unknown,yes,no,telephone,may,wed,127,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,1125,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +36,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,technician,single,unknown,unknown,no,no,telephone,may,wed,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,single,high.school,unknown,yes,yes,telephone,may,wed,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,management,married,university.degree,unknown,no,no,telephone,may,wed,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,housemaid,divorced,basic.6y,unknown,yes,no,telephone,may,wed,477,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,management,married,professional.course,no,yes,no,telephone,may,wed,456,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,unemployed,divorced,basic.9y,no,no,no,telephone,may,wed,1321,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,unknown,married,high.school,unknown,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,services,married,high.school,no,no,no,telephone,may,wed,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,admin.,married,high.school,no,no,yes,telephone,may,wed,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,services,single,high.school,no,yes,no,telephone,may,wed,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,admin.,divorced,basic.9y,no,yes,no,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,wed,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,no,yes,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,high.school,no,no,no,telephone,may,wed,858,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,entrepreneur,married,university.degree,no,yes,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,student,married,university.degree,no,yes,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +42,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,wed,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,divorced,professional.course,no,no,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,unemployed,married,professional.course,no,no,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,retired,married,basic.9y,no,no,no,telephone,may,wed,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,admin.,divorced,basic.9y,no,yes,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,high.school,unknown,unknown,unknown,telephone,may,wed,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,services,married,high.school,unknown,no,no,telephone,may,wed,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,management,divorced,university.degree,no,unknown,unknown,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,married,high.school,unknown,unknown,unknown,telephone,may,wed,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,management,married,university.degree,no,yes,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,services,single,high.school,no,no,no,telephone,may,wed,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,married,basic.9y,no,yes,no,telephone,may,wed,117,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,wed,546,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,married,basic.9y,no,no,no,telephone,may,wed,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,services,married,high.school,no,no,no,telephone,may,wed,429,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,basic.4y,no,yes,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,technician,married,professional.course,no,no,no,telephone,may,wed,568,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,services,married,professional.course,no,yes,no,telephone,may,wed,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,divorced,high.school,no,no,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,housemaid,married,basic.6y,no,no,no,telephone,may,wed,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,housemaid,married,basic.6y,no,no,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,technician,divorced,professional.course,no,no,no,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,admin.,single,high.school,no,no,no,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,divorced,high.school,no,no,no,telephone,may,wed,869,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,unemployed,divorced,high.school,no,yes,no,telephone,may,wed,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,34,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,wed,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,28,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,management,married,basic.4y,no,no,no,telephone,may,wed,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,technician,single,professional.course,no,no,no,telephone,may,wed,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,university.degree,no,yes,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,single,high.school,no,no,no,telephone,may,wed,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,admin.,married,university.degree,no,no,no,telephone,may,wed,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,unemployed,married,university.degree,no,no,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,833,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,technician,married,professional.course,unknown,yes,no,telephone,may,wed,485,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,unknown,married,basic.9y,no,no,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,wed,849,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,married,professional.course,no,yes,yes,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,married,high.school,no,no,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,admin.,married,high.school,unknown,no,no,telephone,may,wed,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,829,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,749,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,high.school,no,yes,yes,telephone,may,wed,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,high.school,no,no,no,telephone,may,wed,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,technician,divorced,professional.course,unknown,unknown,unknown,telephone,may,wed,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,wed,438,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,admin.,single,high.school,no,no,no,telephone,may,wed,387,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,wed,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,413,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,entrepreneur,married,basic.4y,no,no,no,telephone,may,wed,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,management,married,unknown,no,no,no,telephone,may,wed,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,high.school,no,no,no,telephone,may,wed,1028,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +43,unknown,married,university.degree,no,no,no,telephone,may,wed,566,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,services,married,high.school,no,no,no,telephone,may,wed,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,services,married,high.school,no,yes,no,telephone,may,wed,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,services,married,high.school,unknown,yes,no,telephone,may,wed,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,student,single,high.school,unknown,no,no,telephone,may,wed,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,management,married,university.degree,unknown,yes,no,telephone,may,wed,136,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,admin.,married,university.degree,no,yes,no,telephone,may,wed,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,divorced,high.school,no,yes,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,university.degree,no,no,no,telephone,may,wed,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,wed,784,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,wed,93,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,admin.,married,university.degree,no,no,no,telephone,may,wed,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,wed,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,married,basic.9y,no,yes,no,telephone,may,wed,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,admin.,single,high.school,no,yes,no,telephone,may,wed,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,university.degree,no,no,no,telephone,may,wed,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,21,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,married,professional.course,unknown,yes,no,telephone,may,wed,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,single,unknown,no,yes,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,wed,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,management,married,university.degree,no,no,no,telephone,may,wed,350,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,services,married,basic.9y,unknown,no,no,telephone,may,wed,44,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,single,university.degree,no,no,no,telephone,may,wed,337,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,divorced,high.school,no,yes,no,telephone,may,wed,416,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,married,basic.9y,no,no,no,telephone,may,wed,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,unknown,married,basic.9y,no,no,yes,telephone,may,wed,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,services,single,high.school,no,yes,no,telephone,may,wed,977,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,self-employed,single,basic.6y,unknown,no,yes,telephone,may,wed,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,technician,divorced,professional.course,no,yes,no,telephone,may,wed,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,251,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,management,married,high.school,unknown,yes,no,telephone,may,wed,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,married,professional.course,no,no,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,services,married,high.school,unknown,no,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,technician,married,professional.course,no,yes,no,telephone,may,wed,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,22,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,wed,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,married,basic.6y,no,no,no,telephone,may,wed,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,single,high.school,no,no,no,telephone,may,wed,380,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,university.degree,no,yes,no,telephone,may,wed,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,927,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +26,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,management,married,university.degree,no,yes,yes,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,management,married,university.degree,no,no,no,telephone,may,wed,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,services,married,high.school,unknown,no,no,telephone,may,wed,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,management,married,university.degree,no,yes,no,telephone,may,wed,8,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,management,married,university.degree,no,no,no,telephone,may,wed,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,unknown,unknown,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,student,single,university.degree,no,yes,no,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,wed,762,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,technician,married,professional.course,no,no,no,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,single,basic.9y,no,yes,yes,telephone,may,wed,411,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +58,admin.,divorced,university.degree,no,no,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,entrepreneur,married,high.school,no,no,no,telephone,may,wed,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,housemaid,married,basic.9y,unknown,no,no,telephone,may,wed,673,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,220,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,services,married,high.school,no,no,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,wed,106,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,unemployed,single,university.degree,no,no,no,telephone,may,wed,115,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,married,high.school,unknown,no,no,telephone,may,wed,485,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,student,single,university.degree,no,yes,no,telephone,may,wed,274,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,services,married,high.school,no,no,no,telephone,may,wed,106,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +23,services,single,high.school,no,no,no,telephone,may,wed,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,high.school,no,yes,yes,telephone,may,wed,1044,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +23,services,single,high.school,no,no,no,telephone,may,wed,354,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,wed,180,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +60,housemaid,married,high.school,no,unknown,unknown,telephone,may,wed,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,entrepreneur,single,high.school,no,no,no,telephone,may,wed,331,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,admin.,married,university.degree,no,no,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,no,no,no,telephone,may,wed,74,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,267,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,single,university.degree,no,yes,yes,telephone,may,wed,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,self-employed,single,professional.course,unknown,yes,no,telephone,may,wed,77,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,married,university.degree,unknown,no,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,entrepreneur,married,basic.9y,no,no,no,telephone,may,wed,668,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,divorced,high.school,no,yes,no,telephone,may,wed,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,286,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,242,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,technician,married,professional.course,unknown,no,no,telephone,may,wed,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,technician,single,professional.course,no,yes,no,telephone,may,wed,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,technician,divorced,professional.course,no,no,no,telephone,may,wed,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,technician,married,professional.course,unknown,no,no,telephone,may,wed,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,183,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,high.school,no,no,no,telephone,may,wed,726,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,514,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,382,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,wed,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,technician,married,professional.course,unknown,no,no,telephone,may,wed,301,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,admin.,single,basic.9y,no,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,technician,single,basic.9y,no,no,no,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +60,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,admin.,married,high.school,no,no,yes,telephone,may,wed,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,technician,married,university.degree,no,no,no,telephone,may,wed,326,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,183,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,blue-collar,single,basic.6y,no,yes,no,telephone,may,wed,634,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,services,divorced,high.school,no,no,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,high.school,unknown,yes,no,telephone,may,wed,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,unknown,yes,no,telephone,may,wed,312,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,married,high.school,no,no,no,telephone,may,wed,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,retired,married,professional.course,unknown,yes,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,married,university.degree,unknown,yes,no,telephone,may,wed,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,services,married,high.school,no,no,no,telephone,may,wed,17,18,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,wed,546,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,554,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,entrepreneur,married,high.school,unknown,no,no,telephone,may,wed,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,services,divorced,high.school,unknown,no,no,telephone,may,wed,349,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,services,married,high.school,no,yes,yes,telephone,may,wed,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,services,single,high.school,unknown,yes,no,telephone,may,wed,902,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,unemployed,single,basic.9y,no,no,no,telephone,may,wed,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,admin.,single,university.degree,no,yes,yes,telephone,may,wed,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,wed,554,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,21,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,wed,246,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,yes,yes,telephone,may,wed,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.4y,no,yes,yes,telephone,may,wed,97,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,wed,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,self-employed,married,professional.course,unknown,no,no,telephone,may,wed,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,student,single,high.school,no,no,no,telephone,may,wed,852,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,wed,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,married,unknown,no,no,no,telephone,may,wed,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,retired,divorced,high.school,no,unknown,unknown,telephone,may,wed,574,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,wed,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,student,single,unknown,unknown,no,no,telephone,may,wed,166,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,high.school,no,yes,yes,telephone,may,wed,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,self-employed,married,basic.4y,unknown,no,yes,telephone,may,wed,91,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,admin.,married,high.school,no,yes,no,telephone,may,wed,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,high.school,no,no,no,telephone,may,wed,594,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,management,married,university.degree,no,no,no,telephone,may,wed,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,divorced,unknown,no,no,no,telephone,may,wed,302,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,wed,303,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,services,married,high.school,no,no,no,telephone,may,wed,636,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,341,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,single,high.school,no,no,no,telephone,may,wed,483,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,married,high.school,no,yes,yes,telephone,may,wed,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,738,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,married,basic.6y,no,yes,yes,telephone,may,wed,482,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,technician,single,high.school,no,yes,no,telephone,may,wed,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,services,divorced,high.school,no,yes,no,telephone,may,wed,370,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,student,married,university.degree,no,no,no,telephone,may,wed,225,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,housemaid,married,university.degree,unknown,no,no,telephone,may,wed,567,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,single,basic.4y,unknown,no,yes,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,582,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,self-employed,single,university.degree,no,no,yes,telephone,may,wed,270,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,management,married,high.school,no,no,no,telephone,may,wed,52,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,married,unknown,no,yes,no,telephone,may,wed,260,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,wed,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,technician,married,university.degree,no,yes,no,telephone,may,wed,1118,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,76,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,admin.,married,high.school,no,yes,no,telephone,may,wed,79,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,unknown,no,no,no,telephone,may,wed,837,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,retired,married,professional.course,unknown,no,no,telephone,may,wed,208,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,management,married,university.degree,unknown,no,yes,telephone,may,wed,245,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,technician,married,professional.course,unknown,no,yes,telephone,may,wed,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,wed,1423,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,271,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,married,high.school,no,no,yes,telephone,may,wed,166,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +58,retired,married,basic.9y,no,no,no,telephone,may,wed,256,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,entrepreneur,married,high.school,unknown,no,yes,telephone,may,wed,173,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,367,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,227,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,university.degree,no,no,no,telephone,may,wed,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,wed,856,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +60,retired,married,high.school,no,no,no,telephone,may,wed,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,technician,divorced,basic.9y,no,no,yes,telephone,may,wed,143,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,services,married,high.school,no,yes,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,admin.,married,university.degree,no,yes,yes,telephone,may,wed,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,high.school,unknown,yes,no,telephone,may,wed,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,323,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,married,university.degree,no,yes,no,telephone,may,wed,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,services,single,high.school,unknown,no,no,telephone,may,wed,364,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,unemployed,single,university.degree,no,no,yes,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,university.degree,no,yes,yes,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,technician,married,professional.course,unknown,no,no,telephone,may,wed,806,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,self-employed,single,university.degree,no,yes,no,telephone,may,wed,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,retired,divorced,professional.course,unknown,yes,yes,telephone,may,wed,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,technician,married,professional.course,no,yes,no,telephone,may,wed,747,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,services,divorced,basic.4y,unknown,yes,no,telephone,may,thu,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,management,married,university.degree,no,no,no,telephone,may,thu,319,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,unknown,no,yes,no,telephone,may,thu,170,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,services,divorced,high.school,unknown,no,no,telephone,may,thu,311,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,thu,362,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,services,married,high.school,no,no,no,telephone,may,thu,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,married,basic.6y,no,no,no,telephone,may,thu,1013,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,unknown,no,yes,no,telephone,may,thu,76,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,divorced,high.school,unknown,no,no,telephone,may,thu,155,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,single,university.degree,no,yes,no,telephone,may,thu,468,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,basic.6y,no,yes,no,telephone,may,thu,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,high.school,no,no,yes,telephone,may,thu,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,housemaid,married,basic.4y,no,no,no,telephone,may,thu,646,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +58,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,admin.,married,basic.9y,unknown,no,no,telephone,may,thu,517,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,management,married,basic.6y,unknown,yes,no,telephone,may,thu,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,single,university.degree,unknown,no,no,telephone,may,thu,391,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,thu,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,236,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +60,unknown,married,university.degree,no,no,yes,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,services,married,professional.course,unknown,no,no,telephone,may,thu,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,technician,married,university.degree,no,no,no,telephone,may,thu,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,divorced,basic.9y,unknown,no,no,telephone,may,thu,312,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,divorced,professional.course,no,yes,no,telephone,may,thu,366,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,married,university.degree,no,yes,no,telephone,may,thu,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,unemployed,married,high.school,no,no,yes,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,12,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,divorced,high.school,no,yes,no,telephone,may,thu,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,technician,divorced,basic.9y,no,no,no,telephone,may,thu,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,technician,divorced,basic.9y,no,no,no,telephone,may,thu,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,management,divorced,university.degree,no,no,no,telephone,may,thu,415,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,married,basic.9y,no,no,no,telephone,may,thu,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +26,technician,married,professional.course,no,no,no,telephone,may,thu,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,services,married,basic.9y,unknown,unknown,unknown,telephone,may,thu,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,single,unknown,no,no,no,telephone,may,thu,735,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,services,married,high.school,no,yes,no,telephone,may,thu,183,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,admin.,single,high.school,unknown,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,thu,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,single,professional.course,no,yes,yes,telephone,may,thu,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,housemaid,married,basic.4y,no,no,no,telephone,may,thu,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,unknown,married,high.school,unknown,yes,yes,telephone,may,thu,367,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,325,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,entrepreneur,single,basic.9y,no,no,no,telephone,may,thu,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,552,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,single,professional.course,unknown,yes,no,telephone,may,thu,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,divorced,professional.course,no,yes,no,telephone,may,thu,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,unemployed,divorced,high.school,unknown,yes,yes,telephone,may,thu,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,housemaid,married,basic.6y,unknown,no,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,single,unknown,no,no,no,telephone,may,thu,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,services,married,high.school,no,no,no,telephone,may,thu,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,single,high.school,no,yes,no,telephone,may,thu,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,thu,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,644,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,technician,married,professional.course,unknown,yes,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,services,divorced,basic.6y,unknown,yes,no,telephone,may,thu,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,technician,married,professional.course,no,yes,no,telephone,may,thu,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,divorced,basic.6y,no,yes,no,telephone,may,thu,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,married,high.school,no,yes,no,telephone,may,thu,558,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,1088,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,thu,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,thu,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,thu,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,blue-collar,married,high.school,unknown,yes,no,telephone,may,thu,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,housemaid,married,basic.4y,no,yes,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,34,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,technician,married,professional.course,no,yes,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,thu,504,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,services,single,high.school,unknown,no,no,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,unknown,married,high.school,unknown,no,no,telephone,may,thu,303,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,divorced,high.school,no,yes,no,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,technician,single,university.degree,unknown,yes,no,telephone,may,thu,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,single,university.degree,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,divorced,unknown,no,no,yes,telephone,may,thu,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,retired,unknown,basic.4y,no,yes,no,telephone,may,thu,171,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,management,married,unknown,unknown,no,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,unknown,married,unknown,unknown,yes,no,telephone,may,thu,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,admin.,married,high.school,no,no,no,telephone,may,thu,326,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,divorced,unknown,no,yes,no,telephone,may,thu,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,technician,married,basic.9y,no,yes,no,telephone,may,thu,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,retired,divorced,basic.4y,no,no,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,services,divorced,basic.6y,no,yes,no,telephone,may,thu,1074,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +56,technician,married,professional.course,unknown,no,no,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,management,married,high.school,no,no,no,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,1036,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,thu,303,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,self-employed,married,professional.course,no,yes,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,self-employed,married,university.degree,unknown,yes,no,telephone,may,thu,750,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,high.school,no,yes,no,telephone,may,thu,695,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +49,technician,married,high.school,no,yes,no,telephone,may,thu,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,technician,married,basic.9y,no,yes,no,telephone,may,thu,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,thu,168,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,single,high.school,no,unknown,unknown,telephone,may,thu,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,married,basic.6y,no,yes,yes,telephone,may,thu,1000,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,599,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,thu,30,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,entrepreneur,married,basic.9y,no,no,yes,telephone,may,thu,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,married,university.degree,no,yes,no,telephone,may,thu,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,entrepreneur,divorced,university.degree,no,no,no,telephone,may,thu,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,services,married,basic.9y,no,yes,yes,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,admin.,married,university.degree,no,unknown,unknown,telephone,may,thu,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,services,single,high.school,unknown,no,yes,telephone,may,thu,1257,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +48,admin.,married,high.school,no,no,yes,telephone,may,thu,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,high.school,no,yes,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,no,no,yes,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,housemaid,single,university.degree,no,no,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,admin.,married,high.school,no,no,no,telephone,may,thu,290,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,services,married,basic.6y,unknown,yes,no,telephone,may,thu,1165,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,self-employed,married,university.degree,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,services,married,high.school,no,no,no,telephone,may,thu,295,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,651,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +45,admin.,married,basic.6y,unknown,yes,no,telephone,may,thu,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,technician,married,professional.course,no,no,no,telephone,may,thu,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,single,high.school,no,yes,no,telephone,may,thu,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,self-employed,married,basic.6y,unknown,no,no,telephone,may,thu,734,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +36,services,married,high.school,unknown,no,no,telephone,may,thu,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,unemployed,divorced,high.school,no,no,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,417,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,thu,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,married,high.school,unknown,no,no,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,management,married,university.degree,no,no,no,telephone,may,thu,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,admin.,married,basic.6y,no,yes,no,telephone,may,thu,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,married,high.school,no,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,technician,divorced,professional.course,unknown,yes,yes,telephone,may,thu,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,married,high.school,no,yes,yes,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,married,basic.4y,no,no,no,telephone,may,thu,402,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,unemployed,married,university.degree,unknown,yes,no,telephone,may,thu,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,married,university.degree,no,no,no,telephone,may,thu,68,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,management,married,university.degree,unknown,no,no,telephone,may,thu,587,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,entrepreneur,married,basic.4y,no,no,no,telephone,may,thu,348,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,single,high.school,unknown,yes,no,telephone,may,thu,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,management,single,university.degree,no,unknown,unknown,telephone,may,thu,176,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,services,single,high.school,unknown,no,no,telephone,may,thu,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,services,married,basic.6y,unknown,yes,no,telephone,may,thu,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,unknown,divorced,high.school,no,no,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,single,high.school,unknown,yes,no,telephone,may,thu,334,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,technician,single,university.degree,no,no,no,telephone,may,thu,738,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,management,married,basic.9y,no,yes,no,telephone,may,thu,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,technician,divorced,basic.4y,no,yes,no,telephone,may,thu,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,services,married,high.school,unknown,no,no,telephone,may,thu,203,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,230,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,thu,920,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +58,self-employed,married,university.degree,no,no,no,telephone,may,thu,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,unknown,single,basic.6y,unknown,no,no,telephone,may,thu,1244,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,thu,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,thu,431,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,500,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +55,retired,married,professional.course,no,yes,no,telephone,may,thu,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,115,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,technician,married,unknown,no,yes,no,telephone,may,thu,30,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,thu,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,unknown,married,unknown,unknown,yes,no,telephone,may,thu,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,technician,married,high.school,no,yes,no,telephone,may,thu,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,unemployed,divorced,basic.9y,unknown,no,no,telephone,may,thu,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,married,high.school,unknown,yes,no,telephone,may,thu,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,no,no,yes,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,management,divorced,university.degree,no,yes,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,housemaid,single,basic.4y,no,yes,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,housemaid,single,basic.4y,no,no,no,telephone,may,thu,477,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,services,married,high.school,unknown,yes,no,telephone,may,thu,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,services,married,high.school,no,no,no,telephone,may,thu,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,187,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,236,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,50,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,self-employed,married,professional.course,no,unknown,unknown,telephone,may,thu,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,divorced,high.school,no,no,no,telephone,may,thu,51,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,unknown,married,basic.6y,unknown,no,no,telephone,may,thu,51,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,221,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,services,married,high.school,no,no,no,telephone,may,thu,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,services,married,professional.course,unknown,yes,no,telephone,may,thu,126,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,housemaid,divorced,basic.6y,no,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,thu,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,thu,918,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,544,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,single,university.degree,no,yes,no,telephone,may,thu,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,technician,divorced,professional.course,no,yes,no,telephone,may,thu,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,admin.,single,high.school,no,yes,no,telephone,may,thu,243,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,admin.,single,university.degree,unknown,no,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,housemaid,divorced,university.degree,no,yes,no,telephone,may,thu,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,admin.,divorced,unknown,unknown,yes,no,telephone,may,thu,719,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,unemployed,divorced,basic.4y,no,yes,no,telephone,may,thu,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,management,divorced,university.degree,no,yes,no,telephone,may,thu,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,single,high.school,unknown,no,no,telephone,may,thu,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +24,student,single,high.school,no,no,no,telephone,may,thu,597,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,entrepreneur,married,high.school,no,yes,no,telephone,may,thu,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,entrepreneur,single,university.degree,no,yes,no,telephone,may,thu,43,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,525,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +60,management,married,university.degree,unknown,yes,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,basic.9y,unknown,yes,no,telephone,may,thu,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,married,university.degree,unknown,yes,no,telephone,may,thu,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,retired,divorced,high.school,no,no,yes,telephone,may,thu,504,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,blue-collar,divorced,basic.4y,no,no,no,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,services,single,basic.6y,unknown,yes,no,telephone,may,thu,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,services,divorced,basic.9y,no,yes,no,telephone,may,thu,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,admin.,married,professional.course,no,yes,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,married,university.degree,no,no,no,telephone,may,thu,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,professional.course,no,yes,yes,telephone,may,thu,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,single,university.degree,no,no,no,telephone,may,thu,236,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,815,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,282,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,admin.,divorced,high.school,no,no,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,entrepreneur,single,unknown,unknown,yes,no,telephone,may,thu,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,thu,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,thu,911,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +36,technician,single,professional.course,no,yes,no,telephone,may,thu,238,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,admin.,single,university.degree,no,yes,no,telephone,may,thu,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,management,married,basic.6y,no,yes,no,telephone,may,thu,490,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,admin.,married,high.school,no,unknown,unknown,telephone,may,thu,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,technician,divorced,professional.course,no,no,no,telephone,may,thu,644,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,married,high.school,no,yes,yes,telephone,may,thu,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,divorced,unknown,no,no,no,telephone,may,thu,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,retired,married,professional.course,no,no,no,telephone,may,thu,422,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,thu,22,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,unemployed,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,71,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,basic.9y,no,no,yes,telephone,may,thu,465,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,married,high.school,unknown,yes,no,telephone,may,thu,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,divorced,basic.9y,no,no,no,telephone,may,thu,973,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,management,married,university.degree,no,yes,no,telephone,may,thu,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,thu,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,thu,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,unemployed,married,basic.9y,no,no,no,telephone,may,thu,84,14,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,married,basic.4y,no,no,yes,telephone,may,thu,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,21,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,210,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,no,yes,no,telephone,may,thu,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,blue-collar,single,basic.6y,unknown,no,no,telephone,may,thu,444,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.6y,no,yes,yes,telephone,may,thu,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,single,high.school,no,yes,no,telephone,may,thu,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,single,high.school,no,no,no,telephone,may,thu,132,22,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,thu,334,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,married,unknown,no,no,no,telephone,may,thu,387,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,management,divorced,university.degree,no,no,no,telephone,may,thu,279,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,student,single,basic.4y,no,no,no,telephone,may,thu,484,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,unknown,unknown,yes,yes,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,unknown,unknown,yes,no,telephone,may,thu,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,retired,divorced,university.degree,no,yes,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,single,professional.course,no,yes,no,telephone,may,thu,561,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,services,single,high.school,unknown,yes,no,telephone,may,thu,468,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,thu,920,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +29,technician,single,professional.course,no,no,no,telephone,may,thu,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,technician,single,professional.course,no,no,no,telephone,may,thu,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,married,unknown,unknown,no,no,telephone,may,thu,1224,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +32,services,single,professional.course,no,no,no,telephone,may,thu,589,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,blue-collar,single,basic.6y,no,no,yes,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,technician,married,professional.course,no,yes,no,telephone,may,thu,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,professional.course,unknown,no,yes,telephone,may,thu,964,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,housemaid,married,high.school,unknown,no,no,telephone,may,thu,384,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,single,unknown,no,yes,no,telephone,may,thu,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,management,married,university.degree,unknown,no,no,telephone,may,thu,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +24,services,single,high.school,no,no,no,telephone,may,thu,486,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,management,married,university.degree,unknown,no,yes,telephone,may,thu,1156,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +26,entrepreneur,married,university.degree,no,no,no,telephone,may,thu,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,523,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,admin.,married,high.school,unknown,no,no,telephone,may,thu,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,186,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,73,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,544,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,thu,420,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,single,professional.course,no,no,no,telephone,may,thu,584,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,admin.,divorced,high.school,no,no,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,1231,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,student,single,university.degree,no,no,no,telephone,may,thu,619,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,married,university.degree,no,no,yes,telephone,may,thu,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,technician,married,professional.course,no,yes,no,telephone,may,thu,515,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,management,married,basic.9y,no,yes,no,telephone,may,thu,21,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,married,university.degree,no,yes,no,telephone,may,thu,404,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,divorced,high.school,no,yes,no,telephone,may,thu,241,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,married,university.degree,no,yes,no,telephone,may,thu,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,unemployed,married,professional.course,no,no,no,telephone,may,thu,440,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,admin.,divorced,university.degree,no,yes,yes,telephone,may,thu,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,management,married,basic.4y,unknown,no,no,telephone,may,thu,319,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,1051,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,276,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,admin.,married,university.degree,no,yes,no,telephone,may,thu,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,technician,married,university.degree,no,no,yes,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,276,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,technician,single,university.degree,no,yes,no,telephone,may,thu,19,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,unemployed,single,basic.9y,no,no,yes,telephone,may,thu,546,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,thu,419,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,thu,1867,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +37,technician,single,university.degree,no,no,no,telephone,may,thu,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,technician,married,university.degree,no,yes,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,admin.,married,basic.9y,no,yes,yes,telephone,may,thu,548,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,technician,single,professional.course,no,yes,no,telephone,may,thu,760,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,328,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,admin.,married,high.school,no,yes,yes,telephone,may,thu,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,technician,married,professional.course,unknown,no,no,telephone,may,thu,284,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,services,married,high.school,unknown,yes,no,telephone,may,thu,1263,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +56,management,married,basic.6y,no,no,yes,telephone,may,thu,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,unemployed,married,university.degree,no,no,no,telephone,may,thu,17,25,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,admin.,married,university.degree,unknown,yes,no,telephone,may,thu,17,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,self-employed,married,basic.9y,no,no,no,telephone,may,thu,301,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,student,single,unknown,unknown,yes,no,telephone,may,thu,267,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,475,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,married,university.degree,no,yes,no,telephone,may,thu,770,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,single,basic.4y,unknown,no,no,telephone,may,thu,487,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,services,married,high.school,no,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,married,basic.6y,no,no,no,telephone,may,thu,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,admin.,divorced,high.school,no,no,no,telephone,may,thu,136,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,thu,196,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,technician,single,university.degree,no,yes,no,telephone,may,thu,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,technician,single,unknown,unknown,no,no,telephone,may,thu,257,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,self-employed,married,university.degree,unknown,yes,yes,telephone,may,thu,365,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,697,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +49,management,married,university.degree,no,no,yes,telephone,may,thu,192,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,technician,single,professional.course,no,yes,yes,telephone,may,thu,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +60,entrepreneur,married,basic.4y,no,unknown,unknown,telephone,may,thu,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,entrepreneur,married,high.school,unknown,no,no,telephone,may,thu,56,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,married,university.degree,no,no,no,telephone,may,thu,430,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,retired,divorced,professional.course,no,yes,no,telephone,may,thu,242,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,unknown,no,no,no,telephone,may,thu,809,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,married,high.school,no,yes,no,telephone,may,thu,317,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,unemployed,single,professional.course,no,no,no,telephone,may,thu,7,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,admin.,married,university.degree,no,yes,no,telephone,may,thu,493,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,services,single,high.school,unknown,yes,no,telephone,may,thu,381,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,management,married,university.degree,no,no,no,telephone,may,thu,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,thu,523,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,309,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,technician,divorced,professional.course,no,yes,no,telephone,may,thu,850,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,technician,married,university.degree,no,yes,no,telephone,may,thu,420,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,high.school,unknown,yes,yes,telephone,may,thu,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,314,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,196,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,management,unknown,high.school,no,no,no,telephone,may,thu,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,516,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,retired,married,basic.4y,unknown,yes,no,telephone,may,thu,855,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,single,high.school,no,no,no,telephone,may,thu,78,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,thu,875,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,technician,single,professional.course,no,no,no,telephone,may,thu,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,technician,married,basic.6y,unknown,no,no,telephone,may,thu,24,16,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,190,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,single,university.degree,no,no,no,telephone,may,thu,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,management,married,university.degree,no,yes,no,telephone,may,thu,278,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,retired,married,basic.6y,unknown,no,no,telephone,may,thu,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,services,married,high.school,no,unknown,unknown,telephone,may,thu,262,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,391,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,married,university.degree,no,no,no,telephone,may,thu,263,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,married,high.school,no,no,no,telephone,may,thu,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,married,university.degree,no,no,no,telephone,may,thu,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,professional.course,no,no,no,telephone,may,thu,255,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,blue-collar,married,high.school,unknown,no,no,telephone,may,thu,202,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,438,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,admin.,single,high.school,no,no,yes,telephone,may,thu,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,high.school,no,yes,yes,telephone,may,thu,426,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,entrepreneur,married,basic.4y,no,no,yes,telephone,may,thu,302,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,student,single,basic.9y,unknown,yes,no,telephone,may,thu,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,unemployed,married,basic.4y,unknown,no,no,telephone,may,thu,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,thu,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,retired,single,high.school,no,yes,no,telephone,may,thu,448,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,technician,married,high.school,no,no,no,telephone,may,thu,70,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,admin.,single,high.school,no,yes,no,telephone,may,thu,347,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,single,high.school,no,no,yes,telephone,may,thu,892,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,thu,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,222,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,management,married,professional.course,no,no,no,telephone,may,thu,734,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,married,high.school,unknown,yes,no,telephone,may,thu,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,65,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,services,single,high.school,no,yes,no,telephone,may,thu,543,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,374,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,divorced,university.degree,no,no,no,telephone,may,thu,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,services,married,high.school,no,unknown,unknown,telephone,may,thu,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,unemployed,single,university.degree,no,no,no,telephone,may,thu,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,self-employed,divorced,unknown,no,yes,no,telephone,may,thu,491,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,377,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,fri,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,unemployed,married,high.school,unknown,no,no,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,basic.9y,unknown,no,yes,telephone,may,fri,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,fri,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,entrepreneur,married,high.school,no,no,no,telephone,may,fri,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,fri,336,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,single,basic.9y,no,no,yes,telephone,may,fri,28,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,university.degree,no,yes,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,329,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,597,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,blue-collar,married,high.school,no,no,yes,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,admin.,married,basic.6y,unknown,yes,no,telephone,may,fri,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,single,university.degree,no,yes,yes,telephone,may,fri,266,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,married,unknown,no,no,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,technician,married,professional.course,no,yes,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,married,high.school,no,no,yes,telephone,may,fri,206,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,unemployed,divorced,high.school,unknown,yes,yes,telephone,may,fri,69,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,no,yes,no,telephone,may,fri,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,entrepreneur,married,university.degree,no,yes,yes,telephone,may,fri,515,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +30,self-employed,single,high.school,no,yes,no,telephone,may,fri,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +58,management,married,basic.9y,no,no,no,telephone,may,fri,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,services,married,high.school,no,yes,no,telephone,may,fri,512,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,single,high.school,no,no,yes,telephone,may,fri,813,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +32,technician,single,professional.course,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,services,divorced,basic.4y,no,yes,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,technician,married,professional.course,no,no,yes,telephone,may,fri,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,unemployed,married,basic.9y,unknown,yes,no,telephone,may,fri,144,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,fri,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,services,divorced,high.school,no,no,no,telephone,may,fri,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,management,married,university.degree,no,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,admin.,single,basic.9y,no,no,no,telephone,may,fri,387,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,technician,divorced,professional.course,unknown,no,yes,telephone,may,fri,286,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,married,high.school,no,no,no,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,fri,448,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,management,married,high.school,unknown,no,yes,telephone,may,fri,223,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,management,married,university.degree,unknown,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,services,married,basic.4y,unknown,no,no,telephone,may,fri,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,single,unknown,no,no,no,telephone,may,fri,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,technician,married,high.school,no,no,no,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,management,divorced,university.degree,no,no,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,single,high.school,no,yes,no,telephone,may,fri,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +35,admin.,married,university.degree,no,yes,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,management,single,university.degree,unknown,yes,no,telephone,may,fri,844,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +46,admin.,married,high.school,no,no,no,telephone,may,fri,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,retired,married,unknown,unknown,yes,no,telephone,may,fri,529,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,single,university.degree,unknown,no,no,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,fri,676,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +27,admin.,single,high.school,no,no,no,telephone,may,fri,656,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,admin.,divorced,high.school,no,yes,no,telephone,may,fri,88,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,1252,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,technician,married,university.degree,no,yes,no,telephone,may,fri,1143,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +35,admin.,single,basic.4y,unknown,no,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,retired,divorced,basic.4y,no,yes,no,telephone,may,fri,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,self-employed,single,university.degree,no,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,single,professional.course,no,yes,no,telephone,may,fri,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,single,basic.6y,no,no,no,telephone,may,fri,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,housemaid,single,basic.9y,no,no,no,telephone,may,fri,130,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,management,married,university.degree,no,no,no,telephone,may,fri,627,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,single,high.school,no,yes,no,telephone,may,fri,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,admin.,divorced,university.degree,no,no,no,telephone,may,fri,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,high.school,no,no,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,fri,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,single,university.degree,no,yes,no,telephone,may,fri,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,student,single,high.school,no,unknown,unknown,telephone,may,fri,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,admin.,married,unknown,no,yes,no,telephone,may,fri,731,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,fri,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,high.school,no,no,no,telephone,may,fri,46,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,fri,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,married,professional.course,unknown,yes,no,telephone,may,fri,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,242,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,divorced,basic.9y,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,management,divorced,university.degree,no,no,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,fri,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +60,entrepreneur,married,basic.4y,no,no,no,telephone,may,fri,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,technician,married,professional.course,no,no,yes,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,688,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +39,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,housemaid,single,high.school,no,no,no,telephone,may,fri,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,fri,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,housemaid,married,basic.4y,no,no,no,telephone,may,fri,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,high.school,unknown,no,no,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,services,married,high.school,no,no,no,telephone,may,fri,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,retired,married,high.school,unknown,yes,no,telephone,may,fri,42,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,student,single,unknown,unknown,no,no,telephone,may,fri,277,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,technician,married,professional.course,no,no,no,telephone,may,fri,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,admin.,married,university.degree,no,no,no,telephone,may,fri,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,management,married,high.school,unknown,no,no,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,technician,divorced,professional.course,no,yes,no,telephone,may,fri,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,blue-collar,single,high.school,unknown,no,no,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,803,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +44,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,management,divorced,university.degree,no,yes,no,telephone,may,fri,754,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,services,married,high.school,no,yes,no,telephone,may,fri,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,management,married,professional.course,no,no,no,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,single,high.school,no,yes,no,telephone,may,fri,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,technician,single,university.degree,no,yes,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,married,unknown,unknown,no,yes,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,42,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,high.school,no,yes,no,telephone,may,fri,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,services,married,high.school,unknown,yes,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,university.degree,unknown,no,no,telephone,may,fri,268,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,entrepreneur,married,basic.6y,no,no,no,telephone,may,fri,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,technician,married,professional.course,unknown,yes,no,telephone,may,fri,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,married,high.school,unknown,yes,no,telephone,may,fri,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,blue-collar,single,basic.4y,no,no,no,telephone,may,fri,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,admin.,married,university.degree,no,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,services,divorced,unknown,unknown,yes,yes,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,self-employed,single,basic.4y,unknown,yes,no,telephone,may,fri,362,22,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,entrepreneur,married,high.school,no,yes,no,telephone,may,fri,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,high.school,no,yes,no,telephone,may,fri,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,management,married,university.degree,no,no,no,telephone,may,fri,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,services,married,high.school,unknown,no,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,424,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,management,married,university.degree,no,yes,yes,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,admin.,divorced,high.school,no,yes,no,telephone,may,fri,787,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +39,management,married,university.degree,no,no,no,telephone,may,fri,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,services,married,high.school,no,no,yes,telephone,may,fri,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,unemployed,married,basic.4y,unknown,no,no,telephone,may,fri,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,fri,22,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,blue-collar,single,high.school,no,yes,no,telephone,may,fri,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,fri,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,high.school,no,yes,yes,telephone,may,fri,196,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,married,high.school,no,no,yes,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,management,married,university.degree,no,unknown,unknown,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,679,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,fri,576,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,services,married,high.school,no,yes,no,telephone,may,fri,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,married,university.degree,no,no,no,telephone,may,fri,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,housemaid,married,high.school,no,no,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,fri,619,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,33,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,retired,married,professional.course,unknown,no,no,telephone,may,fri,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,high.school,no,yes,yes,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +58,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,fri,38,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,fri,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,retired,divorced,basic.9y,unknown,yes,no,telephone,may,fri,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,1230,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +29,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,married,professional.course,no,yes,no,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,married,high.school,unknown,yes,no,telephone,may,fri,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,single,basic.9y,no,yes,no,telephone,may,fri,320,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,self-employed,single,professional.course,unknown,no,no,telephone,may,fri,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,single,high.school,no,yes,no,telephone,may,fri,912,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +46,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,housemaid,married,basic.9y,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,blue-collar,single,university.degree,unknown,no,no,telephone,may,fri,894,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +31,admin.,single,basic.9y,no,yes,no,telephone,may,fri,38,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,323,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,technician,married,professional.course,no,no,yes,telephone,may,fri,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,admin.,single,basic.6y,no,yes,no,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,technician,married,university.degree,no,no,no,telephone,may,fri,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,fri,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,self-employed,married,professional.course,no,no,no,telephone,may,fri,374,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,technician,married,university.degree,no,yes,no,telephone,may,fri,193,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,married,basic.9y,unknown,no,no,telephone,may,fri,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,865,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,blue-collar,single,unknown,no,no,no,telephone,may,fri,299,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,management,married,university.degree,no,no,no,telephone,may,fri,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,retired,married,basic.4y,unknown,no,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,management,married,university.degree,no,yes,no,telephone,may,fri,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,admin.,married,high.school,no,yes,no,telephone,may,fri,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,divorced,basic.4y,unknown,yes,yes,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,services,divorced,high.school,no,no,no,telephone,may,fri,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,student,single,high.school,no,no,no,telephone,may,fri,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,155,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,single,basic.9y,no,no,no,telephone,may,fri,703,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,admin.,single,university.degree,no,yes,no,telephone,may,fri,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,475,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,technician,married,professional.course,no,no,no,telephone,may,fri,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,471,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,single,university.degree,no,no,yes,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,services,single,high.school,no,no,no,telephone,may,fri,177,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,unknown,married,basic.4y,unknown,no,no,telephone,may,fri,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,229,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,fri,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,technician,divorced,basic.9y,unknown,no,no,telephone,may,fri,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +26,admin.,single,university.degree,unknown,no,no,telephone,may,fri,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,basic.9y,no,no,no,telephone,may,fri,433,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,services,divorced,high.school,unknown,yes,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,services,married,basic.6y,no,no,no,telephone,may,fri,1340,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +28,technician,single,professional.course,no,no,no,telephone,may,fri,323,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,services,married,university.degree,no,no,no,telephone,may,fri,132,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,199,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,single,high.school,no,yes,no,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,admin.,divorced,university.degree,no,no,no,telephone,may,fri,897,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +38,admin.,married,university.degree,no,yes,no,telephone,may,fri,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,123,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,admin.,married,university.degree,no,yes,no,telephone,may,fri,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,management,married,university.degree,no,no,no,telephone,may,fri,461,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,high.school,unknown,yes,no,telephone,may,fri,213,14,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,housemaid,married,high.school,no,yes,no,telephone,may,fri,193,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,housemaid,divorced,high.school,no,yes,no,telephone,may,fri,428,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,self-employed,married,high.school,no,yes,no,telephone,may,fri,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,housemaid,married,high.school,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,married,basic.9y,unknown,no,no,telephone,may,fri,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,management,married,university.degree,no,no,no,telephone,may,fri,214,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,239,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,management,married,unknown,no,no,no,telephone,may,fri,718,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,services,married,high.school,unknown,yes,no,telephone,may,fri,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,technician,married,university.degree,no,no,no,telephone,may,fri,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,basic.9y,no,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,management,married,unknown,no,no,no,telephone,may,fri,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,fri,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,unemployed,single,high.school,no,no,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,services,divorced,basic.4y,unknown,unknown,unknown,telephone,may,fri,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,housemaid,married,basic.9y,no,no,no,telephone,may,fri,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,married,high.school,no,yes,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,fri,1161,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,technician,married,high.school,unknown,no,no,telephone,may,fri,467,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,single,university.degree,no,no,no,telephone,may,fri,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,divorced,high.school,no,yes,no,telephone,may,fri,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,168,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,technician,married,basic.9y,no,no,no,telephone,may,fri,764,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,management,married,university.degree,no,yes,no,telephone,may,fri,16,23,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,admin.,divorced,professional.course,no,no,no,telephone,may,fri,148,18,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,student,single,high.school,no,no,yes,telephone,may,fri,2680,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +56,management,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +53,technician,married,high.school,no,no,no,telephone,may,fri,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +54,retired,married,basic.9y,unknown,no,no,telephone,may,fri,370,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,fri,274,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,services,single,high.school,no,no,no,telephone,may,fri,326,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,services,single,basic.9y,no,yes,no,telephone,may,fri,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,housemaid,married,university.degree,unknown,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,788,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,fri,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,admin.,single,university.degree,no,yes,no,telephone,may,fri,14,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,fri,698,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,admin.,married,high.school,no,yes,yes,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,management,single,university.degree,no,yes,no,telephone,may,fri,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,admin.,single,university.degree,no,yes,no,telephone,may,fri,467,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,fri,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,single,university.degree,unknown,yes,no,telephone,may,fri,40,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,retired,married,basic.9y,unknown,no,no,telephone,may,fri,698,1,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,technician,divorced,professional.course,no,yes,no,telephone,may,fri,76,17,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,single,high.school,no,no,no,telephone,may,fri,557,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,single,basic.9y,no,yes,no,telephone,may,fri,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,280,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,entrepreneur,married,basic.6y,no,no,no,telephone,may,fri,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,283,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,no,no,no,telephone,may,fri,523,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +55,technician,married,basic.4y,unknown,yes,no,telephone,may,fri,316,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,fri,1128,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,171,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,unknown,married,unknown,unknown,yes,no,telephone,may,fri,174,15,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,management,single,university.degree,no,no,yes,telephone,may,fri,71,11,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,84,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,divorced,basic.6y,no,unknown,unknown,telephone,may,fri,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,fri,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +29,services,single,university.degree,no,no,no,telephone,may,fri,339,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,self-employed,married,basic.9y,no,yes,no,telephone,may,fri,509,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,single,high.school,unknown,yes,no,telephone,may,fri,254,16,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,retired,married,university.degree,no,yes,yes,telephone,may,fri,243,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,344,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,technician,single,professional.course,unknown,yes,yes,telephone,may,fri,131,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,251,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,technician,married,basic.9y,no,yes,no,telephone,may,fri,1135,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,technician,married,university.degree,no,no,no,telephone,may,fri,1106,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,married,professional.course,unknown,yes,no,telephone,may,fri,312,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,self-employed,single,high.school,no,yes,yes,telephone,may,fri,292,8,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,admin.,married,high.school,no,no,no,telephone,may,fri,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,high.school,no,yes,no,telephone,may,fri,293,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,services,single,high.school,no,yes,yes,telephone,may,fri,198,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +27,blue-collar,divorced,unknown,no,yes,no,telephone,may,fri,1408,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,fri,827,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,services,married,high.school,no,no,no,telephone,may,fri,303,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,588,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,services,married,high.school,no,no,no,telephone,may,fri,680,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,160,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,technician,married,high.school,no,no,no,telephone,may,fri,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,technician,married,basic.9y,no,no,no,telephone,may,fri,476,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,management,single,university.degree,no,no,no,telephone,may,fri,81,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +25,admin.,married,high.school,no,yes,no,telephone,may,fri,4,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,self-employed,single,basic.6y,unknown,yes,no,telephone,may,fri,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,fri,541,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,self-employed,single,university.degree,no,yes,no,telephone,may,fri,227,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,427,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,148,9,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,management,married,university.degree,no,yes,no,telephone,may,fri,408,10,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +45,management,married,university.degree,no,no,no,telephone,may,fri,255,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,married,high.school,no,yes,no,telephone,may,fri,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +56,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,428,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +60,retired,married,basic.9y,unknown,yes,no,telephone,may,fri,32,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,admin.,married,high.school,no,no,yes,telephone,may,fri,851,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,522,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,self-employed,married,high.school,unknown,no,no,telephone,may,fri,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +57,services,divorced,high.school,no,yes,yes,telephone,may,fri,1193,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +23,services,married,basic.9y,no,no,no,telephone,may,fri,1144,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,fri,730,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +38,technician,married,university.degree,unknown,yes,no,telephone,may,fri,1023,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,management,married,high.school,no,no,no,telephone,may,fri,385,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,management,married,high.school,no,yes,no,telephone,may,fri,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +44,admin.,married,university.degree,unknown,no,no,telephone,may,fri,165,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,services,married,high.school,no,no,yes,telephone,may,fri,437,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,admin.,married,basic.9y,no,no,no,telephone,may,fri,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +47,technician,married,professional.course,unknown,no,no,telephone,may,fri,261,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,fri,294,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +34,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,1245,19,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,admin.,single,high.school,no,no,no,telephone,may,fri,498,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +46,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,134,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +32,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +36,retired,married,high.school,no,no,no,telephone,may,fri,192,20,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,student,single,university.degree,no,yes,yes,telephone,may,fri,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +35,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,237,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,fri,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,admin.,divorced,university.degree,unknown,no,no,telephone,may,fri,196,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,fri,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,services,single,basic.9y,no,yes,no,telephone,may,fri,393,2,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,512,6,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +43,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,218,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +33,self-employed,married,university.degree,no,yes,no,telephone,may,fri,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +31,services,married,basic.9y,no,yes,no,telephone,may,fri,186,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,admin.,married,professional.course,no,no,no,telephone,may,fri,299,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +24,student,single,high.school,unknown,yes,yes,telephone,may,fri,103,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +30,admin.,single,university.degree,unknown,no,yes,telephone,may,fri,297,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +28,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,1064,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,yes +28,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,90,7,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +41,technician,single,university.degree,unknown,yes,no,telephone,may,fri,59,5,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +37,technician,married,basic.9y,no,no,no,telephone,may,fri,1110,3,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +51,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,1187,4,999,0,nonexistent,1.1,93.994,-36.4,4.859,5191,no +50,management,married,university.degree,unknown,unknown,unknown,telephone,may,mon,93,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,technician,married,high.school,no,no,yes,telephone,may,mon,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,technician,married,unknown,no,yes,no,telephone,may,mon,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,blue-collar,married,basic.4y,no,no,yes,telephone,may,mon,79,19,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,services,married,high.school,no,no,no,telephone,may,mon,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,self-employed,single,university.degree,no,yes,no,telephone,may,mon,39,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,admin.,divorced,high.school,no,no,no,telephone,may,mon,311,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,self-employed,married,basic.4y,unknown,no,no,telephone,may,mon,179,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,technician,divorced,university.degree,unknown,no,no,telephone,may,mon,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,admin.,married,university.degree,no,no,yes,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,mon,594,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,self-employed,divorced,basic.9y,no,no,yes,telephone,may,mon,55,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,services,married,high.school,no,yes,no,telephone,may,mon,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,management,divorced,high.school,no,yes,no,telephone,may,mon,19,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,501,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,divorced,high.school,no,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,management,married,high.school,no,no,no,telephone,may,mon,221,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,unknown,single,basic.4y,unknown,yes,yes,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,single,professional.course,no,no,no,telephone,may,mon,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,self-employed,single,university.degree,unknown,yes,no,telephone,may,mon,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,married,professional.course,no,yes,no,telephone,may,mon,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,668,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,88,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,services,divorced,high.school,no,yes,no,telephone,may,mon,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,married,high.school,unknown,yes,yes,telephone,may,mon,358,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,services,single,basic.4y,unknown,no,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,divorced,university.degree,no,no,no,telephone,may,mon,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,single,unknown,unknown,no,yes,telephone,may,mon,61,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,student,single,university.degree,no,no,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,self-employed,married,high.school,unknown,no,no,telephone,may,mon,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,technician,divorced,professional.course,no,no,no,telephone,may,mon,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,single,professional.course,no,no,no,telephone,may,mon,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,management,married,basic.4y,unknown,yes,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,468,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,management,single,high.school,no,yes,no,telephone,may,mon,326,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,single,high.school,no,no,yes,telephone,may,mon,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,technician,married,professional.course,unknown,yes,yes,telephone,may,mon,579,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,university.degree,no,yes,no,telephone,may,mon,277,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,316,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,882,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +44,blue-collar,divorced,basic.6y,no,no,no,telephone,may,mon,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,mon,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,services,married,unknown,unknown,yes,yes,telephone,may,mon,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,retired,divorced,university.degree,no,yes,no,telephone,may,mon,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,services,single,high.school,no,yes,no,telephone,may,mon,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,technician,married,professional.course,no,no,no,telephone,may,mon,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,admin.,married,high.school,no,yes,no,telephone,may,mon,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,professional.course,no,no,no,telephone,may,mon,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,single,basic.6y,no,yes,no,telephone,may,mon,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,technician,married,unknown,no,yes,no,telephone,may,mon,429,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,management,married,university.degree,no,no,no,telephone,may,mon,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,services,single,high.school,no,yes,no,telephone,may,mon,343,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,married,professional.course,no,no,no,telephone,may,mon,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,technician,married,professional.course,no,unknown,unknown,telephone,may,mon,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,mon,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,services,single,basic.6y,no,yes,yes,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,married,professional.course,no,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,services,divorced,high.school,unknown,yes,no,telephone,may,mon,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,services,divorced,basic.9y,no,no,no,telephone,may,mon,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,268,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,services,married,basic.9y,no,no,yes,telephone,may,mon,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,professional.course,no,yes,no,telephone,may,mon,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,241,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,self-employed,single,high.school,no,yes,no,telephone,may,mon,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,management,married,university.degree,unknown,yes,no,telephone,may,mon,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,single,university.degree,unknown,yes,yes,telephone,may,mon,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.6y,no,yes,yes,telephone,may,mon,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,basic.6y,no,yes,no,telephone,may,mon,82,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,services,married,high.school,unknown,yes,yes,telephone,may,mon,94,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,management,married,university.degree,no,no,no,telephone,may,mon,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,management,married,basic.9y,no,unknown,unknown,telephone,may,mon,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,student,single,high.school,no,no,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,technician,married,professional.course,no,yes,no,telephone,may,mon,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +28,admin.,single,university.degree,no,yes,no,telephone,may,mon,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,housemaid,divorced,basic.4y,no,no,no,telephone,may,mon,382,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,single,university.degree,unknown,yes,no,telephone,may,mon,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,management,divorced,high.school,no,unknown,unknown,telephone,may,mon,259,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,mon,18,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,student,single,basic.9y,no,no,no,telephone,may,mon,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,792,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,university.degree,no,no,no,telephone,may,mon,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,unknown,no,yes,yes,telephone,may,mon,943,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,798,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,84,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,services,married,basic.6y,no,yes,no,telephone,may,mon,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,services,divorced,high.school,no,no,no,telephone,may,mon,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,unknown,married,basic.6y,no,yes,yes,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,management,married,high.school,unknown,no,no,telephone,may,mon,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,housemaid,married,basic.4y,no,no,no,telephone,may,mon,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,mon,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,married,university.degree,no,no,no,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,self-employed,married,university.degree,no,no,yes,telephone,may,mon,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,housemaid,married,university.degree,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,529,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,management,single,university.degree,no,yes,yes,telephone,may,mon,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,services,married,basic.9y,no,yes,no,telephone,may,mon,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,mon,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,496,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,single,professional.course,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,technician,married,university.degree,no,no,no,telephone,may,mon,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,retired,married,basic.9y,unknown,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,unemployed,married,basic.6y,unknown,no,no,telephone,may,mon,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,services,married,high.school,unknown,yes,yes,telephone,may,mon,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,management,married,unknown,no,no,no,telephone,may,mon,610,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,single,high.school,unknown,yes,no,telephone,may,mon,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,self-employed,married,university.degree,no,unknown,unknown,telephone,may,mon,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,professional.course,no,no,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,technician,married,professional.course,no,no,no,telephone,may,mon,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,married,university.degree,no,yes,no,telephone,may,mon,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,single,high.school,no,yes,yes,telephone,may,mon,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.4y,no,yes,yes,telephone,may,mon,387,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,married,high.school,no,no,no,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,unemployed,married,basic.4y,unknown,yes,no,telephone,may,mon,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,services,divorced,high.school,unknown,yes,yes,telephone,may,mon,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,married,high.school,unknown,yes,no,telephone,may,mon,35,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,607,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +52,technician,divorced,basic.9y,no,yes,yes,telephone,may,mon,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,mon,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,admin.,married,university.degree,no,yes,no,telephone,may,mon,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,260,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,single,high.school,no,no,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,self-employed,single,basic.9y,no,no,no,telephone,may,mon,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,admin.,married,basic.4y,no,no,no,telephone,may,mon,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,services,married,professional.course,no,no,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,retired,married,basic.4y,no,yes,no,telephone,may,mon,546,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,admin.,married,basic.4y,unknown,no,no,telephone,may,mon,49,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,single,basic.9y,no,yes,yes,telephone,may,mon,335,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,mon,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,housemaid,single,high.school,no,no,no,telephone,may,mon,1203,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,services,married,high.school,no,no,no,telephone,may,mon,1022,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +41,admin.,divorced,university.degree,unknown,yes,no,telephone,may,mon,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,self-employed,married,professional.course,no,no,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,married,high.school,no,no,no,telephone,may,mon,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,technician,married,university.degree,unknown,unknown,unknown,telephone,may,mon,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,married,university.degree,no,no,no,telephone,may,mon,201,14,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,management,married,university.degree,no,unknown,unknown,telephone,may,mon,193,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,retired,married,basic.4y,unknown,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,480,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,technician,single,professional.course,unknown,no,no,telephone,may,mon,149,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,self-employed,married,university.degree,no,no,no,telephone,may,mon,396,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,mon,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,housemaid,married,basic.4y,no,no,no,telephone,may,mon,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,entrepreneur,married,professional.course,no,no,no,telephone,may,mon,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,housemaid,married,high.school,no,yes,yes,telephone,may,mon,723,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,services,married,professional.course,unknown,yes,yes,telephone,may,mon,361,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,services,single,professional.course,no,yes,no,telephone,may,mon,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,technician,married,university.degree,no,yes,no,telephone,may,mon,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,services,married,high.school,unknown,yes,yes,telephone,may,mon,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,divorced,professional.course,no,no,no,telephone,may,mon,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,married,university.degree,unknown,yes,yes,telephone,may,mon,183,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,admin.,married,basic.9y,unknown,no,yes,telephone,may,mon,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,single,high.school,no,yes,yes,telephone,may,mon,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,married,high.school,no,no,yes,telephone,may,mon,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,mon,643,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,services,single,university.degree,unknown,yes,no,telephone,may,mon,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,193,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,services,single,high.school,no,no,yes,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,mon,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,student,single,university.degree,no,yes,no,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,services,divorced,high.school,no,yes,no,telephone,may,mon,191,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,married,professional.course,unknown,no,no,telephone,may,mon,571,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,housemaid,single,high.school,no,unknown,unknown,telephone,may,mon,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,unemployed,divorced,professional.course,no,unknown,unknown,telephone,may,mon,446,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,unemployed,married,high.school,no,yes,no,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,professional.course,no,no,no,telephone,may,mon,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,mon,400,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,mon,503,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,125,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,single,basic.9y,no,yes,no,telephone,may,mon,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,blue-collar,divorced,high.school,no,yes,no,telephone,may,mon,7,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,divorced,basic.9y,no,no,no,telephone,may,mon,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,married,university.degree,unknown,unknown,unknown,telephone,may,mon,261,56,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,may,mon,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,services,married,high.school,no,yes,no,telephone,may,mon,552,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +22,services,single,high.school,no,yes,no,telephone,may,mon,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,88,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,44,39,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,services,divorced,high.school,no,no,yes,telephone,may,mon,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,services,single,high.school,no,no,no,telephone,may,mon,401,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,divorced,high.school,unknown,no,yes,telephone,may,mon,178,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,divorced,university.degree,no,no,no,telephone,may,mon,53,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,mon,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,34,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,48,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,technician,divorced,professional.course,no,unknown,unknown,telephone,may,mon,182,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,single,university.degree,no,unknown,unknown,telephone,may,mon,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,technician,divorced,high.school,no,yes,no,telephone,may,mon,457,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,single,university.degree,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,married,professional.course,no,no,yes,telephone,may,mon,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,single,high.school,no,yes,yes,telephone,may,mon,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,technician,divorced,professional.course,no,no,yes,telephone,may,mon,65,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,single,university.degree,no,yes,no,telephone,may,mon,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,403,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,unemployed,single,high.school,no,yes,yes,telephone,may,mon,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,mon,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,management,married,basic.9y,unknown,no,no,telephone,may,mon,206,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,admin.,single,university.degree,no,yes,no,telephone,may,mon,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,183,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,management,married,university.degree,no,no,no,telephone,may,mon,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,management,married,basic.4y,unknown,no,no,telephone,may,mon,88,35,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,mon,234,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,mon,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,services,married,high.school,no,no,no,telephone,may,mon,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,services,married,high.school,unknown,no,no,telephone,may,mon,5,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,admin.,married,university.degree,no,no,no,telephone,may,mon,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,blue-collar,married,basic.4y,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,admin.,single,high.school,no,yes,no,telephone,may,mon,243,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,mon,180,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,single,high.school,no,no,yes,telephone,may,mon,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,mon,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,1622,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +60,admin.,married,professional.course,no,yes,no,telephone,may,mon,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,married,high.school,no,no,no,telephone,may,mon,165,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,mon,86,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,divorced,high.school,no,no,no,telephone,may,mon,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,492,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,divorced,university.degree,no,no,no,telephone,may,mon,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,technician,married,professional.course,unknown,yes,no,telephone,may,mon,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,technician,married,professional.course,unknown,yes,no,telephone,may,mon,95,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,services,married,high.school,unknown,yes,no,telephone,may,mon,967,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +36,services,married,high.school,unknown,yes,no,telephone,may,mon,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,services,divorced,high.school,no,no,no,telephone,may,mon,579,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +29,technician,married,professional.course,no,yes,no,telephone,may,mon,124,42,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,services,married,professional.course,unknown,no,no,telephone,may,mon,158,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,162,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,services,married,basic.9y,unknown,no,no,telephone,may,mon,173,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,management,single,basic.4y,no,no,no,telephone,may,mon,73,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,technician,single,professional.course,no,yes,no,telephone,may,mon,220,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,management,married,basic.4y,unknown,no,no,telephone,may,mon,99,22,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,112,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,housemaid,married,basic.6y,no,no,yes,telephone,may,mon,168,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,services,married,professional.course,no,yes,no,telephone,may,mon,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,blue-collar,divorced,basic.4y,no,no,no,telephone,may,mon,235,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,technician,single,professional.course,no,yes,no,telephone,may,mon,138,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,technician,single,professional.course,unknown,no,no,telephone,may,mon,374,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,self-employed,married,university.degree,unknown,yes,no,telephone,may,mon,353,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,technician,single,professional.course,no,no,no,telephone,may,mon,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,332,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,basic.9y,unknown,yes,no,telephone,may,mon,179,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,management,married,university.degree,no,yes,no,telephone,may,mon,396,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,single,university.degree,no,yes,no,telephone,may,mon,492,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,360,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,housemaid,married,unknown,no,no,no,telephone,may,mon,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,97,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,single,professional.course,no,yes,no,telephone,may,mon,57,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,105,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,886,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,unknown,high.school,no,no,no,telephone,may,mon,182,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,blue-collar,divorced,unknown,no,no,no,telephone,may,mon,467,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,21,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,mon,470,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,services,single,high.school,unknown,yes,no,telephone,may,mon,85,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,admin.,single,university.degree,no,no,no,telephone,may,mon,120,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,services,married,high.school,no,no,no,telephone,may,mon,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,blue-collar,married,professional.course,no,no,no,telephone,may,mon,87,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,622,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,married,high.school,no,yes,no,telephone,may,mon,195,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,services,divorced,high.school,no,no,no,telephone,may,mon,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,self-employed,single,basic.9y,no,no,no,telephone,may,mon,58,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,divorced,professional.course,no,no,no,telephone,may,mon,1218,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +54,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,mon,500,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,66,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,services,single,high.school,no,no,no,telephone,may,mon,328,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,management,married,basic.6y,unknown,yes,no,telephone,may,mon,3078,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,tue,21,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,technician,single,professional.course,unknown,no,no,telephone,may,tue,148,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,services,married,basic.9y,unknown,no,no,telephone,may,tue,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,admin.,married,university.degree,no,yes,no,telephone,may,tue,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,housemaid,married,high.school,unknown,yes,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,management,married,unknown,no,no,no,telephone,may,tue,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,admin.,married,basic.6y,no,yes,no,telephone,may,tue,19,15,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,married,professional.course,unknown,yes,no,telephone,may,tue,82,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,technician,divorced,professional.course,no,no,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,housemaid,married,basic.4y,unknown,no,no,telephone,may,tue,365,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,married,professional.course,no,yes,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,tue,16,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,technician,divorced,professional.course,no,no,no,telephone,may,tue,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,services,married,high.school,unknown,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,unemployed,single,professional.course,no,no,no,telephone,may,tue,20,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,technician,single,university.degree,unknown,unknown,unknown,telephone,may,tue,686,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,married,basic.9y,no,no,no,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,married,high.school,no,yes,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,entrepreneur,single,university.degree,unknown,yes,no,telephone,may,tue,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,admin.,married,high.school,no,no,yes,telephone,may,tue,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,student,single,university.degree,unknown,yes,no,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,admin.,divorced,university.degree,no,no,no,telephone,may,tue,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,high.school,no,no,no,telephone,may,tue,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,married,professional.course,unknown,yes,no,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,unemployed,married,basic.4y,unknown,yes,no,telephone,may,tue,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,technician,married,unknown,no,yes,yes,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,university.degree,no,no,yes,telephone,may,tue,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,married,university.degree,unknown,no,no,telephone,may,tue,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,technician,married,high.school,no,no,no,telephone,may,tue,13,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,technician,single,professional.course,no,yes,yes,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,no,yes,no,telephone,may,tue,656,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,single,basic.6y,no,no,yes,telephone,may,tue,1205,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,202,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,married,unknown,no,no,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,high.school,unknown,yes,yes,telephone,may,tue,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,management,single,basic.4y,no,no,no,telephone,may,tue,186,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,532,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,married,university.degree,no,no,yes,telephone,may,tue,234,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,tue,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,single,high.school,no,no,no,telephone,may,tue,1882,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +34,management,single,university.degree,no,no,no,telephone,may,tue,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,high.school,no,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,1334,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +42,technician,divorced,university.degree,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,married,high.school,no,no,no,telephone,may,tue,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,university.degree,no,yes,no,telephone,may,tue,775,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,married,basic.9y,no,no,no,telephone,may,tue,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,married,high.school,no,no,no,telephone,may,tue,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,admin.,married,university.degree,no,yes,no,telephone,may,tue,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,services,married,university.degree,no,yes,no,telephone,may,tue,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,unemployed,single,basic.9y,no,no,no,telephone,may,tue,294,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,married,professional.course,no,yes,no,telephone,may,tue,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,no,yes,yes,telephone,may,tue,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,divorced,high.school,no,yes,no,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,tue,600,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,blue-collar,married,unknown,no,yes,no,telephone,may,tue,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,housemaid,married,high.school,unknown,no,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,technician,married,professional.course,no,no,no,telephone,may,tue,26,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,self-employed,married,basic.4y,no,no,no,telephone,may,tue,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,technician,married,unknown,unknown,no,no,telephone,may,tue,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,unknown,yes,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,no,no,yes,telephone,may,tue,793,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +34,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,unknown,yes,yes,telephone,may,tue,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,married,high.school,no,no,no,telephone,may,tue,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,technician,married,professional.course,unknown,no,no,telephone,may,tue,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,unknown,unknown,no,no,telephone,may,tue,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,unknown,unknown,yes,yes,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,unknown,yes,no,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,divorced,basic.9y,no,yes,no,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,married,basic.9y,no,no,no,telephone,may,tue,618,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,tue,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,services,married,high.school,unknown,no,no,telephone,may,tue,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,management,married,unknown,unknown,no,no,telephone,may,tue,121,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,married,high.school,unknown,yes,no,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,married,high.school,unknown,no,no,telephone,may,tue,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,married,high.school,no,yes,yes,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +21,admin.,single,basic.9y,no,yes,yes,telephone,may,tue,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,married,high.school,no,yes,no,telephone,may,tue,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,management,married,university.degree,unknown,yes,no,telephone,may,tue,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,divorced,university.degree,unknown,yes,yes,telephone,may,tue,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,single,basic.6y,unknown,no,no,telephone,may,tue,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,entrepreneur,married,unknown,unknown,no,no,telephone,may,tue,434,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,divorced,high.school,no,yes,yes,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,married,university.degree,no,yes,no,telephone,may,tue,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,380,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,university.degree,unknown,no,no,telephone,may,tue,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,divorced,professional.course,unknown,no,no,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,university.degree,no,no,no,telephone,may,tue,423,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,tue,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,professional.course,no,no,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,admin.,divorced,basic.9y,unknown,no,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,tue,360,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,may,tue,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,unknown,unknown,university.degree,no,yes,yes,telephone,may,tue,40,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,technician,married,professional.course,no,yes,no,telephone,may,tue,447,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,single,unknown,no,no,no,telephone,may,tue,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,admin.,divorced,high.school,no,no,no,telephone,may,tue,138,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,basic.9y,no,yes,no,telephone,may,tue,207,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,unknown,yes,no,telephone,may,tue,309,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,management,married,high.school,unknown,yes,no,telephone,may,tue,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,services,single,basic.4y,no,yes,no,telephone,may,tue,1777,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +30,admin.,married,university.degree,no,no,yes,telephone,may,tue,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,services,married,high.school,no,no,no,telephone,may,tue,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,774,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,basic.9y,unknown,no,no,telephone,may,tue,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,married,basic.4y,no,no,no,telephone,may,tue,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,admin.,married,high.school,unknown,no,yes,telephone,may,tue,318,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,unemployed,married,professional.course,no,no,yes,telephone,may,tue,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,technician,married,university.degree,unknown,no,no,telephone,may,tue,126,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,single,unknown,no,no,no,telephone,may,tue,411,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,retired,divorced,professional.course,no,no,no,telephone,may,tue,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,unknown,married,university.degree,no,no,no,telephone,may,tue,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,self-employed,married,high.school,no,no,no,telephone,may,tue,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,single,university.degree,no,no,no,telephone,may,tue,71,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,management,married,unknown,no,yes,no,telephone,may,tue,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,services,married,high.school,no,yes,no,telephone,may,tue,869,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,blue-collar,single,basic.9y,no,no,yes,telephone,may,tue,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,199,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,admin.,married,basic.6y,unknown,no,no,telephone,may,tue,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,divorced,basic.9y,no,no,no,telephone,may,tue,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,management,married,university.degree,unknown,yes,no,telephone,may,tue,311,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,retired,married,university.degree,no,yes,no,telephone,may,tue,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,single,unknown,no,yes,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,single,university.degree,no,yes,no,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,single,university.degree,no,no,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,entrepreneur,divorced,high.school,unknown,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,married,unknown,unknown,yes,no,telephone,may,tue,473,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,married,high.school,no,no,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,entrepreneur,married,basic.6y,unknown,no,no,telephone,may,tue,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +22,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,management,married,university.degree,unknown,no,no,telephone,may,tue,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,retired,married,high.school,unknown,no,no,telephone,may,tue,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,management,married,high.school,no,no,yes,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,professional.course,unknown,no,yes,telephone,may,tue,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,admin.,single,high.school,no,no,yes,telephone,may,tue,474,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,services,married,high.school,no,no,no,telephone,may,tue,268,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,entrepreneur,married,basic.4y,unknown,yes,yes,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,admin.,married,university.degree,unknown,no,yes,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,unknown,no,no,telephone,may,tue,1313,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,admin.,married,university.degree,unknown,no,no,telephone,may,tue,72,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,blue-collar,single,high.school,no,yes,no,telephone,may,tue,309,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,divorced,high.school,unknown,yes,no,telephone,may,tue,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,entrepreneur,married,basic.9y,unknown,yes,yes,telephone,may,tue,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,housemaid,married,high.school,no,no,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,single,basic.9y,no,yes,yes,telephone,may,tue,347,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,entrepreneur,single,university.degree,unknown,yes,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,services,married,basic.9y,no,yes,no,telephone,may,tue,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,high.school,no,no,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,management,married,university.degree,no,no,yes,telephone,may,tue,66,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,1452,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,tue,487,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,technician,married,basic.9y,no,no,no,telephone,may,tue,610,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,technician,divorced,high.school,no,yes,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,547,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,no,yes,no,telephone,may,tue,522,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,single,high.school,no,yes,no,telephone,may,tue,227,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,housemaid,married,basic.9y,unknown,yes,no,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,tue,1376,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,unknown,no,yes,no,telephone,may,tue,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,services,married,unknown,no,no,no,telephone,may,tue,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,tue,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,housemaid,divorced,university.degree,no,no,no,telephone,may,tue,834,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,195,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,technician,married,high.school,no,yes,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,tue,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,535,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,management,married,university.degree,no,yes,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,tue,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,tue,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,services,married,high.school,unknown,no,no,telephone,may,tue,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,married,basic.9y,unknown,yes,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,unemployed,married,professional.course,no,no,no,telephone,may,tue,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,359,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,self-employed,married,basic.4y,unknown,yes,no,telephone,may,tue,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,592,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,retired,married,basic.9y,no,no,no,telephone,may,tue,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,divorced,university.degree,unknown,no,no,telephone,may,tue,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,self-employed,married,university.degree,unknown,no,no,telephone,may,tue,138,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +51,retired,married,basic.9y,no,yes,no,telephone,may,tue,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,services,married,high.school,no,unknown,unknown,telephone,may,tue,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,services,married,high.school,no,yes,no,telephone,may,tue,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,tue,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,unemployed,married,university.degree,no,no,no,telephone,may,tue,592,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,technician,married,basic.9y,no,yes,no,telephone,may,tue,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,married,university.degree,no,yes,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,self-employed,married,basic.6y,unknown,yes,yes,telephone,may,tue,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,admin.,single,university.degree,no,no,no,telephone,may,tue,266,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,services,married,high.school,unknown,no,yes,telephone,may,tue,335,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,divorced,basic.9y,no,no,no,telephone,may,tue,235,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,admin.,married,high.school,no,yes,yes,telephone,may,tue,697,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,unknown,unknown,unknown,no,no,telephone,may,tue,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,married,professional.course,no,unknown,unknown,telephone,may,tue,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,student,single,university.degree,no,yes,no,telephone,may,tue,1042,17,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,married,high.school,no,unknown,unknown,telephone,may,tue,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,management,married,basic.9y,no,yes,no,telephone,may,tue,378,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,student,single,high.school,unknown,yes,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,professional.course,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,management,married,university.degree,no,yes,no,telephone,may,tue,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,married,professional.course,no,no,no,telephone,may,tue,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,services,divorced,high.school,no,yes,no,telephone,may,tue,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,retired,single,professional.course,no,no,no,telephone,may,tue,249,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,basic.4y,no,yes,no,telephone,may,tue,188,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,technician,married,professional.course,no,yes,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,single,university.degree,no,no,no,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,management,married,basic.9y,no,yes,yes,telephone,may,tue,415,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,tue,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,retired,married,basic.9y,unknown,no,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,37,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,management,single,high.school,no,no,no,telephone,may,tue,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,married,professional.course,no,yes,no,telephone,may,tue,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,basic.4y,unknown,no,no,telephone,may,tue,1045,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,housemaid,married,professional.course,unknown,no,no,telephone,may,tue,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,self-employed,married,professional.course,no,no,no,telephone,may,tue,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,management,married,basic.4y,no,no,no,telephone,may,tue,325,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,650,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +41,technician,married,professional.course,no,no,no,telephone,may,tue,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,38,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +47,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,625,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,married,university.degree,no,no,yes,telephone,may,tue,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,management,single,basic.9y,unknown,yes,no,telephone,may,tue,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,97,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,management,married,professional.course,no,no,no,telephone,may,tue,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,retired,married,basic.4y,no,yes,yes,telephone,may,tue,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,999,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,divorced,basic.9y,no,no,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,self-employed,married,unknown,unknown,no,yes,telephone,may,tue,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,289,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,unemployed,married,basic.4y,unknown,no,no,telephone,may,tue,217,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,admin.,single,university.degree,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,retired,divorced,high.school,no,yes,no,telephone,may,tue,60,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,married,basic.6y,no,yes,yes,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,26,14,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,tue,128,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,married,professional.course,no,yes,no,telephone,may,tue,215,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,admin.,single,high.school,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,management,married,high.school,no,yes,yes,telephone,may,tue,52,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,services,married,basic.6y,unknown,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,may,tue,292,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,129,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,housemaid,married,basic.4y,no,unknown,unknown,telephone,may,tue,201,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,admin.,married,high.school,no,yes,no,telephone,may,tue,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,services,married,basic.9y,no,unknown,unknown,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,tue,657,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,admin.,married,basic.6y,unknown,yes,yes,telephone,may,tue,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,technician,divorced,university.degree,unknown,yes,no,telephone,may,tue,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,services,married,high.school,no,no,no,telephone,may,tue,443,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,technician,married,basic.9y,unknown,yes,yes,telephone,may,tue,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,tue,127,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,tue,1063,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +51,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,housemaid,married,high.school,no,no,no,telephone,may,tue,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,technician,married,professional.course,no,yes,no,telephone,may,tue,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,1446,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +26,blue-collar,married,basic.4y,no,yes,yes,telephone,may,tue,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,admin.,married,basic.9y,unknown,yes,yes,telephone,may,tue,412,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +52,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,29,16,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,admin.,married,high.school,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,blue-collar,married,unknown,no,no,no,telephone,may,tue,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,basic.9y,unknown,yes,no,telephone,may,tue,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,admin.,married,high.school,no,yes,no,telephone,may,tue,723,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +45,unemployed,married,university.degree,no,no,no,telephone,may,tue,550,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,married,professional.course,no,yes,no,telephone,may,tue,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,professional.course,unknown,no,no,telephone,may,tue,192,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,admin.,divorced,university.degree,no,no,no,telephone,may,tue,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,admin.,married,high.school,no,no,no,telephone,may,tue,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,technician,single,university.degree,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,self-employed,single,university.degree,no,unknown,unknown,telephone,may,tue,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +24,student,married,university.degree,no,no,no,telephone,may,tue,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +36,services,married,high.school,no,no,no,telephone,may,tue,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,basic.4y,unknown,yes,yes,telephone,may,tue,139,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,16,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +30,technician,married,university.degree,no,no,no,telephone,may,tue,169,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,self-employed,single,basic.9y,no,no,no,telephone,may,tue,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +60,admin.,married,university.degree,unknown,no,no,telephone,may,tue,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,technician,single,university.degree,no,yes,no,telephone,may,tue,446,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,6,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,retired,married,high.school,unknown,no,no,telephone,may,tue,15,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +24,admin.,single,high.school,no,no,no,telephone,may,tue,172,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,admin.,divorced,university.degree,no,no,no,telephone,may,tue,94,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,admin.,single,high.school,no,no,no,telephone,may,tue,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +59,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,tue,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,70,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,admin.,married,basic.9y,no,no,no,telephone,may,tue,91,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,technician,married,unknown,no,yes,no,telephone,may,tue,324,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,entrepreneur,married,basic.6y,no,no,no,telephone,may,tue,465,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +27,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,management,single,basic.9y,no,no,no,telephone,may,tue,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,divorced,professional.course,no,yes,no,telephone,may,tue,191,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,unemployed,married,high.school,no,no,no,telephone,may,tue,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,services,married,high.school,no,no,no,telephone,may,tue,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +35,technician,married,university.degree,no,yes,no,telephone,may,tue,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +57,technician,divorced,unknown,no,no,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,services,married,professional.course,no,yes,no,telephone,may,tue,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +49,admin.,single,high.school,no,no,no,telephone,may,tue,363,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,basic.6y,no,yes,no,telephone,may,tue,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,technician,married,university.degree,unknown,yes,no,telephone,may,tue,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +24,services,single,high.school,no,no,no,telephone,may,tue,119,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,103,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +44,admin.,married,university.degree,no,no,no,telephone,may,tue,10,17,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +37,technician,married,professional.course,no,yes,no,telephone,may,tue,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,484,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,single,professional.course,no,no,no,telephone,may,tue,485,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,404,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,tue,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,technician,single,professional.course,no,yes,yes,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,no,no,no,telephone,may,tue,919,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,admin.,single,high.school,no,no,no,telephone,may,tue,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +32,services,married,high.school,unknown,no,yes,telephone,may,tue,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,admin.,married,unknown,unknown,no,no,telephone,may,tue,185,12,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +22,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,777,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,housemaid,married,basic.9y,no,no,no,telephone,may,tue,340,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +29,admin.,single,high.school,no,no,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +50,technician,married,professional.course,unknown,yes,no,telephone,may,tue,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,housemaid,married,basic.9y,no,no,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,54,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,services,divorced,basic.4y,unknown,yes,no,telephone,may,tue,26,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +43,admin.,married,university.degree,no,no,no,telephone,may,tue,350,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,services,married,high.school,unknown,yes,no,telephone,may,tue,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,single,university.degree,no,no,no,telephone,may,tue,47,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,214,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,446,7,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,management,married,basic.9y,no,yes,no,telephone,may,tue,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,admin.,divorced,high.school,no,yes,no,telephone,may,tue,181,6,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,747,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,admin.,single,high.school,no,yes,no,telephone,may,tue,214,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,divorced,basic.4y,no,yes,no,telephone,may,tue,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +53,admin.,married,university.degree,no,no,yes,telephone,may,tue,37,13,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,housemaid,married,basic.4y,no,unknown,unknown,telephone,may,tue,129,8,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +25,services,single,high.school,no,no,no,telephone,may,tue,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +42,admin.,married,high.school,no,no,no,telephone,may,tue,1392,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +34,services,married,high.school,unknown,yes,yes,telephone,may,tue,441,9,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,technician,divorced,basic.4y,no,yes,no,telephone,may,tue,725,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +38,admin.,married,high.school,no,no,no,telephone,may,tue,213,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,technician,single,high.school,no,no,yes,telephone,may,tue,177,10,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +46,services,married,professional.course,no,yes,no,telephone,may,tue,273,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +58,retired,married,university.degree,no,no,no,telephone,may,tue,98,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +39,services,married,high.school,no,no,yes,telephone,may,tue,480,4,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +54,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +31,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +40,services,single,high.school,no,yes,yes,telephone,may,tue,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +56,retired,divorced,basic.4y,no,no,no,telephone,may,tue,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +41,admin.,married,university.degree,no,no,no,telephone,may,tue,352,5,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +33,admin.,divorced,high.school,no,no,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +55,technician,married,high.school,no,yes,no,telephone,may,tue,719,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,yes +33,admin.,divorced,high.school,no,no,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +48,admin.,divorced,high.school,no,no,no,telephone,may,tue,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.856,5191,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,unemployed,married,university.degree,no,no,no,telephone,may,wed,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,admin.,single,basic.9y,unknown,no,yes,telephone,may,wed,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +60,housemaid,married,high.school,unknown,yes,no,telephone,may,wed,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,technician,married,basic.9y,no,no,no,telephone,may,wed,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,married,university.degree,no,yes,yes,telephone,may,wed,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,unemployed,married,basic.9y,no,yes,no,telephone,may,wed,64,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,management,divorced,basic.6y,unknown,yes,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,housemaid,married,basic.4y,unknown,no,yes,telephone,may,wed,801,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,management,single,university.degree,no,no,no,telephone,may,wed,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,technician,married,university.degree,no,no,no,telephone,may,wed,86,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,wed,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,housemaid,married,university.degree,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,married,high.school,no,yes,no,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,services,married,high.school,no,yes,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,married,high.school,no,yes,no,telephone,may,wed,339,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,171,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,18,28,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,admin.,single,university.degree,no,yes,yes,telephone,may,wed,938,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +38,blue-collar,married,high.school,unknown,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,self-employed,married,basic.4y,no,no,no,telephone,may,wed,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,married,high.school,no,yes,yes,telephone,may,wed,692,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,married,professional.course,no,yes,yes,telephone,may,wed,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,single,high.school,unknown,yes,yes,telephone,may,wed,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,management,married,university.degree,unknown,no,no,telephone,may,wed,134,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,self-employed,married,university.degree,no,yes,yes,telephone,may,wed,323,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,management,married,university.degree,no,yes,no,telephone,may,wed,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,self-employed,married,basic.4y,unknown,no,yes,telephone,may,wed,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,482,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,married,university.degree,no,yes,yes,telephone,may,wed,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,housemaid,single,high.school,unknown,yes,no,telephone,may,wed,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,married,high.school,no,yes,yes,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,self-employed,single,university.degree,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,554,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,432,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,single,high.school,no,no,no,telephone,may,wed,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,married,high.school,no,no,no,telephone,may,wed,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,single,professional.course,no,yes,no,telephone,may,wed,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +41,technician,married,university.degree,no,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,admin.,married,high.school,unknown,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,services,married,professional.course,no,no,no,telephone,may,wed,287,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,wed,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,retired,married,professional.course,unknown,no,no,telephone,may,wed,905,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +25,services,divorced,high.school,no,yes,yes,telephone,may,wed,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +22,services,single,basic.4y,no,no,no,telephone,may,wed,91,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,111,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +60,entrepreneur,married,basic.4y,no,yes,no,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,married,university.degree,no,no,no,telephone,may,wed,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,unemployed,married,professional.course,no,yes,no,telephone,may,wed,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,technician,married,university.degree,no,yes,yes,telephone,may,wed,298,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,single,university.degree,no,no,no,telephone,may,wed,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,entrepreneur,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,housemaid,married,basic.9y,no,yes,no,telephone,may,wed,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,508,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,services,single,high.school,no,no,no,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,professional.course,no,no,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,783,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +53,retired,married,high.school,unknown,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,services,married,basic.9y,no,no,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,technician,single,professional.course,unknown,no,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,management,married,high.school,unknown,no,no,telephone,may,wed,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,single,professional.course,unknown,no,no,telephone,may,wed,1106,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,419,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,603,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,single,university.degree,unknown,yes,yes,telephone,may,wed,415,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,872,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,490,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,admin.,married,high.school,no,yes,no,telephone,may,wed,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,management,married,university.degree,no,yes,no,telephone,may,wed,27,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,services,married,high.school,no,no,yes,telephone,may,wed,425,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,admin.,married,professional.course,unknown,no,no,telephone,may,wed,12,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,management,single,university.degree,no,yes,no,telephone,may,wed,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,divorced,professional.course,no,yes,no,telephone,may,wed,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,services,married,high.school,no,no,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,services,married,high.school,no,no,no,telephone,may,wed,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,management,married,high.school,unknown,yes,no,telephone,may,wed,641,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,services,married,university.degree,no,yes,no,telephone,may,wed,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,technician,married,basic.9y,unknown,yes,no,telephone,may,wed,958,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,628,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,admin.,married,university.degree,no,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,management,married,basic.9y,no,yes,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,494,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,166,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,wed,494,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,530,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,retired,married,professional.course,no,no,no,telephone,may,wed,759,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,entrepreneur,single,basic.9y,no,no,no,telephone,may,wed,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,admin.,single,university.degree,no,no,no,telephone,may,wed,819,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,wed,648,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,management,married,high.school,no,no,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,services,divorced,high.school,unknown,no,no,telephone,may,wed,220,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,retired,married,high.school,unknown,no,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,management,married,university.degree,no,yes,no,telephone,may,wed,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,professional.course,no,yes,yes,telephone,may,wed,634,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,management,married,university.degree,no,no,yes,telephone,may,wed,717,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,management,married,high.school,unknown,yes,no,telephone,may,wed,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,housemaid,married,basic.4y,unknown,no,yes,telephone,may,wed,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,student,single,university.degree,unknown,yes,no,telephone,may,wed,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,951,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,technician,single,university.degree,no,yes,no,telephone,may,wed,412,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +27,admin.,single,basic.9y,no,yes,yes,telephone,may,wed,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,technician,divorced,basic.9y,no,no,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,technician,married,professional.course,no,yes,yes,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,married,high.school,no,yes,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,retired,married,basic.4y,no,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,management,married,university.degree,no,yes,no,telephone,may,wed,578,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,retired,divorced,high.school,unknown,yes,no,telephone,may,wed,359,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,services,single,high.school,no,yes,no,telephone,may,wed,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,487,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,admin.,married,university.degree,no,yes,no,telephone,may,wed,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,59,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,retired,divorced,high.school,no,yes,no,telephone,may,wed,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,housemaid,single,university.degree,no,no,yes,telephone,may,wed,502,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,795,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +60,technician,divorced,professional.course,unknown,yes,no,telephone,may,wed,202,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,management,married,university.degree,no,yes,no,telephone,may,wed,29,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,408,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,management,married,university.degree,no,yes,yes,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +60,entrepreneur,married,basic.4y,no,no,yes,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,management,married,university.degree,no,no,yes,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,admin.,single,high.school,no,no,no,telephone,may,wed,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,admin.,married,basic.9y,no,no,no,telephone,may,wed,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,entrepreneur,married,high.school,unknown,no,no,telephone,may,wed,7,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,blue-collar,single,professional.course,no,no,no,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,17,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,504,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,admin.,married,high.school,no,no,no,telephone,may,wed,726,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,542,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,wed,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,services,married,high.school,unknown,no,no,telephone,may,wed,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,250,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,retired,married,high.school,unknown,no,no,telephone,may,wed,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,admin.,single,unknown,unknown,yes,yes,telephone,may,wed,303,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,single,professional.course,no,yes,yes,telephone,may,wed,828,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +41,blue-collar,divorced,basic.6y,no,yes,yes,telephone,may,wed,343,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,services,married,high.school,no,no,no,telephone,may,wed,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,married,university.degree,no,yes,yes,telephone,may,wed,786,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,services,married,high.school,no,no,no,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,divorced,professional.course,no,no,no,telephone,may,wed,509,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,161,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,services,divorced,high.school,no,yes,yes,telephone,may,wed,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,married,high.school,no,yes,yes,telephone,may,wed,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,housemaid,married,basic.4y,no,no,yes,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,technician,married,high.school,unknown,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,single,unknown,unknown,no,no,telephone,may,wed,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,technician,married,university.degree,unknown,no,no,telephone,may,wed,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,single,high.school,no,no,no,telephone,may,wed,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,single,high.school,unknown,no,no,telephone,may,wed,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,management,married,basic.9y,unknown,yes,no,telephone,may,wed,59,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,39,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,admin.,married,high.school,no,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,single,university.degree,no,yes,no,telephone,may,wed,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,wed,44,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,admin.,single,high.school,unknown,yes,no,telephone,may,wed,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,management,married,university.degree,unknown,no,no,telephone,may,wed,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,45,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,single,high.school,no,yes,no,telephone,may,wed,738,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,unknown,single,basic.9y,unknown,yes,no,telephone,may,wed,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,management,married,basic.9y,no,no,yes,telephone,may,wed,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,services,married,high.school,no,yes,yes,telephone,may,wed,383,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,services,married,high.school,no,yes,yes,telephone,may,wed,184,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,housemaid,married,high.school,no,no,no,telephone,may,wed,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,divorced,professional.course,no,yes,no,telephone,may,wed,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,418,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,self-employed,married,university.degree,no,no,no,telephone,may,wed,17,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,management,single,professional.course,no,no,no,telephone,may,wed,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,technician,divorced,professional.course,no,no,no,telephone,may,wed,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,wed,623,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,services,single,high.school,no,no,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,wed,650,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,housemaid,married,high.school,no,yes,no,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,unemployed,single,basic.4y,unknown,yes,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,services,single,high.school,no,unknown,unknown,telephone,may,wed,1307,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,married,professional.course,no,yes,no,telephone,may,wed,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,wed,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,management,married,basic.9y,no,yes,no,telephone,may,wed,187,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,748,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,486,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,492,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,retired,divorced,basic.4y,no,yes,yes,telephone,may,wed,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,university.degree,no,yes,no,telephone,may,wed,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,304,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,entrepreneur,married,professional.course,no,yes,no,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,blue-collar,married,high.school,no,yes,no,telephone,may,wed,836,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,unknown,married,high.school,unknown,yes,no,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,technician,married,high.school,no,no,no,telephone,may,wed,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,housemaid,married,basic.4y,no,no,no,telephone,may,wed,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +40,technician,married,professional.course,unknown,no,no,telephone,may,wed,288,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,admin.,divorced,high.school,unknown,yes,yes,telephone,may,wed,354,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,154,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,married,high.school,no,yes,yes,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,wed,563,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,wed,450,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,admin.,married,university.degree,no,yes,no,telephone,may,wed,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,blue-collar,single,basic.4y,no,yes,yes,telephone,may,wed,371,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,518,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,wed,111,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,blue-collar,single,basic.4y,no,yes,yes,telephone,may,wed,196,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,high.school,no,yes,no,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,services,divorced,high.school,no,no,no,telephone,may,wed,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,technician,married,professional.course,no,yes,no,telephone,may,wed,265,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,technician,married,university.degree,unknown,no,no,telephone,may,wed,899,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,588,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,blue-collar,single,high.school,no,no,no,telephone,may,wed,393,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,single,university.degree,unknown,no,no,telephone,may,wed,857,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +26,services,divorced,basic.6y,no,yes,no,telephone,may,wed,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,164,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,management,married,university.degree,no,unknown,unknown,telephone,may,wed,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,technician,single,university.degree,no,no,no,telephone,may,wed,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,unemployed,married,high.school,no,no,yes,telephone,may,wed,38,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,wed,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,unknown,single,basic.6y,unknown,yes,no,telephone,may,wed,660,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,1681,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +35,technician,married,high.school,no,no,no,telephone,may,wed,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,self-employed,married,university.degree,no,no,no,telephone,may,wed,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,retired,married,basic.4y,unknown,yes,no,telephone,may,wed,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,technician,single,university.degree,no,no,no,telephone,may,wed,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,wed,272,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,professional.course,no,yes,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,572,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,wed,573,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,244,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,wed,384,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,technician,divorced,professional.course,no,no,no,telephone,may,wed,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,unemployed,divorced,high.school,unknown,yes,no,telephone,may,wed,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,management,single,university.degree,no,yes,no,telephone,may,wed,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,admin.,married,high.school,no,yes,no,telephone,may,wed,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,811,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,management,married,basic.9y,no,no,no,telephone,may,wed,890,26,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,divorced,university.degree,no,no,no,telephone,may,wed,681,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +36,technician,married,basic.9y,no,no,no,telephone,may,wed,443,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,1162,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,entrepreneur,married,university.degree,no,no,yes,telephone,may,wed,1697,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +28,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,wed,860,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +49,housemaid,divorced,basic.6y,no,yes,no,telephone,may,wed,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,technician,married,high.school,unknown,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +60,retired,married,professional.course,unknown,no,no,telephone,may,wed,280,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,married,basic.9y,no,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,technician,married,professional.course,unknown,no,no,telephone,may,wed,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,admin.,single,basic.9y,unknown,yes,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,technician,divorced,university.degree,unknown,yes,yes,telephone,may,wed,297,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,management,married,university.degree,no,unknown,unknown,telephone,may,wed,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,self-employed,married,high.school,no,no,yes,telephone,may,wed,394,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,technician,married,university.degree,unknown,yes,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,services,divorced,high.school,no,yes,no,telephone,may,wed,312,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,technician,single,professional.course,unknown,no,no,telephone,may,wed,474,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,services,married,high.school,no,no,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,admin.,married,university.degree,unknown,yes,yes,telephone,may,wed,232,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +41,technician,married,professional.course,no,yes,no,telephone,may,wed,446,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,married,high.school,no,no,no,telephone,may,wed,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,services,divorced,high.school,no,no,no,telephone,may,wed,111,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +57,services,divorced,high.school,no,yes,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,559,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,services,married,high.school,unknown,yes,no,telephone,may,wed,189,7,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,management,married,university.degree,no,no,no,telephone,may,wed,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,wed,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +24,unemployed,single,university.degree,no,no,no,telephone,may,wed,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,self-employed,married,university.degree,no,yes,no,telephone,may,wed,162,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,services,married,high.school,unknown,yes,no,telephone,may,wed,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,admin.,single,university.degree,unknown,yes,no,telephone,may,wed,222,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,technician,married,high.school,no,yes,no,telephone,may,wed,69,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,single,basic.6y,unknown,yes,yes,telephone,may,wed,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,admin.,married,university.degree,unknown,no,no,telephone,may,wed,192,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,wed,273,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,single,university.degree,no,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,admin.,married,high.school,no,no,no,telephone,may,wed,465,11,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,technician,married,high.school,no,yes,no,telephone,may,wed,87,14,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,single,high.school,no,yes,no,telephone,may,wed,292,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,wed,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,single,high.school,unknown,yes,no,telephone,may,wed,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,23,16,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,technician,married,professional.course,no,unknown,unknown,telephone,may,wed,575,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,wed,67,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,wed,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,self-employed,married,university.degree,no,no,no,telephone,may,wed,108,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,self-employed,single,university.degree,no,yes,no,telephone,may,wed,373,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,services,single,university.degree,no,no,no,telephone,may,wed,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,married,high.school,no,yes,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,services,married,high.school,unknown,unknown,unknown,telephone,may,wed,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,management,married,university.degree,no,yes,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,blue-collar,married,high.school,no,no,no,telephone,may,wed,357,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,unemployed,divorced,university.degree,no,yes,no,telephone,may,wed,152,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,36,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,self-employed,married,university.degree,no,yes,no,telephone,may,wed,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,self-employed,married,basic.4y,unknown,no,no,telephone,may,wed,389,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,services,single,professional.course,unknown,no,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +54,admin.,married,high.school,no,no,no,telephone,may,wed,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,married,university.degree,unknown,yes,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,technician,married,basic.6y,unknown,yes,no,telephone,may,wed,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,117,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,832,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +25,blue-collar,single,basic.4y,no,no,no,telephone,may,wed,149,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +52,management,divorced,university.degree,no,no,no,telephone,may,wed,634,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,self-employed,married,basic.9y,no,no,no,telephone,may,wed,173,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,admin.,married,high.school,no,yes,no,telephone,may,wed,987,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,admin.,single,university.degree,no,yes,no,telephone,may,wed,66,13,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,services,divorced,basic.6y,no,no,no,telephone,may,wed,281,15,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +51,services,married,high.school,unknown,no,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,services,married,basic.9y,no,yes,yes,telephone,may,wed,369,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,services,divorced,high.school,no,yes,yes,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,blue-collar,divorced,unknown,no,yes,yes,telephone,may,wed,799,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +43,blue-collar,married,high.school,unknown,unknown,unknown,telephone,may,wed,671,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,services,married,high.school,unknown,yes,no,telephone,may,wed,397,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +56,services,divorced,high.school,unknown,yes,no,telephone,may,wed,935,1,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,management,married,university.degree,no,yes,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +31,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,21,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,entrepreneur,married,basic.6y,no,unknown,unknown,telephone,may,wed,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,wed,59,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,233,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,self-employed,divorced,unknown,no,no,no,telephone,may,wed,1161,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,services,married,high.school,no,no,no,telephone,may,wed,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,single,high.school,no,no,no,telephone,may,wed,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,housemaid,single,high.school,no,yes,no,telephone,may,wed,178,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +38,services,single,basic.9y,unknown,yes,no,telephone,may,wed,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,services,single,high.school,no,no,no,telephone,may,wed,45,9,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,entrepreneur,married,professional.course,no,no,no,telephone,may,wed,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,unknown,married,basic.6y,no,no,no,telephone,may,wed,254,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,blue-collar,single,high.school,no,yes,yes,telephone,may,wed,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +26,admin.,married,university.degree,no,no,no,telephone,may,wed,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,blue-collar,married,high.school,unknown,no,no,telephone,may,wed,713,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,admin.,single,university.degree,no,no,no,telephone,may,wed,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,admin.,married,high.school,no,no,no,telephone,may,wed,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,923,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +54,technician,married,professional.course,no,yes,no,telephone,may,wed,150,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,services,married,basic.6y,no,no,no,telephone,may,wed,155,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +46,entrepreneur,married,university.degree,unknown,no,no,telephone,may,wed,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +49,admin.,divorced,high.school,no,yes,no,telephone,may,wed,202,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +33,services,married,high.school,unknown,no,no,telephone,may,wed,227,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +55,technician,married,high.school,no,no,no,telephone,may,wed,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,admin.,single,unknown,unknown,yes,no,telephone,may,wed,30,12,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,divorced,high.school,no,no,no,telephone,may,wed,206,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,admin.,married,university.degree,no,yes,yes,telephone,may,wed,362,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,wed,15,19,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,315,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +44,blue-collar,married,high.school,no,no,no,telephone,may,wed,250,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +30,technician,married,professional.course,no,no,no,telephone,may,wed,700,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +40,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,154,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +29,entrepreneur,married,basic.6y,no,yes,no,telephone,may,wed,190,5,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,20,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +47,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,191,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +58,admin.,divorced,university.degree,no,yes,yes,telephone,may,wed,363,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,339,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +37,services,married,high.school,no,yes,yes,telephone,may,wed,521,3,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,yes +37,technician,married,professional.course,unknown,no,no,telephone,may,wed,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +34,admin.,single,university.degree,no,no,yes,telephone,may,wed,110,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,wed,142,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +48,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,173,6,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +59,admin.,single,professional.course,no,no,no,telephone,may,wed,291,4,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,wed,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +28,services,married,high.school,unknown,yes,no,telephone,may,wed,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +53,unemployed,married,basic.4y,unknown,yes,no,telephone,may,wed,339,10,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +50,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,526,8,999,0,nonexistent,1.1,93.994,-36.4,4.858,5191,no +45,technician,married,high.school,no,yes,no,telephone,may,fri,78,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,unknown,no,no,yes,telephone,may,fri,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,72,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,407,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,married,high.school,unknown,no,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,high.school,unknown,yes,no,telephone,may,fri,158,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,405,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,single,university.degree,no,yes,no,telephone,may,fri,417,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,single,unknown,unknown,yes,no,telephone,may,fri,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,housemaid,married,basic.6y,unknown,yes,no,telephone,may,fri,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,university.degree,no,yes,no,telephone,may,fri,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,214,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,professional.course,no,no,no,telephone,may,fri,350,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,yes,no,telephone,may,fri,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,entrepreneur,married,university.degree,no,no,yes,telephone,may,fri,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,329,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,628,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,110,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,fri,259,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,yes,no,telephone,may,fri,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,divorced,professional.course,no,yes,no,telephone,may,fri,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,services,single,basic.9y,no,no,yes,telephone,may,fri,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,management,married,basic.4y,no,no,no,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,fri,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,unknown,unknown,yes,yes,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,divorced,high.school,no,no,no,telephone,may,fri,346,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,high.school,no,unknown,unknown,telephone,may,fri,271,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,high.school,no,no,no,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,university.degree,no,yes,yes,telephone,may,fri,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,621,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,no,no,telephone,may,fri,1349,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,unknown,no,no,telephone,may,fri,70,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,professional.course,no,no,no,telephone,may,fri,509,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,high.school,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,high.school,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,no,yes,telephone,may,fri,3,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,fri,1171,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,university.degree,no,no,yes,telephone,may,fri,359,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,professional.course,no,no,no,telephone,may,fri,736,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +51,unemployed,married,basic.9y,unknown,no,no,telephone,may,fri,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,basic.9y,no,no,no,telephone,may,fri,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,no,yes,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,housemaid,married,basic.4y,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,high.school,no,no,no,telephone,may,fri,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,services,married,high.school,unknown,no,no,telephone,may,fri,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,412,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,unknown,no,no,telephone,may,fri,90,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,divorced,basic.9y,no,no,no,telephone,may,fri,145,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,married,professional.course,no,no,yes,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.9y,unknown,no,yes,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,534,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,unknown,yes,no,telephone,may,fri,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,technician,divorced,university.degree,no,no,no,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,unknown,no,no,yes,telephone,may,fri,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,basic.6y,unknown,no,no,telephone,may,fri,785,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +37,technician,single,basic.9y,no,no,yes,telephone,may,fri,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,self-employed,married,university.degree,no,no,no,telephone,may,fri,286,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,divorced,high.school,no,no,yes,telephone,may,fri,442,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,high.school,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +22,blue-collar,single,basic.6y,unknown,no,yes,telephone,may,fri,1073,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,504,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,basic.4y,unknown,no,no,telephone,may,fri,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,single,university.degree,no,yes,yes,telephone,may,fri,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,fri,124,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,divorced,high.school,no,yes,no,telephone,may,fri,425,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,services,married,high.school,no,yes,no,telephone,may,fri,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,divorced,university.degree,no,no,yes,telephone,may,fri,164,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,professional.course,unknown,yes,no,telephone,may,fri,530,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,basic.4y,unknown,no,yes,telephone,may,fri,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,high.school,no,yes,no,telephone,may,fri,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,fri,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,high.school,no,no,no,telephone,may,fri,700,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,high.school,no,no,no,telephone,may,fri,601,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,university.degree,no,yes,no,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.9y,no,no,no,telephone,may,fri,86,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,single,university.degree,no,yes,no,telephone,may,fri,256,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,unknown,no,yes,no,telephone,may,fri,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,single,university.degree,no,yes,no,telephone,may,fri,415,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,university.degree,no,yes,no,telephone,may,fri,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,services,single,basic.9y,no,yes,yes,telephone,may,fri,816,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,university.degree,no,no,no,telephone,may,fri,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,100,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,university.degree,unknown,yes,yes,telephone,may,fri,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unemployed,married,university.degree,no,no,no,telephone,may,fri,191,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,divorced,unknown,no,unknown,unknown,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,high.school,no,no,no,telephone,may,fri,533,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,university.degree,no,yes,no,telephone,may,fri,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,divorced,university.degree,no,no,no,telephone,may,fri,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,yes,yes,telephone,may,fri,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,divorced,university.degree,no,yes,no,telephone,may,fri,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,fri,354,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,single,university.degree,no,yes,yes,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,housemaid,married,high.school,unknown,no,no,telephone,may,fri,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,108,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,entrepreneur,divorced,university.degree,unknown,yes,no,telephone,may,fri,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,housemaid,married,basic.9y,no,yes,no,telephone,may,fri,263,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,600,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +55,housemaid,married,professional.course,no,yes,yes,telephone,may,fri,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,high.school,unknown,no,no,telephone,may,fri,319,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,single,university.degree,unknown,no,no,telephone,may,fri,128,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,236,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,67,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,divorced,basic.9y,no,yes,yes,telephone,may,fri,246,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,self-employed,married,high.school,unknown,yes,no,telephone,may,fri,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,professional.course,no,yes,no,telephone,may,fri,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,services,divorced,professional.course,no,yes,no,telephone,may,fri,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,married,professional.course,no,yes,no,telephone,may,fri,245,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,retired,married,high.school,no,no,no,telephone,may,fri,924,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,334,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,management,married,university.degree,no,yes,no,telephone,may,fri,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,university.degree,no,no,no,telephone,may,fri,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,professional.course,no,no,yes,telephone,may,fri,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.4y,no,no,yes,telephone,may,fri,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,yes,no,telephone,may,fri,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,no,no,no,telephone,may,fri,911,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,university.degree,no,no,no,telephone,may,fri,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,yes,no,telephone,may,fri,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,high.school,unknown,no,no,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,entrepreneur,married,high.school,unknown,yes,no,telephone,may,fri,314,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,unemployed,divorced,university.degree,unknown,yes,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,no,no,no,telephone,may,fri,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,fri,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,single,high.school,no,yes,yes,telephone,may,fri,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,high.school,no,yes,no,telephone,may,fri,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,yes,yes,telephone,may,fri,14,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,unknown,no,no,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,438,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,university.degree,no,no,no,telephone,may,fri,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,divorced,basic.6y,no,no,no,telephone,may,fri,111,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,basic.4y,unknown,no,no,telephone,may,fri,463,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,services,divorced,university.degree,no,no,yes,telephone,may,fri,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,self-employed,married,university.degree,unknown,unknown,unknown,telephone,may,fri,38,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,services,single,high.school,unknown,yes,yes,telephone,may,fri,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,housemaid,single,unknown,unknown,yes,yes,telephone,may,fri,234,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,691,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,high.school,no,yes,no,telephone,may,fri,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,single,basic.9y,unknown,yes,no,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,professional.course,no,yes,yes,telephone,may,fri,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,single,university.degree,unknown,yes,no,telephone,may,fri,390,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,single,professional.course,no,yes,yes,telephone,may,fri,249,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,divorced,unknown,unknown,yes,no,telephone,may,fri,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,divorced,high.school,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,university.degree,no,yes,no,telephone,may,fri,7,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,fri,465,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,fri,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,no,yes,no,telephone,may,fri,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,university.degree,no,yes,yes,telephone,may,fri,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,student,single,basic.9y,unknown,yes,yes,telephone,may,fri,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,yes,yes,telephone,may,fri,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,married,unknown,unknown,no,no,telephone,may,fri,25,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,single,university.degree,unknown,no,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,married,basic.9y,no,yes,yes,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,single,professional.course,no,yes,no,telephone,may,fri,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,technician,divorced,university.degree,no,no,no,telephone,may,fri,281,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,fri,567,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,professional.course,no,no,no,telephone,may,fri,284,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,378,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,divorced,basic.6y,unknown,yes,yes,telephone,may,fri,353,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,entrepreneur,married,basic.9y,no,no,no,telephone,may,fri,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,fri,536,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,unknown,no,no,no,telephone,may,fri,496,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,single,professional.course,no,no,no,telephone,may,fri,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,unknown,no,no,no,telephone,may,fri,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,university.degree,no,yes,no,telephone,may,fri,258,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,entrepreneur,married,university.degree,no,no,no,telephone,may,fri,110,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,high.school,no,yes,no,telephone,may,fri,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +23,services,married,basic.9y,no,yes,no,telephone,may,fri,250,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,high.school,no,yes,no,telephone,may,fri,79,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,563,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,unknown,yes,no,telephone,may,fri,147,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,married,university.degree,no,no,no,telephone,may,fri,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,entrepreneur,married,basic.6y,unknown,unknown,unknown,telephone,may,fri,71,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.4y,no,no,no,telephone,may,fri,556,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,no,no,yes,telephone,may,fri,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,unknown,unknown,no,no,telephone,may,fri,456,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,no,yes,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,single,university.degree,no,no,no,telephone,may,fri,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,may,fri,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,single,high.school,no,no,yes,telephone,may,fri,148,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,single,basic.4y,unknown,no,no,telephone,may,fri,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,married,university.degree,no,no,yes,telephone,may,fri,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,university.degree,no,yes,no,telephone,may,fri,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,115,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,unknown,no,no,telephone,may,fri,290,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,57,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,811,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,no,yes,yes,telephone,may,fri,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,entrepreneur,married,basic.6y,no,yes,no,telephone,may,fri,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,high.school,no,no,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,married,professional.course,no,yes,no,telephone,may,fri,1003,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,fri,542,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,fri,541,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,divorced,high.school,no,no,no,telephone,may,fri,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,unknown,no,no,telephone,may,fri,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,married,university.degree,no,yes,no,telephone,may,fri,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,retired,married,basic.9y,no,yes,no,telephone,may,fri,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,married,university.degree,no,yes,no,telephone,may,fri,66,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,no,no,no,telephone,may,fri,216,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,married,university.degree,no,yes,no,telephone,may,fri,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,married,university.degree,no,yes,no,telephone,may,fri,28,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,self-employed,married,basic.9y,no,no,no,telephone,may,fri,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,basic.6y,unknown,yes,yes,telephone,may,fri,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,yes,no,telephone,may,fri,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,university.degree,unknown,no,no,telephone,may,fri,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,divorced,professional.course,no,yes,yes,telephone,may,fri,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,216,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,418,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,single,basic.6y,no,no,no,telephone,may,fri,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,926,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,high.school,no,yes,no,telephone,may,fri,116,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,university.degree,no,yes,no,telephone,may,fri,150,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,divorced,high.school,no,yes,no,telephone,may,fri,228,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,yes,no,telephone,may,fri,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,fri,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,single,high.school,no,no,no,telephone,may,fri,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,housemaid,married,high.school,no,no,no,telephone,may,fri,138,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,fri,824,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,345,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,retired,married,basic.9y,no,yes,no,telephone,may,fri,147,42,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,high.school,no,yes,no,telephone,may,fri,773,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,fri,574,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,divorced,university.degree,no,no,no,telephone,may,fri,122,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,basic.6y,no,no,no,telephone,may,fri,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,high.school,unknown,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,343,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,professional.course,no,no,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,management,married,university.degree,no,no,no,telephone,may,fri,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,professional.course,no,unknown,unknown,telephone,may,fri,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,university.degree,no,no,no,telephone,may,fri,106,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,married,high.school,unknown,yes,yes,telephone,may,fri,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,high.school,no,yes,no,telephone,may,fri,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,university.degree,unknown,no,no,telephone,may,fri,224,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,unknown,no,yes,no,telephone,may,fri,187,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,451,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,married,professional.course,no,yes,no,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,single,professional.course,no,no,no,telephone,may,fri,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,divorced,basic.4y,unknown,yes,yes,telephone,may,fri,301,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,basic.9y,no,no,no,telephone,may,fri,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,divorced,university.degree,no,no,no,telephone,may,fri,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,professional.course,no,yes,no,telephone,may,fri,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,married,high.school,no,yes,no,telephone,may,fri,893,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +49,admin.,single,university.degree,no,no,no,telephone,may,fri,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,339,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,478,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,13,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,services,single,high.school,unknown,no,yes,telephone,may,fri,55,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,281,27,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,professional.course,no,yes,yes,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,yes,no,telephone,may,fri,423,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,basic.9y,unknown,no,no,telephone,may,fri,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,housemaid,divorced,basic.4y,unknown,no,yes,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,114,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,unknown,no,yes,no,telephone,may,fri,319,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,fri,588,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +25,self-employed,married,university.degree,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,fri,353,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,fri,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,high.school,no,yes,yes,telephone,may,fri,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,divorced,professional.course,no,no,no,telephone,may,fri,327,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,167,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,fri,89,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,high.school,no,no,no,telephone,may,fri,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,unknown,no,no,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,housemaid,married,high.school,no,yes,no,telephone,may,fri,82,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,25,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,high.school,no,no,no,telephone,may,fri,777,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +37,admin.,single,high.school,no,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,243,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,entrepreneur,married,university.degree,unknown,no,yes,telephone,may,fri,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,management,divorced,university.degree,unknown,yes,no,telephone,may,fri,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,professional.course,no,no,no,telephone,may,fri,700,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,divorced,unknown,no,no,no,telephone,may,fri,211,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,high.school,no,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,university.degree,no,yes,no,telephone,may,fri,138,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,unknown,unknown,yes,no,telephone,may,fri,553,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,single,university.degree,no,no,no,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,fri,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,unknown,no,no,telephone,may,fri,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,services,married,professional.course,no,yes,no,telephone,may,fri,253,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,yes,no,telephone,may,fri,153,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,services,single,high.school,no,no,no,telephone,may,fri,211,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,self-employed,married,university.degree,no,no,no,telephone,may,fri,493,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,married,high.school,unknown,yes,no,telephone,may,fri,597,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +35,student,single,university.degree,unknown,no,yes,telephone,may,fri,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,technician,married,professional.course,no,yes,no,telephone,may,fri,1438,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,high.school,no,no,no,telephone,may,fri,172,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,fri,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,divorced,university.degree,no,yes,no,telephone,may,fri,29,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,high.school,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,185,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,yes,no,telephone,may,fri,569,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,illiterate,unknown,no,yes,telephone,may,fri,333,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,married,university.degree,no,yes,no,telephone,may,fri,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,married,basic.4y,unknown,yes,no,telephone,may,fri,557,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,entrepreneur,married,unknown,unknown,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,209,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,management,married,unknown,no,yes,no,telephone,may,fri,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,yes,yes,telephone,may,fri,372,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,unknown,no,no,no,telephone,may,fri,92,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,basic.9y,no,yes,yes,telephone,may,fri,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,married,high.school,no,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,services,single,high.school,unknown,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,professional.course,no,no,yes,telephone,may,fri,95,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,134,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,university.degree,no,yes,yes,telephone,may,fri,138,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,university.degree,no,no,no,telephone,may,fri,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,housemaid,married,high.school,unknown,yes,no,telephone,may,fri,67,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,no,telephone,may,fri,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,292,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,university.degree,unknown,no,no,telephone,may,fri,57,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,housemaid,married,basic.6y,unknown,no,no,telephone,may,fri,38,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,151,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,331,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,1392,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +27,services,married,high.school,unknown,no,yes,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,358,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,unemployed,married,professional.course,no,yes,no,telephone,may,fri,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,unknown,no,yes,no,telephone,may,fri,181,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,divorced,basic.4y,no,yes,yes,telephone,may,fri,188,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,married,basic.9y,no,yes,no,telephone,may,fri,368,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,203,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,high.school,no,yes,no,telephone,may,fri,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.6y,no,no,yes,telephone,may,fri,297,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,retired,divorced,professional.course,no,no,no,telephone,may,fri,219,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,no,no,telephone,may,fri,129,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,247,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,fri,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,559,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,unknown,yes,no,telephone,may,fri,162,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,professional.course,no,yes,no,telephone,may,fri,75,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,married,university.degree,no,yes,no,telephone,may,fri,82,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,yes,no,telephone,may,fri,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,single,professional.course,no,no,no,telephone,may,fri,1059,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +42,blue-collar,married,unknown,no,no,yes,telephone,may,fri,248,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,divorced,high.school,unknown,no,yes,telephone,may,fri,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,divorced,basic.4y,unknown,yes,no,telephone,may,fri,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,professional.course,no,no,yes,telephone,may,fri,703,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,yes,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,348,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,no,yes,no,telephone,may,fri,430,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +49,technician,married,professional.course,no,no,no,telephone,may,fri,146,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,yes,yes,telephone,may,fri,297,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,no,no,yes,telephone,may,fri,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,106,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,university.degree,no,no,no,telephone,may,fri,465,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,104,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,married,university.degree,unknown,no,no,telephone,may,fri,213,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,no,no,yes,telephone,may,fri,74,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,university.degree,no,no,no,telephone,may,fri,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,unknown,single,basic.9y,unknown,yes,no,telephone,may,fri,252,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,high.school,unknown,yes,no,telephone,may,fri,317,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,married,university.degree,no,no,yes,telephone,may,fri,93,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,116,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,basic.6y,no,yes,no,telephone,may,fri,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,283,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,married,high.school,no,unknown,unknown,telephone,may,fri,146,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,married,university.degree,no,no,yes,telephone,may,fri,215,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,high.school,unknown,no,yes,telephone,may,fri,90,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,yes,yes,telephone,may,fri,260,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,fri,267,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,university.degree,no,yes,yes,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,divorced,university.degree,no,no,yes,telephone,may,fri,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,married,high.school,no,no,no,telephone,may,fri,427,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.6y,unknown,yes,no,telephone,may,fri,1222,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,basic.9y,no,no,yes,telephone,may,fri,426,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,no,yes,yes,telephone,may,fri,456,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,self-employed,married,basic.9y,unknown,yes,no,telephone,may,fri,40,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,university.degree,no,no,yes,telephone,may,fri,105,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,98,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,professional.course,no,no,no,telephone,may,fri,27,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,married,basic.9y,no,no,no,telephone,may,fri,100,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,management,married,university.degree,unknown,yes,no,telephone,may,fri,1034,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,single,professional.course,no,yes,no,telephone,may,fri,320,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,university.degree,no,no,no,telephone,may,fri,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,basic.9y,no,no,no,telephone,may,fri,353,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,331,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,high.school,unknown,yes,no,telephone,may,fri,159,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,university.degree,no,no,no,telephone,may,mon,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,housemaid,married,professional.course,no,yes,no,telephone,may,mon,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,unknown,no,yes,no,telephone,may,mon,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,basic.9y,no,yes,no,telephone,may,mon,146,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,admin.,married,university.degree,unknown,no,yes,telephone,may,mon,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,self-employed,married,professional.course,no,no,no,telephone,may,mon,260,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,60,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,high.school,no,yes,no,telephone,may,mon,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,no,yes,no,telephone,may,mon,373,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,mon,336,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,high.school,no,yes,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,single,high.school,no,no,no,telephone,may,mon,501,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,single,university.degree,no,no,no,telephone,may,mon,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,unknown,no,yes,no,telephone,may,mon,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,single,high.school,no,no,no,telephone,may,mon,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,married,university.degree,no,no,no,telephone,may,mon,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,high.school,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,married,professional.course,no,no,no,telephone,may,mon,185,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,high.school,no,no,no,telephone,may,mon,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,unknown,no,yes,no,telephone,may,mon,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,mon,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,yes,no,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,single,professional.course,no,yes,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,897,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,divorced,university.degree,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,basic.4y,no,no,no,telephone,may,mon,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,no,no,telephone,may,mon,511,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,mon,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,yes,no,telephone,may,mon,368,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,married,university.degree,no,yes,no,telephone,may,mon,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,mon,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,mon,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,divorced,high.school,no,no,no,telephone,may,mon,142,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,entrepreneur,married,high.school,no,no,no,telephone,may,mon,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,single,university.degree,no,yes,no,telephone,may,mon,158,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,basic.9y,no,yes,yes,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,retired,divorced,professional.course,no,yes,no,telephone,may,mon,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,high.school,no,no,no,telephone,may,mon,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,basic.9y,no,no,no,telephone,may,mon,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,702,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,single,basic.9y,no,yes,no,telephone,may,mon,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,basic.6y,no,no,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,unemployed,married,university.degree,unknown,no,yes,telephone,may,mon,19,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,mon,460,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,yes,yes,telephone,may,mon,437,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,professional.course,no,no,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,married,high.school,unknown,yes,yes,telephone,may,mon,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,university.degree,no,yes,no,telephone,may,mon,422,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,entrepreneur,married,high.school,unknown,yes,no,telephone,may,mon,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,professional.course,no,yes,no,telephone,may,mon,41,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,581,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,131,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,services,married,unknown,no,no,no,telephone,may,mon,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,professional.course,unknown,no,no,telephone,may,mon,194,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,management,married,university.degree,no,yes,no,telephone,may,mon,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,80,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,unemployed,married,high.school,no,yes,yes,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,281,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,married,high.school,no,yes,yes,telephone,may,mon,391,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,professional.course,unknown,no,yes,telephone,may,mon,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,basic.9y,unknown,no,yes,telephone,may,mon,788,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,technician,married,professional.course,unknown,yes,no,telephone,may,mon,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,high.school,no,unknown,unknown,telephone,may,mon,367,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,married,basic.6y,unknown,yes,yes,telephone,may,mon,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,married,basic.6y,no,no,no,telephone,may,mon,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,mon,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,divorced,university.degree,no,no,no,telephone,may,mon,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,professional.course,no,no,no,telephone,may,mon,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,high.school,no,no,no,telephone,may,mon,76,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,high.school,no,no,yes,telephone,may,mon,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,high.school,no,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,yes,no,telephone,may,mon,14,32,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,unknown,unknown,no,no,telephone,may,mon,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,high.school,no,yes,no,telephone,may,mon,262,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,mon,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,housemaid,married,professional.course,unknown,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,yes,yes,telephone,may,mon,483,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,divorced,basic.9y,unknown,no,no,telephone,may,mon,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,housemaid,married,basic.4y,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,married,professional.course,no,no,no,telephone,may,mon,754,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,divorced,professional.course,no,no,no,telephone,may,mon,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,housemaid,married,basic.4y,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,unknown,yes,no,telephone,may,mon,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,no,no,telephone,may,mon,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,266,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,professional.course,no,yes,no,telephone,may,mon,232,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,mon,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,164,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,housemaid,divorced,unknown,no,no,no,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,management,married,university.degree,no,no,no,telephone,may,mon,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,single,unknown,unknown,no,no,telephone,may,mon,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,single,unknown,no,unknown,unknown,telephone,may,mon,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,single,high.school,no,no,no,telephone,may,mon,388,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,62,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,married,basic.9y,unknown,no,no,telephone,may,mon,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,married,high.school,no,no,no,telephone,may,mon,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,married,university.degree,no,yes,no,telephone,may,mon,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,married,high.school,no,yes,no,telephone,may,mon,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,high.school,no,yes,no,telephone,may,mon,161,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,no,yes,telephone,may,mon,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,unknown,single,basic.9y,no,no,yes,telephone,may,mon,369,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,basic.9y,no,yes,no,telephone,may,mon,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,divorced,high.school,no,no,no,telephone,may,mon,974,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,may,mon,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,unknown,no,no,telephone,may,mon,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,mon,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,unknown,unknown,no,no,telephone,may,mon,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,single,university.degree,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,admin.,married,high.school,no,no,yes,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,single,high.school,no,yes,no,telephone,may,mon,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,basic.9y,unknown,no,no,telephone,may,mon,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,374,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,university.degree,unknown,yes,no,telephone,may,mon,351,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,basic.9y,no,yes,no,telephone,may,mon,262,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,no,yes,telephone,may,mon,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,high.school,no,yes,no,telephone,may,mon,248,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,divorced,high.school,unknown,no,no,telephone,may,mon,166,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,professional.course,no,yes,no,telephone,may,mon,621,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +45,admin.,married,basic.9y,no,no,no,telephone,may,mon,367,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,no,yes,telephone,may,mon,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,university.degree,unknown,no,yes,telephone,may,mon,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,single,university.degree,no,no,no,telephone,may,mon,543,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,basic.9y,unknown,no,no,telephone,may,mon,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,university.degree,unknown,no,no,telephone,may,mon,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,no,telephone,may,mon,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,no,yes,telephone,may,mon,200,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,high.school,unknown,yes,no,telephone,may,mon,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,mon,473,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,married,university.degree,no,yes,no,telephone,may,mon,90,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,divorced,high.school,no,no,no,telephone,may,mon,470,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,high.school,no,no,no,telephone,may,mon,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,services,divorced,basic.6y,no,no,yes,telephone,may,mon,81,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,married,unknown,no,yes,no,telephone,may,mon,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,divorced,basic.9y,unknown,no,yes,telephone,may,mon,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,professional.course,unknown,no,yes,telephone,may,mon,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,single,university.degree,unknown,yes,no,telephone,may,mon,745,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +39,technician,single,high.school,no,yes,no,telephone,may,mon,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,student,single,high.school,no,no,yes,telephone,may,mon,630,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +32,admin.,single,professional.course,no,yes,no,telephone,may,mon,16,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,high.school,no,no,yes,telephone,may,mon,863,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,131,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,unknown,yes,no,telephone,may,mon,265,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,mon,104,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,unknown,no,no,telephone,may,mon,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,high.school,no,yes,no,telephone,may,mon,592,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,housemaid,married,basic.4y,no,no,no,telephone,may,mon,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,services,married,professional.course,no,yes,no,telephone,may,mon,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,basic.4y,unknown,yes,yes,telephone,may,mon,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,single,unknown,unknown,yes,no,telephone,may,mon,440,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,student,single,high.school,no,yes,yes,telephone,may,mon,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,unknown,yes,no,telephone,may,mon,679,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,housemaid,divorced,high.school,unknown,yes,no,telephone,may,mon,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,unknown,married,unknown,unknown,yes,no,telephone,may,mon,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,university.degree,no,yes,yes,telephone,may,mon,190,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,unknown,no,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,mon,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,services,married,high.school,unknown,yes,no,telephone,may,mon,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,high.school,no,yes,no,telephone,may,mon,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,high.school,unknown,no,no,telephone,may,mon,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,high.school,unknown,yes,yes,telephone,may,mon,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,unknown,no,no,telephone,may,mon,407,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,self-employed,married,university.degree,no,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,mon,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,retired,single,basic.9y,unknown,yes,yes,telephone,may,mon,145,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,basic.9y,no,no,yes,telephone,may,mon,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,professional.course,no,yes,no,telephone,may,mon,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,university.degree,no,no,no,telephone,may,mon,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,mon,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,high.school,no,no,yes,telephone,may,mon,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,unknown,unknown,no,no,telephone,may,mon,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,university.degree,no,no,yes,telephone,may,mon,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,mon,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,basic.6y,no,no,no,telephone,may,mon,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,entrepreneur,divorced,high.school,no,no,no,telephone,may,mon,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,no,no,no,telephone,may,mon,175,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,basic.9y,no,yes,no,telephone,may,mon,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,123,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,unknown,yes,yes,telephone,may,mon,157,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,unknown,married,basic.6y,unknown,no,no,telephone,may,mon,204,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,basic.6y,unknown,yes,no,telephone,may,mon,150,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,divorced,basic.9y,no,yes,yes,telephone,may,mon,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,mon,109,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,no,no,telephone,may,mon,243,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,unemployed,married,basic.6y,no,yes,yes,telephone,may,mon,536,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,120,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,married,university.degree,no,no,no,telephone,may,mon,182,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,single,high.school,no,unknown,unknown,telephone,may,mon,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,services,single,high.school,unknown,no,no,telephone,may,mon,45,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,yes,yes,telephone,may,mon,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,mon,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,divorced,professional.course,no,yes,no,telephone,may,mon,147,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,divorced,university.degree,no,no,no,telephone,may,mon,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,no,no,no,telephone,may,mon,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,single,university.degree,no,no,no,telephone,may,mon,1234,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +50,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,306,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,single,university.degree,no,yes,no,telephone,may,mon,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,divorced,university.degree,no,yes,no,telephone,may,mon,252,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,high.school,no,no,yes,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,university.degree,no,no,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,no,no,telephone,may,mon,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,high.school,no,yes,yes,telephone,may,mon,642,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +43,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,mon,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,mon,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,single,high.school,no,no,no,telephone,may,mon,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,basic.6y,unknown,no,no,telephone,may,mon,916,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,155,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,married,professional.course,no,no,no,telephone,may,mon,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,159,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,high.school,no,no,no,telephone,may,mon,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,unemployed,married,university.degree,unknown,no,no,telephone,may,mon,729,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,high.school,no,yes,no,telephone,may,mon,434,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,high.school,no,no,no,telephone,may,mon,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,divorced,high.school,unknown,yes,no,telephone,may,mon,250,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,university.degree,no,no,no,telephone,may,mon,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,single,high.school,no,yes,no,telephone,may,mon,272,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,married,high.school,no,yes,no,telephone,may,mon,574,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,mon,89,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,divorced,professional.course,no,no,no,telephone,may,mon,133,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,management,single,high.school,no,no,no,telephone,may,mon,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,yes,no,telephone,may,mon,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,257,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,retired,married,basic.6y,unknown,no,no,telephone,may,mon,268,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,no,yes,telephone,may,mon,208,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,unemployed,married,basic.9y,unknown,yes,yes,telephone,may,mon,895,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +30,blue-collar,single,basic.9y,unknown,yes,yes,telephone,may,mon,225,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,married,university.degree,no,no,yes,telephone,may,mon,327,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,no,no,yes,telephone,may,mon,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,university.degree,no,no,no,telephone,may,mon,293,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,no,yes,no,telephone,may,mon,68,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,housemaid,married,high.school,no,yes,no,telephone,may,mon,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,high.school,unknown,yes,no,telephone,may,mon,519,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,no,no,yes,telephone,may,mon,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,basic.9y,no,no,no,telephone,may,mon,504,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,unknown,no,yes,no,telephone,may,mon,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,married,university.degree,unknown,yes,no,telephone,may,mon,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,high.school,no,no,yes,telephone,may,mon,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,management,married,university.degree,no,no,no,telephone,may,mon,100,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,high.school,no,no,yes,telephone,may,mon,321,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,mon,239,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,mon,614,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,mon,248,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,single,basic.9y,no,no,no,telephone,may,mon,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,mon,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,no,yes,telephone,may,mon,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,university.degree,no,yes,no,telephone,may,mon,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,management,married,university.degree,no,yes,no,telephone,may,mon,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,high.school,no,yes,no,telephone,may,mon,192,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,divorced,professional.course,no,yes,no,telephone,may,mon,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,high.school,no,no,no,telephone,may,mon,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,married,high.school,unknown,yes,no,telephone,may,mon,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,married,high.school,unknown,yes,no,telephone,may,mon,16,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unknown,married,basic.6y,no,yes,no,telephone,may,mon,240,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,mon,115,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,management,married,university.degree,no,no,no,telephone,may,mon,349,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,no,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,housemaid,married,basic.9y,no,yes,no,telephone,may,mon,445,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,technician,divorced,professional.course,no,yes,no,telephone,may,mon,144,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,professional.course,no,no,no,telephone,may,mon,341,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,married,university.degree,no,yes,no,telephone,may,mon,796,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,unknown,unknown,no,yes,telephone,may,mon,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,basic.4y,no,no,no,telephone,may,mon,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.4y,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,mon,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,mon,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,single,university.degree,no,no,yes,telephone,may,mon,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,professional.course,unknown,yes,yes,telephone,may,mon,724,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,retired,married,basic.9y,no,unknown,unknown,telephone,may,mon,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,293,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,high.school,no,no,no,telephone,may,mon,333,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,no,no,telephone,may,mon,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,523,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,470,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,divorced,university.degree,no,no,no,telephone,may,mon,695,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,high.school,unknown,yes,yes,telephone,may,mon,741,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,may,mon,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,basic.6y,no,no,no,telephone,may,mon,70,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,unemployed,married,unknown,no,no,no,telephone,may,mon,472,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,married,basic.9y,unknown,no,no,telephone,may,mon,258,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,self-employed,single,professional.course,no,yes,no,telephone,may,mon,113,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,basic.9y,no,no,no,telephone,may,mon,372,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.6y,no,no,no,telephone,may,mon,603,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,high.school,no,yes,no,telephone,may,mon,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,mon,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,high.school,unknown,no,no,telephone,may,mon,399,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,professional.course,unknown,no,no,telephone,may,mon,402,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,services,married,high.school,unknown,yes,yes,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,535,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,married,high.school,unknown,no,no,telephone,may,mon,181,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,basic.6y,no,yes,no,telephone,may,mon,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,university.degree,no,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,single,unknown,unknown,no,no,telephone,may,mon,87,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,unemployed,married,professional.course,no,yes,yes,telephone,may,mon,169,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,professional.course,no,yes,no,telephone,may,mon,116,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,high.school,no,yes,no,telephone,may,mon,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,mon,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,services,married,high.school,no,yes,no,telephone,may,mon,304,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,student,single,unknown,unknown,yes,no,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,no,no,telephone,may,mon,102,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,married,basic.9y,unknown,no,yes,telephone,may,mon,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,entrepreneur,divorced,university.degree,unknown,no,yes,telephone,may,mon,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,no,no,no,telephone,may,mon,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,management,married,basic.6y,no,yes,no,telephone,may,mon,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,unknown,yes,no,telephone,may,mon,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,unemployed,married,basic.9y,unknown,yes,no,telephone,may,mon,45,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,university.degree,no,yes,no,telephone,may,mon,125,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,high.school,no,yes,yes,telephone,may,mon,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,self-employed,single,university.degree,no,no,no,telephone,may,mon,414,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +35,admin.,single,high.school,no,yes,no,telephone,may,mon,319,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,married,professional.course,unknown,yes,no,telephone,may,mon,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,may,mon,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,professional.course,no,no,no,telephone,may,mon,160,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,basic.9y,no,no,no,telephone,may,mon,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,entrepreneur,single,unknown,no,yes,no,telephone,may,mon,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,98,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,yes,no,telephone,may,mon,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,yes,no,telephone,may,mon,451,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,high.school,no,no,no,telephone,may,mon,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,mon,79,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,454,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,university.degree,no,no,no,telephone,may,mon,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,divorced,university.degree,no,no,no,telephone,may,mon,122,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,married,basic.9y,unknown,no,no,telephone,may,mon,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,816,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,university.degree,no,yes,no,telephone,may,mon,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,professional.course,unknown,yes,no,telephone,may,mon,81,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,mon,109,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,admin.,divorced,university.degree,no,yes,yes,telephone,may,mon,375,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,admin.,married,professional.course,no,no,no,telephone,may,mon,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,housemaid,married,basic.9y,unknown,yes,no,telephone,may,mon,118,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,high.school,no,no,no,telephone,may,mon,178,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,no,no,no,telephone,may,mon,165,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,married,university.degree,no,no,no,telephone,may,mon,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,divorced,professional.course,no,no,no,telephone,may,mon,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,self-employed,married,high.school,no,no,no,telephone,may,mon,304,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,mon,583,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,mon,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,unknown,unknown,yes,no,telephone,may,mon,250,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,748,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +48,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,mon,14,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,896,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +35,blue-collar,married,high.school,no,yes,yes,telephone,may,mon,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,mon,543,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,university.degree,unknown,yes,yes,telephone,may,mon,398,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,158,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,365,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,university.degree,unknown,yes,no,telephone,may,mon,304,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.4y,no,no,no,telephone,may,mon,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,single,professional.course,no,yes,yes,telephone,may,mon,469,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,mon,488,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,high.school,no,no,no,telephone,may,mon,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,admin.,married,basic.9y,no,yes,no,telephone,may,mon,764,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +55,management,married,university.degree,no,yes,yes,telephone,may,mon,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,149,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,divorced,high.school,no,yes,no,telephone,may,mon,63,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,professional.course,no,yes,yes,telephone,may,mon,207,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,divorced,high.school,no,yes,no,telephone,may,mon,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,professional.course,unknown,no,no,telephone,may,mon,29,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,162,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,management,single,high.school,no,yes,no,telephone,may,mon,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,high.school,unknown,yes,no,telephone,may,mon,23,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,147,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,90,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,mon,409,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,single,university.degree,unknown,yes,yes,telephone,may,mon,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,mon,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,no,no,telephone,may,mon,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,single,high.school,no,no,no,telephone,may,mon,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,technician,married,university.degree,unknown,no,yes,telephone,may,mon,76,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,married,basic.6y,unknown,no,no,telephone,may,mon,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,high.school,no,no,no,telephone,may,mon,113,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,yes,yes,telephone,may,mon,232,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,mon,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,mon,405,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,divorced,high.school,no,no,yes,telephone,may,mon,251,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,mon,128,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,housemaid,married,basic.4y,unknown,no,no,telephone,may,mon,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,professional.course,unknown,yes,no,telephone,may,mon,188,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,professional.course,no,no,no,telephone,may,mon,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,no,no,telephone,may,mon,102,22,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,student,single,university.degree,no,yes,no,telephone,may,mon,763,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,97,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.4y,no,no,no,telephone,may,mon,41,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unknown,married,high.school,unknown,yes,yes,telephone,may,mon,329,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.4y,no,yes,no,telephone,may,mon,51,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,unknown,married,unknown,unknown,no,no,telephone,may,mon,130,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,entrepreneur,married,basic.9y,no,no,no,telephone,may,mon,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,divorced,high.school,no,yes,no,telephone,may,mon,308,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,single,university.degree,no,no,no,telephone,may,mon,14,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,divorced,high.school,no,yes,yes,telephone,may,mon,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,single,high.school,no,yes,no,telephone,may,mon,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,married,professional.course,no,yes,no,telephone,may,mon,200,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,professional.course,no,yes,no,telephone,may,mon,349,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,divorced,basic.9y,no,yes,yes,telephone,may,mon,282,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +23,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,633,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,high.school,no,no,no,telephone,may,mon,560,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,tue,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,172,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,professional.course,no,yes,no,telephone,may,tue,292,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,269,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,services,married,high.school,unknown,yes,yes,telephone,may,tue,220,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,housemaid,divorced,unknown,unknown,yes,no,telephone,may,tue,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,basic.6y,no,no,yes,telephone,may,tue,73,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,no,no,yes,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,no,yes,no,telephone,may,tue,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,university.degree,no,yes,no,telephone,may,tue,64,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,married,basic.6y,unknown,yes,no,telephone,may,tue,353,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,entrepreneur,married,university.degree,no,no,no,telephone,may,tue,322,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,tue,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,divorced,university.degree,no,no,no,telephone,may,tue,99,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,27,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,professional.course,no,yes,no,telephone,may,tue,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,single,basic.6y,no,no,no,telephone,may,tue,222,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,management,married,high.school,no,yes,yes,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,university.degree,no,no,no,telephone,may,tue,75,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,high.school,no,yes,yes,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,high.school,no,no,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,220,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,unknown,unknown,no,no,telephone,may,tue,204,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,160,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,unknown,no,no,telephone,may,tue,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,high.school,no,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,unknown,no,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,578,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,divorced,basic.6y,no,no,no,telephone,may,tue,183,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,basic.9y,no,yes,yes,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,divorced,unknown,no,yes,no,telephone,may,tue,1063,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +36,admin.,married,high.school,no,yes,no,telephone,may,tue,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,professional.course,no,yes,yes,telephone,may,tue,231,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,management,married,professional.course,no,no,no,telephone,may,tue,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,university.degree,unknown,no,no,telephone,may,tue,125,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,single,high.school,no,yes,yes,telephone,may,tue,193,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,housemaid,married,basic.9y,no,no,no,telephone,may,tue,287,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,high.school,unknown,yes,yes,telephone,may,tue,277,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,professional.course,no,no,no,telephone,may,tue,84,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,yes,no,telephone,may,tue,47,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,unknown,no,yes,no,telephone,may,tue,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,high.school,no,no,no,telephone,may,tue,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,955,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,high.school,unknown,yes,yes,telephone,may,tue,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,university.degree,no,yes,no,telephone,may,tue,336,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,unknown,married,basic.4y,no,no,no,telephone,may,tue,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,tue,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,163,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,218,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,basic.9y,no,yes,no,telephone,may,tue,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,tue,386,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,student,single,university.degree,no,yes,no,telephone,may,tue,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,married,basic.9y,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,227,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.4y,no,no,no,telephone,may,tue,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,married,professional.course,no,no,no,telephone,may,tue,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,services,married,professional.course,no,yes,no,telephone,may,tue,1205,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +36,management,married,university.degree,no,yes,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,no,yes,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,single,high.school,no,yes,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,high.school,unknown,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,single,high.school,no,yes,no,telephone,may,tue,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,yes,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,427,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,unemployed,married,professional.course,no,no,no,telephone,may,tue,171,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,high.school,no,yes,no,telephone,may,tue,237,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,unknown,yes,no,telephone,may,tue,269,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,tue,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,basic.9y,no,no,no,telephone,may,tue,674,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,single,high.school,unknown,no,yes,telephone,may,tue,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,married,high.school,no,yes,no,telephone,may,tue,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,housemaid,divorced,basic.4y,unknown,no,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,technician,single,university.degree,no,yes,no,telephone,may,tue,1051,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +27,admin.,single,university.degree,no,yes,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,technician,married,professional.course,no,yes,no,telephone,may,tue,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,tue,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,university.degree,no,yes,no,telephone,may,tue,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,high.school,no,no,no,telephone,may,tue,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,married,university.degree,no,yes,no,telephone,may,tue,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,basic.6y,no,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,yes,yes,telephone,may,tue,207,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unemployed,single,high.school,no,yes,no,telephone,may,tue,597,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,no,yes,yes,telephone,may,tue,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,420,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,divorced,professional.course,no,unknown,unknown,telephone,may,tue,532,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,professional.course,unknown,yes,no,telephone,may,tue,128,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,married,high.school,no,no,no,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,services,single,high.school,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,admin.,married,high.school,no,yes,yes,telephone,may,tue,275,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,740,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +34,technician,married,university.degree,no,no,no,telephone,may,tue,111,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,tue,271,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,management,married,high.school,no,no,no,telephone,may,tue,776,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,university.degree,no,no,no,telephone,may,tue,90,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,basic.9y,unknown,yes,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,330,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,divorced,basic.6y,unknown,no,no,telephone,may,tue,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,housemaid,married,basic.4y,no,no,no,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,divorced,basic.9y,unknown,no,no,telephone,may,tue,472,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,single,professional.course,no,no,no,telephone,may,tue,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,tue,514,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,divorced,basic.9y,unknown,yes,yes,telephone,may,tue,388,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,basic.4y,no,yes,no,telephone,may,tue,224,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,unemployed,married,professional.course,no,no,no,telephone,may,tue,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,basic.9y,no,no,no,telephone,may,tue,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,professional.course,no,no,no,telephone,may,tue,70,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,tue,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,550,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,divorced,high.school,no,yes,no,telephone,may,tue,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,243,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,73,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,unknown,married,basic.6y,unknown,yes,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,single,professional.course,no,no,no,telephone,may,tue,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,tue,168,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,single,high.school,no,yes,yes,telephone,may,tue,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,housemaid,married,basic.4y,no,no,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,divorced,high.school,no,no,no,telephone,may,tue,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.6y,no,yes,yes,telephone,may,tue,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.6y,no,yes,no,telephone,may,tue,114,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,tue,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,tue,33,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,tue,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,single,professional.course,no,no,no,telephone,may,tue,446,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,self-employed,married,basic.9y,unknown,yes,yes,telephone,may,tue,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,single,professional.course,no,yes,no,telephone,may,tue,121,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,services,divorced,high.school,no,yes,no,telephone,may,tue,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,professional.course,no,yes,no,telephone,may,tue,213,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,divorced,university.degree,no,no,no,telephone,may,tue,305,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,management,single,basic.4y,no,no,no,telephone,may,tue,19,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,643,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,high.school,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,unknown,no,no,telephone,may,tue,363,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,384,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,self-employed,single,university.degree,no,yes,no,telephone,may,tue,492,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,single,basic.4y,unknown,no,no,telephone,may,tue,222,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,married,high.school,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,426,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,no,no,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,39,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,high.school,no,yes,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,divorced,high.school,no,no,no,telephone,may,tue,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,no,no,telephone,may,tue,316,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,tue,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,married,high.school,unknown,yes,no,telephone,may,tue,129,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,student,single,basic.9y,unknown,yes,yes,telephone,may,tue,68,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,divorced,basic.6y,no,no,no,telephone,may,tue,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,university.degree,no,no,no,telephone,may,tue,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,high.school,unknown,no,no,telephone,may,tue,161,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,tue,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unknown,married,high.school,unknown,no,no,telephone,may,tue,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,tue,62,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,professional.course,no,no,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,unknown,married,university.degree,no,no,no,telephone,may,tue,310,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.6y,unknown,no,no,telephone,may,tue,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,university.degree,no,yes,no,telephone,may,tue,470,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,tue,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,divorced,professional.course,no,yes,no,telephone,may,tue,169,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,no,telephone,may,tue,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,tue,201,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,yes,yes,telephone,may,tue,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,professional.course,no,no,no,telephone,may,tue,253,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,management,single,university.degree,no,no,no,telephone,may,tue,600,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,services,married,high.school,no,yes,no,telephone,may,tue,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,unknown,married,high.school,unknown,yes,no,telephone,may,tue,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,high.school,no,no,no,telephone,may,tue,731,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +31,admin.,single,university.degree,no,yes,no,telephone,may,tue,659,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,no,yes,yes,telephone,may,tue,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,divorced,university.degree,no,no,no,telephone,may,tue,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,self-employed,married,university.degree,unknown,yes,no,telephone,may,tue,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,98,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,technician,married,basic.6y,no,no,yes,telephone,may,tue,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,self-employed,married,university.degree,no,no,yes,telephone,may,tue,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,high.school,no,no,no,telephone,may,tue,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,single,basic.4y,no,no,no,telephone,may,tue,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,married,basic.6y,no,no,yes,telephone,may,tue,261,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,married,high.school,no,yes,no,telephone,may,tue,103,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,high.school,unknown,yes,no,telephone,may,tue,190,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,unknown,no,no,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +22,services,single,basic.9y,no,no,no,telephone,may,tue,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,retired,married,university.degree,no,yes,yes,telephone,may,tue,235,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,basic.9y,unknown,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,no,no,telephone,may,tue,169,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,yes,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,technician,married,professional.course,unknown,yes,no,telephone,may,tue,272,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,unemployed,married,basic.4y,no,yes,no,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,tue,307,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,no,yes,no,telephone,may,tue,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,divorced,high.school,no,no,no,telephone,may,tue,290,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,basic.9y,no,no,no,telephone,may,tue,259,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,management,married,high.school,unknown,no,no,telephone,may,tue,375,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,entrepreneur,single,professional.course,no,no,no,telephone,may,tue,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,self-employed,married,basic.9y,no,no,no,telephone,may,tue,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,self-employed,married,basic.6y,unknown,yes,no,telephone,may,tue,32,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,tue,521,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,537,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,married,university.degree,no,yes,no,telephone,may,tue,316,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,single,high.school,unknown,no,no,telephone,may,tue,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,divorced,university.degree,no,no,no,telephone,may,tue,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,935,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +37,technician,single,university.degree,no,yes,yes,telephone,may,tue,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,tue,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,divorced,basic.9y,no,no,no,telephone,may,tue,474,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,divorced,university.degree,no,no,no,telephone,may,tue,313,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,single,university.degree,no,no,no,telephone,may,tue,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,admin.,married,university.degree,unknown,no,no,telephone,may,tue,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,married,professional.course,no,no,no,telephone,may,tue,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,93,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,no,yes,telephone,may,tue,166,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,single,high.school,no,yes,no,telephone,may,tue,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,755,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,married,professional.course,no,no,no,telephone,may,tue,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,no,unknown,unknown,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.6y,no,no,no,telephone,may,tue,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,no,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,retired,divorced,high.school,unknown,yes,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,unknown,single,basic.9y,unknown,yes,no,telephone,may,tue,88,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,professional.course,no,no,no,telephone,may,tue,318,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,unemployed,single,basic.9y,unknown,yes,no,telephone,may,tue,405,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,single,university.degree,no,yes,no,telephone,may,tue,751,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +34,admin.,married,high.school,no,yes,no,telephone,may,tue,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,married,high.school,no,yes,no,telephone,may,tue,95,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,management,married,university.degree,unknown,no,no,telephone,may,tue,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,admin.,single,basic.6y,no,yes,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,single,university.degree,no,no,no,telephone,may,tue,237,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,housemaid,married,basic.4y,no,yes,no,telephone,may,tue,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,divorced,university.degree,no,no,yes,telephone,may,tue,116,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,professional.course,unknown,no,no,telephone,may,tue,345,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,professional.course,no,no,yes,telephone,may,tue,151,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,376,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,high.school,no,yes,no,telephone,may,tue,485,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,university.degree,no,yes,no,telephone,may,tue,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,210,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,unknown,no,no,no,telephone,may,tue,277,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,unknown,no,no,telephone,may,tue,326,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,single,professional.course,no,no,yes,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,high.school,unknown,yes,yes,telephone,may,tue,320,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,married,basic.9y,no,yes,no,telephone,may,tue,298,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,tue,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,no,no,telephone,may,tue,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,housemaid,married,basic.4y,no,no,no,telephone,may,tue,513,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,professional.course,no,yes,no,telephone,may,tue,321,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,unknown,no,no,telephone,may,tue,355,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +22,admin.,married,high.school,no,no,no,telephone,may,tue,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,entrepreneur,divorced,high.school,no,yes,no,telephone,may,tue,383,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,301,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,married,university.degree,no,no,no,telephone,may,tue,367,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,tue,179,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,high.school,no,no,yes,telephone,may,tue,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,professional.course,no,yes,no,telephone,may,tue,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,high.school,no,yes,no,telephone,may,tue,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,basic.6y,no,no,no,telephone,may,tue,377,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,240,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,no,yes,telephone,may,tue,1590,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,125,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,management,single,university.degree,unknown,yes,no,telephone,may,tue,174,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,single,university.degree,no,no,no,telephone,may,tue,518,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,high.school,no,no,no,telephone,may,tue,280,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,high.school,no,yes,no,telephone,may,tue,394,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,professional.course,no,yes,yes,telephone,may,tue,280,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,admin.,married,basic.9y,unknown,no,no,telephone,may,tue,228,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,312,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,married,professional.course,no,yes,no,telephone,may,tue,709,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +45,blue-collar,divorced,basic.4y,no,no,no,telephone,may,tue,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,33,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,212,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,married,high.school,unknown,yes,yes,telephone,may,tue,299,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,basic.9y,no,yes,no,telephone,may,tue,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,no,no,telephone,may,tue,574,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,divorced,high.school,no,no,no,telephone,may,tue,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,unknown,no,no,telephone,may,tue,318,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,married,basic.9y,no,yes,no,telephone,may,tue,68,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,tue,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,211,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,married,university.degree,unknown,yes,no,telephone,may,tue,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,single,university.degree,no,no,no,telephone,may,tue,363,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,high.school,no,yes,no,telephone,may,tue,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,services,married,high.school,no,yes,no,telephone,may,tue,392,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,services,married,high.school,no,yes,no,telephone,may,tue,137,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,tue,749,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,married,high.school,no,no,no,telephone,may,tue,498,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,services,married,high.school,no,yes,no,telephone,may,tue,570,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,admin.,divorced,high.school,no,yes,no,telephone,may,tue,142,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,married,professional.course,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,unknown,married,basic.4y,unknown,yes,no,telephone,may,tue,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,retired,married,professional.course,no,no,no,telephone,may,tue,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,high.school,no,yes,no,telephone,may,tue,453,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,professional.course,no,yes,no,telephone,may,tue,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,admin.,married,unknown,no,no,no,telephone,may,tue,389,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,married,basic.4y,no,no,no,telephone,may,tue,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,unknown,yes,no,telephone,may,tue,146,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,university.degree,no,yes,no,telephone,may,tue,40,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,no,yes,yes,telephone,may,tue,92,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,single,professional.course,no,yes,no,telephone,may,tue,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,divorced,high.school,no,no,no,telephone,may,tue,436,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,59,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.4y,no,unknown,unknown,telephone,may,tue,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,yes,no,telephone,may,tue,0,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,93,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,high.school,no,no,no,telephone,may,tue,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,professional.course,unknown,no,yes,telephone,may,tue,111,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,yes,yes,telephone,may,tue,466,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,technician,married,professional.course,no,yes,no,telephone,may,tue,345,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,tue,294,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,unknown,no,yes,no,telephone,may,tue,241,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,divorced,basic.9y,no,no,no,telephone,may,tue,233,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,304,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,high.school,no,yes,no,telephone,may,tue,134,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,single,university.degree,no,yes,no,telephone,may,tue,953,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,retired,married,professional.course,unknown,no,no,telephone,may,tue,427,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,unemployed,single,university.degree,no,no,yes,telephone,may,tue,121,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,services,single,basic.9y,no,yes,yes,telephone,may,tue,22,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,entrepreneur,married,university.degree,unknown,no,no,telephone,may,tue,477,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,30,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,technician,married,professional.course,unknown,yes,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,divorced,university.degree,no,no,no,telephone,may,tue,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,professional.course,no,no,no,telephone,may,tue,305,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,married,university.degree,no,yes,no,telephone,may,tue,8,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,unemployed,single,basic.4y,unknown,yes,no,telephone,may,tue,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,unknown,yes,no,telephone,may,tue,399,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,high.school,no,no,yes,telephone,may,tue,315,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,self-employed,married,basic.9y,no,no,no,telephone,may,tue,3094,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +29,technician,married,professional.course,no,no,no,telephone,may,tue,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,professional.course,no,no,yes,telephone,may,tue,3,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,management,divorced,university.degree,no,no,no,telephone,may,tue,269,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,management,divorced,university.degree,no,yes,no,telephone,may,tue,159,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,high.school,unknown,yes,no,telephone,may,tue,182,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,185,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,high.school,no,no,no,telephone,may,tue,359,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,no,no,yes,telephone,may,tue,89,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,married,unknown,no,yes,no,telephone,may,tue,220,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,179,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,self-employed,married,university.degree,no,yes,no,telephone,may,tue,151,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,tue,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,basic.4y,unknown,yes,no,telephone,may,tue,135,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,no,no,telephone,may,tue,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,high.school,no,no,no,telephone,may,tue,132,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,no,no,telephone,may,tue,141,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,single,basic.9y,no,yes,no,telephone,may,tue,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,87,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,basic.6y,no,yes,no,telephone,may,tue,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,divorced,high.school,no,no,no,telephone,may,tue,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,married,professional.course,no,no,no,telephone,may,tue,348,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,high.school,no,yes,no,telephone,may,tue,354,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,married,professional.course,unknown,yes,no,telephone,may,tue,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,high.school,no,yes,no,telephone,may,tue,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,basic.6y,unknown,yes,no,telephone,may,tue,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,professional.course,no,yes,no,telephone,may,tue,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,tue,580,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,university.degree,unknown,yes,no,telephone,may,tue,99,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,basic.9y,no,no,no,telephone,may,tue,34,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,divorced,high.school,no,no,no,telephone,may,tue,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,management,married,university.degree,no,yes,no,telephone,may,tue,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,housemaid,married,basic.6y,no,unknown,unknown,telephone,may,tue,175,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,entrepreneur,married,university.degree,no,yes,no,telephone,may,tue,290,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,retired,married,high.school,no,yes,no,telephone,may,tue,591,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,336,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,divorced,basic.9y,no,no,no,telephone,may,tue,29,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,single,university.degree,no,no,no,telephone,may,tue,266,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,unknown,no,no,no,telephone,may,tue,45,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,tue,1043,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,admin.,married,university.degree,no,yes,no,telephone,may,tue,83,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,single,basic.9y,no,no,no,telephone,may,tue,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,single,high.school,no,no,yes,telephone,may,tue,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,106,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,entrepreneur,single,high.school,no,yes,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,divorced,university.degree,no,yes,no,telephone,may,tue,197,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,unknown,married,basic.4y,unknown,no,no,telephone,may,tue,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,unknown,no,no,telephone,may,tue,42,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,single,university.degree,no,yes,no,telephone,may,tue,319,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,management,married,university.degree,no,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,383,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,high.school,no,yes,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,tue,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,basic.9y,no,no,no,telephone,may,tue,97,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,335,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,no,no,telephone,may,tue,15,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,single,basic.9y,no,yes,no,telephone,may,tue,4,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,unknown,no,no,telephone,may,tue,5,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,high.school,unknown,no,no,telephone,may,tue,178,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,entrepreneur,married,basic.6y,no,yes,no,telephone,may,tue,256,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,unknown,yes,no,telephone,may,tue,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,single,high.school,no,yes,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,yes,yes,telephone,may,tue,239,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,high.school,no,yes,no,telephone,may,tue,20,19,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,15,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,single,basic.4y,no,yes,no,telephone,may,tue,98,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,112,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,professional.course,no,yes,no,telephone,may,tue,350,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,university.degree,unknown,yes,no,telephone,may,tue,240,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,unemployed,single,university.degree,no,yes,no,telephone,may,tue,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,married,high.school,no,no,no,telephone,may,tue,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,unknown,no,no,no,telephone,may,tue,337,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,housemaid,single,basic.4y,unknown,yes,no,telephone,may,tue,662,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,124,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.9y,no,yes,no,telephone,may,tue,165,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,services,married,university.degree,no,yes,no,telephone,may,tue,63,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,single,university.degree,no,no,no,telephone,may,tue,101,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,133,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,married,high.school,no,no,no,telephone,may,tue,145,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,high.school,no,no,no,telephone,may,tue,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,tue,858,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,unemployed,divorced,high.school,no,no,no,telephone,may,tue,349,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,basic.9y,unknown,no,no,telephone,may,tue,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,technician,married,basic.9y,no,yes,no,telephone,may,tue,676,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,basic.9y,no,yes,no,telephone,may,tue,197,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,tue,235,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,unknown,unknown,no,no,telephone,may,tue,205,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,tue,291,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,no,no,no,telephone,may,tue,132,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,housemaid,married,university.degree,no,no,no,telephone,may,tue,165,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,admin.,divorced,high.school,no,yes,no,telephone,may,tue,196,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,no,no,no,telephone,may,tue,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,547,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,single,high.school,unknown,yes,no,telephone,may,tue,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,self-employed,unknown,basic.6y,no,no,no,telephone,may,tue,398,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,management,divorced,university.degree,no,yes,no,telephone,may,tue,342,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,unknown,no,no,telephone,may,tue,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,entrepreneur,single,high.school,no,no,no,telephone,may,tue,77,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,tue,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,professional.course,unknown,yes,no,telephone,may,tue,352,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,unknown,no,yes,no,telephone,may,tue,112,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,self-employed,married,basic.9y,unknown,yes,no,telephone,may,tue,90,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,services,divorced,university.degree,no,yes,no,telephone,may,tue,22,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,technician,single,university.degree,no,unknown,unknown,telephone,may,tue,230,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,divorced,high.school,no,yes,no,telephone,may,tue,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,university.degree,no,no,no,telephone,may,tue,143,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,high.school,no,yes,no,telephone,may,tue,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,224,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,tue,73,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,high.school,no,yes,no,telephone,may,tue,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,43,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,entrepreneur,single,basic.9y,no,no,no,telephone,may,tue,144,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,tue,1224,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,tue,306,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,divorced,high.school,no,yes,no,telephone,may,tue,50,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,132,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,high.school,no,no,yes,telephone,may,tue,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,single,professional.course,no,no,no,telephone,may,tue,265,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,basic.4y,unknown,no,no,telephone,may,tue,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,divorced,basic.4y,no,no,no,telephone,may,tue,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,university.degree,no,no,yes,telephone,may,tue,20,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,single,basic.6y,unknown,yes,no,telephone,may,tue,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,management,married,university.degree,unknown,yes,no,telephone,may,tue,346,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,single,basic.9y,unknown,yes,yes,telephone,may,tue,1168,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,unknown,married,unknown,unknown,no,no,telephone,may,wed,17,13,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,high.school,unknown,yes,no,telephone,may,wed,74,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,retired,married,professional.course,no,yes,yes,telephone,may,wed,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,125,12,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,technician,married,high.school,no,yes,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,unknown,yes,no,telephone,may,wed,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,university.degree,unknown,yes,no,telephone,may,wed,318,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,228,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,single,high.school,unknown,no,no,telephone,may,wed,189,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,married,high.school,no,yes,no,telephone,may,wed,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,no,no,telephone,may,wed,110,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,single,university.degree,no,unknown,unknown,telephone,may,wed,372,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,divorced,high.school,no,no,no,telephone,may,wed,117,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,single,basic.4y,unknown,unknown,unknown,telephone,may,wed,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,high.school,unknown,no,no,telephone,may,wed,507,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,divorced,high.school,no,no,no,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,university.degree,unknown,no,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,management,married,university.degree,no,yes,no,telephone,may,wed,230,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,unknown,married,high.school,unknown,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,single,high.school,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,technician,single,university.degree,unknown,no,no,telephone,may,wed,551,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,high.school,no,no,no,telephone,may,wed,215,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,high.school,unknown,yes,no,telephone,may,wed,617,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,high.school,no,no,no,telephone,may,wed,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,basic.9y,unknown,yes,no,telephone,may,wed,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,938,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +47,admin.,married,university.degree,no,yes,no,telephone,may,wed,385,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,married,unknown,no,no,no,telephone,may,wed,181,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,high.school,no,yes,no,telephone,may,wed,195,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,management,divorced,basic.6y,no,no,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,79,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,divorced,basic.9y,no,no,no,telephone,may,wed,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,single,university.degree,no,no,yes,telephone,may,wed,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,technician,married,basic.6y,no,yes,no,telephone,may,wed,190,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,may,wed,454,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,single,university.degree,no,no,no,telephone,may,wed,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,189,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,housemaid,married,high.school,no,no,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,divorced,high.school,unknown,yes,no,telephone,may,wed,103,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,single,professional.course,unknown,no,no,telephone,may,wed,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,wed,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,divorced,basic.4y,no,yes,yes,telephone,may,wed,738,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,admin.,divorced,basic.9y,no,no,no,telephone,may,wed,283,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,management,divorced,high.school,no,yes,no,telephone,may,wed,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,divorced,basic.4y,no,no,no,telephone,may,wed,519,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,wed,593,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,wed,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,single,professional.course,unknown,no,no,telephone,may,wed,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,self-employed,married,basic.4y,unknown,yes,no,telephone,may,wed,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,married,high.school,no,no,no,telephone,may,wed,102,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,high.school,no,yes,no,telephone,may,wed,49,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.4y,no,no,no,telephone,may,wed,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,university.degree,no,yes,no,telephone,may,wed,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,576,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +49,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,high.school,unknown,no,no,telephone,may,wed,261,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,entrepreneur,single,basic.4y,no,no,no,telephone,may,wed,430,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,wed,674,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,112,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,no,yes,no,telephone,may,wed,248,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,wed,350,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,single,university.degree,no,yes,no,telephone,may,wed,252,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,high.school,no,no,no,telephone,may,wed,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,141,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,256,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,163,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,professional.course,no,yes,yes,telephone,may,wed,195,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,39,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,basic.9y,unknown,yes,no,telephone,may,wed,861,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,single,high.school,no,yes,no,telephone,may,wed,212,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,high.school,no,yes,no,telephone,may,wed,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,technician,divorced,professional.course,no,no,no,telephone,may,wed,209,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,basic.9y,no,no,no,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,management,married,professional.course,no,yes,yes,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,technician,divorced,professional.course,unknown,no,no,telephone,may,wed,390,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,management,married,professional.course,no,no,no,telephone,may,wed,373,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,basic.4y,unknown,yes,yes,telephone,may,wed,571,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,wed,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,single,university.degree,no,yes,no,telephone,may,wed,582,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,wed,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,no,yes,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,self-employed,married,university.degree,no,yes,yes,telephone,may,wed,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,yes,no,telephone,may,wed,396,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,single,professional.course,no,no,no,telephone,may,wed,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,high.school,no,no,no,telephone,may,wed,263,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,wed,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,married,professional.course,unknown,yes,no,telephone,may,wed,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,unknown,married,basic.4y,no,yes,no,telephone,may,wed,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,high.school,no,yes,no,telephone,may,wed,418,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,divorced,high.school,no,yes,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,single,university.degree,unknown,yes,no,telephone,may,wed,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,married,high.school,unknown,yes,no,telephone,may,wed,171,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,single,professional.course,no,no,no,telephone,may,wed,223,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,wed,204,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,basic.9y,no,yes,no,telephone,may,wed,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,wed,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,no,yes,telephone,may,wed,195,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,high.school,no,no,yes,telephone,may,wed,139,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,divorced,university.degree,no,no,no,telephone,may,wed,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,543,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +45,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,154,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,high.school,no,no,no,telephone,may,wed,226,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,university.degree,no,no,no,telephone,may,wed,141,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,university.degree,no,yes,yes,telephone,may,wed,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,single,university.degree,no,no,no,telephone,may,wed,156,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,married,high.school,unknown,yes,no,telephone,may,wed,99,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,services,married,high.school,unknown,no,no,telephone,may,wed,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,married,basic.9y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,university.degree,unknown,yes,yes,telephone,may,wed,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,technician,divorced,basic.9y,no,no,no,telephone,may,wed,221,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,1479,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +29,technician,married,university.degree,no,no,no,telephone,may,wed,104,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,basic.9y,no,yes,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,21,21,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,72,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,single,high.school,no,yes,no,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,wed,307,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,university.degree,no,yes,yes,telephone,may,wed,154,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,yes,telephone,may,wed,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,professional.course,unknown,yes,yes,telephone,may,wed,236,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,high.school,no,yes,no,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,wed,227,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,married,university.degree,no,yes,yes,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,yes,no,telephone,may,wed,119,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,single,high.school,no,yes,no,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,divorced,high.school,no,yes,no,telephone,may,wed,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,management,single,university.degree,no,yes,no,telephone,may,wed,126,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,self-employed,married,professional.course,no,yes,yes,telephone,may,wed,268,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,services,single,high.school,no,yes,no,telephone,may,wed,386,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,married,high.school,no,no,no,telephone,may,wed,63,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,basic.9y,unknown,yes,no,telephone,may,wed,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,professional.course,no,no,yes,telephone,may,wed,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,181,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,high.school,unknown,no,no,telephone,may,wed,173,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,439,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,married,professional.course,no,yes,no,telephone,may,wed,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,university.degree,no,yes,no,telephone,may,wed,713,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,high.school,no,yes,no,telephone,may,wed,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,professional.course,no,yes,yes,telephone,may,wed,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,yes,no,telephone,may,wed,78,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,392,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,divorced,basic.9y,no,yes,no,telephone,may,wed,188,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,unknown,no,no,telephone,may,wed,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,211,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,single,high.school,no,no,no,telephone,may,wed,249,11,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,technician,married,basic.4y,unknown,no,yes,telephone,may,wed,1210,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +20,entrepreneur,single,high.school,no,no,yes,telephone,may,wed,680,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,divorced,university.degree,no,yes,no,telephone,may,wed,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,housemaid,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,66,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,basic.9y,no,yes,no,telephone,may,wed,821,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,divorced,basic.9y,no,yes,no,telephone,may,wed,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,divorced,university.degree,no,yes,no,telephone,may,wed,352,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,single,university.degree,no,yes,no,telephone,may,wed,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,university.degree,no,yes,no,telephone,may,wed,615,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +56,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,167,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,high.school,no,no,no,telephone,may,wed,211,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,high.school,no,yes,no,telephone,may,wed,742,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,615,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,single,high.school,no,yes,no,telephone,may,wed,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,high.school,no,yes,no,telephone,may,wed,497,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,single,university.degree,no,yes,no,telephone,may,wed,105,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,housemaid,married,basic.4y,unknown,yes,yes,telephone,may,wed,213,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,single,university.degree,no,yes,no,telephone,may,wed,294,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,289,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,married,basic.6y,no,no,no,telephone,may,wed,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,wed,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,185,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,university.degree,unknown,no,no,telephone,may,wed,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,married,unknown,no,no,no,telephone,may,wed,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,high.school,unknown,yes,no,telephone,may,wed,317,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,services,married,basic.4y,unknown,yes,no,telephone,may,wed,507,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +33,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,1183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +55,retired,married,high.school,no,no,no,telephone,may,wed,302,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,management,married,basic.9y,no,yes,yes,telephone,may,wed,344,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,entrepreneur,single,university.degree,no,yes,no,telephone,may,wed,8,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,489,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,328,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,married,high.school,no,no,no,telephone,may,wed,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,university.degree,no,yes,no,telephone,may,wed,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,married,high.school,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,high.school,no,no,no,telephone,may,wed,438,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,management,divorced,university.degree,no,no,no,telephone,may,wed,675,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,123,18,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,257,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,university.degree,unknown,no,no,telephone,may,wed,266,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,wed,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,management,single,university.degree,no,yes,no,telephone,may,wed,145,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,entrepreneur,single,basic.9y,no,no,no,telephone,may,wed,232,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,retired,married,professional.course,no,no,no,telephone,may,wed,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,retired,married,basic.6y,no,yes,no,telephone,may,wed,91,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,married,university.degree,no,no,no,telephone,may,wed,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,admin.,married,professional.course,no,no,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,unemployed,single,high.school,unknown,no,no,telephone,may,wed,694,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +35,blue-collar,married,unknown,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,149,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,single,unknown,no,yes,no,telephone,may,wed,591,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,housemaid,divorced,basic.4y,unknown,yes,no,telephone,may,wed,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,36,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,married,high.school,unknown,yes,no,telephone,may,wed,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,unknown,no,no,no,telephone,may,wed,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,71,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,admin.,single,high.school,no,yes,no,telephone,may,wed,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,single,university.degree,unknown,no,no,telephone,may,wed,187,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,technician,married,university.degree,no,yes,no,telephone,may,wed,170,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,retired,married,basic.4y,no,no,no,telephone,may,wed,177,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,married,basic.4y,no,no,no,telephone,may,wed,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,463,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,retired,married,basic.4y,no,no,no,telephone,may,wed,157,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,single,basic.4y,unknown,no,yes,telephone,may,wed,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,technician,married,professional.course,no,no,no,telephone,may,wed,796,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,high.school,no,no,no,telephone,may,wed,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,married,university.degree,no,no,yes,telephone,may,wed,125,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,technician,married,high.school,no,no,no,telephone,may,wed,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,single,high.school,no,no,no,telephone,may,wed,189,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,597,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,single,basic.9y,no,no,no,telephone,may,wed,53,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,159,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,admin.,married,high.school,no,unknown,unknown,telephone,may,wed,45,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,single,high.school,no,yes,no,telephone,may,wed,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,wed,664,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +45,services,married,high.school,unknown,no,no,telephone,may,wed,290,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,unemployed,single,basic.4y,unknown,yes,no,telephone,may,wed,51,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,admin.,married,basic.9y,no,no,no,telephone,may,wed,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,basic.6y,unknown,yes,no,telephone,may,wed,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,entrepreneur,married,basic.9y,no,no,yes,telephone,may,wed,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,management,single,university.degree,no,no,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,285,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,professional.course,no,no,no,telephone,may,wed,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,basic.9y,unknown,no,no,telephone,may,wed,244,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,services,married,unknown,unknown,no,no,telephone,may,wed,227,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,management,divorced,university.degree,unknown,no,yes,telephone,may,wed,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,housemaid,married,basic.4y,unknown,no,no,telephone,may,wed,183,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,married,high.school,unknown,no,no,telephone,may,wed,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,basic.6y,no,yes,no,telephone,may,wed,648,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +42,retired,married,basic.9y,unknown,yes,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,housemaid,married,university.degree,no,yes,no,telephone,may,wed,536,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.9y,no,yes,no,telephone,may,wed,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,divorced,professional.course,unknown,no,no,telephone,may,wed,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,management,married,basic.9y,unknown,no,no,telephone,may,wed,282,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,university.degree,no,yes,no,telephone,may,wed,269,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,single,high.school,no,no,yes,telephone,may,wed,176,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,management,married,basic.6y,unknown,no,no,telephone,may,wed,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,basic.9y,no,yes,no,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,divorced,professional.course,no,yes,yes,telephone,may,wed,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,116,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,basic.6y,unknown,no,no,telephone,may,wed,60,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,retired,divorced,professional.course,no,no,yes,telephone,may,wed,217,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,single,professional.course,no,no,no,telephone,may,wed,298,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,unknown,no,no,telephone,may,wed,864,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +31,admin.,married,high.school,no,no,no,telephone,may,wed,469,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,divorced,basic.9y,unknown,no,yes,telephone,may,wed,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,divorced,unknown,no,no,no,telephone,may,wed,80,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,wed,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,wed,89,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,divorced,university.degree,unknown,no,no,telephone,may,wed,346,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,47,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,single,university.degree,no,no,no,telephone,may,wed,244,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,136,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,single,university.degree,no,no,no,telephone,may,wed,110,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,divorced,basic.4y,no,yes,yes,telephone,may,wed,433,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,services,married,high.school,no,yes,no,telephone,may,wed,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,unemployed,married,basic.4y,unknown,yes,no,telephone,may,wed,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,89,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,services,married,high.school,no,yes,no,telephone,may,wed,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,no,no,telephone,may,wed,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,24,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,single,basic.4y,no,unknown,unknown,telephone,may,wed,489,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,high.school,no,no,no,telephone,may,wed,357,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,admin.,single,high.school,no,no,no,telephone,may,wed,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,services,married,high.school,no,no,no,telephone,may,wed,239,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,466,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,university.degree,no,yes,no,telephone,may,wed,383,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,management,single,university.degree,no,no,yes,telephone,may,wed,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,services,single,basic.6y,unknown,yes,no,telephone,may,wed,101,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,344,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,unemployed,married,basic.9y,unknown,yes,no,telephone,may,wed,360,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,79,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +58,retired,divorced,university.degree,no,yes,no,telephone,may,wed,314,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,divorced,university.degree,no,no,no,telephone,may,wed,315,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,technician,married,professional.course,unknown,yes,yes,telephone,may,wed,117,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,divorced,basic.6y,no,no,no,telephone,may,wed,229,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,retired,married,basic.4y,no,no,no,telephone,may,wed,94,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,services,married,unknown,no,yes,yes,telephone,may,wed,83,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,admin.,married,university.degree,no,yes,yes,telephone,may,wed,338,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,single,high.school,unknown,no,no,telephone,may,wed,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,167,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,258,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +54,retired,married,basic.4y,unknown,no,no,telephone,may,wed,1730,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +31,unemployed,single,professional.course,no,no,no,telephone,may,wed,83,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,193,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,wed,629,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,professional.course,unknown,yes,no,telephone,may,wed,260,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,202,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,blue-collar,married,high.school,no,no,no,telephone,may,wed,471,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,wed,217,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,services,married,basic.9y,unknown,no,no,telephone,may,wed,300,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,services,married,basic.9y,no,yes,no,telephone,may,wed,94,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,services,single,high.school,no,no,no,telephone,may,wed,397,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,entrepreneur,married,high.school,no,no,no,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,housemaid,married,basic.4y,no,yes,no,telephone,may,wed,238,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,389,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,667,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,management,single,university.degree,no,no,no,telephone,may,wed,376,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,technician,single,university.degree,no,no,no,telephone,may,wed,23,16,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,services,married,high.school,unknown,yes,no,telephone,may,wed,133,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,services,married,basic.9y,no,yes,no,telephone,may,wed,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,divorced,professional.course,no,unknown,unknown,telephone,may,wed,209,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,services,single,basic.9y,unknown,yes,yes,telephone,may,wed,124,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,admin.,married,university.degree,unknown,no,no,telephone,may,wed,96,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,single,university.degree,no,no,yes,telephone,may,wed,691,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +38,housemaid,married,basic.6y,unknown,yes,yes,telephone,may,wed,87,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,entrepreneur,married,unknown,no,yes,no,telephone,may,wed,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,259,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,330,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,wed,198,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,wed,429,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,545,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,high.school,unknown,yes,no,telephone,may,wed,44,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,unknown,no,yes,no,telephone,may,wed,279,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,unknown,no,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +55,technician,married,professional.course,unknown,no,no,telephone,may,wed,48,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,wed,449,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,admin.,single,university.degree,no,no,no,telephone,may,wed,362,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,single,basic.9y,no,yes,no,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,technician,single,professional.course,no,yes,no,telephone,may,wed,207,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,wed,297,14,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,172,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,housemaid,married,basic.4y,unknown,yes,no,telephone,may,wed,158,10,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,410,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,entrepreneur,married,high.school,no,yes,no,telephone,may,wed,57,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,admin.,single,university.degree,no,no,yes,telephone,may,wed,424,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,admin.,single,university.degree,unknown,no,yes,telephone,may,wed,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,96,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +21,technician,single,professional.course,no,no,yes,telephone,may,wed,109,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,entrepreneur,divorced,high.school,no,no,no,telephone,may,wed,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,blue-collar,single,professional.course,no,no,no,telephone,may,wed,26,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +57,retired,married,basic.9y,unknown,no,no,telephone,may,wed,506,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,married,high.school,unknown,no,no,telephone,may,wed,173,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,admin.,married,high.school,no,no,no,telephone,may,wed,643,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,technician,married,professional.course,no,yes,no,telephone,may,wed,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,management,single,university.degree,no,no,yes,telephone,may,wed,95,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,463,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,admin.,married,high.school,no,yes,no,telephone,may,wed,25,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,technician,single,professional.course,no,yes,no,telephone,may,wed,104,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,267,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,wed,64,1,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,340,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,university.degree,no,no,no,telephone,may,wed,325,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +53,management,married,basic.4y,unknown,no,no,telephone,may,wed,528,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,1277,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,entrepreneur,married,university.degree,no,no,yes,telephone,may,wed,363,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,wed,411,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,wed,160,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,single,high.school,no,no,no,telephone,may,wed,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.4y,no,yes,no,telephone,may,wed,140,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +30,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,25,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,married,university.degree,no,no,yes,telephone,may,wed,157,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,entrepreneur,married,university.degree,no,no,no,telephone,may,wed,386,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,technician,married,basic.9y,no,no,no,telephone,may,wed,593,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,services,divorced,high.school,no,no,yes,telephone,may,wed,176,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,blue-collar,single,basic.4y,unknown,no,no,telephone,may,wed,189,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,unemployed,married,university.degree,unknown,unknown,unknown,telephone,may,wed,302,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,university.degree,unknown,yes,no,telephone,may,wed,165,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,management,married,university.degree,no,yes,no,telephone,may,wed,51,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,blue-collar,married,basic.4y,no,no,yes,telephone,may,wed,99,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,services,married,high.school,no,yes,no,telephone,may,wed,452,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,management,married,university.degree,no,no,yes,telephone,may,wed,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,335,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,services,married,high.school,no,no,no,telephone,may,wed,110,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,blue-collar,single,unknown,unknown,no,no,telephone,may,wed,299,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,married,professional.course,no,yes,yes,telephone,may,wed,85,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,blue-collar,married,basic.9y,no,no,yes,telephone,may,wed,234,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,admin.,married,high.school,no,no,no,telephone,may,wed,264,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,divorced,high.school,no,yes,yes,telephone,may,wed,233,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +50,technician,married,professional.course,unknown,no,no,telephone,may,wed,239,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,blue-collar,married,professional.course,no,no,yes,telephone,may,wed,611,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,single,professional.course,no,no,yes,telephone,may,wed,600,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,basic.4y,unknown,no,no,telephone,may,wed,478,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,92,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,self-employed,single,university.degree,no,yes,no,telephone,may,wed,158,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,single,professional.course,unknown,no,no,telephone,may,wed,198,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +37,management,single,high.school,no,no,no,telephone,may,wed,438,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,management,married,university.degree,no,yes,no,telephone,may,wed,205,7,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,342,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +49,services,married,high.school,no,no,no,telephone,may,wed,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,wed,75,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,services,single,professional.course,unknown,no,no,telephone,may,wed,225,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +48,entrepreneur,married,high.school,unknown,yes,no,telephone,may,wed,88,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +28,self-employed,single,university.degree,no,no,no,telephone,may,wed,314,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,management,married,university.degree,no,no,no,telephone,may,wed,109,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +42,blue-collar,married,basic.4y,no,no,no,telephone,may,wed,456,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,wed,92,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,professional.course,no,no,no,telephone,may,wed,223,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,technician,married,professional.course,no,no,no,telephone,may,wed,148,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,technician,married,professional.course,no,yes,no,telephone,may,wed,205,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,high.school,no,no,no,telephone,may,wed,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,wed,357,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +41,self-employed,single,university.degree,no,yes,yes,telephone,may,wed,23,17,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +39,admin.,married,university.degree,no,unknown,unknown,telephone,may,wed,513,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,admin.,single,high.school,no,no,yes,telephone,may,wed,171,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,admin.,single,university.degree,no,no,no,telephone,may,wed,90,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +35,blue-collar,married,high.school,no,no,no,telephone,may,wed,55,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,technician,married,professional.course,no,no,yes,telephone,may,wed,51,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +59,retired,married,professional.course,no,no,no,telephone,may,wed,560,9,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,yes +27,admin.,single,university.degree,no,no,no,telephone,may,wed,245,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,admin.,married,high.school,no,yes,no,telephone,may,wed,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,management,married,university.degree,no,no,no,telephone,may,wed,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +51,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,wed,261,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +60,retired,divorced,high.school,unknown,yes,no,telephone,may,wed,398,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +45,admin.,married,basic.6y,unknown,yes,no,telephone,may,wed,200,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +52,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,wed,267,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +27,admin.,married,university.degree,no,no,no,telephone,may,wed,191,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,technician,single,professional.course,no,yes,no,telephone,may,wed,300,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,82,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +32,unemployed,single,high.school,no,no,no,telephone,may,wed,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +24,blue-collar,single,basic.9y,unknown,no,no,telephone,may,wed,504,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +46,admin.,single,high.school,unknown,yes,no,telephone,may,wed,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,admin.,single,high.school,no,no,no,telephone,may,wed,194,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +44,services,married,high.school,no,yes,yes,telephone,may,wed,212,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,wed,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +31,services,married,high.school,no,no,no,telephone,may,wed,185,6,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +38,unknown,divorced,high.school,unknown,yes,no,telephone,may,wed,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +26,admin.,single,high.school,no,no,no,telephone,may,wed,87,5,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +40,admin.,married,basic.9y,no,no,yes,telephone,may,wed,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +47,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,wed,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +43,unemployed,married,high.school,no,yes,no,telephone,may,wed,585,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +25,blue-collar,single,basic.6y,unknown,no,yes,telephone,may,wed,90,8,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +36,technician,married,university.degree,no,no,no,telephone,may,wed,146,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +34,blue-collar,married,basic.9y,no,yes,yes,telephone,may,wed,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +29,admin.,married,basic.6y,no,no,yes,telephone,may,wed,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +33,technician,married,university.degree,unknown,no,yes,telephone,may,wed,619,3,999,0,nonexistent,1.1,93.994,-36.4,4.857,5191,no +22,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,entrepreneur,divorced,basic.4y,no,no,no,telephone,may,thu,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,93,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,retired,married,university.degree,no,no,no,telephone,may,thu,334,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,no,no,yes,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,management,married,university.degree,no,no,no,telephone,may,thu,750,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,332,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,333,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,management,divorced,university.degree,no,yes,no,telephone,may,thu,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,620,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,single,high.school,no,yes,no,telephone,may,thu,193,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,retired,married,basic.4y,no,yes,no,telephone,may,thu,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,married,university.degree,no,yes,no,telephone,may,thu,543,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +35,student,single,university.degree,unknown,no,no,telephone,may,thu,297,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,services,single,high.school,unknown,no,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,university.degree,no,no,yes,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,professional.course,no,yes,yes,telephone,may,thu,140,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,single,basic.9y,unknown,no,no,telephone,may,thu,42,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,management,married,university.degree,no,yes,no,telephone,may,thu,127,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,self-employed,single,basic.4y,unknown,yes,no,telephone,may,thu,61,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,married,high.school,unknown,no,no,telephone,may,thu,267,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,admin.,married,basic.9y,unknown,no,yes,telephone,may,thu,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,housemaid,married,basic.4y,unknown,no,yes,telephone,may,thu,205,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,single,basic.9y,no,yes,no,telephone,may,thu,54,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,132,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,thu,275,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.9y,no,yes,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,student,single,basic.4y,unknown,no,no,telephone,may,thu,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,single,unknown,unknown,yes,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,179,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,technician,married,unknown,no,yes,no,telephone,may,thu,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,128,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,services,married,high.school,unknown,no,yes,telephone,may,thu,284,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,married,basic.6y,no,yes,no,telephone,may,thu,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,self-employed,single,university.degree,no,yes,no,telephone,may,thu,244,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,single,high.school,no,no,no,telephone,may,thu,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,140,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,self-employed,married,university.degree,no,yes,no,telephone,may,thu,217,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,illiterate,unknown,no,no,telephone,may,thu,1196,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,married,professional.course,no,yes,no,telephone,may,thu,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,thu,52,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,thu,41,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,unemployed,married,high.school,no,yes,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,admin.,divorced,unknown,unknown,yes,no,telephone,may,thu,134,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,technician,single,professional.course,no,no,no,telephone,may,thu,14,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,182,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.9y,unknown,yes,no,telephone,may,thu,539,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +41,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,37,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,admin.,married,university.degree,no,yes,no,telephone,may,thu,162,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,entrepreneur,divorced,unknown,no,no,no,telephone,may,thu,184,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,married,high.school,no,no,no,telephone,may,thu,285,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,361,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,married,university.degree,no,yes,no,telephone,may,thu,203,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,technician,single,high.school,no,no,no,telephone,may,thu,186,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,high.school,unknown,yes,no,telephone,may,thu,37,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,single,high.school,no,unknown,unknown,telephone,may,thu,230,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,entrepreneur,married,basic.9y,unknown,no,no,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,married,high.school,no,no,no,telephone,may,thu,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,married,professional.course,no,no,yes,telephone,may,thu,44,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,self-employed,married,professional.course,no,no,no,telephone,may,thu,205,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,291,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,blue-collar,divorced,basic.9y,no,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,married,basic.4y,no,no,no,telephone,may,thu,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,technician,married,professional.course,no,yes,no,telephone,may,thu,57,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,thu,733,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +38,services,single,basic.9y,no,yes,no,telephone,may,thu,193,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,admin.,married,university.degree,no,yes,no,telephone,may,thu,744,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,single,basic.9y,no,yes,no,telephone,may,thu,84,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,basic.9y,no,yes,yes,telephone,may,thu,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,admin.,married,university.degree,no,yes,no,telephone,may,thu,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,23,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,thu,578,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,divorced,professional.course,no,yes,no,telephone,may,thu,1093,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +36,technician,married,professional.course,no,yes,no,telephone,may,thu,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,114,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,divorced,high.school,no,yes,no,telephone,may,thu,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,management,married,university.degree,no,yes,no,telephone,may,thu,619,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,married,basic.9y,no,no,no,telephone,may,thu,514,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,technician,married,professional.course,unknown,no,no,telephone,may,thu,337,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,services,divorced,high.school,unknown,yes,no,telephone,may,thu,561,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,single,basic.9y,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,technician,married,high.school,no,no,no,telephone,may,thu,418,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,unemployed,married,university.degree,unknown,no,no,telephone,may,thu,456,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,admin.,married,university.degree,no,yes,no,telephone,may,thu,413,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,retired,divorced,basic.4y,unknown,yes,no,telephone,may,thu,278,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,married,high.school,no,no,no,telephone,may,thu,791,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +59,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,unemployed,married,unknown,unknown,no,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,married,university.degree,no,unknown,unknown,telephone,may,thu,73,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,154,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.9y,no,yes,no,telephone,may,thu,257,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,entrepreneur,married,basic.4y,no,yes,no,telephone,may,thu,199,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,no,no,no,telephone,may,thu,208,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,married,high.school,no,yes,no,telephone,may,thu,471,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,student,single,high.school,no,unknown,unknown,telephone,may,thu,360,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,management,single,university.degree,no,unknown,unknown,telephone,may,thu,131,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,high.school,no,no,yes,telephone,may,thu,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,admin.,divorced,high.school,no,no,no,telephone,may,thu,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,married,professional.course,no,no,no,telephone,may,thu,103,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,admin.,single,university.degree,unknown,yes,yes,telephone,may,thu,656,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,358,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,management,single,basic.4y,no,yes,no,telephone,may,thu,514,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,technician,married,professional.course,no,no,no,telephone,may,thu,27,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,544,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,346,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,services,married,high.school,no,no,no,telephone,may,thu,134,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,single,unknown,no,no,no,telephone,may,thu,633,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,technician,married,university.degree,unknown,no,no,telephone,may,thu,48,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,university.degree,no,yes,no,telephone,may,thu,359,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,professional.course,unknown,yes,no,telephone,may,thu,105,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,unemployed,married,professional.course,unknown,no,no,telephone,may,thu,746,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +37,technician,single,professional.course,no,no,no,telephone,may,thu,322,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,unknown,yes,no,telephone,may,thu,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,management,single,university.degree,no,unknown,unknown,telephone,may,thu,315,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,thu,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,technician,married,basic.4y,unknown,no,no,telephone,may,thu,122,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,management,married,university.degree,no,yes,no,telephone,may,thu,144,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,married,university.degree,no,yes,no,telephone,may,thu,445,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,thu,356,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,self-employed,married,high.school,unknown,yes,no,telephone,may,thu,144,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,university.degree,no,yes,no,telephone,may,thu,102,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,married,university.degree,no,no,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,management,married,university.degree,unknown,no,no,telephone,may,thu,329,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,retired,divorced,basic.4y,unknown,yes,no,telephone,may,thu,247,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,admin.,married,basic.6y,no,yes,no,telephone,may,thu,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,services,divorced,basic.9y,no,yes,no,telephone,may,thu,49,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,technician,single,professional.course,unknown,no,no,telephone,may,thu,223,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,services,divorced,basic.9y,no,no,no,telephone,may,thu,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,services,married,high.school,unknown,no,yes,telephone,may,thu,77,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,single,basic.4y,no,yes,no,telephone,may,thu,106,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,admin.,married,basic.9y,no,yes,no,telephone,may,thu,146,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,125,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,404,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,413,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,single,high.school,no,yes,no,telephone,may,thu,177,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,self-employed,married,unknown,no,yes,no,telephone,may,thu,118,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,services,divorced,high.school,no,yes,no,telephone,may,thu,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,609,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,technician,married,professional.course,no,no,no,telephone,may,thu,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,unemployed,single,university.degree,no,yes,yes,telephone,may,thu,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,married,basic.6y,no,yes,no,telephone,may,thu,473,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,entrepreneur,divorced,basic.9y,no,yes,no,telephone,may,thu,596,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,admin.,divorced,university.degree,no,no,no,telephone,may,thu,370,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +24,student,married,university.degree,no,no,no,telephone,may,thu,691,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,single,high.school,no,no,no,telephone,may,thu,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,entrepreneur,single,basic.6y,no,yes,no,telephone,may,thu,77,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,married,high.school,no,yes,no,telephone,may,thu,212,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,single,professional.course,no,yes,no,telephone,may,thu,245,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,544,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,services,married,high.school,no,no,yes,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,410,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,513,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,management,single,university.degree,no,no,no,telephone,may,thu,179,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,services,married,high.school,no,yes,no,telephone,may,thu,896,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,technician,divorced,professional.course,unknown,yes,no,telephone,may,thu,174,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,self-employed,single,university.degree,no,no,no,telephone,may,thu,365,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,divorced,high.school,no,no,no,telephone,may,thu,1207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +41,services,married,university.degree,no,no,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,thu,82,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,services,married,high.school,unknown,yes,no,telephone,may,thu,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,admin.,divorced,basic.9y,unknown,yes,no,telephone,may,thu,42,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,technician,divorced,high.school,no,yes,no,telephone,may,thu,206,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,self-employed,married,basic.9y,no,yes,no,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,management,married,unknown,no,yes,no,telephone,may,thu,347,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,services,married,university.degree,no,yes,yes,telephone,may,thu,936,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,admin.,married,high.school,no,no,no,telephone,may,thu,162,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,admin.,married,high.school,no,yes,no,telephone,may,thu,344,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,services,divorced,high.school,no,no,no,telephone,may,thu,71,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,services,married,basic.6y,no,yes,no,telephone,may,thu,178,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,single,university.degree,no,no,no,telephone,may,thu,52,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,self-employed,single,university.degree,no,yes,no,telephone,may,thu,409,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,single,university.degree,no,no,no,telephone,may,thu,272,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,technician,divorced,professional.course,no,no,no,telephone,may,thu,87,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,admin.,single,unknown,unknown,no,no,telephone,may,thu,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,management,married,high.school,unknown,yes,no,telephone,may,thu,202,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,services,married,high.school,unknown,yes,no,telephone,may,thu,117,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,441,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,admin.,married,basic.4y,no,no,no,telephone,may,thu,175,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,single,high.school,no,no,no,telephone,may,thu,164,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,services,married,basic.9y,unknown,no,no,telephone,may,thu,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,932,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,self-employed,married,university.degree,no,no,no,telephone,may,thu,13,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,services,married,high.school,no,no,no,telephone,may,thu,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,management,married,high.school,unknown,no,no,telephone,may,thu,879,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,thu,263,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,high.school,unknown,yes,no,telephone,may,thu,64,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,440,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,unemployed,married,university.degree,unknown,no,no,telephone,may,thu,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,admin.,married,high.school,no,yes,no,telephone,may,thu,26,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,technician,married,professional.course,no,no,no,telephone,may,thu,455,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,unemployed,divorced,basic.9y,no,yes,no,telephone,may,thu,180,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,married,university.degree,no,no,no,telephone,may,thu,200,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +46,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,thu,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,101,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,services,married,high.school,unknown,no,no,telephone,may,thu,473,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,self-employed,divorced,university.degree,no,yes,yes,telephone,may,thu,1026,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,admin.,single,university.degree,no,no,yes,telephone,may,thu,364,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.4y,no,yes,no,telephone,may,thu,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,divorced,professional.course,unknown,yes,no,telephone,may,thu,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,unemployed,divorced,professional.course,no,yes,no,telephone,may,thu,617,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,thu,99,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,services,divorced,basic.4y,unknown,yes,yes,telephone,may,thu,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,married,university.degree,no,no,no,telephone,may,thu,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,277,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,entrepreneur,married,basic.9y,no,no,no,telephone,may,thu,200,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,105,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,admin.,married,high.school,no,yes,no,telephone,may,thu,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,technician,married,professional.course,no,no,no,telephone,may,thu,417,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,480,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,single,basic.4y,unknown,yes,yes,telephone,may,thu,331,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,services,married,high.school,no,no,no,telephone,may,thu,359,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,single,basic.6y,no,unknown,unknown,telephone,may,thu,332,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,married,university.degree,unknown,no,no,telephone,may,thu,215,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,university.degree,no,yes,yes,telephone,may,thu,535,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,entrepreneur,married,university.degree,unknown,no,no,telephone,may,thu,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,13,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,single,high.school,no,no,no,telephone,may,thu,689,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,housemaid,married,university.degree,no,no,no,telephone,may,thu,665,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +47,services,divorced,high.school,no,yes,no,telephone,may,thu,97,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,services,married,high.school,unknown,yes,no,telephone,may,thu,166,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,admin.,married,basic.9y,no,no,no,telephone,may,thu,207,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,married,high.school,unknown,no,no,telephone,may,thu,376,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,housemaid,married,high.school,no,no,no,telephone,may,thu,480,10,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +60,admin.,single,high.school,no,yes,no,telephone,may,thu,609,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,self-employed,married,university.degree,no,no,no,telephone,may,thu,116,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,management,married,professional.course,unknown,no,no,telephone,may,thu,484,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,retired,married,basic.9y,no,yes,no,telephone,may,thu,217,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,married,basic.9y,no,no,no,telephone,may,thu,112,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,726,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,services,single,high.school,unknown,yes,no,telephone,may,thu,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,admin.,single,high.school,no,yes,no,telephone,may,thu,1047,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +38,blue-collar,divorced,unknown,no,no,no,telephone,may,thu,362,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,university.degree,no,yes,no,telephone,may,thu,1059,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +37,technician,single,high.school,unknown,yes,no,telephone,may,thu,54,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,married,university.degree,no,no,yes,telephone,may,thu,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,thu,253,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,services,married,unknown,no,no,no,telephone,may,thu,114,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,services,divorced,basic.9y,no,yes,yes,telephone,may,thu,293,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,blue-collar,married,unknown,unknown,no,no,telephone,may,thu,246,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,self-employed,married,basic.6y,no,yes,yes,telephone,may,thu,195,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,unknown,unknown,university.degree,no,yes,yes,telephone,may,thu,221,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,technician,married,professional.course,no,yes,no,telephone,may,thu,166,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,single,university.degree,unknown,no,yes,telephone,may,thu,385,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,entrepreneur,married,basic.9y,no,no,no,telephone,may,thu,85,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,173,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,technician,divorced,basic.9y,no,no,yes,telephone,may,thu,48,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,management,married,university.degree,no,yes,no,telephone,may,thu,410,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,management,married,university.degree,unknown,yes,no,telephone,may,thu,311,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,40,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,management,divorced,university.degree,no,yes,no,telephone,may,thu,81,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,university.degree,no,no,no,telephone,may,thu,558,13,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,technician,married,university.degree,unknown,no,no,telephone,may,thu,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,retired,divorced,basic.4y,no,yes,no,telephone,may,thu,77,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +24,services,single,high.school,no,yes,no,telephone,may,thu,70,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,self-employed,divorced,university.degree,no,yes,no,telephone,may,thu,229,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,housemaid,married,professional.course,no,no,no,telephone,may,thu,565,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,divorced,unknown,unknown,no,yes,telephone,may,thu,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,single,university.degree,no,no,no,telephone,may,thu,792,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +31,admin.,married,high.school,unknown,yes,no,telephone,may,thu,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,management,married,university.degree,unknown,yes,no,telephone,may,thu,488,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,services,married,basic.6y,no,yes,no,telephone,may,thu,176,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,may,thu,123,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,blue-collar,married,basic.6y,unknown,yes,yes,telephone,may,thu,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,technician,married,professional.course,unknown,yes,no,telephone,may,thu,768,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,single,professional.course,no,yes,no,telephone,may,thu,105,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,101,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,retired,married,basic.4y,no,no,no,telephone,may,thu,225,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,admin.,single,unknown,unknown,yes,no,telephone,may,thu,122,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,thu,52,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,150,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,married,university.degree,unknown,yes,no,telephone,may,thu,399,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,married,high.school,no,no,no,telephone,may,thu,260,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,thu,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,unknown,married,basic.9y,no,no,no,telephone,may,thu,241,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,399,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,management,married,basic.4y,no,yes,no,telephone,may,thu,637,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,self-employed,married,basic.4y,no,no,no,telephone,may,thu,107,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,single,university.degree,no,yes,no,telephone,may,thu,68,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,housemaid,single,basic.9y,no,no,no,telephone,may,thu,553,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,310,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,admin.,single,university.degree,no,yes,no,telephone,may,thu,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,thu,764,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,admin.,married,basic.6y,unknown,no,yes,telephone,may,thu,29,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,services,married,basic.4y,no,no,no,telephone,may,thu,126,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,admin.,married,university.degree,no,yes,no,telephone,may,thu,251,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,self-employed,married,university.degree,no,no,yes,telephone,may,thu,188,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,unemployed,married,professional.course,no,no,no,telephone,may,thu,368,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,technician,married,professional.course,no,no,no,telephone,may,thu,414,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,128,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,services,single,high.school,no,yes,no,telephone,may,thu,685,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,self-employed,single,university.degree,unknown,yes,no,telephone,may,thu,512,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,services,single,high.school,unknown,yes,no,telephone,may,thu,102,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,basic.9y,no,yes,no,telephone,may,thu,1611,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,technician,single,university.degree,unknown,yes,no,telephone,may,thu,44,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,74,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,self-employed,married,university.degree,no,no,no,telephone,may,thu,118,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,single,unknown,no,no,no,telephone,may,thu,725,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,100,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,technician,married,professional.course,unknown,yes,no,telephone,may,thu,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,admin.,married,basic.9y,no,no,no,telephone,may,thu,752,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,self-employed,single,university.degree,no,no,no,telephone,may,thu,241,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,single,high.school,no,yes,no,telephone,may,thu,430,1,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,thu,219,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,self-employed,single,university.degree,no,yes,no,telephone,may,thu,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,technician,single,professional.course,no,yes,no,telephone,may,thu,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +44,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,may,thu,318,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,student,single,basic.4y,unknown,yes,no,telephone,may,thu,1185,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,admin.,single,basic.9y,no,no,yes,telephone,may,thu,110,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,services,married,high.school,no,yes,no,telephone,may,thu,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,386,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,unemployed,married,high.school,unknown,no,no,telephone,may,thu,218,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,high.school,no,no,no,telephone,may,thu,191,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +43,technician,married,university.degree,unknown,no,no,telephone,may,thu,84,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,services,single,high.school,no,no,no,telephone,may,thu,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,services,married,high.school,unknown,no,no,telephone,may,thu,113,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,thu,744,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,high.school,no,yes,no,telephone,may,thu,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,entrepreneur,married,professional.course,unknown,yes,no,telephone,may,thu,187,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +57,self-employed,single,high.school,unknown,no,no,telephone,may,thu,587,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,technician,married,university.degree,no,yes,no,telephone,may,thu,336,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,management,married,university.degree,no,yes,no,telephone,may,thu,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,married,university.degree,no,yes,no,telephone,may,thu,72,12,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,technician,married,professional.course,no,no,no,telephone,may,thu,127,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,admin.,married,unknown,unknown,yes,no,telephone,may,thu,352,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,technician,married,high.school,no,yes,no,telephone,may,thu,347,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,286,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,668,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,married,university.degree,no,yes,yes,telephone,may,thu,29,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,211,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +25,services,single,unknown,no,yes,yes,telephone,may,thu,175,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,55,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +58,housemaid,married,basic.4y,unknown,no,no,telephone,may,thu,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,admin.,married,high.school,no,yes,no,telephone,may,thu,228,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,blue-collar,single,university.degree,no,yes,no,telephone,may,thu,128,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,student,single,high.school,unknown,yes,no,telephone,may,thu,38,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,technician,married,university.degree,no,no,no,telephone,may,thu,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,18,16,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,admin.,divorced,university.degree,no,yes,no,telephone,may,thu,147,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,admin.,single,university.degree,no,yes,no,telephone,may,thu,900,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +53,management,married,university.degree,unknown,unknown,unknown,telephone,may,thu,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,thu,56,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,39,22,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,144,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,unemployed,married,basic.4y,unknown,yes,no,telephone,may,thu,249,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.6y,unknown,no,no,telephone,may,thu,286,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,thu,384,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,183,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,technician,married,university.degree,no,yes,no,telephone,may,thu,240,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,married,university.degree,no,yes,yes,telephone,may,thu,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,thu,225,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +33,services,single,high.school,no,no,no,telephone,may,thu,194,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,admin.,married,university.degree,no,no,no,telephone,may,thu,273,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,431,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,retired,married,university.degree,unknown,yes,no,telephone,may,thu,720,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +42,admin.,single,university.degree,unknown,yes,no,telephone,may,thu,814,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +48,services,married,high.school,no,yes,no,telephone,may,thu,859,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,married,high.school,unknown,yes,yes,telephone,may,thu,184,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +56,management,divorced,basic.9y,unknown,yes,no,telephone,may,thu,313,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,technician,married,professional.course,unknown,no,no,telephone,may,thu,142,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +40,technician,married,basic.9y,unknown,no,yes,telephone,may,thu,171,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,technician,single,university.degree,no,yes,yes,telephone,may,thu,245,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +38,blue-collar,single,basic.6y,no,no,no,telephone,may,thu,238,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,blue-collar,married,professional.course,no,no,no,telephone,may,thu,53,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,management,married,basic.6y,no,yes,no,telephone,may,thu,364,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,admin.,married,basic.9y,unknown,no,yes,telephone,may,thu,191,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +46,self-employed,married,basic.4y,unknown,no,no,telephone,may,thu,35,24,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,blue-collar,married,university.degree,no,no,yes,telephone,may,thu,106,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +29,services,single,basic.4y,no,yes,no,telephone,may,thu,382,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,191,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +41,entrepreneur,married,basic.9y,no,yes,no,telephone,may,thu,483,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,253,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,admin.,divorced,university.degree,no,yes,yes,telephone,may,thu,328,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,admin.,married,university.degree,unknown,no,yes,telephone,may,thu,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +54,technician,divorced,university.degree,no,no,yes,telephone,may,thu,155,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,admin.,divorced,high.school,no,yes,no,telephone,may,thu,233,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +31,self-employed,married,university.degree,no,no,yes,telephone,may,thu,66,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,technician,single,university.degree,unknown,yes,no,telephone,may,thu,1109,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +58,retired,married,basic.9y,unknown,yes,no,telephone,may,thu,828,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,yes +55,admin.,married,high.school,no,no,yes,telephone,may,thu,134,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,thu,96,5,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,technician,married,university.degree,no,yes,no,telephone,may,thu,197,9,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,blue-collar,married,basic.9y,no,yes,yes,telephone,may,thu,645,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +39,blue-collar,married,basic.4y,no,yes,yes,telephone,may,thu,81,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,services,single,professional.course,no,no,no,telephone,may,thu,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.6y,no,no,no,telephone,may,thu,248,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,services,married,high.school,unknown,no,no,telephone,may,thu,2260,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +52,retired,married,basic.9y,unknown,no,no,telephone,may,thu,91,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +51,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,thu,660,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +49,technician,married,basic.9y,no,yes,no,telephone,may,thu,182,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,management,married,basic.9y,no,no,no,telephone,may,thu,30,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,retired,married,basic.4y,no,no,no,telephone,may,thu,101,23,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +53,housemaid,single,basic.4y,unknown,no,no,telephone,may,thu,54,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,management,married,basic.4y,unknown,yes,no,telephone,may,thu,374,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +55,technician,divorced,university.degree,unknown,no,no,telephone,may,thu,216,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +34,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,76,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,services,married,high.school,unknown,yes,yes,telephone,may,thu,73,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,unknown,married,unknown,no,no,yes,telephone,may,thu,62,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +50,blue-collar,single,basic.4y,no,no,no,telephone,may,thu,152,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,married,high.school,no,no,no,telephone,may,thu,86,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +28,services,single,high.school,no,no,no,telephone,may,thu,95,6,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,may,thu,23,15,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +37,housemaid,married,university.degree,unknown,yes,no,telephone,may,thu,25,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,services,single,high.school,no,yes,yes,telephone,may,thu,151,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +26,technician,single,professional.course,no,no,no,telephone,may,thu,95,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,services,married,high.school,no,yes,no,telephone,may,thu,52,8,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,may,thu,52,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,admin.,single,university.degree,no,yes,yes,telephone,may,thu,421,3,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,322,11,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +30,services,single,high.school,no,yes,no,telephone,may,thu,52,4,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +27,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,340,7,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +48,admin.,divorced,high.school,no,yes,no,telephone,may,thu,139,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +59,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,763,2,999,0,nonexistent,1.1,93.994,-36.4,4.86,5191,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,single,university.degree,no,yes,yes,telephone,may,fri,231,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,120,17,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,married,high.school,unknown,yes,no,telephone,may,fri,203,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,67,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,blue-collar,married,unknown,unknown,unknown,unknown,telephone,may,fri,311,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +57,technician,married,university.degree,no,no,no,telephone,may,fri,50,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,housemaid,single,basic.4y,no,yes,no,telephone,may,fri,86,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,blue-collar,single,high.school,no,yes,no,telephone,may,fri,139,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,self-employed,married,professional.course,unknown,no,no,telephone,may,fri,235,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,management,married,basic.9y,no,no,no,telephone,may,fri,43,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,entrepreneur,married,basic.4y,no,yes,no,telephone,may,fri,233,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,blue-collar,married,high.school,no,yes,no,telephone,may,fri,230,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,services,married,professional.course,no,no,no,telephone,may,fri,177,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,services,married,professional.course,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +58,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,422,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,management,single,high.school,no,yes,no,telephone,may,fri,324,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,287,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,blue-collar,single,basic.9y,no,yes,yes,telephone,may,fri,58,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +58,services,married,basic.4y,no,no,no,telephone,may,fri,226,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,admin.,single,basic.9y,unknown,no,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,self-employed,married,university.degree,no,no,no,telephone,may,fri,151,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,technician,single,university.degree,no,yes,no,telephone,may,fri,57,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,admin.,single,university.degree,unknown,no,no,telephone,may,fri,31,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,118,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,services,married,high.school,no,yes,no,telephone,may,fri,133,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,fri,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,45,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,91,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,married,high.school,no,no,no,telephone,may,fri,172,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,admin.,married,high.school,no,yes,yes,telephone,may,fri,498,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,85,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,admin.,married,university.degree,no,yes,no,telephone,may,fri,224,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,housemaid,divorced,high.school,no,no,no,telephone,may,fri,553,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +30,admin.,married,university.degree,no,yes,no,telephone,may,fri,242,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,fri,192,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,technician,married,professional.course,unknown,no,no,telephone,may,fri,207,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,711,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,admin.,single,high.school,no,yes,no,telephone,may,fri,160,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,admin.,single,university.degree,no,no,no,telephone,may,fri,147,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,admin.,single,university.degree,no,yes,no,telephone,may,fri,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,admin.,married,high.school,no,no,no,telephone,may,fri,199,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,unknown,basic.6y,unknown,no,yes,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,65,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,150,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,married,basic.9y,no,yes,yes,telephone,may,fri,57,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,single,university.degree,no,no,no,telephone,may,fri,234,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,521,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,university.degree,no,yes,no,telephone,may,fri,555,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,admin.,married,university.degree,no,yes,no,telephone,may,fri,86,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,204,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,housemaid,married,high.school,no,no,no,telephone,may,fri,222,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,admin.,single,high.school,no,no,no,telephone,may,fri,162,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,self-employed,married,basic.6y,no,no,no,telephone,may,fri,648,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,services,married,high.school,no,no,yes,telephone,may,fri,659,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,student,single,university.degree,unknown,no,no,telephone,may,fri,867,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,admin.,single,high.school,no,no,yes,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,123,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,admin.,married,university.degree,no,no,no,telephone,may,fri,56,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,unemployed,married,unknown,no,yes,no,telephone,may,fri,54,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,admin.,married,university.degree,no,yes,no,telephone,may,fri,152,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,25,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,admin.,married,high.school,unknown,no,no,telephone,may,fri,120,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,self-employed,divorced,university.degree,no,yes,no,telephone,may,fri,491,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,379,17,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,343,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,unemployed,single,high.school,unknown,yes,yes,telephone,may,fri,289,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,574,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,services,married,high.school,unknown,yes,no,telephone,may,fri,85,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +55,unknown,married,unknown,unknown,no,no,telephone,may,fri,319,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,services,married,high.school,no,yes,yes,telephone,may,fri,108,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,services,married,high.school,no,no,yes,telephone,may,fri,762,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +52,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,80,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +55,unknown,married,unknown,unknown,yes,no,telephone,may,fri,449,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,admin.,single,university.degree,no,yes,no,telephone,may,fri,198,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,self-employed,married,university.degree,no,yes,no,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,services,married,high.school,no,yes,no,telephone,may,fri,69,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,admin.,divorced,university.degree,unknown,yes,no,telephone,may,fri,55,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,290,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +26,technician,married,basic.6y,no,yes,no,telephone,may,fri,138,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,services,married,unknown,no,no,yes,telephone,may,fri,135,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,entrepreneur,married,basic.9y,unknown,yes,no,telephone,may,fri,70,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +58,housemaid,married,basic.4y,unknown,yes,no,telephone,may,fri,652,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,self-employed,married,basic.9y,no,no,no,telephone,may,fri,327,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,housemaid,married,basic.4y,unknown,no,no,telephone,may,fri,246,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,technician,single,university.degree,no,yes,no,telephone,may,fri,295,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,technician,single,university.degree,no,no,no,telephone,may,fri,255,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,services,single,high.school,no,yes,no,telephone,may,fri,523,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,single,basic.4y,unknown,no,no,telephone,may,fri,130,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,services,married,high.school,no,no,no,telephone,may,fri,103,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,services,married,high.school,unknown,no,no,telephone,may,fri,205,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,technician,married,professional.course,unknown,unknown,unknown,telephone,may,fri,92,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,married,high.school,no,yes,no,telephone,may,fri,107,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,admin.,married,university.degree,no,no,no,telephone,may,fri,864,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +25,technician,single,professional.course,no,yes,no,telephone,may,fri,65,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,admin.,divorced,high.school,no,no,no,telephone,may,fri,556,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,student,single,high.school,no,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,technician,married,professional.course,no,no,no,telephone,may,fri,180,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,married,university.degree,no,no,no,telephone,may,fri,87,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,management,divorced,basic.9y,unknown,no,no,telephone,may,fri,70,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,technician,married,professional.course,no,yes,no,telephone,may,fri,435,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,admin.,divorced,high.school,no,no,no,telephone,may,fri,132,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,admin.,married,high.school,no,no,no,telephone,may,fri,312,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,high.school,no,no,no,telephone,may,fri,283,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,admin.,married,university.degree,no,yes,yes,telephone,may,fri,182,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,379,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,management,married,basic.9y,unknown,no,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,management,single,unknown,no,no,no,telephone,may,fri,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,housemaid,married,basic.4y,no,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,may,fri,78,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,technician,married,university.degree,no,no,no,telephone,may,fri,417,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,may,fri,618,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +39,technician,married,university.degree,unknown,yes,no,telephone,may,fri,407,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,technician,single,university.degree,no,yes,no,telephone,may,fri,160,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,blue-collar,divorced,basic.9y,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,fri,210,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,housemaid,married,high.school,no,yes,yes,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,461,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,763,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +27,admin.,single,high.school,unknown,no,no,telephone,may,fri,682,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +40,admin.,married,high.school,no,no,no,telephone,may,fri,171,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,housemaid,married,basic.4y,no,no,no,telephone,may,fri,68,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,services,single,professional.course,no,yes,no,telephone,may,fri,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,blue-collar,single,unknown,unknown,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,admin.,married,high.school,no,no,no,telephone,may,fri,381,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,blue-collar,married,professional.course,no,no,no,telephone,may,fri,278,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,126,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,149,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +56,technician,married,basic.4y,unknown,no,no,telephone,may,fri,95,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,197,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,38,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,management,divorced,university.degree,unknown,yes,yes,telephone,may,fri,201,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,176,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,admin.,married,high.school,no,yes,no,telephone,may,fri,61,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,unemployed,divorced,high.school,no,no,no,telephone,may,fri,275,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,201,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,university.degree,no,no,no,telephone,may,fri,724,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,143,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,admin.,married,university.degree,no,no,no,telephone,may,fri,197,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,admin.,single,high.school,no,no,yes,telephone,may,fri,143,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,153,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,technician,married,professional.course,no,no,no,telephone,may,fri,197,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,services,single,unknown,no,yes,no,telephone,may,fri,536,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,blue-collar,married,professional.course,no,no,no,telephone,may,fri,120,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,604,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +41,admin.,married,university.degree,no,no,no,telephone,may,fri,254,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,121,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +60,admin.,married,high.school,no,yes,no,telephone,may,fri,118,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +24,technician,single,professional.course,unknown,yes,yes,telephone,may,fri,447,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,services,married,high.school,unknown,unknown,unknown,telephone,may,fri,854,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,151,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,services,married,high.school,no,yes,yes,telephone,may,fri,114,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,technician,married,professional.course,no,yes,no,telephone,may,fri,855,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +30,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,115,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,services,married,high.school,no,no,no,telephone,may,fri,274,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,unknown,no,no,no,telephone,may,fri,100,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,services,single,high.school,no,no,no,telephone,may,fri,156,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,153,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,technician,married,professional.course,unknown,yes,no,telephone,may,fri,264,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +57,services,divorced,high.school,no,no,no,telephone,may,fri,251,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,services,married,high.school,no,no,no,telephone,may,fri,1269,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +25,admin.,single,unknown,no,no,no,telephone,may,fri,48,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,technician,married,professional.course,unknown,no,no,telephone,may,fri,119,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,admin.,single,university.degree,no,no,no,telephone,may,fri,104,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,technician,single,professional.course,no,yes,no,telephone,may,fri,65,13,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,technician,married,high.school,no,no,no,telephone,may,fri,75,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,157,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,565,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,admin.,married,university.degree,no,no,no,telephone,may,fri,165,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,unemployed,divorced,basic.9y,no,no,no,telephone,may,fri,314,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,admin.,divorced,high.school,no,yes,no,telephone,may,fri,109,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,fri,219,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,admin.,single,unknown,no,no,no,telephone,may,fri,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +24,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,385,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,admin.,married,unknown,no,yes,no,telephone,may,fri,96,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,married,high.school,no,no,no,telephone,may,fri,868,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +60,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,161,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,technician,married,professional.course,no,no,no,telephone,may,fri,448,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,unknown,no,unknown,unknown,telephone,may,fri,137,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,155,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,unknown,married,unknown,no,no,no,telephone,may,fri,633,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +55,technician,married,university.degree,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,127,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,divorced,high.school,unknown,no,no,telephone,may,fri,99,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,technician,married,university.degree,no,yes,no,telephone,may,fri,170,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,admin.,married,university.degree,no,no,no,telephone,may,fri,208,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,married,unknown,unknown,yes,yes,telephone,may,fri,129,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,management,married,basic.9y,no,no,no,telephone,may,fri,134,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,admin.,married,university.degree,no,no,no,telephone,may,fri,129,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,technician,single,high.school,no,no,no,telephone,may,fri,184,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,self-employed,married,university.degree,no,no,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,services,married,unknown,no,no,no,telephone,may,fri,270,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,services,single,high.school,no,no,no,telephone,may,fri,145,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,married,high.school,no,yes,no,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,unemployed,married,basic.9y,no,no,no,telephone,may,fri,363,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,married,unknown,no,yes,no,telephone,may,fri,63,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +59,entrepreneur,divorced,high.school,no,no,no,telephone,may,fri,143,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,56,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,fri,226,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,blue-collar,married,basic.4y,unknown,yes,yes,telephone,may,fri,35,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,married,basic.9y,no,no,yes,telephone,may,fri,298,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,self-employed,married,unknown,unknown,yes,no,telephone,may,fri,158,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,admin.,single,university.degree,no,no,no,telephone,may,fri,47,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,self-employed,single,basic.9y,no,yes,yes,telephone,may,fri,827,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,fri,83,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,single,university.degree,no,no,yes,telephone,may,fri,570,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,72,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +23,services,single,high.school,no,no,no,telephone,may,fri,557,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,technician,married,professional.course,no,no,no,telephone,may,fri,59,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,admin.,married,basic.4y,unknown,unknown,unknown,telephone,may,fri,296,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,admin.,married,university.degree,unknown,no,no,telephone,may,fri,38,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,admin.,married,high.school,no,no,no,telephone,may,fri,170,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,married,high.school,no,yes,no,telephone,may,fri,422,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,admin.,single,university.degree,unknown,unknown,unknown,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,housemaid,divorced,basic.4y,unknown,yes,no,telephone,may,fri,141,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,services,single,high.school,no,no,no,telephone,may,fri,76,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,691,10,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +30,admin.,married,university.degree,no,yes,no,telephone,may,fri,238,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,1097,15,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +33,services,single,high.school,no,yes,no,telephone,may,fri,111,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,high.school,no,no,yes,telephone,may,fri,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,fri,371,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,married,university.degree,no,yes,no,telephone,may,fri,103,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,206,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,1500,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +30,services,married,high.school,no,yes,no,telephone,may,fri,265,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +55,blue-collar,married,basic.6y,unknown,no,no,telephone,may,fri,567,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,254,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +59,technician,married,unknown,no,no,no,telephone,may,fri,464,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,married,high.school,no,no,no,telephone,may,fri,1236,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +33,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,33,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,single,professional.course,unknown,yes,no,telephone,may,fri,613,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,blue-collar,single,high.school,no,no,no,telephone,may,fri,1212,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,admin.,single,university.degree,unknown,no,no,telephone,may,fri,96,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,self-employed,married,high.school,unknown,yes,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,technician,married,professional.course,unknown,yes,no,telephone,may,fri,53,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,91,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,technician,married,professional.course,unknown,yes,no,telephone,may,fri,185,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,technician,divorced,professional.course,no,yes,no,telephone,may,fri,201,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,technician,single,university.degree,unknown,no,yes,telephone,may,fri,169,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,admin.,married,high.school,no,no,no,telephone,may,fri,515,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,technician,married,professional.course,unknown,yes,no,telephone,may,fri,388,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,housemaid,divorced,basic.4y,no,yes,no,telephone,may,fri,422,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,services,married,high.school,no,no,no,telephone,may,fri,76,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,technician,married,professional.course,no,no,no,telephone,may,fri,886,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +51,retired,divorced,basic.9y,no,no,no,telephone,may,fri,296,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,unknown,professional.course,unknown,yes,no,telephone,may,fri,378,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,technician,single,professional.course,no,unknown,unknown,telephone,may,fri,136,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,services,married,basic.4y,no,no,no,telephone,may,fri,58,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,admin.,married,university.degree,no,no,no,telephone,may,fri,60,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +56,blue-collar,married,professional.course,no,unknown,unknown,telephone,may,fri,340,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,522,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,management,married,basic.9y,no,yes,no,telephone,may,fri,159,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +25,admin.,single,high.school,no,no,no,telephone,may,fri,113,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,services,single,high.school,no,yes,no,telephone,may,fri,123,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,306,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,admin.,married,professional.course,no,no,yes,telephone,may,fri,148,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,technician,married,professional.course,no,yes,no,telephone,may,fri,322,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +59,retired,single,high.school,no,no,no,telephone,may,fri,475,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,admin.,divorced,high.school,no,yes,no,telephone,may,fri,224,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,married,basic.6y,no,no,no,telephone,may,fri,88,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,entrepreneur,married,unknown,unknown,no,no,telephone,may,fri,509,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,blue-collar,divorced,high.school,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,unknown,married,unknown,unknown,no,no,telephone,may,fri,147,1,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,management,married,university.degree,no,yes,no,telephone,may,fri,97,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,113,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,admin.,married,basic.9y,no,yes,no,telephone,may,fri,465,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,admin.,married,university.degree,no,no,no,telephone,may,fri,294,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,admin.,divorced,university.degree,no,yes,no,telephone,may,fri,224,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,services,married,high.school,unknown,yes,no,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,services,married,unknown,no,yes,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,142,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,312,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,admin.,married,professional.course,unknown,yes,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,services,divorced,basic.6y,no,no,no,telephone,may,fri,825,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,116,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,self-employed,married,basic.9y,no,yes,no,telephone,may,fri,103,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,management,married,unknown,no,no,no,telephone,may,fri,38,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,admin.,married,basic.9y,unknown,yes,no,telephone,may,fri,168,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,31,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,management,married,university.degree,no,no,no,telephone,may,fri,66,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,512,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,188,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,technician,single,university.degree,no,unknown,unknown,telephone,may,fri,214,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,entrepreneur,married,university.degree,unknown,yes,yes,telephone,may,fri,65,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,married,high.school,no,no,no,telephone,may,fri,80,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,1980,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +36,services,married,high.school,unknown,no,no,telephone,may,fri,358,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,management,married,basic.9y,no,yes,no,telephone,may,fri,398,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,62,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,technician,married,professional.course,no,no,no,telephone,may,fri,265,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,self-employed,married,university.degree,unknown,no,no,telephone,may,fri,618,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,management,single,professional.course,no,yes,no,telephone,may,fri,256,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,technician,single,unknown,no,yes,no,telephone,may,fri,722,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,services,married,high.school,no,no,no,telephone,may,fri,510,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,admin.,single,university.degree,no,yes,no,telephone,may,fri,355,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,technician,married,basic.9y,no,no,no,telephone,may,fri,150,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,159,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,management,single,university.degree,no,no,no,telephone,may,fri,170,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,housemaid,divorced,basic.6y,no,no,no,telephone,may,fri,243,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,self-employed,single,university.degree,unknown,yes,yes,telephone,may,fri,140,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,267,14,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,219,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,blue-collar,married,unknown,unknown,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,unknown,professional.course,unknown,no,no,telephone,may,fri,112,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,admin.,married,university.degree,unknown,no,no,telephone,may,fri,216,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +59,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,167,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,technician,divorced,professional.course,no,yes,yes,telephone,may,fri,78,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,222,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,technician,single,professional.course,no,no,no,telephone,may,fri,363,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,services,married,basic.9y,no,yes,no,telephone,may,fri,109,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,services,single,high.school,no,no,no,telephone,may,fri,67,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +55,technician,married,university.degree,no,no,no,telephone,may,fri,41,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,technician,divorced,high.school,no,no,no,telephone,may,fri,156,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,108,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,408,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,272,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +59,technician,married,basic.9y,no,no,no,telephone,may,fri,135,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,technician,married,basic.6y,no,no,no,telephone,may,fri,107,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,self-employed,single,basic.4y,no,yes,no,telephone,may,fri,742,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,fri,166,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,376,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +56,admin.,married,high.school,no,yes,no,telephone,may,fri,138,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,single,basic.9y,unknown,no,no,telephone,may,fri,16,18,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,services,married,high.school,no,no,no,telephone,may,fri,984,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +44,technician,married,high.school,no,yes,no,telephone,may,fri,363,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,management,married,university.degree,no,yes,no,telephone,may,fri,339,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +29,housemaid,married,high.school,no,no,no,telephone,may,fri,161,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,admin.,single,university.degree,no,yes,no,telephone,may,fri,28,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +49,management,divorced,university.degree,no,no,no,telephone,may,fri,170,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,single,high.school,no,yes,no,telephone,may,fri,66,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,housemaid,married,university.degree,unknown,no,no,telephone,may,fri,199,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,services,single,high.school,no,yes,no,telephone,may,fri,274,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,services,divorced,high.school,no,no,no,telephone,may,fri,136,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,housemaid,single,university.degree,no,no,no,telephone,may,fri,62,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,technician,single,university.degree,no,no,no,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,unknown,single,basic.4y,no,yes,no,telephone,may,fri,189,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,self-employed,married,basic.9y,no,yes,yes,telephone,may,fri,135,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,319,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,admin.,married,high.school,no,yes,no,telephone,may,fri,352,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,technician,single,professional.course,no,no,no,telephone,may,fri,230,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +22,blue-collar,single,basic.6y,unknown,no,no,telephone,may,fri,178,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,42,11,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +54,technician,married,professional.course,no,no,no,telephone,may,fri,171,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,119,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,admin.,married,basic.6y,no,no,no,telephone,may,fri,66,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,admin.,married,high.school,no,no,no,telephone,may,fri,130,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,entrepreneur,married,basic.9y,no,yes,yes,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,management,single,university.degree,no,no,no,telephone,may,fri,101,16,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,admin.,married,professional.course,no,yes,no,telephone,may,fri,78,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,admin.,single,high.school,no,yes,no,telephone,may,fri,100,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,self-employed,divorced,basic.4y,no,no,no,telephone,may,fri,212,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,blue-collar,divorced,basic.4y,no,no,no,telephone,may,fri,181,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,single,basic.6y,no,yes,no,telephone,may,fri,72,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +23,admin.,married,high.school,no,yes,no,telephone,may,fri,390,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,services,married,high.school,no,no,no,telephone,may,fri,324,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,admin.,single,university.degree,no,yes,yes,telephone,may,fri,163,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,services,married,high.school,no,no,no,telephone,may,fri,110,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +57,retired,married,high.school,unknown,no,no,telephone,may,fri,72,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,married,unknown,no,no,no,telephone,may,fri,85,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +52,unknown,married,basic.6y,no,no,no,telephone,may,fri,54,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,admin.,married,basic.9y,no,yes,no,telephone,may,fri,231,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,self-employed,married,high.school,no,no,no,telephone,may,fri,833,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,technician,married,professional.course,no,no,no,telephone,may,fri,124,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,technician,divorced,professional.course,no,no,no,telephone,may,fri,57,10,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,may,fri,115,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,self-employed,married,professional.course,unknown,yes,no,telephone,may,fri,78,13,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,fri,43,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,entrepreneur,married,high.school,no,no,yes,telephone,may,fri,229,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +53,services,married,basic.4y,no,no,no,telephone,may,fri,86,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,blue-collar,single,unknown,no,yes,no,telephone,may,fri,273,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,admin.,married,high.school,no,no,yes,telephone,may,fri,30,18,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +57,services,divorced,high.school,no,yes,no,telephone,may,fri,288,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,services,married,high.school,unknown,yes,no,telephone,may,fri,247,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,admin.,married,university.degree,no,no,no,telephone,may,fri,85,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,admin.,married,university.degree,no,no,no,telephone,may,fri,76,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,admin.,married,basic.6y,unknown,yes,no,telephone,may,fri,85,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,management,married,university.degree,no,yes,no,telephone,may,fri,170,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,fri,428,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,admin.,married,university.degree,no,no,no,telephone,may,fri,370,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,137,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,services,married,high.school,unknown,no,no,telephone,may,fri,293,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +57,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,153,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,281,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,technician,divorced,university.degree,no,yes,no,telephone,may,fri,46,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,admin.,single,high.school,no,yes,no,telephone,may,fri,26,25,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,technician,married,university.degree,no,yes,no,telephone,may,fri,104,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,housemaid,married,high.school,no,yes,yes,telephone,may,fri,205,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +32,admin.,single,high.school,no,yes,no,telephone,may,fri,891,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +41,technician,married,professional.course,no,no,no,telephone,may,fri,34,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,745,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +34,entrepreneur,married,professional.course,no,yes,no,telephone,may,fri,292,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,technician,married,professional.course,no,no,no,telephone,may,fri,135,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,management,married,high.school,unknown,no,no,telephone,may,fri,45,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +43,services,married,high.school,unknown,yes,no,telephone,may,fri,99,6,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,blue-collar,single,basic.6y,unknown,no,no,telephone,may,fri,148,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,539,12,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +38,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,84,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,unemployed,married,professional.course,no,yes,no,telephone,may,fri,3631,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +55,blue-collar,married,basic.4y,no,no,no,telephone,may,fri,435,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,29,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,self-employed,single,university.degree,no,no,no,telephone,may,fri,510,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,services,single,basic.9y,no,no,no,telephone,may,fri,1044,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,yes +57,management,married,university.degree,unknown,no,yes,telephone,may,fri,59,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,entrepreneur,married,university.degree,unknown,yes,no,telephone,may,fri,96,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +38,technician,married,professional.course,no,yes,no,telephone,may,fri,122,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,admin.,married,high.school,unknown,no,yes,telephone,may,fri,84,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +60,unknown,single,unknown,unknown,no,no,telephone,may,fri,33,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +50,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,43,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +44,admin.,married,high.school,no,yes,no,telephone,may,fri,223,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,services,married,high.school,no,yes,no,telephone,may,fri,288,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +34,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,306,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,technician,married,basic.9y,unknown,no,no,telephone,may,fri,81,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,admin.,married,high.school,no,yes,no,telephone,may,fri,53,7,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,blue-collar,married,unknown,unknown,yes,no,telephone,may,fri,436,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +37,unemployed,married,professional.course,no,no,no,telephone,may,fri,41,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +30,services,married,high.school,no,no,no,telephone,may,fri,147,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +56,housemaid,married,basic.4y,no,yes,no,telephone,may,fri,81,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,232,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +39,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,97,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,self-employed,married,basic.4y,unknown,yes,no,telephone,may,fri,82,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +36,housemaid,married,basic.6y,no,yes,no,telephone,may,fri,60,16,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +40,services,married,high.school,no,yes,yes,telephone,may,fri,141,9,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +41,self-employed,married,high.school,no,yes,no,telephone,may,fri,206,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +42,unemployed,married,basic.4y,no,yes,no,telephone,may,fri,170,19,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +47,management,married,basic.4y,unknown,no,yes,telephone,may,fri,251,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +51,admin.,married,basic.9y,no,no,no,telephone,may,fri,25,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,fri,120,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +35,admin.,single,university.degree,no,no,no,telephone,may,fri,123,4,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +48,unemployed,married,basic.6y,no,no,yes,telephone,may,fri,58,3,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +46,blue-collar,married,basic.4y,unknown,no,yes,telephone,may,fri,28,8,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +24,entrepreneur,married,university.degree,unknown,no,no,telephone,may,fri,1193,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +27,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,fri,127,5,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +33,technician,married,professional.course,no,no,no,telephone,may,fri,395,2,999,0,nonexistent,1.1,93.994,-36.4,4.864,5191,no +26,management,single,university.degree,no,no,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,technician,married,professional.course,unknown,no,no,telephone,jun,mon,119,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,jun,mon,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,technician,married,basic.9y,no,no,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,admin.,married,university.degree,no,no,no,telephone,jun,mon,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,housemaid,married,professional.course,unknown,yes,no,telephone,jun,mon,251,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,services,married,basic.9y,no,no,no,telephone,jun,mon,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,108,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,technician,married,professional.course,no,yes,no,telephone,jun,mon,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,services,married,high.school,unknown,yes,no,telephone,jun,mon,25,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,technician,single,professional.course,unknown,unknown,unknown,telephone,jun,mon,51,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,services,divorced,high.school,no,no,yes,telephone,jun,mon,361,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +59,retired,married,unknown,no,no,yes,telephone,jun,mon,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,self-employed,divorced,university.degree,no,yes,yes,telephone,jun,mon,372,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,services,married,high.school,no,no,no,telephone,jun,mon,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,technician,married,professional.course,no,no,yes,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,retired,married,basic.4y,no,yes,no,telephone,jun,mon,550,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,unknown,divorced,high.school,unknown,yes,no,telephone,jun,mon,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,mon,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,admin.,single,high.school,no,no,no,telephone,jun,mon,175,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,management,married,university.degree,no,no,no,telephone,jun,mon,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,high.school,no,yes,yes,telephone,jun,mon,192,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +59,retired,married,university.degree,unknown,yes,no,telephone,jun,mon,484,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,technician,single,professional.course,no,unknown,unknown,telephone,jun,mon,230,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,403,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,admin.,married,university.degree,no,yes,no,telephone,jun,mon,502,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +47,self-employed,married,professional.course,no,yes,no,telephone,jun,mon,338,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,services,single,basic.9y,no,yes,no,telephone,jun,mon,205,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,technician,single,high.school,no,yes,no,telephone,jun,mon,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,technician,married,high.school,no,no,no,telephone,jun,mon,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,management,divorced,high.school,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,technician,married,basic.9y,unknown,no,no,telephone,jun,mon,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,admin.,single,university.degree,no,no,no,telephone,jun,mon,367,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,admin.,married,university.degree,unknown,no,no,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,technician,married,basic.4y,no,no,no,telephone,jun,mon,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,admin.,married,basic.9y,unknown,no,no,telephone,jun,mon,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,jun,mon,493,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,services,divorced,high.school,no,no,no,telephone,jun,mon,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,entrepreneur,married,basic.4y,no,no,yes,telephone,jun,mon,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,unemployed,married,basic.6y,no,no,no,telephone,jun,mon,947,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +33,services,single,basic.6y,no,yes,no,telephone,jun,mon,177,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,self-employed,divorced,high.school,no,yes,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,1075,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,unemployed,married,university.degree,unknown,no,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +60,management,married,university.degree,no,no,no,telephone,jun,mon,526,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +56,retired,divorced,basic.4y,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,entrepreneur,married,basic.9y,no,no,no,telephone,jun,mon,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,services,divorced,basic.9y,no,no,no,telephone,jun,mon,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +38,technician,single,university.degree,no,no,no,telephone,jun,mon,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,services,married,high.school,no,no,no,telephone,jun,mon,659,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +40,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,417,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,services,single,professional.course,unknown,yes,no,telephone,jun,mon,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,527,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,services,single,basic.4y,no,no,no,telephone,jun,mon,651,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,management,married,university.degree,no,yes,yes,telephone,jun,mon,409,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,blue-collar,married,high.school,no,no,no,telephone,jun,mon,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,97,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +50,services,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,168,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,mon,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,technician,single,university.degree,no,no,yes,telephone,jun,mon,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,admin.,single,basic.4y,unknown,yes,no,telephone,jun,mon,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,mon,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,1036,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +42,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,384,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,blue-collar,divorced,unknown,no,yes,no,telephone,jun,mon,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,technician,married,professional.course,unknown,no,no,telephone,jun,mon,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,60,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,self-employed,divorced,professional.course,unknown,yes,no,telephone,jun,mon,364,13,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,technician,single,professional.course,unknown,yes,yes,telephone,jun,mon,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,services,married,high.school,no,no,no,telephone,jun,mon,151,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +31,self-employed,married,university.degree,no,yes,yes,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,management,single,university.degree,no,yes,no,telephone,jun,mon,68,21,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,389,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,128,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,services,married,high.school,no,no,no,telephone,jun,mon,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,136,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,unemployed,married,basic.9y,no,no,no,telephone,jun,mon,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,466,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,mon,490,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,management,married,university.degree,no,unknown,unknown,telephone,jun,mon,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,537,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,unemployed,divorced,professional.course,no,no,no,telephone,jun,mon,464,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,admin.,single,high.school,no,no,no,telephone,jun,mon,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,married,high.school,no,no,no,telephone,jun,mon,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,technician,single,professional.course,unknown,yes,no,telephone,jun,mon,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,373,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,technician,single,university.degree,no,yes,no,telephone,jun,mon,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,services,single,high.school,no,no,no,telephone,jun,mon,132,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,mon,579,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,entrepreneur,married,university.degree,no,no,yes,telephone,jun,mon,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,mon,66,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,services,single,high.school,unknown,yes,no,telephone,jun,mon,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,self-employed,married,basic.4y,no,no,no,telephone,jun,mon,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,technician,married,basic.9y,no,no,no,telephone,jun,mon,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,technician,single,unknown,no,no,no,telephone,jun,mon,193,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,telephone,jun,mon,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,services,single,high.school,unknown,yes,yes,telephone,jun,mon,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +41,services,divorced,high.school,no,yes,yes,telephone,jun,mon,273,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,self-employed,married,basic.4y,unknown,yes,yes,telephone,jun,mon,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,admin.,single,high.school,no,no,no,telephone,jun,mon,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,technician,married,basic.9y,no,no,no,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,mon,920,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,mon,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,admin.,married,high.school,unknown,no,no,telephone,jun,mon,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,technician,divorced,university.degree,no,yes,no,telephone,jun,mon,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,management,married,university.degree,no,no,no,telephone,jun,mon,369,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,mon,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,admin.,single,high.school,no,no,yes,telephone,jun,mon,445,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,technician,single,university.degree,unknown,no,no,telephone,jun,mon,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,housemaid,married,basic.6y,unknown,yes,no,telephone,jun,mon,425,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,admin.,married,high.school,no,no,no,telephone,jun,mon,142,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,admin.,married,professional.course,no,no,no,telephone,jun,mon,317,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,blue-collar,married,professional.course,unknown,yes,yes,telephone,jun,mon,354,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,services,married,high.school,unknown,yes,no,telephone,jun,mon,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,management,divorced,university.degree,no,yes,yes,telephone,jun,mon,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,admin.,divorced,university.degree,unknown,no,no,telephone,jun,mon,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,housemaid,married,basic.4y,no,yes,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,services,married,high.school,unknown,yes,no,telephone,jun,mon,381,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,admin.,married,unknown,no,no,no,telephone,jun,mon,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,mon,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +46,management,married,university.degree,unknown,no,no,telephone,jun,mon,183,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,retired,married,high.school,unknown,no,no,telephone,jun,mon,389,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +56,technician,married,university.degree,no,no,yes,telephone,jun,mon,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,technician,married,professional.course,no,no,no,telephone,jun,mon,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,technician,married,professional.course,no,yes,no,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,183,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,admin.,divorced,unknown,unknown,yes,no,telephone,jun,mon,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,481,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jun,mon,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,technician,single,professional.course,no,no,no,telephone,jun,mon,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,283,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,services,divorced,basic.9y,no,yes,no,telephone,jun,mon,312,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,technician,married,professional.course,no,no,yes,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,technician,single,university.degree,unknown,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,services,single,high.school,no,no,no,telephone,jun,mon,326,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,mon,362,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +27,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,admin.,married,university.degree,no,no,no,telephone,jun,mon,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,admin.,married,unknown,no,yes,no,telephone,jun,mon,1068,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +55,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,101,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,single,unknown,no,yes,no,telephone,jun,mon,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,management,divorced,university.degree,no,no,no,telephone,jun,mon,306,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,unknown,married,high.school,unknown,no,no,telephone,jun,mon,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,658,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,admin.,married,high.school,no,no,yes,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,493,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,562,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,490,12,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,management,married,university.degree,unknown,no,yes,telephone,jun,mon,140,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,management,divorced,university.degree,no,no,yes,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,services,single,high.school,no,yes,yes,telephone,jun,mon,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,149,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,services,married,high.school,no,no,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,admin.,married,high.school,unknown,no,no,telephone,jun,mon,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +25,self-employed,single,university.degree,no,no,no,telephone,jun,mon,426,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +60,management,married,university.degree,unknown,no,no,telephone,jun,mon,403,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,technician,single,professional.course,no,yes,no,telephone,jun,mon,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,management,married,university.degree,no,no,no,telephone,jun,mon,221,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,admin.,married,high.school,no,yes,no,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +25,technician,divorced,university.degree,no,yes,no,telephone,jun,mon,214,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,management,divorced,university.degree,no,no,no,telephone,jun,mon,572,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,management,married,unknown,unknown,yes,yes,telephone,jun,mon,124,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,mon,105,11,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,self-employed,single,university.degree,no,yes,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,unknown,married,unknown,unknown,yes,no,telephone,jun,mon,498,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,self-employed,married,university.degree,no,yes,yes,telephone,jun,mon,31,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,304,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,469,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,housemaid,married,basic.6y,no,yes,no,telephone,jun,mon,45,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,admin.,married,university.degree,no,no,no,telephone,jun,mon,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,mon,85,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,technician,married,university.degree,no,no,no,telephone,jun,mon,79,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,technician,single,professional.course,no,yes,no,telephone,jun,mon,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,758,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,services,divorced,professional.course,unknown,no,no,telephone,jun,mon,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,200,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,admin.,single,university.degree,no,yes,no,telephone,jun,mon,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,admin.,married,high.school,no,yes,no,telephone,jun,mon,966,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,services,single,university.degree,unknown,no,no,telephone,jun,mon,747,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +37,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,430,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,241,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,technician,married,professional.course,no,no,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,mon,541,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,admin.,married,university.degree,no,no,no,telephone,jun,mon,281,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,services,divorced,high.school,no,no,no,telephone,jun,mon,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,201,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,admin.,married,high.school,no,no,no,telephone,jun,mon,56,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,91,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,187,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,unemployed,single,university.degree,no,no,no,telephone,jun,mon,409,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,mon,269,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,admin.,married,high.school,no,yes,no,telephone,jun,mon,221,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,services,single,basic.6y,unknown,no,no,telephone,jun,mon,255,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,mon,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,retired,married,basic.9y,unknown,no,no,telephone,jun,mon,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,services,married,high.school,no,no,no,telephone,jun,mon,276,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,41,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,services,married,high.school,unknown,no,no,telephone,jun,mon,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,married,unknown,no,no,no,telephone,jun,mon,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,unknown,married,basic.9y,no,no,no,telephone,jun,mon,612,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,282,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,retired,married,basic.9y,no,yes,no,telephone,jun,mon,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,mon,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,admin.,married,university.degree,no,yes,no,telephone,jun,mon,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,technician,married,high.school,no,no,yes,telephone,jun,mon,60,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +56,management,divorced,university.degree,no,no,no,telephone,jun,mon,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,admin.,married,university.degree,no,yes,no,telephone,jun,mon,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,technician,married,professional.course,no,yes,no,telephone,jun,mon,555,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +35,technician,married,professional.course,no,no,no,telephone,jun,mon,200,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +24,admin.,married,high.school,no,no,yes,telephone,jun,mon,1330,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,retired,divorced,basic.4y,no,no,no,telephone,jun,mon,157,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,admin.,married,high.school,no,no,yes,telephone,jun,mon,218,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,services,married,high.school,no,no,no,telephone,jun,mon,548,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,176,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,admin.,single,university.degree,no,no,no,telephone,jun,mon,335,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,technician,married,professional.course,no,yes,no,telephone,jun,mon,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,services,married,high.school,no,no,yes,telephone,jun,mon,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,management,single,university.degree,no,no,no,telephone,jun,mon,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +58,admin.,married,university.degree,no,no,yes,telephone,jun,mon,129,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +31,management,married,high.school,no,yes,no,telephone,jun,mon,322,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,admin.,married,high.school,no,yes,no,telephone,jun,mon,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,housemaid,married,basic.4y,no,yes,yes,telephone,jun,mon,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,blue-collar,single,unknown,no,no,no,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +55,retired,divorced,basic.6y,unknown,no,no,telephone,jun,mon,228,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,admin.,divorced,university.degree,unknown,no,no,telephone,jun,mon,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,services,married,high.school,no,yes,no,telephone,jun,mon,29,32,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,technician,married,university.degree,no,no,yes,telephone,jun,mon,150,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,252,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,518,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,entrepreneur,single,university.degree,unknown,yes,no,telephone,jun,mon,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,admin.,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,303,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,housemaid,married,high.school,no,yes,no,telephone,jun,mon,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,housemaid,married,professional.course,no,yes,yes,telephone,jun,mon,132,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,blue-collar,divorced,unknown,no,no,yes,telephone,jun,mon,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,mon,230,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,685,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,technician,married,professional.course,no,yes,yes,telephone,jun,mon,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,345,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,75,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +60,retired,married,basic.4y,unknown,no,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,479,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,management,married,basic.6y,unknown,no,no,telephone,jun,mon,156,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,technician,divorced,professional.course,no,no,no,telephone,jun,mon,204,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,technician,married,high.school,no,no,no,telephone,jun,mon,360,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,technician,married,professional.course,no,yes,yes,telephone,jun,mon,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,technician,married,university.degree,no,yes,no,telephone,jun,mon,148,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,admin.,married,high.school,no,yes,no,telephone,jun,mon,267,10,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,technician,married,professional.course,no,yes,no,telephone,jun,mon,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,admin.,single,high.school,no,yes,no,telephone,jun,mon,136,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,technician,single,university.degree,no,no,no,telephone,jun,mon,127,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,technician,divorced,professional.course,unknown,yes,no,telephone,jun,mon,56,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,777,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +36,admin.,single,high.school,no,yes,no,telephone,jun,mon,32,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +53,services,divorced,basic.4y,unknown,no,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,technician,married,professional.course,no,no,no,telephone,jun,mon,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,blue-collar,married,unknown,unknown,yes,no,telephone,jun,mon,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,admin.,married,high.school,no,yes,yes,telephone,jun,mon,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,blue-collar,married,high.school,no,no,no,telephone,jun,mon,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,technician,single,professional.course,no,no,no,telephone,jun,mon,349,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,mon,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,532,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,technician,married,basic.9y,no,yes,yes,telephone,jun,mon,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +50,retired,married,basic.4y,no,yes,no,telephone,jun,mon,35,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +32,entrepreneur,single,professional.course,no,no,no,telephone,jun,mon,20,20,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +31,blue-collar,married,basic.6y,no,no,yes,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +29,entrepreneur,married,professional.course,no,yes,no,telephone,jun,mon,930,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,unemployed,married,professional.course,no,no,no,telephone,jun,mon,392,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +30,housemaid,married,high.school,unknown,yes,yes,telephone,jun,mon,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,services,married,high.school,unknown,yes,no,telephone,jun,mon,393,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +56,services,married,basic.4y,unknown,no,no,telephone,jun,mon,746,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +26,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,mon,351,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +40,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,142,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +51,services,married,high.school,unknown,yes,no,telephone,jun,mon,229,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,261,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +47,technician,divorced,high.school,no,yes,no,telephone,jun,mon,289,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,227,15,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,services,married,high.school,unknown,no,no,telephone,jun,mon,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +56,entrepreneur,married,unknown,unknown,no,no,telephone,jun,mon,41,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,housemaid,divorced,basic.9y,no,yes,no,telephone,jun,mon,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +43,technician,single,university.degree,no,yes,no,telephone,jun,mon,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,mon,61,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +59,management,married,basic.6y,unknown,yes,no,telephone,jun,mon,181,16,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +50,admin.,married,high.school,no,no,no,telephone,jun,mon,205,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,mon,468,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,blue-collar,married,high.school,no,no,no,telephone,jun,mon,358,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,442,11,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +34,blue-collar,married,basic.6y,no,no,yes,telephone,jun,mon,1576,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,unemployed,single,basic.4y,no,yes,no,telephone,jun,mon,83,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +54,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,mon,28,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +31,services,married,basic.6y,no,no,no,telephone,jun,mon,92,5,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,services,married,high.school,no,no,no,telephone,jun,mon,217,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +45,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,134,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +24,services,single,basic.9y,unknown,no,yes,telephone,jun,mon,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +37,management,married,university.degree,unknown,no,yes,telephone,jun,mon,179,7,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,housemaid,married,professional.course,no,no,yes,telephone,jun,mon,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,student,single,university.degree,unknown,yes,yes,telephone,jun,mon,444,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +41,admin.,married,high.school,no,unknown,unknown,telephone,jun,mon,548,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,unemployed,single,university.degree,no,no,yes,telephone,jun,mon,16,13,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,213,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +35,technician,single,professional.course,no,yes,yes,telephone,jun,mon,402,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +44,technician,married,professional.course,unknown,no,no,telephone,jun,mon,312,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,mon,280,2,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +28,services,single,high.school,no,no,no,telephone,jun,mon,689,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,716,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,management,divorced,university.degree,no,no,no,telephone,jun,mon,43,12,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +41,blue-collar,divorced,professional.course,no,no,no,telephone,jun,mon,39,10,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +36,technician,divorced,professional.course,unknown,no,no,telephone,jun,mon,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +38,student,single,university.degree,no,no,no,telephone,jun,mon,194,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,984,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,153,9,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,technician,married,professional.course,no,yes,no,telephone,jun,mon,59,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,admin.,married,university.degree,no,yes,no,telephone,jun,mon,20,8,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +52,services,married,high.school,no,no,yes,telephone,jun,mon,359,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +59,retired,divorced,university.degree,no,no,no,telephone,jun,mon,605,6,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +42,self-employed,married,university.degree,no,no,no,telephone,jun,mon,180,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +57,management,married,basic.9y,unknown,yes,no,telephone,jun,mon,30,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +33,services,married,high.school,no,no,no,telephone,jun,mon,94,14,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,entrepreneur,married,high.school,no,no,no,telephone,jun,mon,232,3,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,no +39,technician,single,professional.course,unknown,no,no,telephone,jun,mon,432,4,999,0,nonexistent,1.4,94.465,-41.8,4.865,5228.1,yes +28,services,married,high.school,no,no,no,telephone,jun,tue,152,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +60,unknown,married,basic.6y,unknown,no,no,telephone,jun,tue,104,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,154,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,services,single,basic.9y,no,no,no,telephone,jun,tue,70,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,admin.,married,high.school,no,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,tue,201,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,182,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,blue-collar,single,professional.course,no,yes,no,telephone,jun,tue,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,services,married,high.school,unknown,yes,no,telephone,jun,tue,86,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,technician,married,professional.course,no,yes,no,telephone,jun,tue,67,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,management,married,basic.4y,unknown,yes,no,telephone,jun,tue,197,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,housemaid,married,high.school,no,no,no,telephone,jun,tue,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,entrepreneur,married,basic.6y,unknown,no,yes,telephone,jun,tue,75,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,450,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,technician,single,university.degree,no,no,no,telephone,jun,tue,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,180,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,jun,tue,20,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,unemployed,married,basic.6y,unknown,yes,no,telephone,jun,tue,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,services,married,high.school,no,yes,no,telephone,jun,tue,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,admin.,married,professional.course,unknown,no,no,telephone,jun,tue,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,technician,single,university.degree,no,yes,no,telephone,jun,tue,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,tue,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,management,married,unknown,unknown,no,no,telephone,jun,tue,200,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,services,single,basic.6y,unknown,no,no,telephone,jun,tue,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,332,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,542,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,entrepreneur,married,basic.9y,no,no,no,telephone,jun,tue,301,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +55,blue-collar,divorced,basic.4y,unknown,no,yes,telephone,jun,tue,115,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,blue-collar,single,basic.4y,no,yes,no,telephone,jun,tue,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,tue,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,retired,married,basic.4y,no,yes,no,telephone,jun,tue,159,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,unemployed,married,university.degree,unknown,no,no,telephone,jun,tue,238,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,management,single,university.degree,no,no,no,telephone,jun,tue,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,technician,single,university.degree,no,no,no,telephone,jun,tue,1173,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +32,management,married,high.school,no,no,no,telephone,jun,tue,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,438,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,technician,married,professional.course,no,no,yes,telephone,jun,tue,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,married,high.school,no,no,no,telephone,jun,tue,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,single,high.school,no,no,no,telephone,jun,tue,275,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,unknown,no,no,no,telephone,jun,tue,26,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,963,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +41,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,tue,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,50,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,housemaid,married,basic.9y,no,no,no,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,technician,married,university.degree,unknown,yes,no,telephone,jun,tue,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,technician,married,professional.course,no,yes,no,telephone,jun,tue,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,384,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,married,high.school,no,yes,no,telephone,jun,tue,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,services,single,high.school,no,yes,no,telephone,jun,tue,953,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,tue,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,technician,married,university.degree,unknown,no,no,telephone,jun,tue,194,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,retired,single,high.school,no,no,yes,telephone,jun,tue,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,single,high.school,no,no,no,telephone,jun,tue,579,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,single,high.school,no,no,no,telephone,jun,tue,956,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +48,admin.,married,high.school,no,no,yes,telephone,jun,tue,183,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,technician,married,professional.course,no,no,no,telephone,jun,tue,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,unemployed,divorced,high.school,no,no,no,telephone,jun,tue,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,married,high.school,no,yes,no,telephone,jun,tue,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,student,single,university.degree,no,unknown,unknown,telephone,jun,tue,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,tue,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,unemployed,married,professional.course,no,no,no,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,services,married,high.school,unknown,yes,no,telephone,jun,tue,132,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,management,divorced,university.degree,unknown,no,no,telephone,jun,tue,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,tue,479,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,unknown,single,unknown,unknown,yes,no,telephone,jun,tue,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,jun,tue,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,housemaid,single,unknown,no,no,yes,telephone,jun,tue,517,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,technician,married,basic.9y,no,yes,no,telephone,jun,tue,447,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,retired,divorced,university.degree,no,yes,yes,telephone,jun,tue,342,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,services,married,high.school,unknown,no,yes,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +55,management,married,university.degree,no,yes,no,telephone,jun,tue,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,technician,married,professional.course,no,yes,yes,telephone,jun,tue,150,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,no,no,yes,telephone,jun,tue,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,management,single,university.degree,no,no,no,telephone,jun,tue,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,management,married,university.degree,unknown,no,no,telephone,jun,tue,65,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,404,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,services,married,high.school,unknown,no,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,170,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,technician,married,high.school,no,yes,no,telephone,jun,tue,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,retired,married,basic.4y,no,no,no,telephone,jun,tue,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,self-employed,married,university.degree,unknown,yes,no,telephone,jun,tue,34,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,258,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,blue-collar,married,basic.4y,no,no,yes,telephone,jun,tue,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,126,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,technician,married,basic.6y,unknown,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,management,married,basic.9y,no,yes,no,telephone,jun,tue,941,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,admin.,single,high.school,no,yes,no,telephone,jun,tue,384,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,high.school,no,yes,yes,telephone,jun,tue,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,admin.,single,university.degree,no,no,yes,telephone,jun,tue,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,single,university.degree,no,yes,no,telephone,jun,tue,284,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,161,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,self-employed,married,professional.course,no,yes,no,telephone,jun,tue,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,student,single,basic.9y,no,yes,no,telephone,jun,tue,771,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,admin.,single,high.school,no,no,no,telephone,jun,tue,132,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,services,married,high.school,unknown,yes,no,telephone,jun,tue,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,management,married,university.degree,no,yes,yes,telephone,jun,tue,1025,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +57,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,entrepreneur,married,unknown,unknown,yes,no,telephone,jun,tue,536,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,admin.,married,basic.9y,no,yes,no,telephone,jun,tue,243,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,131,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,192,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,technician,married,professional.course,no,no,yes,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,288,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,single,basic.9y,unknown,no,yes,telephone,jun,tue,569,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,married,high.school,no,yes,no,telephone,jun,tue,406,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,tue,106,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,services,married,high.school,no,no,no,telephone,jun,tue,393,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,married,high.school,unknown,no,no,telephone,jun,tue,171,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jun,tue,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,single,high.school,no,no,yes,telephone,jun,tue,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,unknown,no,no,yes,telephone,jun,tue,118,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,services,single,university.degree,unknown,no,yes,telephone,jun,tue,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,married,basic.9y,no,no,yes,telephone,jun,tue,404,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.6y,no,no,yes,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,technician,single,professional.course,unknown,no,no,telephone,jun,tue,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,tue,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,self-employed,married,basic.9y,no,no,yes,telephone,jun,tue,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,self-employed,married,university.degree,unknown,yes,no,telephone,jun,tue,123,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,technician,married,professional.course,no,yes,no,telephone,jun,tue,194,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,992,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +47,management,married,basic.4y,unknown,yes,no,telephone,jun,tue,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,management,married,university.degree,no,no,no,telephone,jun,tue,303,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,732,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +41,services,married,high.school,no,no,no,telephone,jun,tue,366,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,technician,married,university.degree,unknown,no,no,telephone,jun,tue,228,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,14,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,technician,married,professional.course,no,yes,no,telephone,jun,tue,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,unemployed,divorced,basic.9y,no,yes,no,telephone,jun,tue,231,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,entrepreneur,married,unknown,no,no,no,telephone,jun,tue,242,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +55,unknown,married,basic.4y,unknown,yes,no,telephone,jun,tue,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,119,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,unemployed,married,professional.course,no,no,no,telephone,jun,tue,41,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,tue,495,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,128,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,single,high.school,no,no,no,telephone,jun,tue,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,technician,single,university.degree,unknown,no,no,telephone,jun,tue,722,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,240,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,retired,married,basic.9y,unknown,no,no,telephone,jun,tue,455,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,admin.,married,high.school,no,no,no,telephone,jun,tue,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,361,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,418,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,admin.,married,high.school,no,no,no,telephone,jun,tue,177,26,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,self-employed,married,basic.9y,no,yes,no,telephone,jun,tue,249,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,management,married,university.degree,no,no,no,telephone,jun,tue,84,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,338,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,299,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,entrepreneur,married,high.school,unknown,yes,no,telephone,jun,tue,284,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,admin.,married,high.school,no,yes,no,telephone,jun,tue,282,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,management,married,university.degree,no,yes,yes,telephone,jun,tue,435,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,services,married,high.school,unknown,yes,no,telephone,jun,tue,120,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,825,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,services,married,high.school,no,no,no,telephone,jun,tue,51,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,services,married,high.school,unknown,no,no,telephone,jun,tue,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,housemaid,married,basic.4y,no,unknown,unknown,telephone,jun,tue,259,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,technician,divorced,unknown,no,yes,yes,telephone,jun,tue,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,1045,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,110,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,188,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,technician,married,unknown,unknown,yes,no,telephone,jun,tue,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,tue,231,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,services,married,high.school,unknown,yes,no,telephone,jun,tue,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,married,high.school,no,no,no,telephone,jun,tue,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,admin.,married,high.school,no,yes,no,telephone,jun,tue,615,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,676,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,management,divorced,university.degree,unknown,yes,no,telephone,jun,tue,165,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,tue,192,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,tue,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,admin.,divorced,high.school,no,no,no,telephone,jun,tue,319,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,divorced,professional.course,no,yes,no,telephone,jun,tue,860,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,housemaid,married,high.school,no,no,no,telephone,jun,tue,680,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,entrepreneur,married,basic.6y,no,no,yes,telephone,jun,tue,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,356,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,single,high.school,no,yes,no,telephone,jun,tue,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,admin.,married,high.school,no,yes,yes,telephone,jun,tue,173,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,technician,married,university.degree,unknown,no,no,telephone,jun,tue,294,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,management,single,university.degree,no,yes,no,telephone,jun,tue,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,services,married,high.school,no,no,yes,telephone,jun,tue,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,admin.,single,high.school,unknown,no,no,telephone,jun,tue,641,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,unemployed,married,basic.9y,no,no,no,telephone,jun,tue,633,28,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,university.degree,no,no,no,telephone,jun,tue,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,admin.,single,university.degree,no,no,no,telephone,jun,tue,35,32,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,blue-collar,single,unknown,unknown,yes,no,telephone,jun,tue,828,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,unemployed,married,basic.6y,no,yes,no,telephone,jun,tue,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,married,basic.9y,no,no,no,telephone,jun,tue,263,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,self-employed,married,university.degree,unknown,no,no,telephone,jun,tue,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,technician,married,university.degree,no,yes,no,telephone,jun,tue,108,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,164,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,43,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +24,admin.,single,high.school,no,no,no,telephone,jun,tue,768,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +27,unemployed,married,high.school,no,no,no,telephone,jun,tue,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,services,married,university.degree,unknown,yes,no,telephone,jun,tue,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,unemployed,divorced,basic.4y,no,yes,no,telephone,jun,tue,801,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +32,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,tue,31,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,tue,114,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,management,married,university.degree,no,no,no,telephone,jun,tue,236,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,482,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +34,admin.,married,university.degree,unknown,no,no,telephone,jun,tue,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,2456,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +28,student,single,university.degree,unknown,no,no,telephone,jun,tue,171,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,services,single,high.school,no,no,no,telephone,jun,tue,443,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,263,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,94,18,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +60,admin.,married,university.degree,unknown,no,no,telephone,jun,tue,111,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,technician,married,professional.course,no,no,yes,telephone,jun,tue,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,services,divorced,professional.course,no,no,no,telephone,jun,tue,199,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,jun,tue,589,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,self-employed,married,university.degree,no,no,no,telephone,jun,tue,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,unemployed,married,basic.6y,unknown,no,no,telephone,jun,tue,215,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,tue,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,admin.,married,high.school,no,no,no,telephone,jun,tue,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,admin.,married,unknown,no,no,no,telephone,jun,tue,242,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,1340,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,13,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,admin.,married,professional.course,no,yes,no,telephone,jun,tue,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,tue,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,406,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,services,divorced,basic.6y,no,no,no,telephone,jun,tue,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,81,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,327,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,admin.,divorced,unknown,unknown,no,no,telephone,jun,tue,604,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,tue,137,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,technician,single,professional.course,no,no,yes,telephone,jun,tue,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,married,university.degree,no,yes,no,telephone,jun,tue,199,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,technician,married,high.school,no,no,no,telephone,jun,tue,372,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,married,high.school,no,no,no,telephone,jun,tue,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,tue,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,married,high.school,no,no,yes,telephone,jun,tue,277,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,married,university.degree,no,no,no,telephone,jun,tue,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,tue,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,211,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,services,divorced,basic.4y,unknown,no,no,telephone,jun,tue,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,220,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,management,married,basic.9y,unknown,yes,no,telephone,jun,tue,495,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,tue,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,services,married,high.school,no,no,no,telephone,jun,tue,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,services,married,high.school,unknown,no,no,telephone,jun,tue,559,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,441,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,married,unknown,unknown,no,no,telephone,jun,tue,14,21,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,technician,single,professional.course,no,no,no,telephone,jun,tue,662,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,services,married,high.school,unknown,no,no,telephone,jun,tue,76,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,housemaid,married,university.degree,no,no,yes,telephone,jun,tue,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,services,single,high.school,no,no,no,telephone,jun,tue,323,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,117,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,single,university.degree,unknown,yes,no,telephone,jun,tue,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,tue,1259,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +58,self-employed,married,university.degree,no,no,no,telephone,jun,tue,380,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,management,single,university.degree,no,yes,no,telephone,jun,tue,214,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +60,retired,single,high.school,no,no,no,telephone,jun,tue,136,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,350,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,56,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,technician,married,unknown,no,no,no,telephone,jun,tue,131,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,113,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,services,married,unknown,no,yes,no,telephone,jun,tue,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,retired,married,basic.4y,unknown,yes,no,telephone,jun,tue,137,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,497,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,services,married,high.school,no,yes,no,telephone,jun,tue,184,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,276,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,services,married,high.school,no,no,no,telephone,jun,tue,68,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,11,18,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,313,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,397,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,admin.,divorced,basic.9y,no,no,no,telephone,jun,tue,1363,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +29,admin.,single,university.degree,unknown,no,yes,telephone,jun,tue,816,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,1030,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,admin.,married,high.school,no,yes,no,telephone,jun,tue,266,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,56,12,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,housemaid,divorced,basic.6y,no,yes,no,telephone,jun,tue,143,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jun,tue,229,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,management,single,university.degree,no,no,no,telephone,jun,tue,342,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,entrepreneur,married,high.school,no,no,yes,telephone,jun,tue,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,housemaid,married,basic.4y,no,yes,no,telephone,jun,tue,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,self-employed,married,basic.4y,unknown,unknown,unknown,telephone,jun,tue,72,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,599,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,retired,married,professional.course,no,yes,no,telephone,jun,tue,77,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,technician,divorced,professional.course,no,yes,no,telephone,jun,tue,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,self-employed,single,professional.course,no,no,no,telephone,jun,tue,199,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,high.school,unknown,yes,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,239,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,services,single,high.school,unknown,no,yes,telephone,jun,tue,246,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,self-employed,married,high.school,unknown,yes,no,telephone,jun,tue,238,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,services,married,high.school,no,yes,no,telephone,jun,tue,118,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,self-employed,divorced,university.degree,no,no,yes,telephone,jun,tue,254,21,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,281,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,high.school,unknown,yes,no,telephone,jun,tue,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,services,divorced,basic.6y,no,no,no,telephone,jun,tue,269,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,admin.,married,university.degree,no,yes,no,telephone,jun,tue,203,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,management,married,university.degree,no,no,no,telephone,jun,tue,140,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,management,married,high.school,no,yes,no,telephone,jun,tue,583,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,services,single,high.school,no,no,no,telephone,jun,tue,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,60,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,unemployed,married,high.school,unknown,yes,no,telephone,jun,tue,70,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,68,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,technician,married,high.school,no,yes,no,telephone,jun,tue,267,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,technician,married,professional.course,no,no,no,telephone,jun,tue,19,20,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,admin.,married,high.school,unknown,no,no,telephone,jun,tue,490,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,married,university.degree,no,no,no,telephone,jun,tue,604,14,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,services,single,high.school,no,no,no,telephone,jun,tue,290,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,admin.,single,university.degree,no,yes,yes,telephone,jun,tue,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,admin.,married,university.degree,no,no,no,telephone,jun,tue,88,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,113,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,550,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,unemployed,married,high.school,unknown,no,no,telephone,jun,tue,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,159,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,tue,120,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,entrepreneur,married,high.school,no,no,no,telephone,jun,tue,1516,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,admin.,divorced,unknown,unknown,no,no,telephone,jun,tue,28,19,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,unemployed,married,basic.9y,unknown,no,no,telephone,jun,tue,87,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,151,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,services,married,high.school,unknown,no,no,telephone,jun,tue,113,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,admin.,single,high.school,no,yes,no,telephone,jun,tue,281,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,technician,married,university.degree,unknown,no,yes,telephone,jun,tue,1336,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +35,services,married,high.school,unknown,no,no,telephone,jun,wed,173,14,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,83,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,180,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,technician,single,high.school,no,yes,no,telephone,jun,wed,457,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,admin.,married,university.degree,no,yes,no,telephone,jun,wed,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,retired,married,basic.4y,unknown,no,no,telephone,jun,wed,145,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,admin.,single,high.school,no,yes,yes,telephone,jun,wed,622,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,services,divorced,basic.9y,no,no,no,telephone,jun,wed,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,99,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,married,university.degree,no,yes,no,telephone,jun,wed,407,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,wed,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,retired,married,basic.4y,no,no,no,telephone,jun,wed,633,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +58,admin.,single,university.degree,no,no,yes,telephone,jun,wed,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,technician,married,professional.course,no,no,no,telephone,jun,wed,462,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,1138,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,107,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,admin.,married,high.school,unknown,yes,yes,telephone,jun,wed,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,services,married,high.school,unknown,yes,no,telephone,jun,wed,96,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,technician,married,professional.course,no,yes,no,telephone,jun,wed,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,management,married,university.degree,unknown,no,yes,telephone,jun,wed,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,267,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,213,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,student,single,high.school,no,no,no,telephone,jun,wed,1242,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +37,technician,single,high.school,no,unknown,unknown,telephone,jun,wed,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,unknown,married,basic.6y,no,no,no,telephone,jun,wed,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,admin.,married,university.degree,no,no,no,telephone,jun,wed,129,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,admin.,divorced,high.school,no,no,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,wed,103,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,self-employed,married,basic.4y,no,yes,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,71,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,unknown,single,unknown,unknown,yes,yes,telephone,jun,wed,66,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,admin.,divorced,unknown,unknown,no,no,telephone,jun,wed,38,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,married,professional.course,no,yes,no,telephone,jun,wed,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,unknown,single,high.school,unknown,yes,yes,telephone,jun,wed,524,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +39,admin.,married,high.school,no,yes,no,telephone,jun,wed,1141,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +36,entrepreneur,married,basic.6y,unknown,no,no,telephone,jun,wed,125,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,single,basic.6y,no,no,no,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,single,university.degree,no,no,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,unemployed,married,high.school,unknown,no,no,telephone,jun,wed,237,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,admin.,married,university.degree,no,yes,no,telephone,jun,wed,299,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,single,university.degree,no,no,yes,telephone,jun,wed,578,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +25,admin.,single,high.school,no,yes,yes,telephone,jun,wed,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,married,university.degree,no,no,no,telephone,jun,wed,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,technician,married,basic.9y,unknown,no,no,telephone,jun,wed,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,married,high.school,no,yes,no,telephone,jun,wed,194,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,married,basic.6y,no,yes,yes,telephone,jun,wed,365,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,admin.,single,high.school,no,no,no,telephone,jun,wed,984,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +60,admin.,married,high.school,no,no,yes,telephone,jun,wed,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,admin.,married,high.school,no,yes,yes,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,blue-collar,divorced,unknown,no,yes,no,telephone,jun,wed,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,admin.,married,high.school,no,yes,yes,telephone,jun,wed,148,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,services,single,professional.course,no,no,no,telephone,jun,wed,386,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,admin.,single,university.degree,no,no,no,telephone,jun,wed,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +24,student,single,high.school,no,no,no,telephone,jun,wed,132,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +58,services,married,basic.4y,no,yes,no,telephone,jun,wed,279,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,retired,married,professional.course,no,yes,no,telephone,jun,wed,109,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,1045,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,management,single,university.degree,no,no,no,telephone,jun,wed,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,technician,divorced,basic.9y,no,no,no,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,married,high.school,no,yes,yes,telephone,jun,wed,73,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,77,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,blue-collar,married,high.school,no,no,yes,telephone,jun,wed,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,technician,single,professional.course,no,yes,no,telephone,jun,wed,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,single,university.degree,no,no,no,telephone,jun,wed,178,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,university.degree,no,no,yes,telephone,jun,wed,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,technician,single,professional.course,no,yes,no,telephone,jun,wed,605,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,admin.,married,high.school,no,no,no,telephone,jun,wed,638,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +31,services,single,high.school,no,yes,no,telephone,jun,wed,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,management,married,university.degree,no,no,no,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,services,single,high.school,no,yes,yes,telephone,jun,wed,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,single,basic.6y,no,no,no,telephone,jun,wed,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,317,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,management,single,basic.9y,no,yes,no,telephone,jun,wed,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,self-employed,single,university.degree,no,yes,yes,telephone,jun,wed,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,high.school,no,no,no,telephone,jun,wed,301,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,married,high.school,no,no,no,telephone,jun,wed,276,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +55,retired,divorced,professional.course,no,no,no,telephone,jun,wed,182,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,self-employed,married,basic.9y,unknown,no,no,telephone,jun,wed,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,retired,married,basic.4y,no,no,yes,telephone,jun,wed,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,377,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,single,high.school,no,no,no,telephone,jun,wed,211,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,357,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,admin.,married,high.school,no,yes,yes,telephone,jun,wed,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,admin.,married,high.school,no,yes,no,telephone,jun,wed,264,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,self-employed,single,high.school,no,no,no,telephone,jun,wed,165,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,single,high.school,no,yes,yes,telephone,jun,wed,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,divorced,basic.9y,no,yes,yes,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,student,single,university.degree,unknown,yes,no,telephone,jun,wed,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,services,married,high.school,no,no,no,telephone,jun,wed,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +57,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,wed,367,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,wed,444,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,wed,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,technician,married,professional.course,unknown,yes,yes,telephone,jun,wed,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,single,high.school,no,no,no,telephone,jun,wed,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,767,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +25,services,single,high.school,no,no,no,telephone,jun,wed,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,single,high.school,unknown,yes,no,telephone,jun,wed,936,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +49,housemaid,divorced,basic.6y,no,yes,no,telephone,jun,wed,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,student,single,high.school,no,no,no,telephone,jun,wed,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,married,university.degree,no,no,no,telephone,jun,wed,525,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +30,services,single,high.school,unknown,no,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,525,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,unemployed,married,basic.9y,no,no,no,telephone,jun,wed,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +25,admin.,single,high.school,no,yes,yes,telephone,jun,wed,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,student,single,high.school,no,no,yes,telephone,jun,wed,433,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,housemaid,married,university.degree,no,yes,no,telephone,jun,wed,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,admin.,married,university.degree,no,yes,no,telephone,jun,wed,149,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jun,wed,357,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,management,married,unknown,unknown,yes,no,telephone,jun,wed,171,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,student,single,high.school,no,no,no,telephone,jun,wed,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,housemaid,divorced,high.school,no,no,no,telephone,jun,wed,1449,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +29,admin.,single,university.degree,no,no,yes,telephone,jun,wed,251,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,married,high.school,no,no,no,telephone,jun,wed,544,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,management,married,university.degree,no,unknown,unknown,telephone,jun,wed,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,920,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +56,admin.,married,university.degree,no,no,no,telephone,jun,wed,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,services,married,high.school,unknown,yes,no,telephone,jun,wed,833,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,technician,single,university.degree,no,no,yes,telephone,jun,wed,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,wed,205,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,admin.,married,high.school,no,unknown,unknown,telephone,jun,wed,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,married,high.school,no,no,no,telephone,jun,wed,344,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,technician,divorced,basic.9y,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,wed,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,admin.,married,university.degree,no,yes,no,telephone,jun,wed,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,admin.,married,university.degree,no,no,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,services,married,basic.9y,no,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,654,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,1254,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,wed,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,597,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,228,8,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,housemaid,divorced,high.school,unknown,yes,no,telephone,jun,wed,763,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,unknown,single,university.degree,no,no,no,telephone,jun,wed,2203,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,yes +45,management,married,unknown,unknown,yes,no,telephone,jun,wed,61,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +61,retired,married,high.school,no,unknown,unknown,telephone,jun,wed,99,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,unemployed,married,basic.4y,no,no,yes,telephone,jun,wed,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,admin.,single,high.school,no,no,no,telephone,jun,wed,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,admin.,single,university.degree,no,no,no,telephone,jun,wed,188,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +23,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,298,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,admin.,married,high.school,no,no,no,telephone,jun,wed,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,unemployed,single,university.degree,no,yes,no,telephone,jun,wed,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,264,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,high.school,no,yes,no,telephone,jun,wed,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,unemployed,married,professional.course,unknown,no,no,telephone,jun,wed,42,16,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,married,high.school,no,no,no,telephone,jun,wed,180,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,wed,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,single,high.school,no,no,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,admin.,married,high.school,unknown,no,no,telephone,jun,wed,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,wed,1224,7,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,services,married,basic.6y,no,unknown,unknown,telephone,jun,wed,173,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,technician,single,professional.course,no,yes,no,telephone,jun,wed,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,services,single,high.school,no,no,no,telephone,jun,wed,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,admin.,married,basic.9y,no,no,no,telephone,jun,wed,121,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,admin.,married,high.school,no,no,no,telephone,jun,wed,606,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,489,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,admin.,single,high.school,no,yes,no,telephone,jun,wed,184,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,self-employed,married,university.degree,no,yes,no,telephone,jun,wed,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,technician,married,professional.course,no,no,no,telephone,jun,wed,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,unemployed,single,university.degree,no,no,no,telephone,jun,wed,404,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,admin.,married,university.degree,no,no,no,telephone,jun,wed,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +48,admin.,divorced,professional.course,no,yes,no,telephone,jun,wed,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,141,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +32,technician,married,professional.course,no,no,no,telephone,jun,wed,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +23,services,single,high.school,no,no,no,telephone,jun,wed,174,9,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,unemployed,married,basic.9y,unknown,unknown,unknown,telephone,jun,wed,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,retired,married,basic.6y,unknown,no,no,telephone,jun,wed,235,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,wed,285,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,99,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,management,divorced,university.degree,no,no,no,telephone,jun,wed,208,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,services,single,high.school,no,yes,no,telephone,jun,wed,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,admin.,single,university.degree,no,yes,no,telephone,jun,wed,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,329,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,blue-collar,single,university.degree,no,no,no,telephone,jun,wed,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +29,services,married,high.school,no,no,no,telephone,jun,wed,209,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,admin.,single,high.school,no,no,no,telephone,jun,wed,192,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +56,admin.,single,basic.9y,no,yes,no,telephone,jun,wed,341,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,blue-collar,married,unknown,unknown,no,yes,telephone,jun,wed,17,13,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,52,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +53,management,married,basic.6y,unknown,yes,no,telephone,jun,wed,152,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,wed,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,blue-collar,married,high.school,no,no,no,telephone,jun,wed,341,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,244,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,admin.,divorced,basic.6y,unknown,no,yes,telephone,jun,wed,170,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,technician,single,basic.9y,unknown,yes,no,telephone,jun,wed,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +44,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +24,technician,single,high.school,no,yes,no,telephone,jun,wed,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +45,entrepreneur,married,unknown,no,no,no,telephone,jun,wed,46,16,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +35,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,wed,282,15,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +49,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,technician,married,university.degree,unknown,no,no,telephone,jun,wed,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +55,retired,divorced,professional.course,no,yes,no,telephone,jun,wed,69,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,technician,married,professional.course,no,yes,yes,telephone,jun,wed,299,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,technician,married,professional.course,no,yes,no,telephone,jun,wed,80,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +25,services,single,high.school,no,no,yes,telephone,jun,wed,729,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,wed,389,5,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +40,management,married,basic.6y,unknown,yes,no,telephone,jun,wed,229,6,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,624,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +46,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +52,technician,married,high.school,unknown,yes,no,telephone,jun,wed,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +30,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,201,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,wed,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,79,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +36,technician,married,basic.9y,no,yes,yes,telephone,jun,wed,702,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,wed,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,blue-collar,single,unknown,no,no,no,telephone,jun,wed,65,10,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +59,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,382,3,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +33,technician,divorced,professional.course,no,no,no,telephone,jun,wed,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +34,services,married,university.degree,no,no,no,telephone,jun,wed,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +38,technician,married,professional.course,no,no,no,telephone,jun,wed,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +42,blue-collar,married,basic.6y,no,no,yes,telephone,jun,wed,292,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +27,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +22,services,single,high.school,no,no,no,telephone,jun,wed,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +26,services,married,high.school,no,no,yes,telephone,jun,wed,570,11,999,0,nonexistent,1.4,94.465,-41.8,4.864,5228.1,no +51,technician,divorced,professional.course,no,no,no,telephone,jun,thu,399,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +51,admin.,married,high.school,no,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,services,divorced,high.school,no,yes,no,telephone,jun,thu,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +54,admin.,married,high.school,no,yes,no,telephone,jun,thu,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,thu,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,services,married,high.school,unknown,no,no,telephone,jun,thu,379,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,self-employed,married,university.degree,no,no,no,telephone,jun,thu,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,thu,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,admin.,divorced,high.school,no,no,no,telephone,jun,thu,80,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,entrepreneur,single,university.degree,no,no,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,blue-collar,married,unknown,no,no,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,blue-collar,married,professional.course,unknown,no,yes,telephone,jun,thu,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,management,married,university.degree,no,no,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,unknown,married,unknown,no,no,no,telephone,jun,thu,484,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,technician,married,professional.course,no,no,no,telephone,jun,thu,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,management,married,university.degree,no,yes,no,telephone,jun,thu,773,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +23,services,single,professional.course,unknown,no,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +33,admin.,single,professional.course,no,no,no,telephone,jun,thu,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,870,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +26,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,400,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,112,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,thu,283,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,services,single,professional.course,no,no,no,telephone,jun,thu,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,services,single,professional.course,no,no,no,telephone,jun,thu,224,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +54,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,172,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,636,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +53,technician,married,unknown,no,no,no,telephone,jun,thu,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,thu,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,services,married,high.school,unknown,yes,no,telephone,jun,thu,396,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,487,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +55,housemaid,divorced,university.degree,no,yes,no,telephone,jun,thu,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,blue-collar,single,unknown,no,yes,no,telephone,jun,thu,400,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,unknown,no,no,yes,telephone,jun,thu,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,retired,married,high.school,no,no,no,telephone,jun,thu,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,admin.,single,university.degree,no,yes,no,telephone,jun,thu,333,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jun,thu,78,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +24,admin.,single,high.school,no,no,no,telephone,jun,thu,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,thu,397,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,housemaid,married,high.school,no,yes,no,telephone,jun,thu,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,services,single,high.school,no,yes,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,single,university.degree,no,no,no,telephone,jun,thu,57,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,technician,married,professional.course,no,yes,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,admin.,married,university.degree,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,admin.,married,high.school,no,yes,yes,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,services,divorced,basic.9y,no,yes,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,housemaid,married,unknown,no,yes,no,telephone,jun,thu,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,technician,single,professional.course,unknown,no,no,telephone,jun,thu,492,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,technician,married,university.degree,unknown,no,no,telephone,jun,thu,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,812,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +52,management,divorced,university.degree,no,yes,yes,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,married,high.school,no,no,no,telephone,jun,thu,428,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,technician,married,basic.6y,no,no,no,telephone,jun,thu,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +23,services,single,professional.course,unknown,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,unknown,single,unknown,unknown,yes,no,telephone,jun,thu,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +33,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,271,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,services,married,high.school,unknown,no,no,telephone,jun,thu,305,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,management,married,university.degree,no,no,no,telephone,jun,thu,175,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,retired,single,professional.course,no,no,no,telephone,jun,thu,647,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,thu,910,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +30,blue-collar,single,unknown,no,no,no,telephone,jun,thu,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,admin.,married,unknown,unknown,no,no,telephone,jun,thu,292,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,blue-collar,married,professional.course,no,no,no,telephone,jun,thu,1446,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +26,admin.,single,high.school,no,no,no,telephone,jun,thu,463,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,self-employed,married,basic.4y,unknown,no,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,management,married,university.degree,no,yes,no,telephone,jun,thu,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,1149,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +58,retired,married,basic.4y,unknown,yes,no,telephone,jun,thu,179,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,technician,married,professional.course,no,no,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +27,admin.,single,university.degree,no,no,yes,telephone,jun,thu,263,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,blue-collar,single,professional.course,no,no,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +33,services,married,high.school,no,yes,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,entrepreneur,married,basic.9y,no,no,no,telephone,jun,thu,331,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,self-employed,divorced,basic.4y,no,yes,no,telephone,jun,thu,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,housemaid,married,basic.4y,no,yes,no,telephone,jun,thu,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,unemployed,married,university.degree,unknown,yes,no,telephone,jun,thu,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,admin.,married,basic.9y,no,no,no,telephone,jun,thu,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,services,single,basic.9y,no,no,yes,telephone,jun,thu,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +59,technician,married,unknown,unknown,unknown,unknown,telephone,jun,thu,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,services,married,basic.4y,no,no,yes,telephone,jun,thu,90,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,admin.,divorced,high.school,no,no,no,telephone,jun,thu,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,management,married,university.degree,no,yes,no,telephone,jun,thu,52,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,services,divorced,high.school,no,no,no,telephone,jun,thu,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,self-employed,single,university.degree,no,no,no,telephone,jun,thu,39,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,blue-collar,married,unknown,no,no,no,telephone,jun,thu,225,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,thu,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +53,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,627,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,blue-collar,single,basic.6y,no,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,services,married,high.school,unknown,no,no,telephone,jun,thu,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,technician,married,basic.9y,no,yes,no,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,unknown,unknown,no,no,telephone,jun,thu,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,technician,divorced,basic.9y,no,no,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,management,married,university.degree,no,no,no,telephone,jun,thu,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,blue-collar,married,high.school,no,no,no,telephone,jun,thu,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,entrepreneur,married,basic.6y,unknown,no,no,telephone,jun,thu,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,technician,single,professional.course,no,no,no,telephone,jun,thu,508,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +40,management,married,university.degree,no,unknown,unknown,telephone,jun,thu,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,thu,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,414,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,entrepreneur,married,high.school,unknown,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,technician,married,high.school,unknown,yes,no,telephone,jun,thu,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,entrepreneur,married,basic.4y,unknown,no,no,telephone,jun,thu,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,unemployed,divorced,high.school,no,no,yes,telephone,jun,thu,257,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,services,married,high.school,unknown,no,yes,telephone,jun,thu,267,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,management,married,university.degree,no,no,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +53,services,married,high.school,unknown,yes,no,telephone,jun,thu,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,technician,married,professional.course,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,retired,married,basic.9y,unknown,yes,no,telephone,jun,thu,60,20,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,services,divorced,high.school,no,no,no,telephone,jun,thu,265,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,blue-collar,single,basic.4y,no,no,no,telephone,jun,thu,590,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +45,housemaid,married,professional.course,unknown,yes,no,telephone,jun,thu,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,technician,married,professional.course,unknown,no,no,telephone,jun,thu,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,234,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,entrepreneur,divorced,basic.9y,no,yes,no,telephone,jun,thu,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,thu,370,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,services,married,high.school,unknown,no,no,telephone,jun,thu,419,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,retired,married,high.school,no,no,no,telephone,jun,thu,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,married,high.school,no,no,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +59,retired,married,high.school,unknown,no,yes,telephone,jun,thu,222,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +59,retired,married,high.school,unknown,yes,no,telephone,jun,thu,251,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,admin.,single,basic.4y,unknown,no,no,telephone,jun,thu,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jun,thu,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,management,married,unknown,unknown,no,yes,telephone,jun,thu,636,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +55,retired,married,professional.course,no,yes,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,single,basic.4y,no,no,no,telephone,jun,thu,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +28,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +54,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,technician,single,high.school,no,yes,no,telephone,jun,thu,127,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +59,unknown,married,unknown,unknown,no,no,telephone,jun,thu,701,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +35,technician,married,professional.course,no,yes,no,telephone,jun,thu,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,housemaid,divorced,high.school,no,no,no,telephone,jun,thu,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,services,married,high.school,no,no,no,telephone,jun,thu,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,admin.,married,university.degree,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,blue-collar,married,high.school,no,yes,no,telephone,jun,thu,267,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,761,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +39,entrepreneur,single,basic.6y,no,no,no,telephone,jun,thu,1053,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +54,technician,single,university.degree,unknown,no,no,telephone,jun,thu,594,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,471,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,services,married,high.school,no,no,no,telephone,jun,thu,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,technician,single,basic.9y,no,yes,no,telephone,jun,thu,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,services,married,high.school,unknown,no,no,telephone,jun,thu,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,admin.,married,high.school,unknown,no,no,telephone,jun,thu,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +33,self-employed,single,university.degree,no,unknown,unknown,telephone,jun,thu,169,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,admin.,divorced,high.school,no,no,no,telephone,jun,thu,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,single,basic.6y,unknown,no,no,telephone,jun,thu,27,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,348,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +27,admin.,single,university.degree,no,no,no,telephone,jun,thu,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,housemaid,married,basic.4y,no,yes,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,admin.,married,high.school,no,yes,no,telephone,jun,thu,581,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,346,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,self-employed,married,basic.9y,unknown,no,no,telephone,jun,thu,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,services,married,high.school,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,27,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,services,married,high.school,no,no,no,telephone,jun,thu,511,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,services,married,high.school,no,no,no,telephone,jun,thu,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,services,single,high.school,no,yes,no,telephone,jun,thu,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,admin.,married,university.degree,no,no,no,telephone,jun,thu,256,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +55,admin.,married,basic.4y,no,no,no,telephone,jun,thu,137,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,245,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,management,married,unknown,no,yes,no,telephone,jun,thu,1005,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,management,divorced,university.degree,no,no,no,telephone,jun,thu,20,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,services,married,high.school,no,no,no,telephone,jun,thu,387,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,management,single,university.degree,unknown,no,yes,telephone,jun,thu,690,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,1084,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,blue-collar,married,high.school,no,no,no,telephone,jun,thu,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,services,married,basic.4y,no,yes,no,telephone,jun,thu,400,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +60,retired,married,professional.course,no,yes,no,telephone,jun,thu,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,technician,single,professional.course,no,no,no,telephone,jun,thu,432,8,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,technician,married,university.degree,no,no,no,telephone,jun,thu,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,housemaid,married,basic.6y,unknown,no,no,telephone,jun,thu,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,management,married,university.degree,no,no,yes,telephone,jun,thu,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,34,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,thu,586,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,technician,married,university.degree,no,no,no,telephone,jun,thu,983,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +40,admin.,married,high.school,no,no,no,telephone,jun,thu,221,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,admin.,single,unknown,unknown,no,no,telephone,jun,thu,563,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,technician,married,university.degree,no,no,no,telephone,jun,thu,741,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +58,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,thu,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,thu,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,admin.,single,university.degree,no,no,no,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,21,10,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,17,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,entrepreneur,married,university.degree,no,unknown,unknown,telephone,jun,thu,59,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +33,admin.,married,university.degree,no,unknown,unknown,telephone,jun,thu,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,housemaid,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,admin.,married,university.degree,no,yes,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,622,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,services,divorced,professional.course,unknown,yes,no,telephone,jun,thu,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,unknown,married,unknown,unknown,no,yes,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,admin.,married,university.degree,no,no,no,telephone,jun,thu,175,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,technician,single,university.degree,unknown,yes,no,telephone,jun,thu,817,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +52,management,married,university.degree,no,no,no,telephone,jun,thu,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,professional.course,no,yes,no,telephone,jun,thu,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +26,housemaid,married,university.degree,no,no,no,telephone,jun,thu,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,self-employed,married,university.degree,unknown,yes,no,telephone,jun,thu,318,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,technician,married,professional.course,no,no,no,telephone,jun,thu,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,admin.,married,unknown,no,yes,no,telephone,jun,thu,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,divorced,professional.course,no,unknown,unknown,telephone,jun,thu,127,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,63,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,technician,married,professional.course,no,no,no,telephone,jun,thu,517,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,thu,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,333,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,26,24,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,admin.,divorced,unknown,no,no,no,telephone,jun,thu,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,admin.,married,high.school,no,no,no,telephone,jun,thu,127,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,272,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,admin.,single,basic.9y,no,no,no,telephone,jun,thu,105,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,101,11,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,admin.,married,high.school,no,no,no,telephone,jun,thu,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,services,married,high.school,unknown,no,no,telephone,jun,thu,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,admin.,married,high.school,no,yes,no,telephone,jun,thu,337,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,955,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,services,single,high.school,no,yes,no,telephone,jun,thu,1018,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +46,management,married,basic.6y,unknown,no,no,telephone,jun,thu,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,services,single,high.school,no,no,no,telephone,jun,thu,729,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,technician,single,high.school,no,yes,no,telephone,jun,thu,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,330,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,entrepreneur,married,university.degree,no,yes,no,telephone,jun,thu,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,thu,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,thu,314,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,74,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,admin.,married,professional.course,no,yes,no,telephone,jun,thu,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,53,29,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,services,married,high.school,no,no,no,telephone,jun,thu,231,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,353,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,technician,married,professional.course,no,no,no,telephone,jun,thu,805,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,entrepreneur,married,professional.course,unknown,unknown,unknown,telephone,jun,thu,19,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,services,single,basic.6y,no,unknown,unknown,telephone,jun,thu,131,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,entrepreneur,married,basic.9y,no,yes,yes,telephone,jun,thu,102,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +27,blue-collar,single,basic.9y,no,no,yes,telephone,jun,thu,869,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +56,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,management,divorced,university.degree,unknown,no,no,telephone,jun,thu,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,144,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,management,divorced,professional.course,no,no,no,telephone,jun,thu,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +49,technician,married,university.degree,no,yes,yes,telephone,jun,thu,460,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,thu,561,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,blue-collar,divorced,professional.course,no,no,no,telephone,jun,thu,884,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,yes +51,unemployed,married,high.school,no,no,no,telephone,jun,thu,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,entrepreneur,married,university.degree,no,no,no,telephone,jun,thu,989,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +51,admin.,married,university.degree,no,no,no,telephone,jun,thu,295,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,admin.,single,basic.9y,unknown,yes,no,telephone,jun,thu,319,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +47,admin.,married,unknown,unknown,yes,yes,telephone,jun,thu,323,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,management,married,high.school,unknown,no,yes,telephone,jun,thu,70,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,services,married,basic.9y,no,no,no,telephone,jun,thu,110,17,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,162,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,admin.,single,high.school,unknown,yes,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +25,services,single,professional.course,no,yes,no,telephone,jun,thu,18,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,thu,221,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,admin.,divorced,university.degree,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +52,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +34,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,17,16,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,thu,214,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +40,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,650,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +27,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,technician,married,basic.9y,unknown,no,no,telephone,jun,thu,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,blue-collar,married,high.school,no,no,no,telephone,jun,thu,718,13,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,self-employed,married,university.degree,unknown,no,no,telephone,jun,thu,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,services,married,high.school,no,yes,no,telephone,jun,thu,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +30,management,single,university.degree,no,no,no,telephone,jun,thu,27,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,admin.,divorced,high.school,no,yes,yes,telephone,jun,thu,1011,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,admin.,married,high.school,no,yes,yes,telephone,jun,thu,204,4,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,240,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +38,unemployed,married,basic.4y,unknown,no,no,telephone,jun,thu,54,26,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,technician,married,university.degree,no,unknown,unknown,telephone,jun,thu,131,10,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,jun,thu,18,31,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +39,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,31,5,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,services,divorced,unknown,no,no,no,telephone,jun,thu,474,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +23,blue-collar,married,high.school,no,no,yes,telephone,jun,thu,173,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,unemployed,married,basic.6y,unknown,no,no,telephone,jun,thu,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +31,services,married,high.school,unknown,yes,no,telephone,jun,thu,67,12,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +25,technician,single,university.degree,no,yes,yes,telephone,jun,thu,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +36,admin.,married,high.school,no,yes,no,telephone,jun,thu,285,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +57,technician,single,professional.course,no,yes,no,telephone,jun,thu,451,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,96,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,services,married,high.school,no,yes,no,telephone,jun,thu,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +53,technician,married,professional.course,unknown,yes,no,telephone,jun,thu,939,6,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +46,management,married,university.degree,no,yes,no,telephone,jun,thu,234,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +29,services,single,high.school,no,no,no,telephone,jun,thu,240,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +45,housemaid,married,professional.course,unknown,no,no,telephone,jun,thu,210,3,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +42,blue-collar,divorced,high.school,no,no,yes,telephone,jun,thu,175,7,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,182,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +44,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,housemaid,married,high.school,no,no,no,telephone,jun,thu,372,1,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +32,housemaid,single,high.school,no,no,no,telephone,jun,thu,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.866,5228.1,no +35,admin.,married,university.degree,no,yes,no,telephone,jun,fri,463,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,married,high.school,unknown,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,married,high.school,unknown,unknown,unknown,telephone,jun,fri,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,married,high.school,unknown,no,yes,telephone,jun,fri,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,services,married,high.school,no,yes,no,telephone,jun,fri,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,entrepreneur,married,unknown,no,no,no,telephone,jun,fri,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,married,high.school,no,yes,no,telephone,jun,fri,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,married,high.school,no,no,no,telephone,jun,fri,82,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,144,15,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,entrepreneur,married,unknown,unknown,no,no,telephone,jun,fri,1072,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,retired,married,professional.course,no,yes,no,telephone,jun,fri,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,admin.,single,university.degree,no,no,yes,telephone,jun,fri,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,management,married,high.school,no,unknown,unknown,telephone,jun,fri,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,services,married,high.school,no,yes,no,telephone,jun,fri,582,11,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,fri,261,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,management,single,university.degree,unknown,no,no,telephone,jun,fri,215,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,blue-collar,divorced,unknown,no,no,no,telephone,jun,fri,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,services,married,high.school,no,yes,no,telephone,jun,fri,554,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,432,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +60,admin.,single,high.school,no,no,no,telephone,jun,fri,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,fri,193,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,technician,married,basic.9y,no,no,no,telephone,jun,fri,63,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,technician,married,university.degree,no,yes,no,telephone,jun,fri,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,management,married,high.school,no,no,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,services,married,high.school,unknown,no,no,telephone,jun,fri,453,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,entrepreneur,married,basic.9y,no,no,yes,telephone,jun,fri,249,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,admin.,married,high.school,no,no,yes,telephone,jun,fri,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,housemaid,married,basic.6y,unknown,no,no,telephone,jun,fri,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,management,married,high.school,unknown,no,no,telephone,jun,fri,552,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,technician,married,basic.9y,no,yes,no,telephone,jun,fri,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,blue-collar,married,unknown,no,no,no,telephone,jun,fri,339,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,technician,married,professional.course,no,yes,no,telephone,jun,fri,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,services,married,high.school,unknown,no,no,telephone,jun,fri,373,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,26,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,technician,married,professional.course,no,yes,no,telephone,jun,fri,79,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,self-employed,married,basic.4y,unknown,no,no,telephone,jun,fri,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,fri,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,513,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,84,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,404,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,technician,married,university.degree,unknown,yes,yes,telephone,jun,fri,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +57,management,divorced,university.degree,no,yes,no,telephone,jun,fri,351,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,technician,married,unknown,no,yes,no,telephone,jun,fri,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,technician,married,university.degree,unknown,no,no,telephone,jun,fri,399,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,technician,married,basic.9y,no,no,no,telephone,jun,fri,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,unemployed,married,high.school,unknown,yes,no,telephone,jun,fri,334,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,management,married,university.degree,no,no,yes,telephone,jun,fri,49,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,services,single,professional.course,no,no,no,telephone,jun,fri,106,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,admin.,married,professional.course,no,yes,yes,telephone,jun,fri,248,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,self-employed,married,professional.course,no,no,no,telephone,jun,fri,101,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,management,married,university.degree,no,no,no,telephone,jun,fri,114,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,self-employed,married,university.degree,no,no,no,telephone,jun,fri,414,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,admin.,single,high.school,no,yes,no,telephone,jun,fri,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +26,services,single,high.school,no,no,no,telephone,jun,fri,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,services,married,high.school,unknown,yes,no,telephone,jun,fri,246,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,admin.,single,university.degree,no,yes,yes,telephone,jun,fri,431,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,technician,married,unknown,no,no,no,telephone,jun,fri,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,1276,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +35,blue-collar,single,unknown,no,no,yes,telephone,jun,fri,1114,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,admin.,divorced,basic.9y,no,no,no,telephone,jun,fri,161,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,189,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,technician,married,professional.course,no,no,no,telephone,jun,fri,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,services,married,high.school,unknown,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,420,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,blue-collar,single,high.school,no,no,no,telephone,jun,fri,672,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,self-employed,married,basic.4y,unknown,no,yes,telephone,jun,fri,381,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +58,technician,divorced,basic.9y,no,no,no,telephone,jun,fri,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,194,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,married,professional.course,no,no,no,telephone,jun,fri,1994,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,technician,single,high.school,no,no,no,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,services,married,unknown,unknown,no,no,telephone,jun,fri,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,223,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,admin.,single,basic.9y,unknown,yes,no,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,services,married,high.school,no,no,no,telephone,jun,fri,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,technician,married,basic.9y,no,no,no,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,high.school,unknown,no,yes,telephone,jun,fri,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,technician,married,professional.course,no,no,yes,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +57,retired,married,basic.4y,no,no,no,telephone,jun,fri,83,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,admin.,single,high.school,no,yes,no,telephone,jun,fri,122,16,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,married,high.school,no,yes,no,telephone,jun,fri,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,self-employed,married,basic.9y,no,no,no,telephone,jun,fri,330,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,unemployed,married,university.degree,no,yes,yes,telephone,jun,fri,272,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,120,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,technician,married,basic.9y,no,yes,no,telephone,jun,fri,307,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,377,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +55,services,married,high.school,unknown,yes,no,telephone,jun,fri,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,services,married,professional.course,no,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,services,divorced,basic.6y,no,no,yes,telephone,jun,fri,386,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,divorced,high.school,no,yes,no,telephone,jun,fri,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,blue-collar,married,high.school,unknown,yes,no,telephone,jun,fri,79,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,management,married,unknown,no,yes,no,telephone,jun,fri,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,single,university.degree,no,yes,no,telephone,jun,fri,358,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,retired,married,basic.9y,unknown,no,no,telephone,jun,fri,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,fri,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,unknown,married,basic.4y,no,yes,no,telephone,jun,fri,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,fri,52,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,unemployed,married,university.degree,no,no,no,telephone,jun,fri,360,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,services,married,high.school,unknown,yes,yes,telephone,jun,fri,136,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,entrepreneur,divorced,high.school,no,no,no,telephone,jun,fri,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,admin.,single,high.school,no,yes,no,telephone,jun,fri,141,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,28,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,862,11,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +40,admin.,single,high.school,no,no,no,telephone,jun,fri,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,married,high.school,no,no,no,telephone,jun,fri,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +26,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,168,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,fri,44,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,admin.,married,high.school,no,no,yes,telephone,jun,fri,260,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,fri,460,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +35,management,single,unknown,no,no,no,telephone,jun,fri,712,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,1567,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,technician,single,university.degree,no,no,no,telephone,jun,fri,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,entrepreneur,married,basic.9y,no,yes,yes,telephone,jun,fri,262,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,management,married,university.degree,no,no,no,telephone,jun,fri,84,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,housemaid,married,basic.9y,no,yes,yes,telephone,jun,fri,173,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,fri,175,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,technician,single,professional.course,unknown,no,no,telephone,jun,fri,29,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,968,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,unemployed,single,high.school,unknown,yes,no,telephone,jun,fri,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,unknown,married,basic.6y,no,no,yes,telephone,jun,fri,220,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,642,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +30,admin.,married,university.degree,no,no,yes,telephone,jun,fri,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,married,high.school,unknown,no,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,entrepreneur,married,university.degree,unknown,no,yes,telephone,jun,fri,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,fri,165,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,retired,single,basic.6y,unknown,yes,no,telephone,jun,fri,133,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,technician,married,professional.course,unknown,no,no,telephone,jun,fri,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jun,fri,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,admin.,married,high.school,unknown,unknown,unknown,telephone,jun,fri,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,admin.,divorced,university.degree,unknown,yes,no,telephone,jun,fri,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,admin.,married,high.school,unknown,no,yes,telephone,jun,fri,383,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,self-employed,single,high.school,no,no,no,telephone,jun,fri,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,fri,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,services,married,high.school,unknown,no,no,telephone,jun,fri,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,admin.,married,university.degree,no,yes,no,telephone,jun,fri,193,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,admin.,married,high.school,no,yes,yes,telephone,jun,fri,118,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,fri,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,entrepreneur,married,unknown,unknown,yes,no,telephone,jun,fri,86,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,fri,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,management,married,university.degree,unknown,no,no,telephone,jun,fri,442,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,married,professional.course,unknown,no,no,telephone,jun,fri,554,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +58,services,married,basic.4y,no,no,no,telephone,jun,fri,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,services,married,basic.4y,no,unknown,unknown,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,800,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,self-employed,single,university.degree,no,no,no,telephone,jun,fri,46,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,434,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,married,university.degree,no,no,no,telephone,jun,fri,230,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,516,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,housemaid,married,high.school,unknown,unknown,unknown,telephone,jun,fri,153,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,self-employed,divorced,high.school,no,yes,no,telephone,jun,fri,1041,13,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,admin.,married,university.degree,no,yes,no,telephone,jun,fri,66,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,technician,married,basic.6y,unknown,no,no,telephone,jun,fri,527,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,technician,married,basic.9y,no,no,no,telephone,jun,fri,100,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,admin.,married,high.school,no,no,no,telephone,jun,fri,308,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,self-employed,married,university.degree,no,no,no,telephone,jun,fri,467,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +47,services,married,high.school,no,no,no,telephone,jun,fri,341,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,technician,divorced,university.degree,no,no,no,telephone,jun,fri,1288,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,fri,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,technician,married,professional.course,no,no,no,telephone,jun,fri,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,management,married,basic.4y,unknown,no,no,telephone,jun,fri,301,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,fri,140,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,311,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,unemployed,married,university.degree,no,no,no,telephone,jun,fri,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,unemployed,married,basic.4y,no,yes,yes,telephone,jun,fri,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,admin.,married,high.school,no,no,no,telephone,jun,fri,319,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,technician,married,university.degree,no,yes,no,telephone,jun,fri,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,473,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,single,unknown,no,no,yes,telephone,jun,fri,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,unemployed,married,basic.6y,unknown,no,yes,telephone,jun,fri,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,technician,divorced,basic.4y,no,no,no,telephone,jun,fri,639,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,2653,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +31,housemaid,single,university.degree,no,no,yes,telephone,jun,fri,129,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,426,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +57,management,single,basic.9y,no,no,no,telephone,jun,fri,229,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,fri,460,8,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,married,basic.6y,no,unknown,unknown,telephone,jun,fri,154,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,housemaid,married,high.school,no,yes,yes,telephone,jun,fri,292,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,admin.,married,high.school,no,yes,no,telephone,jun,fri,44,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,management,married,basic.9y,no,yes,no,telephone,jun,fri,384,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,fri,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,fri,94,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,72,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,admin.,married,high.school,no,no,no,telephone,jun,fri,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,retired,married,basic.9y,no,no,no,telephone,jun,fri,217,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,admin.,single,high.school,no,no,yes,telephone,jun,fri,180,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,technician,married,university.degree,no,yes,no,telephone,jun,fri,562,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,management,married,university.degree,no,yes,no,telephone,jun,fri,422,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,single,basic.6y,unknown,no,yes,telephone,jun,fri,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,admin.,single,high.school,no,yes,no,telephone,jun,fri,17,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,self-employed,married,professional.course,no,yes,no,telephone,jun,fri,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +55,unemployed,married,basic.4y,unknown,yes,yes,telephone,jun,fri,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,admin.,divorced,basic.9y,no,yes,no,telephone,jun,fri,261,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,fri,144,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,admin.,married,basic.9y,no,no,no,telephone,jun,fri,122,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,technician,single,professional.course,no,unknown,unknown,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,services,single,high.school,unknown,yes,no,telephone,jun,fri,334,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,49,8,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,services,married,high.school,no,yes,yes,telephone,jun,fri,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +57,retired,married,university.degree,no,yes,no,telephone,jun,fri,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,services,divorced,high.school,no,no,no,telephone,jun,fri,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,fri,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,286,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,167,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,technician,married,high.school,no,no,no,telephone,jun,fri,52,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,technician,married,professional.course,no,no,yes,telephone,jun,fri,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,technician,married,professional.course,unknown,no,yes,telephone,jun,fri,168,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,fri,430,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,technician,married,professional.course,no,no,no,telephone,jun,fri,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,technician,married,professional.course,no,yes,no,telephone,jun,fri,350,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,management,married,university.degree,no,yes,no,telephone,jun,fri,30,24,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,213,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,371,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,204,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,technician,married,professional.course,no,no,no,telephone,jun,fri,36,24,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +55,admin.,married,high.school,no,unknown,unknown,telephone,jun,fri,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,housemaid,single,basic.4y,no,no,no,telephone,jun,fri,322,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,self-employed,married,basic.4y,unknown,no,no,telephone,jun,fri,420,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,admin.,married,university.degree,unknown,unknown,unknown,telephone,jun,fri,65,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,blue-collar,married,high.school,unknown,unknown,unknown,telephone,jun,fri,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,admin.,married,university.degree,unknown,yes,yes,telephone,jun,fri,545,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,technician,single,high.school,no,yes,yes,telephone,jun,fri,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,85,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,1085,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +38,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,514,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,student,single,high.school,unknown,no,no,telephone,jun,fri,471,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,unknown,single,unknown,unknown,yes,no,telephone,jun,fri,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,single,university.degree,no,no,yes,telephone,jun,fri,159,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,management,married,basic.6y,unknown,yes,no,telephone,jun,fri,38,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,jun,fri,191,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,divorced,professional.course,no,no,no,telephone,jun,fri,10,23,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,1330,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,admin.,married,high.school,no,no,no,telephone,jun,fri,48,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,single,high.school,no,no,no,telephone,jun,fri,236,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,technician,married,basic.9y,no,yes,no,telephone,jun,fri,503,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,services,married,high.school,no,no,yes,telephone,jun,fri,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,management,married,university.degree,no,no,no,telephone,jun,fri,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,319,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,blue-collar,single,professional.course,no,yes,no,telephone,jun,fri,42,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,management,married,unknown,no,yes,no,telephone,jun,fri,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,services,married,high.school,unknown,unknown,unknown,telephone,jun,fri,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,single,basic.4y,unknown,unknown,unknown,telephone,jun,fri,248,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,technician,single,basic.9y,no,yes,no,telephone,jun,fri,461,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,self-employed,married,basic.4y,unknown,yes,no,telephone,jun,fri,313,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,86,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,management,married,university.degree,no,no,no,telephone,jun,fri,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,80,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,fri,113,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,single,basic.6y,no,yes,yes,telephone,jun,fri,613,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,201,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,technician,married,professional.course,no,no,no,telephone,jun,fri,1271,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,fri,155,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,admin.,married,university.degree,no,no,no,telephone,jun,fri,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,unemployed,married,university.degree,no,no,no,telephone,jun,fri,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,114,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,306,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +60,self-employed,married,professional.course,unknown,no,no,telephone,jun,fri,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +28,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,419,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,entrepreneur,single,professional.course,no,no,yes,telephone,jun,fri,85,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,self-employed,single,university.degree,unknown,yes,no,telephone,jun,fri,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,technician,married,unknown,no,no,no,telephone,jun,fri,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,admin.,single,university.degree,no,no,no,telephone,jun,fri,298,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,fri,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jun,fri,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +56,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,20,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,admin.,married,high.school,no,no,no,telephone,jun,fri,354,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,fri,63,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,admin.,divorced,high.school,no,yes,yes,telephone,jun,fri,354,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,fri,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,176,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,technician,married,university.degree,unknown,no,no,telephone,jun,fri,431,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,retired,married,basic.4y,unknown,no,no,telephone,jun,fri,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,married,high.school,no,no,yes,telephone,jun,fri,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jun,fri,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,unemployed,married,professional.course,no,yes,no,telephone,jun,fri,136,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,services,married,high.school,no,yes,no,telephone,jun,fri,303,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,services,divorced,basic.9y,no,no,no,telephone,jun,fri,158,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,651,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,technician,married,professional.course,no,yes,no,telephone,jun,fri,118,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,unemployed,married,unknown,no,no,no,telephone,jun,fri,280,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,technician,married,university.degree,no,no,yes,telephone,jun,fri,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,admin.,married,university.degree,no,no,no,telephone,jun,fri,39,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,admin.,married,high.school,no,no,no,telephone,jun,fri,355,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,151,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,technician,married,university.degree,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,190,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +45,technician,married,professional.course,unknown,no,no,telephone,jun,fri,124,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jun,fri,342,10,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,services,single,high.school,no,no,no,telephone,jun,fri,207,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,technician,divorced,basic.4y,no,yes,no,telephone,jun,fri,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,management,married,high.school,no,yes,yes,telephone,jun,fri,304,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,blue-collar,married,high.school,no,no,no,telephone,jun,fri,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,technician,married,basic.9y,no,no,no,telephone,jun,fri,27,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,blue-collar,single,basic.4y,no,no,yes,telephone,jun,fri,396,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,admin.,single,university.degree,no,yes,no,telephone,jun,fri,520,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,admin.,single,university.degree,unknown,yes,no,telephone,jun,fri,188,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,technician,married,professional.course,no,yes,no,telephone,jun,fri,95,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,single,professional.course,no,no,no,telephone,jun,fri,392,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +44,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,25,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +48,self-employed,married,basic.9y,unknown,no,no,telephone,jun,fri,246,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,jun,fri,94,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,technician,married,basic.9y,no,yes,no,telephone,jun,fri,197,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +25,blue-collar,single,high.school,no,yes,no,telephone,jun,fri,446,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,self-employed,married,university.degree,unknown,no,no,telephone,jun,fri,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +31,entrepreneur,married,high.school,no,yes,no,telephone,jun,fri,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,technician,married,university.degree,no,no,yes,telephone,jun,fri,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,self-employed,single,university.degree,no,no,yes,telephone,jun,fri,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +55,admin.,married,basic.4y,unknown,no,no,telephone,jun,fri,1469,9,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +47,retired,married,basic.4y,unknown,no,yes,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +27,technician,single,professional.course,no,no,no,telephone,jun,fri,112,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +41,housemaid,married,university.degree,unknown,no,no,telephone,jun,fri,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,28,6,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +54,admin.,married,unknown,unknown,no,no,telephone,jun,fri,34,16,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,telephone,jun,fri,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,technician,married,professional.course,no,no,no,telephone,jun,fri,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,technician,married,basic.9y,no,no,no,telephone,jun,fri,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +47,technician,single,professional.course,unknown,no,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +25,housemaid,married,basic.9y,no,no,no,telephone,jun,fri,152,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,admin.,married,university.degree,no,yes,no,telephone,jun,fri,606,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,jun,fri,288,12,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +40,services,divorced,high.school,no,yes,no,telephone,jun,fri,685,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,yes +37,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +37,unemployed,married,professional.course,no,no,no,telephone,jun,fri,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,management,married,university.degree,no,yes,no,telephone,jun,fri,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +43,blue-collar,divorced,basic.9y,unknown,no,yes,telephone,jun,fri,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,admin.,single,university.degree,unknown,no,no,telephone,jun,fri,122,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,jun,fri,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +35,services,married,professional.course,unknown,no,no,telephone,jun,fri,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +39,management,married,university.degree,no,yes,yes,telephone,jun,fri,383,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,technician,single,professional.course,unknown,yes,no,telephone,jun,fri,111,5,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,services,married,high.school,no,yes,yes,telephone,jun,fri,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,services,married,high.school,no,yes,no,telephone,jun,fri,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +36,blue-collar,single,high.school,no,yes,no,telephone,jun,fri,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +58,retired,married,basic.9y,no,no,no,telephone,jun,fri,33,2,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +38,services,married,basic.9y,no,no,no,telephone,jun,fri,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +25,admin.,married,university.degree,no,yes,no,telephone,jun,fri,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,unemployed,divorced,basic.4y,no,no,yes,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +49,admin.,single,high.school,no,yes,no,telephone,jun,fri,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +46,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,fri,243,7,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +42,entrepreneur,single,university.degree,no,yes,no,telephone,jun,fri,491,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +59,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +32,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,1291,3,999,0,nonexistent,1.4,94.465,-41.8,4.967,5228.1,no +29,self-employed,single,university.degree,no,no,no,telephone,jun,mon,221,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,214,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,housemaid,single,basic.4y,no,yes,yes,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,services,single,high.school,no,no,yes,telephone,jun,mon,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,mon,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,services,single,high.school,no,yes,no,telephone,jun,mon,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,technician,married,professional.course,no,yes,no,telephone,jun,mon,358,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,self-employed,married,basic.9y,no,yes,no,telephone,jun,mon,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,38,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,services,single,high.school,unknown,no,no,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,blue-collar,unknown,basic.6y,unknown,no,no,telephone,jun,mon,832,18,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,self-employed,married,university.degree,unknown,yes,yes,telephone,jun,mon,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,housemaid,single,basic.9y,no,yes,no,telephone,jun,mon,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,self-employed,married,university.degree,no,yes,no,telephone,jun,mon,529,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,464,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,services,single,high.school,unknown,yes,no,telephone,jun,mon,332,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,services,married,high.school,unknown,yes,no,telephone,jun,mon,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,unknown,married,university.degree,no,yes,no,telephone,jun,mon,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,married,high.school,no,no,no,telephone,jun,mon,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,basic.9y,no,no,no,telephone,jun,mon,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,entrepreneur,divorced,university.degree,unknown,no,no,telephone,jun,mon,60,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,technician,married,professional.course,no,yes,no,telephone,jun,mon,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,single,university.degree,no,yes,no,telephone,jun,mon,540,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,university.degree,no,yes,no,telephone,jun,mon,196,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,basic.6y,unknown,yes,no,telephone,jun,mon,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,management,married,basic.4y,no,no,yes,telephone,jun,mon,74,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,299,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,single,high.school,no,unknown,unknown,telephone,jun,mon,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,technician,married,basic.6y,no,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,admin.,married,university.degree,no,no,yes,telephone,jun,mon,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,mon,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,married,university.degree,no,yes,no,telephone,jun,mon,216,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,married,professional.course,no,no,no,telephone,jun,mon,220,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,single,unknown,no,no,yes,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,management,married,university.degree,no,no,no,telephone,jun,mon,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,single,unknown,no,yes,no,telephone,jun,mon,400,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,divorced,basic.9y,no,yes,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,entrepreneur,divorced,high.school,no,yes,no,telephone,jun,mon,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,retired,married,basic.6y,no,unknown,unknown,telephone,jun,mon,356,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,mon,1055,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +56,retired,married,basic.4y,no,yes,no,telephone,jun,mon,772,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,basic.9y,unknown,yes,no,telephone,jun,mon,306,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,services,married,basic.4y,unknown,yes,no,telephone,jun,mon,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,university.degree,no,no,yes,telephone,jun,mon,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,basic.6y,unknown,no,no,telephone,jun,mon,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,services,married,basic.4y,unknown,yes,yes,telephone,jun,mon,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,single,basic.4y,unknown,no,yes,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,high.school,no,no,yes,telephone,jun,mon,422,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,unknown,single,basic.6y,unknown,no,yes,telephone,jun,mon,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,services,married,high.school,no,yes,no,telephone,jun,mon,174,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,unknown,no,yes,telephone,jun,mon,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,admin.,single,professional.course,no,yes,yes,telephone,jun,mon,233,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,retired,married,basic.4y,no,yes,yes,telephone,jun,mon,322,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,single,university.degree,no,no,no,telephone,jun,mon,443,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,married,unknown,no,yes,yes,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,technician,married,professional.course,no,yes,no,telephone,jun,mon,217,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,services,married,high.school,no,no,no,telephone,jun,mon,257,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,mon,882,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,252,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,mon,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,high.school,no,no,no,telephone,jun,mon,540,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,divorced,university.degree,no,yes,no,telephone,jun,mon,683,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,services,married,high.school,no,no,yes,telephone,jun,mon,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,technician,married,professional.course,no,yes,no,telephone,jun,mon,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,services,married,high.school,no,yes,yes,telephone,jun,mon,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,high.school,no,yes,yes,telephone,jun,mon,172,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,unemployed,divorced,high.school,unknown,yes,no,telephone,jun,mon,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,yes,telephone,jun,mon,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,single,basic.9y,unknown,no,no,telephone,jun,mon,626,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,122,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,admin.,single,basic.6y,no,yes,no,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,married,high.school,no,no,no,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,married,high.school,no,no,no,telephone,jun,mon,255,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,self-employed,divorced,basic.9y,no,yes,no,telephone,jun,mon,217,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,management,married,unknown,unknown,yes,no,telephone,jun,mon,1098,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,admin.,single,university.degree,no,yes,yes,telephone,jun,mon,176,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,331,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,student,single,high.school,no,no,no,telephone,jun,mon,901,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +56,technician,divorced,professional.course,unknown,yes,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,mon,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,single,basic.4y,no,yes,no,telephone,jun,mon,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,411,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,professional.course,no,yes,no,telephone,jun,mon,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,self-employed,married,university.degree,no,no,no,telephone,jun,mon,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,mon,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,retired,divorced,professional.course,unknown,no,no,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,services,single,high.school,no,no,no,telephone,jun,mon,700,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +35,technician,married,professional.course,no,yes,yes,telephone,jun,mon,329,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,225,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,96,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,technician,single,basic.9y,no,no,no,telephone,jun,mon,186,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,technician,married,professional.course,unknown,yes,no,telephone,jun,mon,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,management,divorced,university.degree,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,mon,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,professional.course,no,yes,yes,telephone,jun,mon,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,mon,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jun,mon,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,professional.course,no,yes,yes,telephone,jun,mon,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,student,single,high.school,no,no,no,telephone,jun,mon,589,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,mon,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,mon,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,housemaid,single,university.degree,no,yes,no,telephone,jun,mon,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,entrepreneur,married,professional.course,unknown,no,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,technician,single,professional.course,no,yes,yes,telephone,jun,mon,522,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,entrepreneur,married,high.school,no,yes,no,telephone,jun,mon,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,management,married,high.school,unknown,no,no,telephone,jun,mon,65,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,149,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,mon,206,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,technician,single,university.degree,unknown,yes,yes,telephone,jun,mon,378,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,housemaid,married,high.school,unknown,yes,no,telephone,jun,mon,100,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,175,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,high.school,no,no,no,telephone,jun,mon,250,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,self-employed,married,basic.9y,unknown,no,no,telephone,jun,mon,156,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,self-employed,divorced,university.degree,no,yes,yes,telephone,jun,mon,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,married,professional.course,no,yes,no,telephone,jun,mon,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,single,high.school,no,no,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,basic.4y,unknown,no,no,telephone,jun,mon,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,entrepreneur,divorced,university.degree,no,no,yes,telephone,jun,mon,311,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,mon,313,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,retired,married,basic.4y,unknown,no,yes,telephone,jun,mon,302,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,unemployed,single,basic.6y,no,yes,yes,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,47,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,management,married,high.school,no,no,yes,telephone,jun,mon,117,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,unemployed,single,high.school,no,yes,no,telephone,jun,mon,142,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,services,single,high.school,no,yes,yes,telephone,jun,mon,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,technician,single,high.school,no,yes,yes,telephone,jun,mon,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,services,married,basic.9y,no,yes,no,telephone,jun,mon,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,unemployed,single,basic.9y,no,yes,no,telephone,jun,mon,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,management,married,university.degree,no,yes,no,telephone,jun,mon,23,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,single,professional.course,no,no,no,telephone,jun,mon,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,high.school,no,yes,no,telephone,jun,mon,491,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +25,services,single,high.school,no,yes,no,telephone,jun,mon,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,admin.,single,professional.course,no,no,yes,telephone,jun,mon,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,married,basic.4y,no,no,yes,telephone,jun,mon,164,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,housemaid,married,basic.4y,no,no,yes,telephone,jun,mon,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,basic.9y,unknown,no,no,telephone,jun,mon,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,technician,married,university.degree,no,no,no,telephone,jun,mon,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,married,basic.9y,no,no,no,telephone,jun,mon,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,technician,single,professional.course,no,yes,no,telephone,jun,mon,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,management,married,unknown,unknown,no,no,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,married,basic.6y,unknown,yes,no,telephone,jun,mon,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,240,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,university.degree,no,yes,no,telephone,jun,mon,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,services,married,university.degree,unknown,no,yes,telephone,jun,mon,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,high.school,no,no,no,telephone,jun,mon,940,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +53,blue-collar,married,basic.4y,no,no,yes,telephone,jun,mon,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,unemployed,married,high.school,no,yes,no,telephone,jun,mon,196,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,unemployed,married,basic.9y,no,yes,no,telephone,jun,mon,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,married,university.degree,no,no,no,telephone,jun,mon,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,admin.,single,basic.9y,no,no,no,telephone,jun,mon,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,271,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,technician,married,basic.4y,no,no,no,telephone,jun,mon,317,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,single,high.school,no,no,no,telephone,jun,mon,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,single,high.school,no,yes,yes,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,jun,mon,321,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,admin.,married,university.degree,unknown,no,no,telephone,jun,mon,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,services,divorced,high.school,no,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,327,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,411,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,single,high.school,no,no,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,services,married,unknown,no,no,no,telephone,jun,mon,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,single,university.degree,no,yes,no,telephone,jun,mon,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,technician,married,professional.course,no,no,yes,telephone,jun,mon,352,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,245,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,management,married,high.school,no,yes,no,telephone,jun,mon,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,mon,242,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,married,high.school,no,no,no,telephone,jun,mon,479,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,services,single,basic.4y,no,no,no,telephone,jun,mon,514,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,91,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,mon,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,management,married,basic.4y,no,yes,no,telephone,jun,mon,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,services,single,high.school,no,no,no,telephone,jun,mon,295,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,married,high.school,no,no,no,telephone,jun,mon,346,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,self-employed,married,high.school,no,no,no,telephone,jun,mon,238,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,mon,291,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,unknown,married,basic.4y,no,yes,no,telephone,jun,mon,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,married,high.school,no,no,no,telephone,jun,mon,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,technician,married,high.school,no,yes,no,telephone,jun,mon,222,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,technician,married,professional.course,no,no,no,telephone,jun,mon,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,493,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,188,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,single,basic.4y,no,no,no,telephone,jun,mon,17,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,management,married,university.degree,no,no,no,telephone,jun,mon,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,398,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,782,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,admin.,single,high.school,no,no,no,telephone,jun,mon,137,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,entrepreneur,single,high.school,no,yes,no,telephone,jun,mon,419,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,65,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,96,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,admin.,single,high.school,no,yes,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,unknown,married,basic.4y,no,no,yes,telephone,jun,mon,150,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,559,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,married,professional.course,no,yes,no,telephone,jun,mon,952,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +42,services,divorced,basic.6y,no,no,no,telephone,jun,mon,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,entrepreneur,single,university.degree,no,yes,no,telephone,jun,mon,486,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +47,blue-collar,married,high.school,unknown,yes,no,telephone,jun,mon,224,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,housemaid,married,professional.course,no,yes,no,telephone,jun,mon,152,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,22,17,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,university.degree,no,no,no,telephone,jun,mon,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,unknown,basic.6y,unknown,no,no,telephone,jun,mon,199,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,mon,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,management,single,high.school,no,yes,no,telephone,jun,mon,220,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,mon,85,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,single,university.degree,unknown,yes,no,telephone,jun,mon,244,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,253,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,306,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,married,high.school,unknown,yes,no,telephone,jun,mon,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,175,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,single,university.degree,no,yes,no,telephone,jun,mon,436,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,technician,single,university.degree,no,no,no,telephone,jun,mon,92,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,married,high.school,no,no,no,telephone,jun,mon,155,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,single,professional.course,no,yes,no,telephone,jun,mon,371,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,718,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,married,basic.9y,no,yes,no,telephone,jun,mon,442,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +35,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,184,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,married,unknown,no,no,no,telephone,jun,mon,189,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,basic.4y,unknown,yes,no,telephone,jun,mon,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,management,married,basic.6y,unknown,yes,no,telephone,jun,mon,166,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,mon,699,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,self-employed,married,basic.9y,no,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,553,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,services,married,high.school,unknown,no,no,telephone,jun,mon,1137,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +38,housemaid,married,university.degree,no,no,no,telephone,jun,mon,100,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,445,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,divorced,basic.9y,no,yes,yes,telephone,jun,mon,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,services,married,high.school,unknown,yes,no,telephone,jun,mon,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,services,single,high.school,no,yes,no,telephone,jun,mon,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,basic.9y,no,no,yes,telephone,jun,mon,271,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,management,married,university.degree,no,no,no,telephone,jun,mon,87,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,self-employed,married,professional.course,unknown,yes,yes,telephone,jun,mon,330,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,259,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,mon,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,high.school,unknown,yes,yes,telephone,jun,mon,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,388,12,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,services,married,basic.4y,no,yes,yes,telephone,jun,mon,59,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,services,single,high.school,unknown,no,no,telephone,jun,mon,329,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,753,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,unknown,unknown,yes,no,telephone,jun,mon,99,26,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,technician,married,high.school,no,no,no,telephone,jun,mon,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,married,high.school,no,no,no,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,services,married,basic.6y,unknown,no,yes,telephone,jun,mon,511,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,retired,married,university.degree,unknown,no,no,telephone,jun,mon,26,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,technician,married,basic.6y,unknown,no,no,telephone,jun,mon,478,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,579,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,self-employed,married,university.degree,unknown,no,no,telephone,jun,mon,96,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,95,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,housemaid,single,university.degree,no,no,no,telephone,jun,mon,126,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,138,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,technician,single,high.school,no,no,no,telephone,jun,mon,94,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,299,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,69,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,housemaid,married,basic.4y,no,yes,no,telephone,jun,mon,44,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,mon,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,154,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,115,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,services,married,basic.6y,no,no,no,telephone,jun,wed,107,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,married,high.school,no,yes,no,telephone,jun,wed,308,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,housemaid,divorced,basic.4y,no,yes,no,telephone,jun,wed,129,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,33,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,wed,296,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,126,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,admin.,married,high.school,unknown,yes,no,telephone,jun,wed,198,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,technician,married,high.school,no,yes,no,telephone,jun,wed,73,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,technician,single,unknown,no,yes,no,telephone,jun,wed,180,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,services,divorced,university.degree,no,no,no,telephone,jun,wed,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,management,single,university.degree,no,no,no,telephone,jun,wed,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,admin.,divorced,high.school,unknown,no,no,telephone,jun,wed,40,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,unknown,single,basic.6y,unknown,no,no,telephone,jun,wed,878,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +21,technician,single,professional.course,no,no,no,telephone,jun,wed,54,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,management,married,university.degree,no,no,no,telephone,jun,wed,129,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,480,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,professional.course,no,yes,no,telephone,jun,wed,583,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +45,services,divorced,high.school,no,no,no,telephone,jun,wed,101,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,wed,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,single,university.degree,no,yes,no,telephone,jun,wed,27,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,admin.,married,unknown,no,no,no,telephone,jun,wed,490,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,services,married,basic.9y,unknown,no,no,telephone,jun,wed,399,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,married,high.school,no,yes,no,telephone,jun,wed,42,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,technician,divorced,professional.course,no,no,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,services,married,high.school,unknown,yes,no,telephone,jun,wed,75,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,technician,married,professional.course,no,yes,no,telephone,jun,wed,47,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,unknown,single,basic.6y,no,yes,no,telephone,jun,wed,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,housemaid,married,high.school,unknown,no,no,telephone,jun,wed,484,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,305,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,high.school,no,yes,no,telephone,jun,wed,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,management,married,university.degree,no,no,no,telephone,jun,wed,893,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,professional.course,no,no,no,telephone,jun,wed,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,204,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,services,divorced,basic.4y,unknown,yes,no,telephone,jun,wed,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,services,married,unknown,no,no,no,telephone,jun,wed,360,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,single,unknown,no,no,no,telephone,jun,wed,643,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,wed,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,services,married,high.school,unknown,yes,no,telephone,jun,wed,327,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,unemployed,married,basic.4y,unknown,yes,no,telephone,jun,wed,175,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,services,divorced,high.school,no,no,no,telephone,jun,wed,240,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,high.school,no,no,no,telephone,jun,wed,916,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,363,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,unemployed,married,professional.course,no,yes,no,telephone,jun,wed,281,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,wed,442,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,196,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,management,married,university.degree,no,yes,no,telephone,jun,wed,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,88,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,wed,305,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,management,married,university.degree,no,no,no,telephone,jun,wed,197,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,divorced,high.school,no,yes,no,telephone,jun,wed,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,entrepreneur,married,high.school,no,no,no,telephone,jun,wed,439,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,services,married,high.school,no,yes,no,telephone,jun,wed,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,63,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,wed,867,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +30,self-employed,single,university.degree,no,no,no,telephone,jun,wed,587,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +56,technician,married,basic.4y,unknown,no,no,telephone,jun,wed,458,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,married,university.degree,no,no,no,telephone,jun,wed,191,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,management,married,high.school,no,yes,yes,telephone,jun,wed,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,married,university.degree,no,no,no,telephone,jun,wed,354,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,university.degree,no,no,no,telephone,jun,wed,300,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,105,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,services,single,high.school,unknown,no,yes,telephone,jun,wed,328,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,self-employed,married,professional.course,no,no,yes,telephone,jun,wed,339,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +22,technician,married,basic.9y,unknown,no,no,telephone,jun,wed,561,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,wed,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,706,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,261,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,admin.,divorced,high.school,no,no,no,telephone,jun,wed,314,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,admin.,divorced,basic.6y,no,yes,no,telephone,jun,wed,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,wed,694,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,services,married,high.school,no,yes,no,telephone,jun,wed,68,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,275,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,technician,single,professional.course,no,yes,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jun,wed,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,management,married,basic.4y,unknown,no,no,telephone,jun,wed,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,admin.,married,basic.9y,no,no,no,telephone,jun,wed,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,admin.,married,university.degree,no,no,no,telephone,jun,wed,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,technician,married,high.school,no,yes,no,telephone,jun,wed,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,married,professional.course,no,yes,no,telephone,jun,wed,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,married,high.school,no,yes,no,telephone,jun,wed,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,technician,married,high.school,no,no,no,telephone,jun,wed,241,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,unknown,married,unknown,unknown,yes,no,telephone,jun,wed,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,services,married,high.school,no,unknown,unknown,telephone,jun,wed,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,technician,married,university.degree,unknown,no,no,telephone,jun,wed,420,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,technician,married,professional.course,unknown,no,no,telephone,jun,wed,115,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,technician,single,professional.course,unknown,yes,no,telephone,jun,wed,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +24,self-employed,single,university.degree,no,yes,no,telephone,jun,wed,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,housemaid,married,university.degree,no,no,no,telephone,jun,wed,68,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,62,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,services,married,basic.9y,no,yes,no,telephone,jun,wed,886,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,single,high.school,no,no,no,telephone,jun,wed,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,single,high.school,no,yes,no,telephone,jun,wed,1199,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +51,admin.,married,basic.6y,unknown,yes,no,telephone,jun,wed,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,university.degree,no,no,no,telephone,jun,wed,436,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +60,technician,divorced,professional.course,unknown,no,no,telephone,jun,wed,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,services,single,high.school,no,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,wed,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,553,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,wed,935,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +57,retired,married,basic.4y,unknown,no,no,telephone,jun,wed,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,management,married,university.degree,no,yes,no,telephone,jun,wed,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,586,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +41,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,950,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,wed,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,838,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +31,technician,single,unknown,no,no,no,telephone,jun,wed,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,technician,married,high.school,unknown,no,no,telephone,jun,wed,473,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,admin.,divorced,high.school,no,yes,yes,telephone,jun,wed,967,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +44,unemployed,single,basic.4y,no,no,no,telephone,jun,wed,33,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,admin.,single,university.degree,no,yes,no,telephone,jun,wed,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,651,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +39,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,437,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,services,single,unknown,no,yes,yes,telephone,jun,wed,116,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,self-employed,married,high.school,no,unknown,unknown,telephone,jun,wed,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,unemployed,married,university.degree,unknown,yes,no,telephone,jun,wed,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,entrepreneur,married,university.degree,no,yes,no,telephone,jun,wed,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,blue-collar,divorced,high.school,no,yes,no,telephone,jun,wed,340,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,wed,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,technician,divorced,unknown,no,no,no,telephone,jun,wed,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,admin.,divorced,high.school,no,yes,yes,telephone,jun,wed,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,327,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,unemployed,married,unknown,no,yes,no,telephone,jun,wed,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,management,single,university.degree,no,no,no,telephone,jun,wed,257,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,unknown,married,unknown,unknown,no,no,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,entrepreneur,married,professional.course,no,no,no,telephone,jun,wed,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,wed,183,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,technician,married,university.degree,no,no,no,telephone,jun,wed,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,services,married,high.school,no,no,no,telephone,jun,wed,678,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,services,single,unknown,unknown,yes,no,telephone,jun,wed,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,unknown,no,no,no,telephone,jun,wed,96,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,professional.course,no,no,no,telephone,jun,wed,211,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,201,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,admin.,married,professional.course,no,no,no,telephone,jun,wed,105,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,university.degree,no,yes,no,telephone,jun,wed,100,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,952,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,married,university.degree,no,no,no,telephone,jun,wed,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,married,basic.9y,no,no,no,telephone,jun,wed,389,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,wed,203,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,divorced,basic.4y,no,no,yes,telephone,jun,wed,450,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,services,married,high.school,no,yes,no,telephone,jun,wed,85,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,wed,74,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,222,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,30,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,basic.9y,no,no,no,telephone,jun,wed,268,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,admin.,divorced,high.school,no,no,no,telephone,jun,wed,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,427,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,single,university.degree,no,no,yes,telephone,jun,wed,90,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,177,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,admin.,single,high.school,no,no,no,telephone,jun,wed,328,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,services,married,university.degree,no,yes,yes,telephone,jun,wed,516,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,unemployed,married,high.school,unknown,yes,no,telephone,jun,wed,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,184,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,157,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,management,divorced,high.school,unknown,no,no,telephone,jun,wed,319,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,self-employed,married,university.degree,unknown,yes,no,telephone,jun,wed,199,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,wed,147,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,self-employed,married,professional.course,no,yes,no,telephone,jun,wed,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,157,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,admin.,married,high.school,no,yes,no,telephone,jun,wed,375,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,single,professional.course,no,yes,no,telephone,jun,wed,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,self-employed,married,basic.4y,no,no,no,telephone,jun,wed,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,47,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,entrepreneur,married,basic.6y,no,no,no,telephone,jun,wed,215,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,230,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,unemployed,single,university.degree,no,yes,no,telephone,jun,wed,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,213,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,entrepreneur,married,high.school,no,yes,no,telephone,jun,wed,126,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,married,university.degree,no,yes,no,telephone,jun,wed,70,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,141,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,111,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,287,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,services,married,high.school,no,yes,no,telephone,jun,wed,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,technician,married,professional.course,no,yes,no,telephone,jun,wed,67,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,single,high.school,no,unknown,unknown,telephone,jun,wed,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,retired,single,high.school,no,no,no,telephone,jun,wed,904,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,services,married,unknown,no,yes,no,telephone,jun,wed,597,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,services,married,high.school,no,no,no,telephone,jun,wed,274,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,single,unknown,no,no,no,telephone,jun,wed,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,technician,single,university.degree,unknown,no,no,telephone,jun,wed,354,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,152,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,wed,328,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,married,professional.course,unknown,yes,no,telephone,jun,wed,59,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,125,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,technician,married,high.school,no,yes,no,telephone,jun,wed,158,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,single,basic.6y,no,unknown,unknown,telephone,jun,wed,179,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,649,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +40,services,divorced,unknown,no,yes,yes,telephone,jun,wed,26,29,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,wed,203,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,services,married,high.school,no,yes,no,telephone,jun,wed,138,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,107,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,409,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,single,university.degree,no,no,yes,telephone,jun,wed,48,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,83,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,199,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,wed,122,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,218,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,single,high.school,unknown,yes,no,telephone,jun,wed,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,222,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,378,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,management,single,unknown,no,unknown,unknown,telephone,jun,wed,514,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,unknown,married,high.school,unknown,no,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,self-employed,single,university.degree,no,no,no,telephone,jun,wed,58,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,entrepreneur,married,high.school,unknown,no,no,telephone,jun,wed,850,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,307,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,admin.,married,high.school,unknown,no,no,telephone,jun,thu,89,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,71,12,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,housemaid,divorced,unknown,no,yes,no,telephone,jun,thu,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +59,technician,married,university.degree,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,542,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,admin.,married,university.degree,no,no,no,telephone,jun,thu,265,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +27,student,single,high.school,no,yes,no,telephone,jun,thu,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,retired,divorced,high.school,no,no,no,telephone,jun,thu,410,16,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +37,admin.,single,university.degree,no,yes,no,telephone,jun,thu,93,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +53,technician,married,unknown,no,yes,no,telephone,jun,thu,134,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,management,married,university.degree,no,no,no,telephone,jun,thu,403,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,36,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,services,married,high.school,no,yes,no,telephone,jun,thu,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,student,single,basic.9y,no,no,no,telephone,jun,thu,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,305,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,614,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +38,admin.,married,university.degree,no,no,no,telephone,jun,thu,781,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,technician,married,professional.course,no,no,no,telephone,jun,thu,112,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,337,22,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,admin.,married,high.school,no,yes,no,telephone,jun,thu,423,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,technician,married,professional.course,no,no,no,telephone,jun,thu,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,thu,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,technician,married,high.school,no,yes,no,telephone,jun,thu,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +27,student,single,university.degree,no,no,yes,telephone,jun,thu,137,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,retired,married,basic.4y,no,yes,no,telephone,jun,thu,125,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +51,admin.,single,basic.6y,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,technician,single,professional.course,no,no,no,telephone,jun,thu,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,admin.,married,professional.course,unknown,yes,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,divorced,professional.course,no,yes,yes,telephone,jun,thu,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,technician,divorced,professional.course,unknown,no,no,telephone,jun,thu,885,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +44,technician,divorced,professional.course,no,no,no,telephone,jun,thu,112,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,blue-collar,married,professional.course,unknown,no,no,telephone,jun,thu,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,jun,thu,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,blue-collar,divorced,basic.4y,unknown,unknown,unknown,telephone,jun,thu,583,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,entrepreneur,married,unknown,unknown,no,yes,telephone,jun,thu,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,thu,151,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,admin.,married,basic.6y,no,no,no,telephone,jun,thu,165,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,admin.,married,high.school,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,entrepreneur,married,high.school,no,no,yes,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,2025,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +53,technician,married,unknown,no,no,no,telephone,jun,thu,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,services,married,high.school,unknown,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,admin.,single,basic.9y,no,no,no,telephone,jun,thu,406,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,management,single,university.degree,no,yes,no,telephone,jun,thu,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +45,self-employed,married,professional.course,no,no,yes,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,146,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,housemaid,single,unknown,no,yes,no,telephone,jun,thu,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,278,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,services,divorced,basic.9y,no,no,no,telephone,jun,thu,753,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,married,high.school,unknown,no,no,telephone,jun,thu,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,technician,divorced,unknown,no,no,no,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,admin.,single,university.degree,no,no,no,telephone,jun,thu,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,thu,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +28,management,single,university.degree,no,no,no,telephone,jun,thu,651,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +47,technician,married,professional.course,no,no,no,telephone,jun,thu,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +59,services,married,high.school,no,no,no,telephone,jun,thu,309,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,technician,married,professional.course,no,yes,yes,telephone,jun,thu,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,services,married,high.school,no,no,no,telephone,jun,thu,252,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +45,services,divorced,high.school,unknown,no,no,telephone,jun,thu,691,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,thu,315,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +53,entrepreneur,divorced,unknown,no,yes,no,telephone,jun,thu,154,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,technician,married,basic.6y,no,yes,yes,telephone,jun,thu,344,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,technician,divorced,professional.course,no,no,no,telephone,jun,thu,128,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,self-employed,married,unknown,unknown,yes,yes,telephone,jun,thu,278,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,technician,married,high.school,no,yes,no,telephone,jun,thu,436,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,technician,married,unknown,no,no,no,telephone,jun,thu,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,admin.,single,university.degree,no,yes,no,telephone,jun,thu,186,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,84,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,housemaid,married,high.school,no,no,no,telephone,jun,thu,264,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,237,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,technician,single,university.degree,no,no,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +50,admin.,married,university.degree,no,no,no,telephone,jun,thu,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,services,married,high.school,unknown,no,no,telephone,jun,thu,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +58,entrepreneur,married,university.degree,unknown,yes,yes,telephone,jun,thu,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,64,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,admin.,married,university.degree,no,yes,no,telephone,jun,thu,351,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,services,married,unknown,no,no,no,telephone,jun,thu,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,thu,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,technician,married,university.degree,no,yes,no,telephone,jun,thu,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,services,married,high.school,unknown,no,yes,telephone,jun,thu,62,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,349,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +58,admin.,single,university.degree,no,no,no,telephone,jun,thu,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,housemaid,married,high.school,no,no,no,telephone,jun,thu,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +59,services,divorced,high.school,no,no,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,admin.,married,basic.9y,unknown,no,no,telephone,jun,thu,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,185,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +59,housemaid,married,high.school,unknown,no,no,telephone,jun,thu,331,12,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +24,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,management,married,high.school,no,yes,no,telephone,jun,thu,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,services,married,high.school,no,yes,yes,telephone,jun,thu,77,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,technician,married,professional.course,no,no,no,telephone,jun,thu,320,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +27,admin.,divorced,high.school,no,no,no,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,technician,married,professional.course,unknown,no,no,telephone,jun,thu,10,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +58,services,married,basic.4y,no,no,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,unemployed,married,university.degree,no,yes,no,telephone,jun,thu,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,technician,married,university.degree,unknown,no,yes,telephone,jun,thu,993,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +40,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,technician,married,professional.course,no,no,yes,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,admin.,single,university.degree,no,no,yes,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,919,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,technician,married,basic.9y,unknown,no,no,telephone,jun,thu,52,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,80,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +52,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,558,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,admin.,single,high.school,no,no,no,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,blue-collar,married,high.school,no,no,no,telephone,jun,thu,992,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +54,housemaid,married,basic.4y,unknown,no,no,telephone,jun,thu,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,services,married,basic.9y,no,no,yes,telephone,jun,thu,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,services,married,high.school,no,no,no,telephone,jun,thu,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +22,services,single,basic.4y,no,no,yes,telephone,jun,thu,58,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,technician,married,professional.course,unknown,no,no,telephone,jun,thu,81,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,management,single,university.degree,no,yes,no,telephone,jun,thu,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,management,married,university.degree,no,no,yes,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,309,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,871,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,577,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +39,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,582,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,services,married,professional.course,unknown,no,no,telephone,jun,thu,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,thu,270,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,technician,married,professional.course,no,no,no,telephone,jun,thu,317,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,technician,married,university.degree,no,no,no,telephone,jun,thu,281,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,entrepreneur,married,professional.course,no,yes,no,telephone,jun,thu,410,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,186,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,technician,married,university.degree,unknown,no,no,telephone,jun,thu,322,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,management,divorced,university.degree,no,yes,yes,telephone,jun,thu,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +52,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,technician,married,professional.course,no,yes,yes,telephone,jun,thu,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,312,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,entrepreneur,married,high.school,no,no,no,telephone,jun,thu,1141,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +59,entrepreneur,divorced,high.school,unknown,yes,no,telephone,jun,thu,1268,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +36,services,married,high.school,no,yes,yes,telephone,jun,thu,602,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,services,single,high.school,no,yes,no,telephone,jun,thu,1178,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,self-employed,divorced,university.degree,no,yes,no,telephone,jun,thu,130,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,admin.,single,university.degree,no,yes,no,telephone,jun,thu,541,17,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +44,management,married,high.school,no,yes,no,telephone,jun,thu,226,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +37,blue-collar,married,basic.4y,no,no,yes,telephone,jun,thu,640,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,340,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,management,married,university.degree,unknown,yes,no,telephone,jun,thu,230,7,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +45,blue-collar,single,basic.6y,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,773,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,management,married,university.degree,no,yes,no,telephone,jun,thu,298,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jun,thu,1618,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +48,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,361,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,blue-collar,married,unknown,no,no,no,telephone,jun,thu,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,blue-collar,married,high.school,unknown,no,no,telephone,jun,thu,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +50,admin.,married,university.degree,unknown,yes,no,telephone,jun,thu,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,67,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,services,married,high.school,no,yes,no,telephone,jun,thu,462,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +49,technician,married,professional.course,no,yes,no,telephone,jun,thu,320,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,management,single,university.degree,no,yes,no,telephone,jun,thu,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,71,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,204,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,admin.,married,basic.9y,unknown,yes,no,telephone,jun,thu,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +25,admin.,single,high.school,no,yes,no,telephone,jun,thu,1243,7,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,130,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,blue-collar,divorced,unknown,unknown,yes,no,telephone,jun,thu,339,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,services,married,high.school,no,no,no,telephone,jun,thu,316,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,entrepreneur,married,university.degree,no,no,yes,telephone,jun,thu,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,technician,married,professional.course,no,no,no,telephone,jun,thu,168,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,technician,married,professional.course,no,no,yes,telephone,jun,thu,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +57,technician,married,basic.4y,unknown,no,no,telephone,jun,thu,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +37,technician,single,high.school,unknown,unknown,unknown,telephone,jun,thu,227,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,admin.,married,university.degree,no,yes,no,telephone,jun,thu,153,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,admin.,married,professional.course,unknown,yes,no,telephone,jun,thu,122,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +53,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,unemployed,single,basic.6y,no,no,no,telephone,jun,thu,238,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,111,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,admin.,single,high.school,no,yes,no,telephone,jun,thu,161,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,admin.,single,university.degree,unknown,no,no,telephone,jun,thu,188,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,technician,married,university.degree,unknown,no,no,telephone,jun,thu,67,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,thu,361,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,454,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +48,blue-collar,married,high.school,no,yes,no,telephone,jun,thu,700,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,services,married,university.degree,no,yes,no,telephone,jun,mon,83,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,admin.,single,university.degree,no,yes,no,telephone,jun,mon,247,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +60,admin.,married,university.degree,unknown,yes,no,telephone,jun,mon,62,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,self-employed,divorced,university.degree,no,no,no,telephone,jun,mon,559,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,admin.,married,university.degree,no,no,no,telephone,jun,mon,190,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,single,high.school,no,no,no,telephone,jun,mon,10,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +48,admin.,married,high.school,unknown,no,no,telephone,jun,mon,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,mon,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,admin.,married,high.school,unknown,unknown,unknown,telephone,jun,mon,148,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,107,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,82,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,technician,single,university.degree,unknown,yes,no,telephone,jun,mon,405,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,103,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,unemployed,married,basic.9y,no,no,no,telephone,jun,mon,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,admin.,married,professional.course,no,no,no,telephone,jun,mon,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,blue-collar,married,high.school,no,no,no,telephone,jun,mon,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,management,married,university.degree,no,yes,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,157,29,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,mon,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,513,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,mon,241,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,mon,757,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,technician,single,high.school,no,no,no,telephone,jun,mon,68,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,technician,married,professional.course,no,no,no,telephone,jun,mon,171,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,182,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +49,admin.,married,basic.9y,no,no,no,telephone,jun,mon,270,15,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,technician,married,basic.6y,unknown,no,yes,telephone,jun,mon,172,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,admin.,single,unknown,no,yes,no,telephone,jun,mon,177,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,technician,married,high.school,unknown,yes,no,telephone,jun,mon,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,technician,single,professional.course,unknown,no,yes,telephone,jun,mon,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,services,divorced,basic.9y,no,yes,no,telephone,jun,mon,192,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,admin.,divorced,high.school,no,no,no,telephone,jun,mon,686,11,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +40,blue-collar,married,basic.6y,no,yes,no,telephone,jun,mon,104,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,single,high.school,no,yes,yes,telephone,jun,mon,325,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,services,married,high.school,unknown,no,no,telephone,jun,mon,33,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,entrepreneur,single,professional.course,no,yes,no,telephone,jun,mon,144,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +48,services,married,high.school,no,yes,no,telephone,jun,mon,57,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,technician,divorced,university.degree,no,no,no,telephone,jun,mon,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +50,housemaid,single,unknown,no,no,no,telephone,jun,mon,741,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +40,admin.,single,high.school,unknown,no,no,telephone,jun,mon,349,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,admin.,divorced,high.school,no,no,no,telephone,jun,mon,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,services,married,high.school,unknown,yes,no,telephone,jun,mon,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,95,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,entrepreneur,married,basic.6y,no,no,no,telephone,jun,mon,114,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,109,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,management,married,university.degree,no,no,no,telephone,jun,mon,1323,9,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,186,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,187,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,entrepreneur,married,university.degree,no,yes,no,telephone,jun,mon,580,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,services,divorced,high.school,no,yes,no,telephone,jun,mon,81,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,unknown,married,basic.4y,no,no,no,telephone,jun,mon,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,mon,144,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,blue-collar,divorced,basic.9y,no,unknown,unknown,telephone,jun,mon,276,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +49,retired,married,basic.4y,no,no,no,telephone,jun,mon,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,106,10,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,technician,single,professional.course,unknown,no,no,telephone,jun,mon,90,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,mon,78,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +59,admin.,married,high.school,no,no,no,telephone,jun,mon,204,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +50,technician,divorced,professional.course,no,no,no,telephone,jun,mon,408,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,admin.,single,high.school,unknown,yes,no,telephone,jun,mon,287,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,management,married,university.degree,unknown,no,no,telephone,jun,mon,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,119,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +51,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,mon,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,195,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,mon,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,mon,92,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,mon,264,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +56,housemaid,divorced,basic.4y,unknown,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,admin.,married,basic.9y,unknown,no,no,telephone,jun,mon,73,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +54,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,mon,100,17,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,452,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,married,unknown,unknown,yes,no,telephone,jun,mon,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +25,technician,single,university.degree,no,yes,yes,telephone,jun,mon,35,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,blue-collar,married,unknown,unknown,no,no,telephone,jun,mon,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,management,divorced,university.degree,no,yes,no,telephone,jun,mon,96,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,services,married,university.degree,no,no,no,telephone,jun,mon,119,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,mon,265,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,technician,married,professional.course,unknown,no,no,telephone,jun,mon,60,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,entrepreneur,single,university.degree,no,no,no,telephone,jun,mon,162,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,management,married,basic.4y,unknown,yes,no,telephone,jun,mon,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,technician,married,university.degree,no,no,no,telephone,jun,mon,1093,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +40,admin.,single,university.degree,unknown,no,yes,telephone,jun,mon,270,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,1395,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +35,student,single,university.degree,unknown,yes,no,telephone,jun,mon,178,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,services,single,high.school,no,no,no,telephone,jun,mon,223,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +56,blue-collar,single,basic.6y,unknown,no,no,telephone,jun,mon,35,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,mon,210,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +43,admin.,married,high.school,no,no,no,telephone,jun,mon,193,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,entrepreneur,married,basic.4y,no,no,no,telephone,jun,mon,822,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,unemployed,divorced,high.school,no,no,no,telephone,jun,mon,163,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,entrepreneur,married,basic.4y,no,no,no,telephone,jun,mon,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,married,high.school,no,no,yes,telephone,jun,mon,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,technician,married,university.degree,no,unknown,unknown,telephone,jun,mon,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,1238,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,services,married,unknown,unknown,no,no,telephone,jun,mon,32,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +59,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,mon,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,admin.,married,university.degree,no,no,yes,telephone,jun,mon,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,mon,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +56,services,divorced,basic.4y,no,no,no,telephone,jun,mon,42,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,admin.,divorced,high.school,no,no,no,telephone,jun,mon,24,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,unknown,married,basic.4y,unknown,yes,no,telephone,jun,mon,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +57,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +60,management,married,unknown,unknown,yes,no,telephone,jun,mon,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,mon,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,263,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,admin.,married,high.school,no,no,no,telephone,jun,mon,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +25,student,single,high.school,no,yes,yes,telephone,jun,mon,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +42,technician,married,university.degree,unknown,yes,no,telephone,jun,mon,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,single,basic.9y,unknown,no,no,telephone,jun,mon,1298,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,644,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,289,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +43,self-employed,married,basic.9y,no,no,no,telephone,jun,mon,1089,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +51,management,married,basic.4y,no,yes,no,telephone,jun,mon,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,mon,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,self-employed,single,university.degree,no,no,no,telephone,jun,mon,226,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,entrepreneur,single,professional.course,no,yes,no,telephone,jun,mon,136,8,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,admin.,married,university.degree,no,no,no,telephone,jun,mon,541,19,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,unknown,single,unknown,unknown,no,no,telephone,jun,mon,242,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,telephone,jun,mon,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,management,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,technician,married,professional.course,no,no,no,telephone,jun,mon,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +26,technician,married,professional.course,no,yes,no,telephone,jun,mon,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,blue-collar,married,high.school,no,yes,no,telephone,jun,mon,32,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,technician,married,professional.course,no,no,no,telephone,jun,mon,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,single,basic.9y,no,no,no,telephone,jun,mon,121,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +57,technician,married,basic.9y,no,yes,no,telephone,jun,mon,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,single,university.degree,no,no,no,telephone,jun,mon,320,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,technician,single,university.degree,no,no,no,telephone,jun,mon,382,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,unknown,married,high.school,unknown,yes,no,telephone,jun,mon,244,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,286,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +26,admin.,married,high.school,no,no,yes,telephone,jun,mon,1021,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,mon,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,entrepreneur,single,basic.9y,no,no,no,telephone,jun,mon,1248,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +32,admin.,single,university.degree,unknown,no,no,telephone,jun,mon,179,25,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,blue-collar,single,high.school,no,no,no,telephone,jun,mon,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,273,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,209,12,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,39,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,admin.,single,high.school,no,no,no,telephone,jun,mon,418,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,entrepreneur,single,university.degree,no,yes,no,telephone,jun,mon,348,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,management,married,university.degree,no,yes,yes,telephone,jun,mon,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,student,single,high.school,unknown,yes,no,telephone,jun,mon,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,401,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,technician,divorced,professional.course,no,no,no,telephone,jun,mon,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,technician,single,university.degree,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +55,housemaid,married,professional.course,no,no,no,telephone,jun,mon,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,mon,287,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +24,unemployed,married,university.degree,no,yes,no,telephone,jun,mon,266,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +43,technician,single,high.school,no,no,no,telephone,jun,mon,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +46,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,500,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +24,services,married,high.school,no,yes,no,telephone,jun,mon,298,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,mon,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +56,services,divorced,high.school,unknown,yes,no,telephone,jun,mon,13,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,divorced,basic.6y,no,no,no,telephone,jun,mon,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,married,professional.course,no,no,no,telephone,jun,mon,62,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,management,married,unknown,unknown,no,yes,telephone,jun,mon,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +26,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,mon,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,mon,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,admin.,married,high.school,no,yes,no,telephone,jun,mon,599,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,entrepreneur,married,university.degree,no,no,no,telephone,jun,mon,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,mon,52,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,mon,294,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,admin.,single,university.degree,no,yes,no,telephone,jun,mon,99,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,unknown,single,basic.9y,unknown,yes,no,telephone,jun,mon,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,divorced,high.school,no,no,yes,telephone,jun,mon,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +26,blue-collar,single,basic.4y,no,yes,yes,telephone,jun,mon,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,technician,married,professional.course,no,yes,yes,telephone,jun,mon,191,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +45,admin.,married,high.school,no,yes,yes,telephone,jun,mon,523,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,admin.,single,high.school,no,yes,no,telephone,jun,mon,358,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,mon,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +50,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,mon,46,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +43,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,51,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,mon,359,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +42,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,88,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,technician,single,university.degree,no,yes,no,telephone,jun,mon,342,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,entrepreneur,married,high.school,no,no,no,telephone,jun,mon,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,services,married,high.school,no,yes,no,telephone,jun,mon,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,management,married,university.degree,no,no,no,telephone,jun,mon,721,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +60,management,divorced,university.degree,no,yes,no,telephone,jun,mon,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,services,single,unknown,no,no,no,telephone,jun,mon,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,services,single,high.school,no,no,no,telephone,jun,mon,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,technician,divorced,professional.course,no,no,no,telephone,jun,mon,442,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,divorced,university.degree,no,no,no,telephone,jun,mon,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jun,mon,535,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +60,retired,married,basic.4y,unknown,no,no,telephone,jun,mon,155,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +25,self-employed,single,university.degree,no,no,no,telephone,jun,mon,178,7,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,single,high.school,no,no,no,telephone,jun,mon,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,services,single,high.school,no,yes,yes,telephone,jun,mon,20,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,divorced,high.school,no,no,yes,telephone,jun,mon,15,15,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +58,unemployed,single,basic.4y,unknown,no,no,telephone,jun,mon,170,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,technician,married,basic.6y,no,no,no,telephone,jun,mon,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +42,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,298,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,services,married,high.school,no,no,no,telephone,jun,mon,244,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,single,high.school,no,yes,no,telephone,jun,mon,750,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +30,technician,married,professional.course,no,no,yes,telephone,jun,mon,169,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,unknown,married,unknown,unknown,no,no,telephone,jun,mon,139,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,mon,14,14,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,admin.,married,university.degree,no,no,no,telephone,jun,mon,81,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,services,married,unknown,no,no,no,telephone,jun,mon,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +50,services,single,high.school,no,no,no,telephone,jun,mon,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +25,unemployed,single,high.school,unknown,yes,no,telephone,jun,mon,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,technician,married,university.degree,unknown,no,no,telephone,jun,mon,131,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,no,yes,telephone,jun,mon,18,30,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +24,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,607,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,retired,divorced,basic.4y,no,yes,no,telephone,jun,mon,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +59,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,102,35,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,mon,431,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,19,21,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,technician,single,high.school,no,no,no,telephone,jun,mon,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,management,single,university.degree,no,no,no,telephone,jun,mon,301,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +54,technician,married,university.degree,unknown,no,no,telephone,jun,mon,71,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,mon,341,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +53,technician,married,professional.course,unknown,no,no,telephone,jun,mon,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +28,admin.,married,university.degree,no,yes,no,telephone,jun,mon,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,technician,married,professional.course,no,yes,no,telephone,jun,mon,226,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +57,services,divorced,high.school,no,no,no,telephone,jun,mon,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +48,technician,married,high.school,no,unknown,unknown,telephone,jun,mon,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,mon,703,1,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +48,unemployed,divorced,basic.4y,no,no,yes,telephone,jun,mon,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,services,single,high.school,unknown,no,yes,telephone,jun,mon,126,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +33,admin.,married,high.school,no,no,no,telephone,jun,mon,314,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +37,technician,single,university.degree,no,no,no,telephone,jun,mon,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,married,high.school,unknown,no,no,telephone,jun,mon,353,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +42,admin.,single,high.school,no,no,no,telephone,jun,mon,362,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,75,7,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +35,admin.,married,high.school,no,no,no,telephone,jun,mon,142,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +42,housemaid,married,unknown,unknown,yes,no,telephone,jun,mon,345,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +57,management,married,university.degree,unknown,no,no,telephone,jun,mon,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,17,25,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,2769,4,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,yes +49,management,married,high.school,no,yes,no,telephone,jun,mon,26,18,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,141,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,14,20,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,jun,mon,1009,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +39,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,mon,440,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,blue-collar,single,university.degree,unknown,no,no,telephone,jun,mon,323,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +30,technician,divorced,professional.course,no,yes,no,telephone,jun,mon,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,mon,154,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +38,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,mon,97,6,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +51,admin.,married,high.school,no,no,no,telephone,jun,mon,368,12,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +55,management,married,university.degree,no,yes,no,telephone,jun,mon,303,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +36,admin.,married,university.degree,no,unknown,unknown,telephone,jun,mon,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +54,technician,married,high.school,no,no,no,telephone,jun,mon,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +32,student,single,university.degree,no,yes,no,telephone,jun,mon,295,2,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +29,blue-collar,single,high.school,unknown,no,no,telephone,jun,mon,335,3,999,0,nonexistent,1.4,94.465,-41.8,4.96,5228.1,no +52,entrepreneur,divorced,basic.4y,no,no,no,telephone,jun,tue,69,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,143,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,technician,married,university.degree,no,yes,no,telephone,jun,tue,153,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,technician,married,professional.course,no,no,no,telephone,jun,tue,83,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,single,basic.6y,no,yes,no,telephone,jun,tue,214,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,services,divorced,high.school,no,no,no,telephone,jun,tue,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,married,high.school,no,no,no,telephone,jun,tue,638,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,professional.course,unknown,no,no,telephone,jun,tue,78,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,services,married,high.school,no,no,yes,telephone,jun,tue,222,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,technician,married,professional.course,no,yes,no,telephone,jun,tue,78,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,260,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,tue,150,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,services,married,high.school,unknown,no,no,telephone,jun,tue,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,management,divorced,high.school,no,no,no,telephone,jun,tue,62,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,tue,100,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,high.school,no,no,no,telephone,jun,tue,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,329,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,338,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,331,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,divorced,high.school,no,yes,yes,telephone,jun,tue,131,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,services,divorced,basic.6y,unknown,yes,no,telephone,jun,tue,319,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,single,professional.course,no,no,no,telephone,jun,tue,315,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,services,married,high.school,no,no,no,telephone,jun,tue,37,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,single,university.degree,no,yes,no,telephone,jun,tue,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,33,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,high.school,no,no,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,married,university.degree,unknown,unknown,unknown,telephone,jun,tue,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,divorced,high.school,no,yes,yes,telephone,jun,tue,287,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,university.degree,no,yes,yes,telephone,jun,tue,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,services,married,unknown,no,no,no,telephone,jun,tue,345,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,tue,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,110,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,retired,single,high.school,no,no,no,telephone,jun,tue,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,technician,divorced,university.degree,no,no,yes,telephone,jun,tue,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,single,university.degree,no,yes,no,telephone,jun,tue,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,256,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,entrepreneur,married,professional.course,unknown,yes,no,telephone,jun,tue,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,admin.,married,high.school,no,yes,no,telephone,jun,tue,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,technician,single,professional.course,no,yes,no,telephone,jun,tue,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,admin.,married,high.school,no,no,no,telephone,jun,tue,442,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,management,divorced,university.degree,no,yes,no,telephone,jun,tue,183,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,housemaid,married,basic.4y,unknown,no,yes,telephone,jun,tue,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,high.school,no,no,no,telephone,jun,tue,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,services,single,university.degree,no,yes,no,telephone,jun,tue,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,student,single,high.school,no,yes,no,telephone,jun,tue,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,145,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,admin.,married,basic.9y,no,no,no,telephone,jun,tue,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,technician,married,university.degree,no,no,no,telephone,jun,tue,126,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,no,yes,no,telephone,jun,tue,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,196,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,divorced,high.school,no,unknown,unknown,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,married,basic.6y,unknown,yes,no,telephone,jun,tue,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,services,single,basic.4y,no,yes,no,telephone,jun,tue,355,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,services,divorced,high.school,no,no,no,telephone,jun,tue,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,professional.course,no,yes,no,telephone,jun,tue,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,divorced,basic.9y,no,no,yes,telephone,jun,tue,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,single,high.school,no,no,no,telephone,jun,tue,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,entrepreneur,married,basic.6y,no,yes,no,telephone,jun,tue,147,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,no,yes,no,telephone,jun,tue,296,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,70,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,527,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,156,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,services,married,high.school,no,yes,no,telephone,jun,tue,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,admin.,married,high.school,no,yes,yes,telephone,jun,tue,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,306,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,556,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +29,admin.,single,university.degree,no,no,no,telephone,jun,tue,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,admin.,married,university.degree,no,no,no,telephone,jun,tue,483,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,services,unknown,unknown,no,yes,no,telephone,jun,tue,382,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,881,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,404,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,121,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,tue,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,self-employed,married,basic.9y,no,no,no,telephone,jun,tue,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,university.degree,no,no,no,telephone,jun,tue,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,single,university.degree,unknown,no,no,telephone,jun,tue,99,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,self-employed,single,university.degree,no,no,no,telephone,jun,tue,139,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,services,married,high.school,unknown,no,yes,telephone,jun,tue,214,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,services,divorced,university.degree,no,no,no,telephone,jun,tue,198,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,unemployed,married,university.degree,no,no,no,telephone,jun,tue,132,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,self-employed,married,professional.course,no,no,no,telephone,jun,tue,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,married,high.school,unknown,no,no,telephone,jun,tue,491,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,university.degree,no,yes,yes,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,single,basic.4y,no,no,no,telephone,jun,tue,285,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,management,single,university.degree,no,no,no,telephone,jun,tue,255,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,housemaid,single,basic.4y,no,no,no,telephone,jun,tue,241,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,self-employed,married,professional.course,no,no,yes,telephone,jun,tue,705,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,technician,married,professional.course,unknown,no,no,telephone,jun,tue,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,single,high.school,unknown,yes,no,telephone,jun,tue,483,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,single,high.school,no,no,no,telephone,jun,tue,423,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,university.degree,no,yes,no,telephone,jun,tue,43,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,divorced,university.degree,no,unknown,unknown,telephone,jun,tue,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,technician,single,university.degree,no,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,tue,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,unemployed,single,high.school,unknown,no,no,telephone,jun,tue,34,11,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,388,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,university.degree,no,no,no,telephone,jun,tue,107,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,management,married,high.school,unknown,yes,no,telephone,jun,tue,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,technician,married,professional.course,no,yes,yes,telephone,jun,tue,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,technician,married,high.school,no,no,no,telephone,jun,tue,157,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,basic.6y,unknown,unknown,unknown,telephone,jun,tue,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,tue,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,single,basic.9y,no,no,no,telephone,jun,tue,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,technician,married,university.degree,no,yes,no,telephone,jun,tue,189,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,unemployed,married,high.school,no,yes,no,telephone,jun,tue,652,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,single,university.degree,no,no,no,telephone,jun,tue,206,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,tue,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,tue,30,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,management,married,university.degree,unknown,no,no,telephone,jun,tue,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,married,high.school,no,yes,no,telephone,jun,tue,174,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,management,married,university.degree,no,yes,no,telephone,jun,tue,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,123,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,tue,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,technician,single,university.degree,no,no,no,telephone,jun,tue,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,management,married,high.school,unknown,yes,no,telephone,jun,tue,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,retired,single,professional.course,no,no,yes,telephone,jun,tue,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,79,31,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,85,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,divorced,high.school,no,no,no,telephone,jun,tue,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,management,married,university.degree,no,yes,no,telephone,jun,tue,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,services,married,high.school,no,yes,no,telephone,jun,tue,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,married,university.degree,no,yes,yes,telephone,jun,tue,436,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,technician,married,university.degree,no,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,high.school,no,unknown,unknown,telephone,jun,tue,43,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,156,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,high.school,no,yes,no,telephone,jun,tue,171,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,services,married,high.school,unknown,yes,no,telephone,jun,tue,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,divorced,professional.course,no,no,yes,telephone,jun,tue,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,single,university.degree,no,yes,no,telephone,jun,tue,49,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,self-employed,married,basic.9y,no,unknown,unknown,telephone,jun,tue,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,entrepreneur,single,university.degree,no,no,no,telephone,jun,tue,259,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,tue,321,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,unknown,yes,yes,telephone,jun,tue,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,married,high.school,no,no,no,telephone,jun,tue,128,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,unknown,married,unknown,no,no,no,telephone,jun,tue,164,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,single,unknown,no,yes,no,telephone,jun,tue,445,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,tue,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,management,single,university.degree,no,yes,no,telephone,jun,tue,344,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,married,high.school,no,yes,no,telephone,jun,tue,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,tue,605,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,divorced,high.school,no,yes,no,telephone,jun,tue,226,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,single,university.degree,no,no,no,telephone,jun,tue,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,unemployed,divorced,professional.course,no,yes,no,telephone,jun,tue,353,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,34,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,married,professional.course,no,no,no,telephone,jun,tue,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,tue,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,university.degree,no,no,yes,telephone,jun,tue,346,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,781,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +44,admin.,divorced,high.school,unknown,no,no,telephone,jun,tue,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,management,married,university.degree,no,yes,no,telephone,jun,tue,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,services,married,high.school,unknown,yes,yes,telephone,jun,tue,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,student,single,unknown,no,yes,no,telephone,jun,tue,367,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,married,professional.course,no,yes,no,telephone,jun,tue,229,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,single,unknown,unknown,unknown,unknown,telephone,jun,tue,479,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,married,university.degree,no,no,yes,telephone,jun,tue,24,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,technician,married,professional.course,no,no,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,714,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,divorced,university.degree,unknown,yes,no,telephone,jun,tue,205,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,married,professional.course,no,no,no,telephone,jun,tue,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,housemaid,married,basic.6y,unknown,no,no,telephone,jun,tue,986,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,self-employed,married,unknown,unknown,yes,no,telephone,jun,tue,279,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,married,high.school,no,yes,no,telephone,jun,tue,166,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,92,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,retired,married,basic.4y,no,yes,no,telephone,jun,tue,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,management,divorced,university.degree,unknown,yes,yes,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,single,professional.course,no,no,no,telephone,jun,tue,19,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,admin.,married,university.degree,unknown,yes,no,telephone,jun,tue,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,tue,200,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,married,university.degree,no,no,no,telephone,jun,tue,176,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,admin.,single,university.degree,no,yes,no,telephone,jun,tue,1162,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,tue,1848,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +30,self-employed,single,university.degree,no,no,yes,telephone,jun,tue,74,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,management,married,university.degree,no,no,no,telephone,jun,tue,490,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +50,services,divorced,high.school,no,no,no,telephone,jun,tue,291,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,1051,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +27,housemaid,married,basic.9y,unknown,yes,no,telephone,jun,tue,614,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,services,single,high.school,unknown,yes,no,telephone,jun,tue,437,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +22,student,single,high.school,no,unknown,unknown,telephone,jun,tue,1199,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,high.school,unknown,yes,no,telephone,jun,tue,115,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,unemployed,single,high.school,unknown,yes,no,telephone,jun,tue,292,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,university.degree,no,yes,no,telephone,jun,tue,370,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,management,married,university.degree,unknown,yes,no,telephone,jun,tue,412,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,tue,108,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,single,high.school,no,no,yes,telephone,jun,tue,495,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,self-employed,married,professional.course,unknown,no,no,telephone,jun,tue,247,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,technician,married,professional.course,no,yes,no,telephone,jun,tue,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,services,married,high.school,unknown,yes,no,telephone,jun,tue,1345,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +55,retired,married,professional.course,no,no,yes,telephone,jun,tue,107,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,171,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,single,professional.course,no,yes,no,telephone,jun,tue,66,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,unemployed,divorced,university.degree,unknown,yes,no,telephone,jun,tue,447,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,technician,married,professional.course,no,yes,no,telephone,jun,tue,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,blue-collar,married,basic.9y,no,no,yes,telephone,jun,tue,668,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,admin.,divorced,high.school,no,yes,no,telephone,jun,tue,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,student,single,high.school,unknown,no,no,telephone,jun,tue,256,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,blue-collar,divorced,high.school,no,no,no,telephone,jun,tue,676,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +27,services,single,high.school,no,yes,no,telephone,jun,tue,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,technician,single,professional.course,no,no,yes,telephone,jun,tue,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,technician,married,basic.9y,unknown,yes,no,telephone,jun,tue,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,services,married,high.school,no,yes,no,telephone,jun,tue,153,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,tue,118,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,technician,married,high.school,no,no,no,telephone,jun,tue,572,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,single,unknown,unknown,no,no,telephone,jun,tue,681,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,technician,married,professional.course,no,yes,no,telephone,jun,tue,59,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,services,divorced,high.school,no,yes,no,telephone,jun,tue,42,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,self-employed,married,basic.9y,no,yes,yes,telephone,jun,tue,408,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,blue-collar,married,unknown,unknown,yes,yes,telephone,jun,tue,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,high.school,no,yes,yes,telephone,jun,tue,314,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,admin.,married,university.degree,no,no,yes,telephone,jun,tue,277,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,entrepreneur,single,university.degree,no,no,no,telephone,jun,tue,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,entrepreneur,married,university.degree,no,no,no,telephone,jun,tue,424,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,single,high.school,no,yes,yes,telephone,jun,tue,159,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,entrepreneur,married,professional.course,no,yes,no,telephone,jun,tue,775,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +57,self-employed,married,university.degree,unknown,no,no,telephone,jun,tue,187,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,professional.course,unknown,yes,yes,telephone,jun,tue,102,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,self-employed,single,university.degree,no,yes,no,telephone,jun,tue,2621,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +33,admin.,married,high.school,no,no,no,telephone,jun,tue,96,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,admin.,married,high.school,no,yes,no,telephone,jun,tue,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,services,married,high.school,no,no,no,telephone,jun,tue,200,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,services,married,professional.course,no,no,no,telephone,jun,tue,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +22,services,single,basic.4y,no,yes,no,telephone,jun,tue,249,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,admin.,married,high.school,unknown,yes,no,telephone,jun,tue,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,management,married,university.degree,no,yes,no,telephone,jun,tue,134,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,married,university.degree,no,yes,no,telephone,jun,tue,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,university.degree,no,yes,no,telephone,jun,tue,173,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,self-employed,married,unknown,no,yes,no,telephone,jun,tue,60,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,unemployed,married,professional.course,unknown,no,no,telephone,jun,tue,320,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,tue,854,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,services,married,high.school,no,no,no,telephone,jun,tue,236,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,technician,married,basic.9y,no,yes,no,telephone,jun,tue,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,admin.,married,high.school,no,yes,no,telephone,jun,tue,185,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,married,professional.course,no,yes,no,telephone,jun,tue,41,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,basic.6y,unknown,no,yes,telephone,jun,tue,39,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,services,married,basic.9y,no,no,no,telephone,jun,tue,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,married,university.degree,no,yes,no,telephone,jun,tue,411,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,retired,married,basic.4y,no,no,no,telephone,jun,tue,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,tue,209,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,admin.,married,high.school,no,yes,no,telephone,jun,tue,266,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,self-employed,married,university.degree,no,yes,no,telephone,jun,tue,134,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,tue,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,unknown,unknown,no,no,telephone,jun,tue,705,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,89,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,high.school,no,no,no,telephone,jun,tue,93,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,management,married,basic.4y,unknown,no,no,telephone,jun,tue,847,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,high.school,unknown,no,no,telephone,jun,tue,675,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,jun,tue,273,27,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,admin.,single,high.school,unknown,no,yes,telephone,jun,tue,162,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,213,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,tue,641,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jun,tue,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,student,married,high.school,no,no,yes,telephone,jun,tue,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,technician,single,high.school,no,no,no,telephone,jun,tue,187,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,332,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,entrepreneur,single,professional.course,no,no,no,telephone,jun,tue,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,services,single,high.school,no,no,no,telephone,jun,tue,406,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,university.degree,no,no,yes,telephone,jun,tue,544,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,self-employed,married,basic.9y,no,yes,no,telephone,jun,tue,363,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,tue,756,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,tue,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jun,tue,76,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,management,married,basic.6y,no,no,yes,telephone,jun,tue,271,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,admin.,single,professional.course,unknown,no,no,telephone,jun,tue,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,university.degree,unknown,no,no,telephone,jun,tue,338,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,single,university.degree,no,no,no,telephone,jun,tue,70,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jun,tue,198,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,high.school,no,yes,no,telephone,jun,tue,398,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,admin.,married,high.school,unknown,no,no,telephone,jun,tue,956,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,technician,married,professional.course,unknown,yes,yes,telephone,jun,tue,76,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,tue,264,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jun,tue,979,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,married,basic.4y,no,no,no,telephone,jun,tue,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,entrepreneur,married,high.school,no,no,no,telephone,jun,tue,135,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,single,high.school,no,no,no,telephone,jun,tue,420,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,high.school,unknown,no,no,telephone,jun,tue,548,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,unemployed,married,high.school,no,yes,no,telephone,jun,tue,235,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,admin.,married,unknown,no,yes,no,telephone,jun,tue,87,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,169,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,management,married,high.school,no,yes,yes,telephone,jun,tue,343,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,unemployed,married,professional.course,no,yes,no,telephone,jun,tue,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,admin.,single,basic.4y,no,yes,yes,telephone,jun,tue,68,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,services,married,high.school,no,no,no,telephone,jun,tue,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,management,married,basic.9y,no,yes,no,telephone,jun,tue,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,services,single,high.school,no,no,no,telephone,jun,tue,363,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,tue,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,tue,311,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,unknown,married,unknown,unknown,yes,yes,telephone,jun,tue,138,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,entrepreneur,married,basic.4y,unknown,no,no,telephone,jun,tue,48,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,high.school,unknown,no,no,telephone,jun,tue,390,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,management,married,high.school,unknown,no,no,telephone,jun,tue,61,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,tue,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,unemployed,divorced,basic.4y,no,yes,yes,telephone,jun,tue,637,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,university.degree,no,yes,no,telephone,jun,tue,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,admin.,single,university.degree,no,yes,no,telephone,jun,tue,128,21,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,married,university.degree,unknown,no,no,telephone,jun,tue,130,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jun,tue,193,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,divorced,professional.course,no,yes,no,telephone,jun,tue,269,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,single,high.school,no,yes,no,telephone,jun,tue,150,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,admin.,divorced,high.school,no,no,no,telephone,jun,tue,132,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,tue,1208,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,management,married,university.degree,no,yes,no,telephone,jun,tue,228,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,technician,divorced,university.degree,no,no,yes,telephone,jun,tue,585,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,tue,334,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,university.degree,no,no,no,telephone,jun,tue,229,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,housemaid,married,university.degree,no,yes,no,telephone,jun,tue,441,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,divorced,basic.6y,no,yes,no,telephone,jun,wed,60,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +59,admin.,married,university.degree,no,yes,no,telephone,jun,wed,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,self-employed,divorced,professional.course,unknown,yes,no,telephone,jun,wed,235,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +58,blue-collar,married,high.school,no,no,no,telephone,jun,wed,270,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,192,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +54,blue-collar,married,high.school,no,yes,yes,telephone,jun,wed,26,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,wed,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,61,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,services,married,high.school,no,no,no,telephone,jun,wed,386,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,divorced,high.school,no,yes,no,telephone,jun,wed,54,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,admin.,married,university.degree,unknown,yes,no,telephone,jun,wed,272,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,technician,single,professional.course,no,unknown,unknown,telephone,jun,wed,35,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,admin.,single,high.school,no,no,no,telephone,jun,wed,284,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +46,technician,divorced,professional.course,no,no,no,telephone,jun,wed,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,housemaid,married,unknown,unknown,yes,no,telephone,jun,wed,311,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,245,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.9y,no,no,yes,telephone,jun,wed,151,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +50,services,married,high.school,no,yes,yes,telephone,jun,wed,64,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,services,single,high.school,no,yes,no,telephone,jun,wed,205,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,technician,married,university.degree,no,yes,no,telephone,jun,wed,250,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +30,management,single,university.degree,no,yes,no,telephone,jun,wed,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,technician,married,high.school,no,no,yes,telephone,jun,wed,137,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,admin.,married,high.school,unknown,no,no,telephone,jun,wed,30,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,wed,72,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,no,telephone,jun,wed,284,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +24,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,126,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,blue-collar,divorced,basic.4y,no,no,no,telephone,jun,wed,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,unemployed,divorced,basic.4y,no,yes,no,telephone,jun,wed,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,wed,262,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +30,student,single,university.degree,no,yes,no,telephone,jun,wed,1062,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +46,unemployed,divorced,basic.9y,no,no,no,telephone,jun,wed,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,admin.,single,high.school,no,no,no,telephone,jun,wed,295,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,blue-collar,single,unknown,no,yes,yes,telephone,jun,wed,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +30,admin.,married,university.degree,no,no,yes,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,18,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,350,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +57,retired,married,unknown,unknown,yes,no,telephone,jun,wed,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,blue-collar,single,high.school,no,yes,no,telephone,jun,wed,835,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +30,services,married,high.school,no,yes,no,telephone,jun,wed,421,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,unknown,unknown,telephone,jun,wed,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,services,married,professional.course,no,unknown,unknown,telephone,jun,wed,164,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,entrepreneur,married,unknown,no,no,no,telephone,jun,wed,89,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,technician,single,high.school,no,no,no,telephone,jun,wed,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +37,management,married,university.degree,no,yes,no,telephone,jun,wed,744,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,503,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +48,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,321,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,admin.,divorced,basic.9y,unknown,yes,no,telephone,jun,wed,24,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,wed,102,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,technician,married,basic.6y,no,yes,no,telephone,jun,wed,261,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,admin.,single,high.school,unknown,no,no,telephone,jun,wed,213,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,technician,married,professional.course,no,no,no,telephone,jun,wed,371,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +38,admin.,single,university.degree,no,yes,no,telephone,jun,wed,190,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +30,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,114,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +54,housemaid,married,basic.4y,unknown,no,no,telephone,jun,wed,221,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,admin.,single,basic.9y,unknown,yes,no,telephone,jun,wed,247,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,no,no,telephone,jun,wed,680,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,services,single,professional.course,no,no,no,telephone,jun,wed,185,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,unemployed,divorced,university.degree,unknown,yes,yes,telephone,jun,wed,110,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,wed,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,services,married,high.school,no,unknown,unknown,telephone,jun,wed,347,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,technician,single,professional.course,no,no,no,telephone,jun,wed,394,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,blue-collar,single,basic.9y,unknown,yes,no,telephone,jun,wed,573,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,technician,single,university.degree,unknown,no,no,telephone,jun,wed,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,services,married,basic.9y,no,no,no,telephone,jun,wed,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +27,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,services,married,high.school,no,yes,no,telephone,jun,wed,417,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,technician,married,professional.course,no,no,no,telephone,jun,wed,1528,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +56,management,married,university.degree,no,no,no,telephone,jun,wed,154,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,services,single,basic.6y,no,no,no,telephone,jun,wed,533,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,wed,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,yes,telephone,jun,wed,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,services,married,high.school,unknown,yes,yes,telephone,jun,wed,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +56,retired,married,high.school,unknown,no,no,telephone,jun,wed,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,services,married,high.school,unknown,no,no,telephone,jun,wed,311,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,admin.,single,high.school,no,no,yes,telephone,jun,wed,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,59,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,services,married,high.school,unknown,yes,no,telephone,jun,wed,551,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +56,retired,married,high.school,unknown,yes,no,telephone,jun,wed,367,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,blue-collar,married,high.school,no,no,no,telephone,jun,wed,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,self-employed,married,professional.course,unknown,no,yes,telephone,jun,wed,56,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,173,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,admin.,married,high.school,no,no,yes,telephone,jun,wed,97,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,admin.,divorced,high.school,no,yes,no,telephone,jun,wed,199,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +23,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,wed,15,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,services,single,high.school,no,no,no,telephone,jun,wed,142,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,wed,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,technician,married,professional.course,no,no,no,telephone,jun,wed,417,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,192,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,services,married,high.school,no,yes,no,telephone,jun,wed,443,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,wed,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,self-employed,married,university.degree,unknown,yes,yes,telephone,jun,wed,1487,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +54,retired,single,basic.4y,unknown,no,no,telephone,jun,wed,68,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,admin.,single,high.school,no,yes,no,telephone,jun,wed,54,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,married,high.school,no,yes,no,telephone,jun,wed,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,married,high.school,no,yes,no,telephone,jun,wed,335,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,admin.,divorced,university.degree,no,no,no,telephone,jun,wed,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,entrepreneur,single,professional.course,no,no,no,telephone,jun,wed,236,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +50,management,married,university.degree,no,yes,no,telephone,jun,wed,300,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,163,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,admin.,married,high.school,no,yes,no,telephone,jun,wed,156,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,admin.,married,high.school,no,no,no,telephone,jun,wed,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,services,married,high.school,unknown,no,yes,telephone,jun,wed,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,187,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.6y,no,yes,no,telephone,jun,wed,1540,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,310,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,wed,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,admin.,single,high.school,no,no,yes,telephone,jun,wed,129,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,married,high.school,no,yes,yes,telephone,jun,wed,208,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,services,single,high.school,no,no,no,telephone,jun,wed,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,housemaid,divorced,basic.4y,no,no,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,1218,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,362,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,management,married,university.degree,no,no,no,telephone,jun,wed,973,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +54,blue-collar,divorced,basic.4y,unknown,no,yes,telephone,jun,wed,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,admin.,married,high.school,no,yes,no,telephone,jun,wed,132,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,blue-collar,married,professional.course,unknown,no,no,telephone,jun,wed,1009,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +27,technician,married,university.degree,no,yes,yes,telephone,jun,wed,55,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,admin.,married,high.school,no,yes,no,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,jun,wed,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jun,wed,355,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,management,single,basic.9y,no,no,no,telephone,jun,wed,466,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,94,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,services,married,high.school,no,yes,no,telephone,jun,wed,227,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,technician,married,professional.course,unknown,yes,yes,telephone,jun,wed,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,387,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,admin.,married,university.degree,no,yes,no,telephone,jun,wed,379,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,technician,married,professional.course,unknown,no,no,telephone,jun,wed,401,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,management,single,basic.4y,no,no,no,telephone,jun,wed,205,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,management,married,university.degree,no,no,no,telephone,jun,wed,332,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,management,married,university.degree,unknown,yes,yes,telephone,jun,wed,567,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,200,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +24,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,537,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +24,blue-collar,single,basic.4y,no,no,no,telephone,jun,wed,476,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,blue-collar,divorced,unknown,unknown,yes,no,telephone,jun,wed,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +20,services,single,high.school,no,yes,no,telephone,jun,wed,290,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,self-employed,married,professional.course,no,no,no,telephone,jun,wed,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,wed,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,self-employed,married,professional.course,no,no,no,telephone,jun,wed,632,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,316,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,wed,440,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,telephone,jun,wed,52,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,single,university.degree,unknown,yes,no,telephone,jun,wed,59,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,243,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +37,technician,single,university.degree,no,no,no,telephone,jun,wed,190,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,management,single,basic.4y,no,yes,no,telephone,jun,wed,58,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,telephone,jun,wed,356,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,wed,320,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,wed,221,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +24,services,single,high.school,no,yes,no,telephone,jun,wed,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,345,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +40,admin.,married,university.degree,no,no,no,telephone,jun,wed,248,29,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,wed,324,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,entrepreneur,single,professional.course,no,no,no,telephone,jun,wed,609,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +58,management,unknown,university.degree,no,no,no,telephone,jun,wed,16,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,admin.,married,university.degree,no,no,no,telephone,jun,wed,392,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +57,unemployed,married,basic.9y,no,yes,no,telephone,jun,wed,422,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +57,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,101,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,services,married,basic.4y,no,unknown,unknown,telephone,jun,wed,577,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,319,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +56,technician,single,university.degree,no,yes,no,telephone,jun,wed,308,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,services,single,high.school,no,yes,no,telephone,jun,wed,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,technician,married,professional.course,no,yes,no,telephone,jun,wed,149,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,housemaid,married,professional.course,no,yes,no,telephone,jun,wed,36,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,services,single,high.school,no,yes,no,telephone,jun,wed,324,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,married,high.school,unknown,yes,no,telephone,jun,wed,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,student,single,university.degree,no,yes,no,telephone,jun,wed,209,12,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,technician,single,high.school,no,unknown,unknown,telephone,jun,wed,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,services,married,high.school,no,unknown,unknown,telephone,jun,wed,707,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +31,entrepreneur,divorced,high.school,no,yes,no,telephone,jun,wed,119,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,management,married,university.degree,no,yes,no,telephone,jun,wed,695,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +32,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,wed,13,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,technician,single,professional.course,no,yes,no,telephone,jun,wed,1255,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +29,technician,divorced,professional.course,no,yes,no,telephone,jun,wed,11,19,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,management,married,basic.9y,no,no,no,telephone,jun,wed,255,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,management,married,university.degree,no,no,no,telephone,jun,wed,50,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +50,unemployed,married,high.school,no,no,no,telephone,jun,wed,373,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +34,blue-collar,married,high.school,no,no,no,telephone,jun,wed,18,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,blue-collar,single,high.school,no,yes,no,telephone,jun,wed,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,entrepreneur,married,professional.course,no,no,yes,telephone,jun,wed,307,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,retired,married,professional.course,unknown,yes,no,telephone,jun,wed,142,17,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +48,technician,divorced,university.degree,no,yes,no,telephone,jun,wed,78,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,self-employed,married,basic.9y,no,yes,no,telephone,jun,wed,376,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +27,management,single,high.school,no,unknown,unknown,telephone,jun,wed,155,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +32,technician,married,professional.course,no,no,no,telephone,jun,wed,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +27,admin.,single,university.degree,no,no,no,telephone,jun,wed,443,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,802,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +54,unemployed,married,high.school,no,no,no,telephone,jun,wed,36,16,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,blue-collar,divorced,high.school,no,no,no,telephone,jun,wed,18,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +55,management,single,basic.4y,no,yes,no,telephone,jun,wed,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,359,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,blue-collar,married,high.school,unknown,no,no,telephone,jun,wed,257,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +56,retired,married,basic.4y,no,yes,no,telephone,jun,wed,19,30,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,services,married,basic.9y,no,yes,no,telephone,jun,wed,404,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,services,married,high.school,unknown,yes,yes,telephone,jun,wed,146,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,234,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +40,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,13,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,services,single,high.school,no,no,no,telephone,jun,wed,297,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +46,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,wed,156,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +53,management,divorced,university.degree,no,unknown,unknown,telephone,jun,wed,636,12,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,admin.,married,basic.6y,no,yes,no,telephone,jun,wed,300,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +59,retired,married,basic.9y,no,yes,no,telephone,jun,wed,2093,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +24,technician,single,professional.course,no,yes,no,telephone,jun,wed,37,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,admin.,single,high.school,no,no,no,telephone,jun,wed,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,793,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,704,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +28,technician,single,professional.course,no,yes,no,telephone,jun,wed,1195,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,61,23,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,admin.,married,basic.9y,no,yes,no,telephone,jun,wed,96,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,management,married,unknown,unknown,no,no,telephone,jun,wed,1066,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +35,admin.,divorced,university.degree,no,yes,no,telephone,jun,wed,399,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,entrepreneur,married,professional.course,unknown,no,yes,telephone,jun,wed,140,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +25,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,121,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,technician,single,professional.course,no,no,no,telephone,jun,wed,84,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,wed,87,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,entrepreneur,married,professional.course,no,no,no,telephone,jun,wed,108,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,management,married,high.school,no,no,no,telephone,jun,wed,48,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,technician,married,professional.course,no,no,no,telephone,jun,wed,129,10,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +50,management,married,university.degree,unknown,no,no,telephone,jun,wed,242,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,blue-collar,married,professional.course,no,no,no,telephone,jun,wed,230,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,technician,divorced,professional.course,no,yes,no,telephone,jun,wed,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,blue-collar,married,unknown,no,yes,yes,telephone,jun,wed,130,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +38,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,25,41,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,services,married,high.school,unknown,yes,yes,telephone,jun,wed,57,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,housemaid,married,high.school,no,unknown,unknown,telephone,jun,wed,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,wed,77,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,wed,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,wed,313,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,management,divorced,university.degree,no,no,no,telephone,jun,wed,114,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +39,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,wed,119,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,admin.,single,university.degree,no,no,no,telephone,jun,wed,305,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +31,services,single,high.school,no,no,no,telephone,jun,wed,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,429,13,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,blue-collar,married,high.school,unknown,yes,no,telephone,jun,wed,51,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,management,married,high.school,no,no,no,telephone,jun,wed,99,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,management,married,university.degree,no,no,no,telephone,jun,wed,771,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +57,blue-collar,divorced,unknown,unknown,unknown,unknown,telephone,jun,wed,41,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,378,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,unknown,married,basic.6y,no,no,no,telephone,jun,wed,152,9,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +44,technician,married,high.school,no,yes,yes,telephone,jun,wed,491,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +57,retired,divorced,professional.course,no,no,no,telephone,jun,wed,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,services,married,high.school,unknown,no,no,telephone,jun,wed,90,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,admin.,married,high.school,no,yes,no,telephone,jun,wed,135,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +36,blue-collar,married,high.school,no,no,no,telephone,jun,wed,626,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +51,management,married,university.degree,no,no,no,telephone,jun,wed,16,17,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +45,admin.,married,high.school,no,no,no,telephone,jun,wed,125,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +30,entrepreneur,married,high.school,no,unknown,unknown,telephone,jun,wed,120,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,wed,16,14,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +43,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,354,21,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,507,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +50,technician,married,professional.course,unknown,yes,no,telephone,jun,wed,18,20,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +41,admin.,single,high.school,unknown,yes,no,telephone,jun,wed,90,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,wed,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,blue-collar,married,basic.6y,unknown,unknown,unknown,telephone,jun,wed,15,8,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,wed,23,7,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,self-employed,married,university.degree,no,no,no,telephone,jun,wed,113,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jun,wed,249,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,445,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +42,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,82,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,blue-collar,married,basic.6y,no,no,no,telephone,jun,wed,1060,5,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +54,management,married,basic.6y,no,no,no,telephone,jun,wed,255,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +35,admin.,married,high.school,no,yes,no,telephone,jun,wed,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +60,admin.,married,university.degree,unknown,no,no,telephone,jun,wed,521,11,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +47,services,married,high.school,unknown,yes,yes,telephone,jun,wed,161,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +60,retired,married,high.school,no,yes,no,telephone,jun,wed,340,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +29,management,single,university.degree,unknown,yes,no,telephone,jun,wed,40,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +49,technician,married,high.school,no,no,no,telephone,jun,wed,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +56,retired,married,basic.4y,no,no,no,telephone,jun,wed,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +33,admin.,married,high.school,no,no,no,telephone,jun,wed,43,4,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +28,student,single,high.school,no,yes,yes,telephone,jun,wed,604,6,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,no +60,admin.,married,university.degree,no,no,no,telephone,jun,wed,1574,3,999,0,nonexistent,1.4,94.465,-41.8,4.962,5228.1,yes +34,admin.,married,high.school,no,no,no,telephone,jun,thu,29,11,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,102,13,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,management,single,university.degree,no,yes,no,telephone,jun,thu,160,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,single,university.degree,no,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,entrepreneur,married,university.degree,no,yes,yes,telephone,jun,thu,82,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,admin.,single,professional.course,no,no,no,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,basic.9y,no,no,no,telephone,jun,thu,185,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,575,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,high.school,unknown,no,no,telephone,jun,thu,675,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,single,university.degree,no,yes,no,telephone,jun,thu,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,services,married,high.school,unknown,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,admin.,single,university.degree,no,no,no,telephone,jun,thu,394,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,technician,single,professional.course,unknown,no,yes,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,student,single,basic.9y,no,yes,no,telephone,jun,thu,176,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,technician,married,university.degree,no,no,no,telephone,jun,thu,37,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,266,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,student,single,university.degree,unknown,no,no,telephone,jun,thu,618,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +59,retired,married,basic.9y,no,no,no,telephone,jun,thu,297,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,management,divorced,university.degree,no,no,no,telephone,jun,thu,593,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,self-employed,married,high.school,no,no,no,telephone,jun,thu,340,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,108,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,married,professional.course,no,unknown,unknown,telephone,jun,thu,638,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,divorced,basic.6y,no,unknown,unknown,telephone,jun,thu,45,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,admin.,married,university.degree,no,unknown,unknown,telephone,jun,thu,240,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,70,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,technician,married,professional.course,unknown,no,no,telephone,jun,thu,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,services,married,high.school,unknown,no,no,telephone,jun,thu,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,technician,single,professional.course,unknown,no,no,telephone,jun,thu,820,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,divorced,high.school,no,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,348,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,unknown,no,no,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,professional.course,unknown,no,no,telephone,jun,thu,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,573,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,management,divorced,university.degree,unknown,yes,no,telephone,jun,thu,209,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,self-employed,single,university.degree,no,no,no,telephone,jun,thu,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,34,31,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,self-employed,divorced,professional.course,no,no,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,divorced,high.school,no,yes,no,telephone,jun,thu,1224,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +46,blue-collar,married,basic.6y,no,no,no,telephone,jun,thu,144,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,services,married,high.school,unknown,yes,no,telephone,jun,thu,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,self-employed,divorced,professional.course,no,yes,no,telephone,jun,thu,430,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,housemaid,single,high.school,unknown,no,no,telephone,jun,thu,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,services,married,high.school,no,yes,no,telephone,jun,thu,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,services,divorced,basic.9y,unknown,no,no,telephone,jun,thu,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,203,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,married,professional.course,no,no,no,telephone,jun,thu,252,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,unemployed,married,high.school,unknown,yes,yes,telephone,jun,thu,188,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,services,married,high.school,no,no,no,telephone,jun,thu,395,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,retired,divorced,basic.4y,no,no,no,telephone,jun,thu,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,services,divorced,basic.9y,no,no,no,telephone,jun,thu,147,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,thu,127,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,technician,married,professional.course,no,yes,no,telephone,jun,thu,22,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,unemployed,married,professional.course,no,yes,no,telephone,jun,thu,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,married,high.school,no,no,no,telephone,jun,thu,677,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,management,divorced,university.degree,no,no,no,telephone,jun,thu,167,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,married,university.degree,no,no,yes,telephone,jun,thu,105,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,services,married,basic.9y,no,no,no,telephone,jun,thu,57,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,single,high.school,no,no,no,telephone,jun,thu,220,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,self-employed,married,basic.4y,unknown,no,no,telephone,jun,thu,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,admin.,single,university.degree,no,yes,no,telephone,jun,thu,1082,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,technician,single,professional.course,no,no,no,telephone,jun,thu,248,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,self-employed,single,high.school,no,no,no,telephone,jun,thu,11,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,university.degree,no,no,no,telephone,jun,thu,161,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,services,married,high.school,no,no,no,telephone,jun,thu,653,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,high.school,no,no,no,telephone,jun,thu,193,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,management,married,basic.4y,no,no,yes,telephone,jun,thu,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,married,high.school,no,no,yes,telephone,jun,thu,291,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,admin.,single,high.school,no,no,no,telephone,jun,thu,223,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,thu,96,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,admin.,married,basic.4y,no,no,no,telephone,jun,thu,477,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,retired,married,basic.4y,unknown,no,no,telephone,jun,thu,327,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,admin.,single,high.school,no,no,no,telephone,jun,thu,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,technician,married,professional.course,no,no,no,telephone,jun,thu,159,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,admin.,married,high.school,no,yes,no,telephone,jun,thu,178,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,152,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,admin.,married,professional.course,unknown,no,no,telephone,jun,thu,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,professional.course,no,no,no,telephone,jun,thu,635,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,services,divorced,basic.6y,unknown,yes,no,telephone,jun,thu,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,admin.,married,university.degree,no,no,no,telephone,jun,thu,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,high.school,no,no,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,admin.,married,basic.9y,no,no,no,telephone,jun,thu,521,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,married,professional.course,no,yes,no,telephone,jun,thu,201,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,admin.,married,university.degree,no,yes,yes,telephone,jun,thu,142,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,blue-collar,single,basic.6y,no,unknown,unknown,telephone,jun,thu,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,married,high.school,no,no,no,telephone,jun,thu,66,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,512,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +45,housemaid,married,professional.course,unknown,yes,no,telephone,jun,thu,810,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,services,married,basic.6y,no,yes,yes,telephone,jun,thu,138,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,single,professional.course,no,no,no,telephone,jun,thu,574,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,unknown,unknown,no,no,telephone,jun,thu,44,6,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,married,university.degree,no,no,no,telephone,jun,thu,145,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,196,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,single,basic.4y,unknown,yes,yes,telephone,jun,thu,270,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,married,university.degree,unknown,no,no,telephone,jun,thu,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,management,married,basic.4y,unknown,yes,no,telephone,jun,thu,26,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,335,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,thu,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,330,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,entrepreneur,married,university.degree,unknown,unknown,unknown,telephone,jun,thu,91,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +54,admin.,married,high.school,no,no,no,telephone,jun,thu,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,entrepreneur,married,basic.9y,no,no,no,telephone,jun,thu,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,management,divorced,university.degree,no,no,no,telephone,jun,thu,221,12,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,services,married,unknown,no,yes,no,telephone,jun,thu,53,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,technician,single,university.degree,no,no,no,telephone,jun,thu,90,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,unknown,married,unknown,no,no,no,telephone,jun,thu,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,services,married,university.degree,no,no,no,telephone,jun,thu,254,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,263,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,149,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,technician,married,professional.course,no,no,no,telephone,jun,thu,77,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,services,married,high.school,no,no,yes,telephone,jun,thu,374,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +41,admin.,divorced,high.school,no,unknown,unknown,telephone,jun,thu,289,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,thu,143,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,unknown,married,unknown,no,no,yes,telephone,jun,thu,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,unemployed,married,high.school,unknown,yes,no,telephone,jun,thu,106,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,single,high.school,no,yes,no,telephone,jun,thu,191,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,divorced,high.school,no,no,no,telephone,jun,thu,370,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,487,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,services,married,high.school,unknown,no,no,telephone,jun,thu,84,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,blue-collar,married,unknown,unknown,yes,no,telephone,jun,thu,118,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,admin.,married,university.degree,no,no,yes,telephone,jun,thu,253,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,786,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +44,blue-collar,married,unknown,no,no,no,telephone,jun,thu,239,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,management,married,university.degree,no,no,no,telephone,jun,thu,136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,admin.,married,high.school,no,no,no,telephone,jun,thu,162,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,management,married,university.degree,no,no,yes,telephone,jun,thu,219,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,unemployed,married,professional.course,unknown,yes,yes,telephone,jun,thu,135,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,married,high.school,no,no,no,telephone,jun,thu,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,divorced,professional.course,no,no,no,telephone,jun,thu,252,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,retired,divorced,professional.course,no,no,no,telephone,jun,thu,416,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,unemployed,married,professional.course,no,yes,no,telephone,jun,thu,52,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,technician,single,high.school,no,no,no,telephone,jun,thu,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,217,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,student,married,high.school,unknown,no,no,telephone,jun,thu,145,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +24,technician,married,professional.course,no,no,no,telephone,jun,thu,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,services,married,high.school,unknown,yes,yes,telephone,jun,thu,61,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,blue-collar,single,unknown,no,no,yes,telephone,jun,thu,262,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,technician,married,high.school,no,no,no,telephone,jun,thu,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,admin.,single,high.school,no,unknown,unknown,telephone,jun,thu,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,blue-collar,single,high.school,no,yes,no,telephone,jun,thu,1318,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +23,services,single,high.school,no,no,no,telephone,jun,thu,197,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,management,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,282,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,922,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +45,technician,divorced,university.degree,no,yes,yes,telephone,jun,thu,163,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,retired,divorced,basic.4y,unknown,yes,yes,telephone,jun,thu,26,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,single,high.school,no,yes,no,telephone,jun,thu,63,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,married,basic.9y,unknown,yes,no,telephone,jun,thu,176,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,high.school,no,no,no,telephone,jun,thu,605,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,high.school,no,yes,no,telephone,jun,thu,1411,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,services,divorced,high.school,no,yes,no,telephone,jun,thu,83,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,services,divorced,high.school,no,unknown,unknown,telephone,jun,thu,297,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,high.school,no,yes,yes,telephone,jun,thu,2028,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +54,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,thu,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,thu,453,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,high.school,no,no,no,telephone,jun,thu,419,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,technician,married,university.degree,no,no,no,telephone,jun,thu,498,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,admin.,married,university.degree,no,no,no,telephone,jun,thu,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,management,married,university.degree,no,no,no,telephone,jun,thu,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,services,married,high.school,no,yes,yes,telephone,jun,thu,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +23,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,management,single,high.school,no,unknown,unknown,telephone,jun,thu,184,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,unemployed,married,basic.4y,unknown,no,no,telephone,jun,thu,55,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,admin.,married,high.school,no,no,no,telephone,jun,thu,952,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +36,blue-collar,single,basic.9y,no,no,yes,telephone,jun,thu,207,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,admin.,married,basic.9y,no,no,no,telephone,jun,thu,238,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,318,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,232,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,retired,married,basic.4y,unknown,no,no,telephone,jun,thu,76,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,married,high.school,no,no,no,telephone,jun,thu,153,14,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +58,technician,married,high.school,unknown,no,no,telephone,jun,thu,525,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,97,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,management,married,university.degree,no,no,no,telephone,jun,thu,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,thu,142,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,thu,290,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,thu,280,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,single,basic.9y,no,no,no,telephone,jun,thu,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +59,retired,married,unknown,unknown,yes,no,telephone,jun,thu,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,retired,single,basic.4y,no,yes,no,telephone,jun,thu,107,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,management,married,professional.course,unknown,yes,yes,telephone,jun,thu,368,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,thu,1136,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +23,blue-collar,single,basic.9y,no,no,no,telephone,jun,thu,359,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,self-employed,single,basic.9y,unknown,no,no,telephone,jun,thu,64,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,technician,single,university.degree,no,no,no,telephone,jun,thu,73,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +51,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,16,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,thu,409,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,technician,married,university.degree,no,no,no,telephone,jun,thu,65,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,thu,69,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,services,married,basic.6y,no,no,no,telephone,jun,thu,722,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,entrepreneur,married,high.school,no,yes,no,telephone,jun,thu,133,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,management,married,university.degree,no,no,no,telephone,jun,thu,288,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,married,basic.9y,no,yes,no,telephone,jun,thu,120,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,entrepreneur,married,basic.4y,no,no,no,telephone,jun,thu,43,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,single,basic.4y,unknown,yes,no,telephone,jun,thu,78,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,technician,married,professional.course,unknown,no,no,telephone,jun,thu,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,admin.,married,university.degree,no,no,no,telephone,jun,thu,30,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,10,16,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,retired,married,professional.course,no,yes,no,telephone,jun,thu,219,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,164,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jun,thu,148,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,professional.course,no,no,no,telephone,jun,thu,11,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.9y,no,yes,no,telephone,jun,thu,130,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,technician,married,unknown,unknown,no,no,telephone,jun,thu,208,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,140,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,single,professional.course,no,no,no,telephone,jun,thu,559,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,services,married,high.school,no,no,no,telephone,jun,thu,224,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,thu,93,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,self-employed,divorced,basic.9y,no,yes,no,telephone,jun,thu,177,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,management,married,high.school,no,yes,no,telephone,jun,thu,405,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,management,single,basic.9y,no,yes,no,telephone,jun,thu,69,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,single,high.school,no,no,no,telephone,jun,thu,1017,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,technician,single,professional.course,no,no,yes,telephone,jun,thu,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,unknown,single,high.school,unknown,no,no,telephone,jun,thu,237,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +45,management,single,basic.9y,no,yes,no,telephone,jun,thu,237,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,thu,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,services,married,high.school,no,no,yes,telephone,jun,thu,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,management,divorced,university.degree,no,no,no,telephone,jun,thu,163,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +53,technician,married,professional.course,no,no,no,telephone,jun,thu,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +49,admin.,married,high.school,unknown,yes,no,telephone,jun,thu,216,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,technician,married,basic.6y,no,no,no,telephone,jun,thu,399,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,blue-collar,married,high.school,unknown,yes,no,telephone,jun,thu,234,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,telephone,jun,thu,184,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +35,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,housemaid,married,basic.4y,no,no,no,telephone,jun,thu,500,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +50,housemaid,married,unknown,no,yes,no,telephone,jun,thu,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,management,married,university.degree,no,yes,no,telephone,jun,thu,89,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,retired,married,basic.4y,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jun,thu,296,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,thu,563,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,146,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,management,married,university.degree,no,no,no,telephone,jun,thu,92,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,blue-collar,divorced,basic.9y,no,no,no,telephone,jun,thu,149,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +60,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,thu,80,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +40,blue-collar,married,basic.4y,no,no,no,telephone,jun,thu,354,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,telephone,jun,thu,106,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +42,services,divorced,high.school,unknown,no,no,telephone,jun,thu,111,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,services,married,high.school,unknown,no,no,telephone,jun,thu,136,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,blue-collar,married,basic.6y,no,yes,yes,telephone,jun,thu,549,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +34,housemaid,single,university.degree,no,no,no,telephone,jun,thu,267,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +48,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,thu,461,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,thu,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,admin.,married,high.school,no,yes,no,telephone,jun,thu,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,unemployed,married,university.degree,unknown,no,no,telephone,jun,thu,21,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +43,technician,single,professional.course,no,unknown,unknown,telephone,jun,thu,104,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +29,admin.,single,high.school,no,yes,yes,telephone,jun,thu,15,10,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +37,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jun,thu,211,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,self-employed,married,basic.4y,unknown,no,yes,telephone,jun,thu,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,admin.,married,high.school,unknown,no,no,telephone,jun,thu,18,18,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +28,technician,married,basic.9y,no,yes,no,telephone,jun,thu,225,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,married,high.school,unknown,no,yes,telephone,jun,thu,59,8,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +47,services,single,basic.9y,no,unknown,unknown,telephone,jun,thu,835,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +37,technician,married,professional.course,no,yes,no,telephone,jun,thu,683,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +57,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +55,retired,married,university.degree,unknown,yes,no,telephone,jun,thu,1012,1,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,yes +39,technician,married,professional.course,no,yes,no,telephone,jun,thu,233,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +38,technician,married,basic.9y,no,no,no,telephone,jun,thu,129,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +56,admin.,divorced,unknown,unknown,no,no,telephone,jun,thu,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,services,divorced,high.school,no,no,no,telephone,jun,thu,339,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +52,unemployed,married,high.school,no,unknown,unknown,telephone,jun,thu,90,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +39,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jun,thu,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +32,unknown,unknown,university.degree,no,no,no,telephone,jun,thu,36,7,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +25,blue-collar,single,basic.9y,no,yes,yes,telephone,jun,thu,112,4,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +31,technician,married,high.school,no,no,no,telephone,jun,thu,9,28,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,technician,divorced,professional.course,no,no,no,telephone,jun,thu,26,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,admin.,single,university.degree,no,yes,no,telephone,jun,thu,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +26,technician,single,university.degree,no,no,no,telephone,jun,thu,2635,3,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +46,admin.,divorced,university.degree,no,yes,no,telephone,jun,thu,138,9,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +30,technician,married,university.degree,unknown,yes,no,telephone,jun,thu,49,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +36,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jun,thu,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +33,services,single,high.school,no,yes,no,telephone,jun,thu,326,5,999,0,nonexistent,1.4,94.465,-41.8,4.961,5228.1,no +57,services,divorced,high.school,unknown,no,no,telephone,jun,fri,53,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,fri,179,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,262,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,housemaid,married,high.school,no,yes,yes,telephone,jun,fri,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,193,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,admin.,divorced,university.degree,unknown,no,no,telephone,jun,fri,333,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,241,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,76,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,married,professional.course,no,no,no,telephone,jun,fri,37,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,technician,married,professional.course,no,yes,no,telephone,jun,fri,189,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,management,married,basic.9y,no,yes,no,telephone,jun,fri,89,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,112,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,admin.,married,high.school,no,no,no,telephone,jun,fri,489,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,141,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,services,married,high.school,no,yes,no,telephone,jun,fri,241,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,divorced,basic.4y,no,yes,no,telephone,jun,fri,60,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,technician,married,basic.6y,no,yes,no,telephone,jun,fri,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,self-employed,married,basic.6y,unknown,no,no,telephone,jun,fri,24,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,housemaid,divorced,basic.4y,no,yes,yes,telephone,jun,fri,62,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,43,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,retired,married,basic.4y,unknown,no,no,telephone,jun,fri,75,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,high.school,unknown,yes,no,telephone,jun,fri,177,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,single,university.degree,no,yes,no,telephone,jun,fri,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,unknown,no,yes,no,telephone,jun,fri,42,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,admin.,married,high.school,no,no,no,telephone,jun,fri,22,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,services,single,high.school,no,no,yes,telephone,jun,fri,99,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,services,married,high.school,unknown,yes,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,unemployed,single,professional.course,no,no,no,telephone,jun,fri,394,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,management,married,university.degree,no,no,yes,telephone,jun,fri,42,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,services,married,high.school,unknown,yes,no,telephone,jun,fri,41,28,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,services,married,high.school,no,yes,yes,telephone,jun,fri,98,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,114,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,191,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,167,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,housemaid,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,services,married,high.school,unknown,no,no,telephone,jun,fri,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,technician,married,professional.course,no,no,no,telephone,jun,fri,206,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,services,married,high.school,no,no,no,telephone,jun,fri,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,156,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,services,divorced,basic.6y,no,no,no,telephone,jun,fri,512,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,high.school,unknown,no,no,telephone,jun,fri,50,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,23,23,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,married,high.school,unknown,yes,no,telephone,jun,fri,106,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,unemployed,married,basic.4y,unknown,no,no,telephone,jun,fri,744,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,fri,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,management,divorced,university.degree,no,yes,no,telephone,jun,fri,99,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,241,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,married,unknown,no,yes,no,telephone,jun,fri,246,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,59,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,high.school,no,yes,yes,telephone,jun,fri,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,entrepreneur,divorced,university.degree,no,yes,yes,telephone,jun,fri,54,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,management,married,university.degree,no,yes,yes,telephone,jun,fri,87,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,admin.,married,basic.9y,unknown,no,no,telephone,jun,fri,973,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +36,management,married,university.degree,no,yes,no,telephone,jun,fri,122,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,375,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,technician,married,high.school,unknown,yes,yes,telephone,jun,fri,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,50,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,technician,married,professional.course,unknown,no,no,telephone,jun,fri,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,services,married,high.school,no,no,no,telephone,jun,fri,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,services,married,high.school,no,yes,no,telephone,jun,fri,157,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,university.degree,no,no,no,telephone,jun,fri,45,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,technician,married,professional.course,no,yes,yes,telephone,jun,fri,577,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jun,fri,134,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,325,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,124,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,111,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,management,married,unknown,no,yes,no,telephone,jun,fri,170,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,housemaid,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,40,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,blue-collar,married,high.school,no,yes,no,telephone,jun,fri,368,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,528,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,management,married,university.degree,no,yes,no,telephone,jun,fri,41,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jun,fri,398,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,single,basic.9y,no,no,no,telephone,jun,fri,361,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,493,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,470,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,university.degree,no,yes,yes,telephone,jun,fri,282,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,fri,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,basic.9y,unknown,yes,no,telephone,jun,fri,856,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +49,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,606,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,management,married,university.degree,no,yes,no,telephone,jun,fri,74,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,self-employed,divorced,basic.4y,no,no,no,telephone,jun,fri,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,153,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,1210,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +40,self-employed,married,professional.course,no,yes,yes,telephone,jun,fri,716,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +39,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,513,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,technician,divorced,unknown,no,unknown,unknown,telephone,jun,fri,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,fri,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,139,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,entrepreneur,married,high.school,no,yes,no,telephone,jun,fri,273,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,single,basic.9y,no,unknown,unknown,telephone,jun,fri,364,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,218,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,services,married,high.school,no,no,no,telephone,jun,fri,115,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,management,married,university.degree,no,yes,no,telephone,jun,fri,280,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,109,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,115,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,25,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,retired,divorced,basic.4y,unknown,no,no,telephone,jun,fri,75,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,married,basic.9y,no,yes,no,telephone,jun,fri,235,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,95,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,231,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,21,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,housemaid,married,high.school,no,no,yes,telephone,jun,fri,31,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,838,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +40,management,married,university.degree,no,no,no,telephone,jun,fri,64,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,management,married,university.degree,no,no,no,telephone,jun,fri,1276,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,technician,married,basic.6y,no,yes,no,telephone,jun,fri,27,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,divorced,university.degree,no,yes,yes,telephone,jun,fri,188,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,unknown,married,unknown,unknown,yes,no,telephone,jun,fri,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,144,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,services,divorced,professional.course,no,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,divorced,basic.9y,no,yes,no,telephone,jun,fri,45,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,unknown,married,unknown,no,no,no,telephone,jun,fri,258,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,fri,402,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,self-employed,divorced,basic.9y,no,no,no,telephone,jun,fri,60,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,technician,married,professional.course,no,no,no,telephone,jun,fri,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,services,single,basic.6y,no,yes,no,telephone,jun,fri,307,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,entrepreneur,divorced,high.school,no,no,no,telephone,jun,fri,485,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,services,married,high.school,unknown,no,no,telephone,jun,fri,174,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,services,married,high.school,no,unknown,unknown,telephone,jun,fri,283,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,fri,1098,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +49,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,115,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,351,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,unemployed,married,high.school,unknown,no,no,telephone,jun,fri,89,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +24,entrepreneur,single,high.school,no,yes,no,telephone,jun,fri,113,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,retired,married,high.school,no,yes,yes,telephone,jun,fri,471,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,high.school,no,yes,no,telephone,jun,fri,256,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,basic.6y,no,no,no,telephone,jun,fri,108,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,services,married,basic.9y,no,unknown,unknown,telephone,jun,fri,48,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,76,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,blue-collar,married,basic.4y,unknown,no,yes,telephone,jun,fri,35,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,unemployed,married,basic.9y,unknown,no,no,telephone,jun,fri,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,63,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,services,married,high.school,no,no,no,telephone,jun,fri,166,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,123,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,management,single,university.degree,no,no,no,telephone,jun,fri,633,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,services,single,university.degree,no,no,no,telephone,jun,fri,160,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,entrepreneur,married,basic.9y,unknown,no,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,245,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +60,retired,divorced,university.degree,no,yes,no,telephone,jun,fri,98,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,management,married,basic.9y,no,yes,no,telephone,jun,fri,37,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,19,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,fri,374,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,172,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,jun,fri,74,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,174,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,single,basic.9y,no,no,yes,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,256,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,unemployed,married,professional.course,no,no,no,telephone,jun,fri,38,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,205,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,technician,married,unknown,no,yes,no,telephone,jun,fri,471,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,student,single,professional.course,no,no,no,telephone,jun,fri,168,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,housemaid,married,high.school,no,yes,no,telephone,jun,fri,19,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,retired,married,high.school,unknown,yes,no,telephone,jun,fri,211,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,admin.,married,high.school,no,yes,no,telephone,jun,fri,534,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,services,divorced,unknown,no,no,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,technician,single,university.degree,no,yes,yes,telephone,jun,fri,1149,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +50,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,343,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,retired,married,high.school,unknown,yes,yes,telephone,jun,fri,141,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,1573,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +52,retired,married,high.school,unknown,no,no,telephone,jun,fri,181,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,232,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,technician,married,professional.course,unknown,yes,yes,telephone,jun,fri,705,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +45,management,married,university.degree,no,no,no,telephone,jun,fri,126,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,self-employed,single,university.degree,no,no,no,telephone,jun,fri,237,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,174,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,admin.,married,basic.6y,no,no,no,telephone,jun,fri,26,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,109,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,288,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,admin.,married,high.school,no,yes,no,telephone,jun,fri,84,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,management,married,basic.6y,unknown,no,yes,telephone,jun,fri,73,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,management,married,university.degree,no,yes,no,telephone,jun,fri,415,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,44,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,446,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,1663,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +32,blue-collar,married,professional.course,no,no,yes,telephone,jun,fri,459,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,management,married,university.degree,no,yes,no,telephone,jun,fri,398,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,560,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +41,management,married,university.degree,no,yes,no,telephone,jun,fri,248,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,fri,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,unemployed,married,high.school,no,no,no,telephone,jun,fri,154,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,technician,married,professional.course,no,yes,no,telephone,jun,fri,1617,1,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +39,technician,single,professional.course,no,yes,no,telephone,jun,fri,127,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,technician,married,professional.course,unknown,no,no,telephone,jun,fri,421,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,professional.course,no,yes,no,telephone,jun,fri,591,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,165,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,170,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,services,married,high.school,no,yes,no,telephone,jun,fri,618,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,single,basic.9y,unknown,no,yes,telephone,jun,fri,70,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,1478,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,professional.course,no,no,no,telephone,jun,fri,110,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,management,married,basic.6y,no,no,no,telephone,jun,fri,40,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,570,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +50,admin.,divorced,high.school,no,no,no,telephone,jun,fri,519,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,39,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,unemployed,married,basic.9y,unknown,yes,no,telephone,jun,fri,14,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,high.school,no,yes,no,telephone,jun,fri,36,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,married,basic.9y,no,no,no,telephone,jun,fri,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,self-employed,divorced,basic.4y,no,no,no,telephone,jun,fri,825,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,263,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,married,high.school,no,no,no,telephone,jun,fri,1422,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +31,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,55,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,services,married,high.school,no,yes,no,telephone,jun,fri,172,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,553,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,81,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,basic.6y,no,yes,yes,telephone,jun,fri,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,fri,324,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,married,basic.4y,unknown,no,yes,telephone,jun,fri,62,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,19,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,technician,married,high.school,no,yes,no,telephone,jun,fri,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,fri,16,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,admin.,single,university.degree,no,no,no,telephone,jun,fri,134,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,9,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,management,divorced,high.school,no,yes,no,telephone,jun,fri,176,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,25,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,238,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,married,high.school,no,yes,no,telephone,jun,fri,17,37,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,single,high.school,no,no,no,telephone,jun,fri,9,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,single,basic.9y,unknown,unknown,unknown,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,high.school,no,yes,yes,telephone,jun,fri,14,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,technician,divorced,professional.course,unknown,yes,no,telephone,jun,fri,365,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,single,high.school,no,no,no,telephone,jun,fri,267,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,11,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jun,fri,12,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,8,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,fri,55,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,university.degree,no,no,yes,telephone,jun,fri,76,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,fri,9,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,single,university.degree,unknown,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,entrepreneur,single,high.school,no,no,no,telephone,jun,fri,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,blue-collar,married,basic.9y,unknown,no,yes,telephone,jun,fri,17,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,high.school,no,no,no,telephone,jun,fri,47,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,31,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,services,married,basic.4y,unknown,no,no,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,management,married,basic.6y,unknown,no,no,telephone,jun,fri,8,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,admin.,married,unknown,unknown,yes,no,telephone,jun,fri,158,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,81,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,management,married,unknown,unknown,yes,no,telephone,jun,fri,14,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,services,single,high.school,unknown,yes,yes,telephone,jun,fri,25,26,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,services,married,unknown,no,no,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,self-employed,single,basic.9y,unknown,no,no,telephone,jun,fri,154,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,unknown,no,no,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,technician,single,unknown,no,no,no,telephone,jun,fri,264,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,management,married,university.degree,no,no,no,telephone,jun,fri,29,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,self-employed,married,professional.course,no,no,no,telephone,jun,fri,20,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,single,university.degree,unknown,no,yes,telephone,jun,fri,13,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,retired,divorced,university.degree,no,yes,no,telephone,jun,fri,152,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,married,basic.9y,unknown,no,no,telephone,jun,fri,44,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,telephone,jun,fri,29,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,services,married,high.school,no,yes,no,telephone,jun,fri,25,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,34,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,single,professional.course,no,no,yes,telephone,jun,fri,10,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jun,fri,34,29,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,services,single,high.school,no,no,no,telephone,jun,fri,17,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,technician,single,professional.course,no,unknown,unknown,telephone,jun,fri,14,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,married,unknown,no,yes,no,telephone,jun,fri,29,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,housemaid,married,basic.4y,no,no,no,telephone,jun,fri,134,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,17,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,technician,married,professional.course,no,no,no,telephone,jun,fri,268,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,22,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,admin.,married,high.school,no,yes,no,telephone,jun,fri,82,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,unemployed,married,high.school,unknown,no,no,telephone,jun,fri,10,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,652,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,16,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,divorced,basic.6y,no,yes,yes,telephone,jun,fri,9,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,married,professional.course,unknown,yes,no,telephone,jun,fri,435,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,high.school,no,no,no,telephone,jun,fri,10,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jun,fri,123,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,fri,8,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.4y,no,no,yes,telephone,jun,fri,16,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,high.school,no,no,no,telephone,jun,fri,179,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,retired,married,basic.4y,no,no,no,telephone,jun,fri,14,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,services,divorced,basic.9y,no,yes,no,telephone,jun,fri,524,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,retired,married,professional.course,unknown,no,no,telephone,jun,fri,74,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,management,divorced,university.degree,no,no,no,telephone,jun,fri,23,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jun,fri,850,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,technician,married,basic.9y,unknown,yes,yes,telephone,jun,fri,818,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,basic.6y,no,no,no,telephone,jun,fri,126,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,single,high.school,no,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,services,married,high.school,no,no,no,telephone,jun,fri,7,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,49,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,services,married,high.school,no,yes,no,telephone,jun,fri,40,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,married,professional.course,no,no,no,telephone,jun,fri,15,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,technician,married,university.degree,no,no,no,telephone,jun,fri,4,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,services,married,high.school,unknown,no,no,telephone,jun,fri,32,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,technician,single,basic.6y,unknown,no,no,telephone,jun,fri,8,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,retired,married,university.degree,no,yes,no,telephone,jun,fri,12,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,admin.,married,high.school,no,yes,no,telephone,jun,fri,77,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,retired,married,unknown,unknown,yes,no,telephone,jun,fri,9,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,high.school,unknown,yes,no,telephone,jun,fri,17,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,admin.,divorced,university.degree,unknown,unknown,unknown,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,7,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,admin.,single,basic.9y,no,no,no,telephone,jun,fri,11,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,management,married,university.degree,no,no,yes,telephone,jun,fri,20,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,student,single,unknown,unknown,yes,no,telephone,jun,fri,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,26,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,fri,10,27,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,high.school,no,no,no,telephone,jun,fri,285,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,technician,divorced,basic.9y,no,yes,no,telephone,jun,fri,39,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,single,high.school,unknown,yes,no,telephone,jun,fri,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,unknown,high.school,no,no,no,telephone,jun,fri,11,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,management,married,university.degree,no,yes,no,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,services,married,basic.9y,unknown,yes,no,telephone,jun,fri,9,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,admin.,married,high.school,no,yes,no,telephone,jun,fri,7,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,single,basic.6y,no,yes,yes,telephone,jun,fri,205,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,408,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,27,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,management,married,basic.9y,unknown,yes,no,telephone,jun,fri,376,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,admin.,divorced,high.school,no,yes,no,telephone,jun,fri,9,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,management,single,university.degree,unknown,yes,no,telephone,jun,fri,15,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,services,married,basic.6y,no,yes,no,telephone,jun,fri,46,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,married,university.degree,no,no,no,telephone,jun,fri,1023,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +40,housemaid,single,university.degree,no,yes,no,telephone,jun,fri,253,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,technician,married,professional.course,no,yes,no,telephone,jun,fri,10,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,blue-collar,single,basic.9y,unknown,no,yes,telephone,jun,fri,175,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,blue-collar,divorced,basic.9y,no,yes,no,telephone,jun,fri,220,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,retired,married,basic.6y,no,yes,no,telephone,jun,fri,51,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,retired,married,basic.4y,no,no,no,telephone,jun,fri,407,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,technician,married,university.degree,unknown,no,no,telephone,jun,fri,10,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,services,single,high.school,no,yes,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,blue-collar,single,basic.4y,no,no,no,telephone,jun,fri,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,fri,11,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,self-employed,married,professional.course,no,no,no,telephone,jun,fri,161,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,admin.,married,university.degree,no,no,no,telephone,jun,fri,44,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,management,married,university.degree,no,no,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,79,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,technician,divorced,professional.course,no,yes,no,telephone,jun,fri,212,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,high.school,no,no,yes,telephone,jun,fri,78,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,585,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +31,entrepreneur,single,basic.6y,unknown,yes,yes,telephone,jun,fri,8,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,self-employed,married,university.degree,no,no,no,telephone,jun,fri,129,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,married,university.degree,no,yes,no,telephone,jun,fri,65,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,services,married,high.school,no,no,no,telephone,jun,fri,9,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,admin.,divorced,high.school,no,yes,yes,telephone,jun,fri,100,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,self-employed,divorced,professional.course,unknown,no,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,single,professional.course,no,no,no,telephone,jun,fri,86,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,technician,married,professional.course,no,no,yes,telephone,jun,fri,809,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +38,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,693,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +44,admin.,married,university.degree,no,no,no,telephone,jun,fri,8,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,housemaid,married,university.degree,no,yes,no,telephone,jun,fri,258,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,16,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,admin.,married,university.degree,no,yes,no,telephone,jun,fri,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,12,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,admin.,married,high.school,no,yes,no,telephone,jun,fri,11,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,services,divorced,high.school,no,no,no,telephone,jun,fri,155,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,professional.course,no,no,no,telephone,jun,fri,81,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,entrepreneur,single,university.degree,unknown,no,no,telephone,jun,fri,22,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,admin.,married,basic.9y,no,no,no,telephone,jun,fri,116,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,blue-collar,single,high.school,unknown,no,no,telephone,jun,fri,136,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,single,unknown,unknown,yes,no,telephone,jun,fri,8,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,self-employed,single,university.degree,no,no,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,unemployed,married,high.school,unknown,yes,no,telephone,jun,fri,157,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,single,basic.9y,unknown,no,no,telephone,jun,fri,10,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +60,self-employed,single,basic.9y,unknown,yes,no,telephone,jun,fri,11,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +43,services,married,high.school,no,no,no,telephone,jun,fri,16,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,blue-collar,divorced,basic.4y,no,yes,no,telephone,jun,fri,84,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,556,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +51,technician,married,unknown,no,yes,no,telephone,jun,fri,17,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,entrepreneur,married,professional.course,no,no,no,telephone,jun,fri,804,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,unknown,unknown,telephone,jun,fri,71,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,38,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,technician,single,professional.course,no,no,yes,telephone,jun,fri,241,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,management,married,high.school,unknown,no,no,telephone,jun,fri,28,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,unknown,married,basic.4y,unknown,no,no,telephone,jun,fri,27,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,services,married,basic.6y,unknown,no,no,telephone,jun,fri,11,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,retired,divorced,basic.4y,no,yes,no,telephone,jun,fri,10,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,technician,married,university.degree,no,no,no,telephone,jun,fri,23,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,single,basic.9y,no,no,no,telephone,jun,fri,43,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,14,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,technician,married,high.school,no,no,no,telephone,jun,fri,8,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,372,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,291,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +49,management,married,high.school,no,no,no,telephone,jun,fri,9,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,29,27,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,technician,married,university.degree,no,yes,no,telephone,jun,fri,73,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,8,31,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,14,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,78,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,high.school,no,no,no,telephone,jun,fri,590,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,management,single,university.degree,unknown,no,no,telephone,jun,fri,100,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,admin.,divorced,high.school,no,no,no,telephone,jun,fri,13,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,entrepreneur,married,professional.course,no,yes,no,telephone,jun,fri,40,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,admin.,single,university.degree,unknown,yes,no,telephone,jun,fri,18,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,management,married,university.degree,unknown,yes,no,telephone,jun,fri,16,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,technician,married,unknown,no,no,no,telephone,jun,fri,196,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,retired,single,high.school,no,no,no,telephone,jun,fri,74,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,services,divorced,basic.9y,unknown,yes,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,fri,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,self-employed,married,professional.course,no,no,yes,telephone,jun,fri,13,40,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,management,single,high.school,no,yes,yes,telephone,jun,fri,23,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,retired,single,basic.4y,no,yes,yes,telephone,jun,fri,160,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,divorced,university.degree,no,yes,no,telephone,jun,fri,14,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,admin.,single,high.school,no,no,no,telephone,jun,fri,20,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,entrepreneur,married,university.degree,no,no,no,telephone,jun,fri,9,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,unemployed,single,high.school,unknown,no,no,telephone,jun,fri,287,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jun,fri,26,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,entrepreneur,single,basic.6y,unknown,yes,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,divorced,basic.4y,unknown,no,yes,telephone,jun,fri,13,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,services,single,high.school,no,no,no,telephone,jun,fri,48,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,services,single,high.school,no,no,no,telephone,jun,fri,13,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,unemployed,divorced,basic.9y,no,no,no,telephone,jun,fri,9,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,services,single,high.school,no,yes,no,telephone,jun,fri,13,14,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,services,married,high.school,no,no,no,telephone,jun,fri,55,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,single,high.school,no,yes,yes,telephone,jun,fri,10,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,retired,married,professional.course,no,no,no,telephone,jun,fri,41,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,services,married,high.school,unknown,yes,no,telephone,jun,fri,13,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,jun,fri,7,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,92,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,unknown,basic.9y,unknown,no,no,telephone,jun,fri,180,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,retired,married,high.school,unknown,yes,no,telephone,jun,fri,1094,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +50,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,160,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,management,married,university.degree,no,no,no,telephone,jun,fri,101,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,basic.9y,no,no,yes,telephone,jun,fri,75,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,university.degree,no,no,no,telephone,jun,fri,17,21,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +22,technician,single,professional.course,no,no,no,telephone,jun,fri,184,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,unemployed,married,high.school,no,yes,no,telephone,jun,fri,23,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,jun,fri,78,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,management,married,university.degree,unknown,no,no,telephone,jun,fri,13,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,management,married,university.degree,no,no,no,telephone,jun,fri,601,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,83,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,retired,divorced,professional.course,unknown,yes,no,telephone,jun,fri,169,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,13,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +23,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,31,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,management,single,basic.9y,no,yes,no,telephone,jun,fri,294,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,admin.,divorced,high.school,no,no,yes,telephone,jun,fri,36,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,blue-collar,married,unknown,unknown,no,yes,telephone,jun,fri,55,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,15,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,technician,single,professional.course,no,yes,no,telephone,jun,fri,87,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,management,married,unknown,no,no,yes,telephone,jun,fri,17,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,housemaid,married,basic.4y,unknown,yes,no,telephone,jun,fri,30,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,jun,fri,38,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,self-employed,divorced,university.degree,unknown,yes,no,telephone,jun,fri,39,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,married,high.school,no,yes,no,telephone,jun,fri,61,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,63,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,technician,divorced,basic.9y,no,no,no,telephone,jun,fri,45,22,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +59,retired,married,basic.9y,unknown,no,no,telephone,jun,fri,25,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,admin.,married,university.degree,no,yes,yes,telephone,jun,fri,42,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,services,single,high.school,no,yes,no,telephone,jun,fri,23,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,252,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +21,student,single,high.school,no,no,no,telephone,jun,fri,24,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,services,married,high.school,no,no,no,telephone,jun,fri,152,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,high.school,unknown,no,no,telephone,jun,fri,33,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jun,fri,31,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,management,married,university.degree,no,yes,no,telephone,jun,fri,236,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +50,entrepreneur,married,basic.4y,no,no,no,telephone,jun,fri,20,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,single,high.school,no,yes,yes,telephone,jun,fri,14,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,telephone,jun,fri,21,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,single,basic.9y,unknown,yes,yes,telephone,jun,fri,13,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,entrepreneur,single,university.degree,unknown,yes,no,telephone,jun,fri,39,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,services,divorced,unknown,unknown,yes,no,telephone,jun,fri,16,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,retired,married,basic.6y,no,yes,yes,telephone,jun,fri,37,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,self-employed,married,professional.course,no,yes,yes,telephone,jun,fri,47,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,admin.,married,university.degree,no,no,no,telephone,jun,fri,34,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,services,married,basic.9y,no,yes,no,telephone,jun,fri,250,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,entrepreneur,married,basic.4y,no,yes,no,telephone,jun,fri,221,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,entrepreneur,married,university.degree,unknown,yes,no,telephone,jun,fri,216,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,admin.,single,university.degree,no,yes,no,telephone,jun,fri,14,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.4y,no,yes,no,telephone,jun,fri,94,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +30,services,single,high.school,no,unknown,unknown,telephone,jun,fri,709,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,entrepreneur,married,university.degree,unknown,no,no,telephone,jun,fri,8,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,technician,single,professional.course,unknown,no,no,telephone,jun,fri,43,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,divorced,high.school,no,no,no,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,self-employed,single,university.degree,no,unknown,unknown,telephone,jun,fri,38,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,self-employed,single,university.degree,no,yes,no,telephone,jun,fri,19,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,technician,single,high.school,no,yes,no,telephone,jun,fri,274,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,married,university.degree,no,no,no,telephone,jun,fri,819,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,technician,married,professional.course,unknown,yes,no,telephone,jun,fri,16,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,fri,19,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,services,married,high.school,unknown,yes,no,telephone,jun,fri,247,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jun,fri,27,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,admin.,married,high.school,unknown,no,no,telephone,jun,fri,23,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,12,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,self-employed,single,basic.9y,unknown,yes,yes,telephone,jun,fri,375,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +60,self-employed,married,professional.course,unknown,yes,no,telephone,jun,fri,10,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,married,high.school,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,married,high.school,no,yes,no,telephone,jun,fri,14,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,retired,married,university.degree,no,yes,no,telephone,jun,fri,11,12,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,admin.,married,basic.9y,no,yes,no,telephone,jun,fri,9,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,109,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,technician,married,professional.course,no,yes,no,telephone,jun,fri,21,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,high.school,no,yes,no,telephone,jun,fri,7,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,management,married,university.degree,no,yes,no,telephone,jun,fri,18,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,13,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,married,university.degree,no,no,no,telephone,jun,fri,24,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,technician,married,professional.course,no,yes,yes,telephone,jun,fri,61,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,unemployed,single,university.degree,no,no,no,telephone,jun,fri,6,17,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,114,10,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +25,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,11,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,married,university.degree,no,no,no,telephone,jun,fri,44,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,basic.9y,unknown,no,yes,telephone,jun,fri,24,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,blue-collar,married,university.degree,no,no,no,telephone,jun,fri,10,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,blue-collar,divorced,unknown,unknown,no,no,telephone,jun,fri,197,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,admin.,divorced,university.degree,no,no,no,telephone,jun,fri,26,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +57,self-employed,married,basic.9y,unknown,yes,no,telephone,jun,fri,185,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,admin.,single,university.degree,no,no,no,telephone,jun,fri,18,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,unknown,married,unknown,no,no,no,telephone,jun,fri,61,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,20,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,management,divorced,university.degree,no,no,no,telephone,jun,fri,8,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,admin.,single,high.school,no,yes,yes,telephone,jun,fri,15,26,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,technician,single,professional.course,no,yes,yes,telephone,jun,fri,39,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,admin.,divorced,high.school,unknown,no,yes,telephone,jun,fri,28,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +52,services,unknown,professional.course,no,yes,no,telephone,jun,fri,7,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,entrepreneur,single,university.degree,no,no,no,telephone,jun,fri,48,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,married,university.degree,no,no,no,telephone,jun,fri,18,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,admin.,single,university.degree,no,no,no,telephone,jun,fri,35,7,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,admin.,married,university.degree,no,no,no,telephone,jun,fri,13,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +28,admin.,single,high.school,no,no,no,telephone,jun,fri,22,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,management,married,high.school,unknown,no,no,telephone,jun,fri,18,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,unknown,no,unknown,unknown,telephone,jun,fri,83,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,admin.,married,university.degree,no,yes,no,telephone,jun,fri,11,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,admin.,married,high.school,no,yes,no,telephone,jun,fri,447,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,technician,married,professional.course,unknown,no,no,telephone,jun,fri,18,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,services,married,basic.9y,no,unknown,unknown,telephone,jun,fri,17,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,admin.,married,high.school,no,no,yes,telephone,jun,fri,492,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +58,admin.,married,university.degree,no,unknown,unknown,telephone,jun,fri,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +27,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,34,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +26,technician,married,basic.6y,no,yes,no,telephone,jun,fri,11,20,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +29,admin.,married,university.degree,no,yes,no,telephone,jun,fri,9,16,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,admin.,married,high.school,no,yes,yes,telephone,jun,fri,9,19,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,unemployed,married,basic.9y,no,no,no,telephone,jun,fri,11,6,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +48,blue-collar,married,professional.course,no,yes,yes,telephone,jun,fri,12,24,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,management,married,university.degree,unknown,no,no,telephone,jun,fri,10,23,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,housemaid,married,basic.9y,no,no,no,telephone,jun,fri,86,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,46,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,fri,32,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,admin.,married,professional.course,no,no,no,telephone,jun,fri,32,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,admin.,single,professional.course,unknown,no,yes,telephone,jun,fri,36,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,124,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,blue-collar,single,basic.4y,unknown,no,no,telephone,jun,fri,15,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +36,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,fri,9,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +35,student,single,university.degree,unknown,no,no,telephone,jun,fri,10,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,services,divorced,high.school,no,yes,no,telephone,jun,fri,52,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +41,technician,married,high.school,no,yes,no,telephone,jun,fri,145,24,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,8,13,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +24,services,single,high.school,no,no,no,telephone,jun,fri,12,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,technician,divorced,university.degree,no,yes,no,telephone,jun,fri,16,28,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +32,admin.,single,university.degree,unknown,no,no,telephone,jun,fri,44,15,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +40,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,22,8,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,60,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +38,unknown,married,unknown,unknown,yes,no,telephone,jun,fri,13,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +53,technician,married,unknown,no,no,no,telephone,jun,fri,51,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +49,technician,married,professional.course,no,yes,no,telephone,jun,fri,41,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +42,management,married,high.school,no,no,no,telephone,jun,fri,20,5,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +37,blue-collar,single,unknown,unknown,no,yes,telephone,jun,fri,53,11,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +47,blue-collar,divorced,basic.4y,no,yes,yes,telephone,jun,fri,9,18,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +31,services,single,professional.course,no,yes,no,telephone,jun,fri,202,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +46,blue-collar,single,high.school,no,no,no,telephone,jun,fri,310,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +54,technician,married,high.school,no,no,no,telephone,jun,fri,204,2,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +39,unemployed,divorced,basic.9y,unknown,no,no,telephone,jun,fri,638,9,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,924,3,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +32,services,married,high.school,no,no,no,telephone,jun,fri,298,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,no +56,technician,married,unknown,no,no,yes,telephone,jun,fri,988,4,999,0,nonexistent,1.4,94.465,-41.8,4.959,5228.1,yes +29,services,single,high.school,unknown,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,admin.,single,university.degree,no,yes,no,telephone,jun,mon,85,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,admin.,single,university.degree,no,no,no,telephone,jun,mon,498,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +39,management,single,university.degree,no,no,no,telephone,jun,mon,670,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +25,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,82,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +26,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,72,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,management,married,basic.9y,no,no,no,telephone,jun,mon,53,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +54,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,364,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,655,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +40,management,divorced,university.degree,unknown,unknown,unknown,telephone,jun,mon,88,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,self-employed,single,university.degree,no,yes,yes,telephone,jun,mon,640,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,technician,married,basic.9y,no,no,no,telephone,jun,mon,339,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,jun,mon,662,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +58,management,married,university.degree,unknown,no,no,telephone,jun,mon,25,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jun,mon,216,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +52,management,married,basic.4y,no,no,no,telephone,jun,tue,165,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,blue-collar,single,high.school,no,yes,no,telephone,jun,tue,137,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,services,married,high.school,no,yes,no,telephone,jun,tue,62,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jun,tue,56,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +58,services,married,high.school,no,yes,no,telephone,jun,tue,790,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,self-employed,divorced,university.degree,unknown,yes,no,telephone,jun,tue,363,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,481,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,blue-collar,married,basic.6y,no,no,no,telephone,jun,tue,32,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,tue,183,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,self-employed,married,professional.course,no,yes,no,telephone,jun,tue,214,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +37,services,married,high.school,unknown,yes,no,telephone,jun,tue,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +51,admin.,divorced,unknown,no,yes,no,telephone,jun,tue,528,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,yes +37,services,married,high.school,no,yes,yes,telephone,jun,tue,351,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +35,admin.,divorced,university.degree,no,no,no,telephone,jun,tue,51,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +55,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,tue,103,6,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,89,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,entrepreneur,single,university.degree,no,no,no,telephone,jun,wed,347,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +58,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,372,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,wed,411,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,blue-collar,married,unknown,no,yes,no,telephone,jun,wed,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,self-employed,married,university.degree,unknown,yes,no,telephone,jun,wed,157,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,blue-collar,married,professional.course,unknown,yes,no,telephone,jun,wed,43,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,wed,75,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +52,technician,married,basic.9y,no,no,yes,telephone,jun,wed,249,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,268,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,telephone,jun,wed,333,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,technician,married,basic.9y,unknown,yes,no,telephone,jun,wed,155,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,unknown,married,unknown,unknown,yes,no,telephone,jun,wed,247,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,services,married,basic.6y,unknown,yes,no,telephone,jun,wed,100,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jun,wed,67,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,services,married,basic.9y,no,yes,no,telephone,jun,wed,162,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +30,services,married,unknown,unknown,no,no,telephone,jun,wed,93,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,wed,231,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +34,technician,married,professional.course,no,no,no,telephone,jun,wed,67,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +41,admin.,single,basic.6y,no,no,no,telephone,jun,wed,168,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +51,entrepreneur,married,university.degree,no,no,no,telephone,jun,wed,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jun,wed,151,1,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +31,housemaid,married,basic.4y,no,no,no,telephone,jun,wed,91,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +46,services,divorced,professional.course,unknown,yes,no,telephone,jun,wed,292,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +29,admin.,married,university.degree,no,yes,yes,telephone,jun,wed,281,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +33,services,single,high.school,no,no,no,telephone,jun,wed,375,2,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +42,management,married,university.degree,no,no,no,telephone,jun,wed,168,8,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +36,blue-collar,married,unknown,unknown,no,no,telephone,jun,wed,456,3,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,wed,103,5,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +39,blue-collar,married,basic.4y,no,no,no,telephone,jun,wed,305,4,999,0,nonexistent,1.4,94.465,-41.8,4.958,5228.1,no +44,admin.,married,university.degree,unknown,yes,yes,telephone,jun,thu,91,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +45,admin.,married,high.school,no,yes,no,telephone,jun,thu,650,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +28,services,single,basic.9y,no,no,no,telephone,jun,thu,178,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +59,retired,married,basic.9y,no,no,yes,telephone,jun,thu,465,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +42,services,single,unknown,no,yes,no,telephone,jun,thu,626,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +58,services,married,basic.4y,no,no,no,telephone,jun,thu,322,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +51,services,married,professional.course,unknown,no,no,telephone,jun,thu,177,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,thu,519,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes +49,unemployed,married,basic.9y,no,yes,yes,telephone,jun,thu,271,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +48,blue-collar,married,high.school,no,yes,yes,telephone,jun,thu,677,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes +52,technician,married,basic.9y,no,yes,yes,telephone,jun,thu,138,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +29,blue-collar,single,basic.6y,no,yes,no,telephone,jun,thu,215,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +60,self-employed,married,professional.course,no,yes,no,telephone,jun,thu,318,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +28,admin.,single,professional.course,no,no,yes,telephone,jun,thu,253,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +30,admin.,married,high.school,no,unknown,unknown,telephone,jun,thu,344,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +30,admin.,single,university.degree,no,no,no,telephone,jun,thu,301,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +36,blue-collar,married,high.school,no,no,no,telephone,jun,thu,197,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +56,admin.,divorced,high.school,no,yes,no,telephone,jun,thu,71,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +29,blue-collar,married,basic.9y,no,no,yes,telephone,jun,thu,190,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +45,technician,single,professional.course,unknown,yes,yes,telephone,jun,thu,116,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +51,management,married,university.degree,unknown,no,yes,telephone,jun,thu,93,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +35,self-employed,married,professional.course,unknown,yes,no,telephone,jun,thu,29,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +30,services,divorced,high.school,unknown,yes,no,telephone,jun,thu,133,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jun,thu,150,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +25,technician,single,professional.course,no,no,yes,telephone,jun,thu,150,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,thu,182,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +38,blue-collar,single,high.school,unknown,no,no,telephone,jun,thu,277,1,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +29,admin.,married,university.degree,no,no,no,telephone,jun,thu,176,7,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +36,blue-collar,single,basic.9y,no,yes,yes,telephone,jun,thu,762,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes +37,admin.,single,university.degree,unknown,yes,no,telephone,jun,thu,179,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +42,admin.,divorced,high.school,unknown,no,no,telephone,jun,thu,105,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +58,retired,single,professional.course,no,yes,no,telephone,jun,thu,565,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +49,services,divorced,high.school,no,no,no,telephone,jun,thu,138,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +55,technician,unknown,unknown,unknown,no,no,telephone,jun,thu,667,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +58,retired,married,high.school,no,yes,no,telephone,jun,thu,3183,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,yes +34,admin.,single,university.degree,no,no,no,telephone,jun,thu,406,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +29,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jun,thu,243,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +46,unknown,married,basic.4y,unknown,yes,no,telephone,jun,thu,110,3,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +38,blue-collar,married,high.school,unknown,no,no,telephone,jun,thu,113,5,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +27,technician,single,unknown,no,yes,no,telephone,jun,thu,174,8,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +39,self-employed,divorced,professional.course,no,yes,no,telephone,jun,thu,529,4,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +60,retired,divorced,basic.4y,unknown,yes,no,telephone,jun,thu,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,thu,75,5,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jun,thu,122,6,999,0,nonexistent,1.4,94.465,-41.8,4.955,5228.1,no +31,services,single,high.school,no,no,no,telephone,jun,fri,422,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes +34,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,381,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +38,blue-collar,single,high.school,unknown,yes,no,telephone,jun,fri,856,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes +39,services,married,basic.9y,unknown,no,no,telephone,jun,fri,97,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +33,services,married,high.school,no,no,no,telephone,jun,fri,59,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jun,fri,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +32,management,married,university.degree,no,no,no,telephone,jun,fri,80,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,admin.,single,high.school,no,no,no,telephone,jun,fri,433,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +44,blue-collar,married,basic.6y,no,yes,no,telephone,jun,fri,159,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +50,admin.,married,high.school,no,no,no,telephone,jun,fri,513,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +59,housemaid,married,basic.6y,no,no,no,telephone,jun,fri,207,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +26,admin.,married,high.school,no,no,no,telephone,jun,fri,120,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,services,married,high.school,no,yes,yes,telephone,jun,fri,121,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +34,admin.,married,high.school,no,yes,no,telephone,jun,fri,95,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,self-employed,married,basic.6y,unknown,no,yes,telephone,jun,fri,213,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +24,technician,single,basic.9y,no,no,no,telephone,jun,fri,111,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,fri,302,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +37,admin.,married,high.school,no,no,no,telephone,jun,fri,212,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +27,self-employed,single,university.degree,no,no,no,telephone,jun,fri,911,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes +30,technician,married,high.school,no,no,no,telephone,jun,fri,154,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +58,services,married,high.school,no,no,no,telephone,jun,fri,181,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +58,services,married,high.school,no,yes,no,telephone,jun,fri,32,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,services,married,high.school,no,no,no,telephone,jun,fri,392,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +37,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,management,married,basic.9y,no,yes,yes,telephone,jun,fri,162,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +33,technician,single,professional.course,no,no,no,telephone,jun,fri,634,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +32,services,single,high.school,no,no,no,telephone,jun,fri,79,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +34,admin.,single,basic.9y,no,yes,no,telephone,jun,fri,148,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +27,admin.,single,professional.course,no,yes,yes,telephone,jun,fri,103,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +27,admin.,single,professional.course,no,yes,yes,telephone,jun,fri,141,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +27,self-employed,single,university.degree,no,yes,no,telephone,jun,fri,244,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +36,blue-collar,single,basic.4y,no,yes,no,telephone,jun,fri,250,8,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +42,admin.,single,high.school,no,no,no,telephone,jun,fri,140,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +51,services,married,high.school,no,unknown,unknown,telephone,jun,fri,133,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +30,blue-collar,married,basic.9y,unknown,no,no,telephone,jun,fri,191,28,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +28,blue-collar,married,high.school,no,no,no,telephone,jun,fri,216,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +58,technician,married,basic.4y,unknown,yes,yes,telephone,jun,fri,269,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,blue-collar,married,unknown,unknown,no,no,telephone,jun,fri,139,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +35,technician,single,professional.course,no,no,no,telephone,jun,fri,397,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,blue-collar,single,basic.9y,no,yes,no,telephone,jun,fri,76,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +41,blue-collar,married,professional.course,unknown,no,yes,telephone,jun,fri,244,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +59,technician,divorced,basic.4y,no,yes,no,telephone,jun,fri,135,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +35,admin.,married,high.school,no,yes,no,telephone,jun,fri,131,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +42,blue-collar,married,basic.9y,no,yes,yes,telephone,jun,fri,102,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +58,blue-collar,married,basic.4y,unknown,no,no,telephone,jun,fri,326,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +30,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,153,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +42,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,fri,151,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jun,fri,349,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +54,admin.,married,university.degree,no,yes,no,telephone,jun,fri,291,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,telephone,jun,fri,185,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +30,blue-collar,single,basic.6y,unknown,yes,no,telephone,jun,fri,169,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,jun,fri,281,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +49,housemaid,divorced,basic.4y,no,no,no,telephone,jun,fri,114,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +49,housemaid,married,basic.4y,no,no,yes,telephone,jun,fri,183,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +45,technician,single,professional.course,unknown,yes,no,telephone,jun,fri,293,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +36,admin.,married,high.school,no,yes,yes,telephone,jun,fri,111,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,services,divorced,high.school,no,yes,no,telephone,jun,fri,56,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +30,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,fri,101,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +44,blue-collar,single,basic.6y,no,no,no,telephone,jun,fri,247,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +28,technician,single,university.degree,no,no,no,telephone,jun,mon,125,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,322,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,technician,single,professional.course,no,yes,no,telephone,jun,mon,182,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,jun,mon,117,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jun,mon,198,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,telephone,jun,mon,123,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +52,self-employed,married,professional.course,no,no,no,telephone,jun,mon,45,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +23,services,single,high.school,no,no,no,telephone,jun,mon,85,5,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,entrepreneur,divorced,university.degree,no,no,no,telephone,jun,mon,146,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +40,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,93,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jun,mon,103,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jun,mon,54,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +35,admin.,married,university.degree,no,no,no,telephone,jun,mon,27,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +38,admin.,married,high.school,no,no,no,telephone,jun,mon,117,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +42,admin.,married,university.degree,no,no,no,telephone,jun,mon,124,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jun,mon,165,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +33,self-employed,married,professional.course,no,yes,no,telephone,jun,mon,141,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +28,management,married,university.degree,no,no,no,telephone,jun,mon,138,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +41,blue-collar,married,basic.6y,unknown,no,no,telephone,jun,mon,385,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +23,admin.,married,professional.course,no,no,yes,telephone,jun,mon,266,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +58,retired,married,basic.4y,unknown,yes,no,telephone,jun,mon,50,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,unemployed,married,basic.4y,no,no,no,telephone,jun,mon,203,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +32,self-employed,divorced,professional.course,no,yes,no,telephone,jun,mon,118,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +41,blue-collar,single,unknown,unknown,no,no,telephone,jun,mon,780,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,admin.,single,high.school,no,yes,yes,telephone,jun,mon,98,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jun,mon,202,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +39,admin.,single,high.school,no,no,yes,telephone,jun,mon,158,1,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +27,technician,single,university.degree,no,yes,no,telephone,jun,mon,224,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +28,self-employed,single,university.degree,no,yes,no,telephone,jun,mon,73,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +54,technician,divorced,basic.9y,no,yes,no,telephone,jun,mon,111,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,admin.,single,high.school,no,unknown,unknown,telephone,jun,mon,444,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +29,blue-collar,married,basic.6y,no,no,no,telephone,jun,mon,69,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +37,self-employed,single,university.degree,unknown,no,yes,telephone,jun,mon,88,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +38,technician,single,university.degree,no,yes,no,telephone,jun,mon,104,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +44,technician,married,university.degree,no,no,no,telephone,jun,mon,252,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +53,technician,married,basic.9y,no,no,no,telephone,jun,mon,1049,6,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,yes +39,blue-collar,married,basic.6y,unknown,yes,no,telephone,jun,mon,132,4,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +31,housemaid,married,basic.4y,no,no,no,telephone,jun,mon,260,3,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +41,blue-collar,married,basic.4y,no,yes,yes,telephone,jun,mon,450,2,999,0,nonexistent,1.4,94.465,-41.8,4.947,5228.1,no +41,entrepreneur,married,university.degree,no,yes,yes,telephone,jul,tue,381,4,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +25,services,married,high.school,no,yes,no,telephone,jul,tue,479,9,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes +41,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +53,management,married,university.degree,no,no,yes,telephone,jul,tue,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,471,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +56,retired,married,basic.4y,no,yes,no,telephone,jul,tue,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +41,services,single,high.school,no,yes,no,telephone,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +35,blue-collar,married,unknown,no,yes,no,telephone,jul,tue,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +28,admin.,married,high.school,no,yes,no,telephone,jul,tue,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +28,admin.,married,high.school,no,no,no,telephone,jul,tue,249,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +29,self-employed,married,university.degree,no,no,no,telephone,jul,tue,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +54,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,tue,34,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +31,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,jul,tue,428,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +34,technician,single,professional.course,no,yes,no,telephone,jul,tue,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +37,technician,married,professional.course,no,yes,no,telephone,jul,tue,242,6,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +28,blue-collar,single,basic.6y,no,no,no,telephone,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,telephone,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +28,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,89,7,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +26,unemployed,single,high.school,no,no,no,telephone,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +38,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +38,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +44,admin.,divorced,unknown,no,no,no,telephone,jul,tue,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +27,unemployed,married,basic.9y,unknown,no,no,telephone,jul,tue,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +56,services,divorced,high.school,no,no,yes,telephone,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +52,technician,married,professional.course,unknown,no,no,telephone,jul,tue,304,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +42,unemployed,married,basic.9y,unknown,yes,no,telephone,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +36,technician,married,high.school,no,no,no,telephone,jul,tue,426,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +58,management,married,university.degree,no,no,no,telephone,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +41,housemaid,married,high.school,no,no,yes,telephone,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +43,technician,single,professional.course,no,yes,yes,telephone,jul,tue,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +37,admin.,married,high.school,no,no,no,telephone,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +38,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +33,services,married,high.school,unknown,yes,no,telephone,jul,tue,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +53,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +42,admin.,married,basic.6y,no,no,no,telephone,jul,tue,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +37,services,divorced,high.school,no,no,no,telephone,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +41,blue-collar,married,unknown,no,no,no,telephone,jul,tue,529,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +47,retired,married,basic.4y,no,no,no,telephone,jul,tue,484,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +32,admin.,married,university.degree,no,no,no,telephone,jul,tue,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +47,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,tue,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +57,retired,divorced,university.degree,no,no,no,telephone,jul,tue,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +57,self-employed,married,professional.course,no,yes,yes,telephone,jul,tue,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +54,retired,married,high.school,no,yes,yes,telephone,jul,tue,1992,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +41,services,single,professional.course,no,yes,no,telephone,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +35,admin.,married,high.school,no,yes,yes,telephone,jul,tue,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +27,entrepreneur,single,university.degree,no,yes,no,telephone,jul,tue,420,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +40,blue-collar,married,basic.9y,no,no,yes,telephone,jul,tue,1135,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes +40,admin.,married,high.school,no,no,yes,telephone,jul,tue,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +53,technician,married,professional.course,no,yes,no,telephone,jul,tue,307,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +53,services,married,basic.9y,no,yes,no,telephone,jul,tue,723,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,no +42,management,married,university.degree,no,no,yes,telephone,jul,tue,650,2,999,0,nonexistent,1.4,93.918,-42.7,4.955,5228.1,yes +43,blue-collar,single,basic.4y,no,no,no,telephone,jul,wed,660,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +26,blue-collar,married,university.degree,no,no,no,telephone,jul,wed,63,4,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +40,admin.,divorced,high.school,no,no,no,telephone,jul,wed,96,7,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +39,blue-collar,married,unknown,unknown,no,no,telephone,jul,wed,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +46,housemaid,married,basic.4y,no,yes,no,telephone,jul,wed,220,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +41,blue-collar,married,basic.6y,no,no,no,telephone,jul,wed,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +36,technician,single,high.school,no,no,no,telephone,jul,wed,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,wed,32,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +43,technician,single,professional.course,no,no,no,telephone,jul,wed,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +50,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,wed,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +30,blue-collar,single,high.school,no,no,no,telephone,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +47,technician,married,professional.course,no,no,no,telephone,jul,wed,348,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +49,technician,single,high.school,no,yes,no,telephone,jul,wed,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +28,unemployed,single,high.school,no,yes,no,telephone,jul,wed,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +31,services,single,high.school,no,no,no,telephone,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +51,services,married,high.school,unknown,no,no,telephone,jul,wed,372,1,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +28,services,married,high.school,no,no,no,telephone,jul,wed,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +28,management,married,university.degree,no,yes,no,telephone,jul,wed,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +28,admin.,single,university.degree,no,yes,yes,telephone,jul,wed,108,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +38,services,divorced,basic.9y,no,yes,no,telephone,jul,wed,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +30,self-employed,married,university.degree,no,yes,yes,telephone,jul,wed,957,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +46,services,married,high.school,no,no,no,telephone,jul,wed,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.956,5228.1,no +40,admin.,divorced,professional.course,unknown,no,no,telephone,jul,thu,343,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +51,services,married,high.school,no,yes,no,telephone,jul,thu,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +45,management,single,university.degree,no,no,yes,telephone,jul,thu,269,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +36,retired,married,unknown,no,no,no,telephone,jul,thu,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +46,admin.,married,high.school,unknown,no,no,telephone,jul,thu,375,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +48,entrepreneur,married,basic.6y,no,yes,no,telephone,jul,thu,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +32,housemaid,married,basic.9y,no,no,no,telephone,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +30,blue-collar,divorced,basic.4y,no,yes,yes,telephone,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +56,management,married,university.degree,no,yes,no,telephone,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +29,technician,single,university.degree,no,yes,no,telephone,jul,thu,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +42,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,thu,472,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,technician,single,professional.course,no,yes,no,telephone,jul,thu,452,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +52,retired,divorced,professional.course,no,no,no,telephone,jul,thu,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,technician,single,professional.course,no,no,no,telephone,jul,thu,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +53,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +30,blue-collar,single,basic.4y,no,no,no,telephone,jul,thu,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,414,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +28,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +37,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,thu,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +38,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +48,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,256,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +45,admin.,married,high.school,no,no,no,telephone,jul,thu,172,10,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +58,technician,married,university.degree,no,no,no,telephone,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +41,admin.,married,high.school,no,no,no,telephone,jul,thu,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +35,unemployed,married,basic.9y,unknown,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +53,technician,divorced,professional.course,no,no,no,telephone,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +38,technician,single,university.degree,unknown,yes,yes,telephone,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +55,admin.,married,basic.9y,unknown,yes,no,telephone,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +54,admin.,divorced,unknown,unknown,no,no,telephone,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +50,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,jul,thu,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +57,housemaid,divorced,basic.6y,no,yes,no,telephone,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,admin.,single,high.school,no,no,no,telephone,jul,thu,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +43,management,married,university.degree,no,no,yes,telephone,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +35,admin.,divorced,university.degree,unknown,no,no,telephone,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +36,retired,married,unknown,no,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +36,retired,married,unknown,no,no,no,telephone,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jul,thu,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +37,technician,married,basic.9y,no,yes,no,telephone,jul,thu,991,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +34,admin.,divorced,university.degree,no,no,no,telephone,jul,thu,676,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,yes +34,management,married,university.degree,no,yes,no,telephone,jul,thu,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +29,blue-collar,divorced,high.school,no,yes,no,telephone,jul,thu,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +52,housemaid,single,basic.4y,no,yes,no,telephone,jul,thu,306,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +24,admin.,single,high.school,no,yes,yes,telephone,jul,thu,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +27,services,married,basic.9y,no,no,no,telephone,jul,thu,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +30,technician,married,professional.course,no,yes,no,telephone,jul,thu,501,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +34,blue-collar,married,basic.6y,no,yes,no,telephone,jul,thu,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +41,services,single,high.school,unknown,no,yes,telephone,jul,thu,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +57,housemaid,married,basic.4y,no,yes,no,telephone,jul,thu,381,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +32,services,married,high.school,no,yes,no,telephone,jul,thu,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +37,technician,married,basic.9y,no,no,no,telephone,jul,thu,515,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,jul,thu,389,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +50,entrepreneur,married,professional.course,no,yes,no,telephone,jul,thu,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +28,management,single,unknown,no,no,no,telephone,jul,thu,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,yes,telephone,jul,thu,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +30,services,married,basic.9y,no,no,yes,telephone,jul,thu,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +25,services,single,high.school,no,yes,no,telephone,jul,thu,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +43,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,155,3,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +26,technician,married,professional.course,no,yes,no,telephone,jul,thu,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,thu,746,4,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +29,entrepreneur,single,university.degree,no,yes,no,telephone,jul,thu,167,11,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +23,technician,single,professional.course,no,yes,no,telephone,jul,thu,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +55,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,thu,385,6,999,0,nonexistent,1.4,93.918,-42.7,4.966,5228.1,no +36,management,married,basic.6y,unknown,yes,no,telephone,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +46,self-employed,married,high.school,unknown,yes,no,telephone,jul,fri,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,technician,single,professional.course,no,no,no,telephone,jul,fri,566,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +46,blue-collar,married,unknown,no,yes,no,telephone,jul,fri,257,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,technician,married,high.school,no,yes,no,telephone,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +24,blue-collar,single,basic.9y,unknown,no,no,telephone,jul,fri,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +37,admin.,single,university.degree,no,no,no,telephone,jul,fri,43,11,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +27,services,single,high.school,no,yes,no,telephone,jul,fri,433,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +56,self-employed,married,basic.9y,unknown,no,no,telephone,jul,fri,523,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +55,technician,married,university.degree,no,yes,no,telephone,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,blue-collar,married,basic.6y,unknown,no,yes,telephone,jul,fri,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +26,admin.,single,high.school,no,no,yes,telephone,jul,fri,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +45,management,married,university.degree,unknown,no,yes,telephone,jul,fri,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +45,management,married,university.degree,unknown,no,yes,telephone,jul,fri,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +29,blue-collar,single,high.school,no,yes,no,telephone,jul,fri,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +46,services,married,high.school,no,yes,no,telephone,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,technician,divorced,professional.course,no,yes,yes,telephone,jul,fri,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,jul,fri,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +43,management,married,high.school,no,no,yes,telephone,jul,fri,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,housemaid,married,basic.6y,no,no,no,telephone,jul,fri,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,admin.,single,high.school,no,no,no,telephone,jul,fri,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +39,admin.,married,high.school,no,no,no,telephone,jul,fri,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +39,admin.,married,high.school,no,yes,no,telephone,jul,fri,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,blue-collar,single,high.school,no,no,no,telephone,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +43,technician,married,university.degree,no,yes,no,telephone,jul,fri,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +40,blue-collar,single,high.school,no,no,no,telephone,jul,fri,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,unemployed,single,professional.course,no,no,no,telephone,jul,fri,538,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +36,entrepreneur,married,university.degree,no,no,no,telephone,jul,fri,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,fri,5,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +28,admin.,single,university.degree,no,no,no,telephone,jul,fri,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jul,fri,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jul,fri,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +27,services,married,high.school,unknown,no,no,telephone,jul,fri,584,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,yes +35,blue-collar,married,high.school,no,no,no,telephone,jul,fri,260,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,jul,fri,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,admin.,single,university.degree,no,yes,no,telephone,jul,fri,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +41,entrepreneur,married,basic.4y,no,no,no,telephone,jul,fri,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +43,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jul,fri,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,admin.,single,university.degree,no,yes,no,telephone,jul,fri,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +35,blue-collar,married,basic.4y,no,yes,no,telephone,jul,fri,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +53,blue-collar,married,basic.4y,no,yes,no,telephone,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +57,admin.,single,university.degree,unknown,no,no,telephone,jul,fri,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,fri,742,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,telephone,jul,fri,692,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +37,unemployed,married,university.degree,no,no,yes,telephone,jul,fri,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +26,admin.,single,high.school,no,yes,no,telephone,jul,fri,678,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +38,services,single,high.school,no,no,no,telephone,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +34,technician,single,high.school,no,yes,no,telephone,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +32,admin.,divorced,university.degree,no,no,yes,telephone,jul,fri,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +53,housemaid,married,basic.4y,no,no,no,telephone,jul,fri,53,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +41,entrepreneur,married,basic.4y,no,yes,no,telephone,jul,fri,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +45,admin.,married,university.degree,no,no,no,telephone,jul,fri,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +33,technician,married,university.degree,no,unknown,unknown,telephone,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,telephone,jul,fri,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +34,technician,single,professional.course,unknown,yes,no,telephone,jul,fri,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,telephone,jul,fri,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,fri,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +29,entrepreneur,married,basic.6y,no,yes,yes,telephone,jul,fri,286,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,services,single,high.school,no,yes,no,telephone,jul,fri,1576,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +43,technician,single,professional.course,no,yes,no,telephone,jul,fri,468,6,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +59,retired,married,basic.4y,unknown,no,no,telephone,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +27,admin.,married,university.degree,no,yes,yes,telephone,jul,fri,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +28,blue-collar,divorced,basic.4y,no,no,no,telephone,jul,fri,327,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +29,admin.,single,university.degree,no,unknown,unknown,telephone,jul,fri,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +49,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +49,blue-collar,married,basic.9y,no,yes,no,telephone,jul,fri,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +29,entrepreneur,married,high.school,no,yes,no,cellular,jul,fri,668,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +46,services,married,high.school,no,yes,no,telephone,jul,fri,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +33,technician,married,basic.9y,unknown,yes,no,cellular,jul,fri,436,4,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +41,management,married,university.degree,no,yes,no,cellular,jul,fri,1044,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,technician,single,professional.course,no,no,no,telephone,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,services,divorced,high.school,no,yes,yes,cellular,jul,fri,39,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +58,retired,married,professional.course,unknown,yes,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +31,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,fri,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +30,admin.,married,high.school,no,yes,no,cellular,jul,fri,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +40,blue-collar,divorced,basic.6y,unknown,unknown,unknown,cellular,jul,fri,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,fri,548,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +29,admin.,married,basic.9y,no,yes,no,cellular,jul,fri,273,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +40,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +48,blue-collar,married,basic.4y,no,no,yes,cellular,jul,fri,425,2,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +51,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +51,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,276,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +34,technician,married,high.school,unknown,yes,no,cellular,jul,fri,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +34,unemployed,married,high.school,no,no,no,cellular,jul,fri,339,1,999,0,nonexistent,1.4,93.918,-42.7,4.959,5228.1,no +55,admin.,married,high.school,no,yes,no,cellular,jul,mon,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,admin.,married,university.degree,unknown,unknown,unknown,cellular,jul,mon,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,divorced,high.school,no,no,no,cellular,jul,mon,148,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,admin.,divorced,high.school,no,no,yes,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,admin.,married,illiterate,unknown,no,no,cellular,jul,mon,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,management,married,professional.course,no,yes,no,cellular,jul,mon,491,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +59,retired,married,professional.course,unknown,yes,yes,cellular,jul,mon,494,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +33,self-employed,married,basic.9y,no,yes,no,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,married,high.school,no,yes,yes,cellular,jul,mon,615,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +48,admin.,married,university.degree,no,yes,no,cellular,jul,mon,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,mon,518,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,technician,single,university.degree,no,no,yes,cellular,jul,mon,164,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +53,self-employed,divorced,university.degree,no,no,no,cellular,jul,mon,397,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,technician,married,university.degree,unknown,no,no,cellular,jul,mon,17,19,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,unemployed,divorced,university.degree,no,yes,no,cellular,jul,mon,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,married,high.school,unknown,no,no,cellular,jul,mon,160,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,89,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,admin.,married,basic.9y,no,yes,yes,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,professional.course,no,yes,yes,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,227,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,mon,107,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,unemployed,married,high.school,unknown,yes,no,cellular,jul,mon,149,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,services,married,professional.course,unknown,no,no,cellular,jul,mon,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,1434,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jul,mon,176,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,blue-collar,married,basic.6y,no,no,no,telephone,jul,mon,63,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,management,married,unknown,no,no,yes,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,self-employed,married,unknown,no,yes,no,cellular,jul,mon,685,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,management,divorced,university.degree,no,no,no,cellular,jul,mon,200,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,technician,divorced,professional.course,no,no,no,cellular,jul,mon,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,technician,married,university.degree,unknown,no,no,cellular,jul,mon,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,technician,married,professional.course,unknown,no,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,services,married,high.school,unknown,yes,no,cellular,jul,mon,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,basic.9y,unknown,yes,no,telephone,jul,mon,229,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,management,divorced,university.degree,unknown,no,yes,cellular,jul,mon,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,services,married,basic.6y,no,no,yes,cellular,jul,mon,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,mon,49,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,technician,married,professional.course,no,no,no,cellular,jul,mon,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,entrepreneur,married,basic.6y,no,yes,yes,cellular,jul,mon,782,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +45,management,married,unknown,unknown,no,no,cellular,jul,mon,321,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,116,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,mon,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,management,married,basic.4y,no,no,no,cellular,jul,mon,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,admin.,married,basic.9y,unknown,no,no,cellular,jul,mon,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,management,married,high.school,no,no,no,cellular,jul,mon,1272,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +45,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,jul,mon,401,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,services,single,basic.9y,no,no,no,cellular,jul,mon,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,blue-collar,single,basic.4y,no,yes,no,cellular,jul,mon,758,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,self-employed,single,basic.4y,no,unknown,unknown,cellular,jul,mon,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,single,basic.4y,no,unknown,unknown,cellular,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,461,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,admin.,divorced,basic.6y,no,yes,no,cellular,jul,mon,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,240,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,housemaid,divorced,high.school,no,yes,no,cellular,jul,mon,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,412,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,technician,married,high.school,no,yes,no,cellular,jul,mon,244,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,management,married,university.degree,unknown,no,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,married,basic.9y,no,no,no,cellular,jul,mon,62,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,self-employed,married,high.school,unknown,yes,no,telephone,jul,mon,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,mon,41,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,services,married,high.school,no,yes,no,cellular,jul,mon,559,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,unemployed,single,high.school,no,yes,no,cellular,jul,mon,300,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,services,single,high.school,no,no,no,cellular,jul,mon,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +25,admin.,married,high.school,no,no,yes,cellular,jul,mon,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,technician,married,professional.course,no,no,no,cellular,jul,mon,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,retired,married,basic.4y,no,yes,no,cellular,jul,mon,621,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +31,services,single,high.school,no,yes,yes,cellular,jul,mon,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,mon,259,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,blue-collar,divorced,high.school,no,yes,yes,cellular,jul,mon,629,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,1103,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,317,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,entrepreneur,married,university.degree,unknown,no,yes,telephone,jul,mon,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,management,single,university.degree,no,no,no,telephone,jul,mon,66,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,technician,married,university.degree,no,yes,yes,cellular,jul,mon,385,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +35,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,1356,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +44,services,married,high.school,no,no,no,cellular,jul,mon,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,services,married,high.school,unknown,yes,no,telephone,jul,mon,173,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,jul,mon,61,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,unemployed,married,high.school,no,no,no,cellular,jul,mon,74,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,housemaid,single,basic.6y,no,no,no,cellular,jul,mon,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,admin.,single,university.degree,no,yes,yes,telephone,jul,mon,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,unemployed,divorced,basic.9y,unknown,no,no,cellular,jul,mon,326,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,divorced,high.school,no,no,no,cellular,jul,mon,21,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,services,single,basic.9y,unknown,no,yes,cellular,jul,mon,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,services,divorced,unknown,no,no,no,cellular,jul,mon,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,services,married,basic.6y,no,yes,no,cellular,jul,mon,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,unemployed,divorced,basic.9y,no,unknown,unknown,cellular,jul,mon,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,housemaid,married,university.degree,no,yes,no,cellular,jul,mon,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,admin.,single,high.school,no,no,no,cellular,jul,mon,459,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,married,university.degree,no,no,no,cellular,jul,mon,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,services,divorced,high.school,no,unknown,unknown,cellular,jul,mon,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,married,high.school,no,yes,no,cellular,jul,mon,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,jul,mon,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,services,single,high.school,no,no,no,cellular,jul,mon,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,admin.,single,university.degree,unknown,yes,no,cellular,jul,mon,248,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,high.school,no,no,no,cellular,jul,mon,889,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,married,high.school,no,yes,no,cellular,jul,mon,556,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +55,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,jul,mon,199,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,technician,divorced,university.degree,no,no,no,cellular,jul,mon,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,blue-collar,married,basic.4y,no,no,yes,telephone,jul,mon,256,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,management,married,university.degree,no,yes,yes,cellular,jul,mon,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,461,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,self-employed,married,high.school,no,no,no,cellular,jul,mon,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,jul,mon,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,services,married,high.school,no,yes,no,cellular,jul,mon,206,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,married,basic.9y,unknown,unknown,unknown,cellular,jul,mon,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,mon,643,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,entrepreneur,married,unknown,unknown,yes,no,cellular,jul,mon,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,technician,married,professional.course,no,no,yes,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,married,high.school,no,unknown,unknown,cellular,jul,mon,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,admin.,divorced,high.school,no,no,no,cellular,jul,mon,480,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,mon,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,admin.,divorced,high.school,no,no,no,cellular,jul,mon,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +60,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,jul,mon,575,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,retired,married,basic.4y,no,no,no,cellular,jul,mon,445,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,technician,single,professional.course,no,yes,yes,cellular,jul,mon,554,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,admin.,divorced,high.school,unknown,no,no,cellular,jul,mon,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,entrepreneur,married,basic.6y,no,yes,no,cellular,jul,mon,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,married,unknown,no,no,no,cellular,jul,mon,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,management,married,university.degree,no,yes,no,cellular,jul,mon,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,university.degree,no,yes,no,telephone,jul,mon,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,housemaid,married,high.school,unknown,yes,no,cellular,jul,mon,1200,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,services,divorced,high.school,no,no,no,cellular,jul,mon,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,entrepreneur,married,university.degree,unknown,unknown,unknown,cellular,jul,mon,268,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,married,unknown,unknown,no,no,cellular,jul,mon,630,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,services,married,basic.6y,unknown,no,no,cellular,jul,mon,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,services,married,professional.course,no,yes,no,cellular,jul,mon,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,single,university.degree,unknown,no,no,cellular,jul,mon,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,admin.,single,high.school,no,no,no,cellular,jul,mon,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,services,married,high.school,no,no,yes,cellular,jul,mon,162,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +53,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,933,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,high.school,no,no,no,cellular,jul,mon,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,technician,married,basic.9y,no,yes,no,cellular,jul,mon,448,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,261,12,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,entrepreneur,married,basic.4y,no,yes,no,cellular,jul,mon,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,management,married,university.degree,no,yes,no,cellular,jul,mon,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,mon,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,entrepreneur,married,basic.4y,no,no,no,cellular,jul,mon,531,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,services,married,basic.9y,unknown,no,no,cellular,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,services,married,basic.9y,unknown,yes,no,cellular,jul,mon,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,admin.,married,university.degree,no,no,no,telephone,jul,mon,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,retired,divorced,high.school,unknown,no,no,cellular,jul,mon,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,high.school,no,yes,no,telephone,jul,mon,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,management,married,high.school,no,yes,no,cellular,jul,mon,599,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +50,management,married,university.degree,no,yes,no,cellular,jul,mon,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,mon,849,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +34,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,single,high.school,unknown,no,no,cellular,jul,mon,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,212,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,services,married,high.school,no,yes,no,cellular,jul,mon,337,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,jul,mon,1467,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,single,university.degree,no,no,no,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,387,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,353,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,500,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,married,university.degree,no,no,no,telephone,jul,mon,267,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,313,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,535,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,technician,married,unknown,unknown,yes,no,cellular,jul,mon,326,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,self-employed,married,university.degree,no,no,no,cellular,jul,mon,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,mon,973,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +60,retired,married,high.school,no,no,no,telephone,jul,mon,188,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,admin.,divorced,basic.6y,no,no,no,telephone,jul,mon,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,technician,married,basic.6y,no,yes,no,cellular,jul,mon,422,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,married,high.school,no,yes,no,cellular,jul,mon,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,self-employed,single,basic.9y,unknown,yes,no,cellular,jul,mon,835,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,unknown,married,basic.4y,unknown,yes,no,cellular,jul,mon,511,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,married,professional.course,no,no,no,cellular,jul,mon,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,married,high.school,no,yes,no,telephone,jul,mon,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,1165,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,single,high.school,no,yes,no,cellular,jul,mon,113,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,services,single,high.school,no,yes,no,cellular,jul,mon,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,services,single,high.school,no,no,no,cellular,jul,mon,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,mon,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,services,single,high.school,no,no,no,cellular,jul,mon,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,university.degree,no,no,no,telephone,jul,mon,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,services,married,high.school,unknown,no,no,cellular,jul,mon,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,technician,married,professional.course,no,no,no,cellular,jul,mon,830,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +47,technician,married,professional.course,no,no,no,cellular,jul,mon,208,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,retired,married,university.degree,unknown,no,no,telephone,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,blue-collar,married,unknown,unknown,unknown,unknown,cellular,jul,mon,375,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,housemaid,single,basic.4y,unknown,no,no,cellular,jul,mon,457,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,self-employed,married,professional.course,unknown,no,yes,cellular,jul,mon,216,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,technician,divorced,basic.9y,no,yes,no,cellular,jul,mon,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,unknown,single,basic.9y,unknown,no,no,cellular,jul,mon,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,married,high.school,no,yes,no,cellular,jul,mon,238,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,jul,mon,281,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,single,high.school,no,no,no,cellular,jul,mon,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,blue-collar,single,high.school,no,no,no,cellular,jul,mon,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,married,high.school,no,no,no,cellular,jul,mon,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,107,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,management,married,university.degree,unknown,no,no,cellular,jul,mon,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,divorced,professional.course,no,no,no,cellular,jul,mon,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,divorced,university.degree,no,yes,no,cellular,jul,mon,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,mon,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,293,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,services,married,basic.9y,no,no,no,cellular,jul,mon,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,entrepreneur,single,professional.course,no,no,no,telephone,jul,mon,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,unemployed,married,high.school,no,no,no,cellular,jul,mon,273,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,152,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,high.school,no,no,no,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,telephone,jul,mon,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,mon,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,technician,married,professional.course,no,yes,yes,telephone,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,244,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,management,single,high.school,no,no,no,cellular,jul,mon,264,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,280,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,jul,mon,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,entrepreneur,married,basic.4y,no,no,no,cellular,jul,mon,25,30,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,services,married,high.school,unknown,yes,no,cellular,jul,mon,36,33,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,214,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,services,divorced,unknown,no,no,yes,cellular,jul,mon,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,95,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,housemaid,married,basic.4y,no,no,yes,cellular,jul,mon,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,mon,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,15,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,married,professional.course,unknown,no,no,telephone,jul,mon,237,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,jul,mon,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,technician,married,professional.course,unknown,no,no,cellular,jul,mon,224,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,333,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,jul,mon,627,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,technician,married,high.school,no,no,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,single,high.school,no,yes,no,telephone,jul,mon,416,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,unemployed,divorced,professional.course,unknown,yes,no,cellular,jul,mon,221,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,services,married,basic.9y,no,no,yes,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,unemployed,married,unknown,no,yes,no,cellular,jul,mon,199,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,576,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,unknown,unknown,yes,no,cellular,jul,mon,377,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,mon,260,13,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,management,divorced,university.degree,unknown,no,no,cellular,jul,mon,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,high.school,no,no,no,cellular,jul,mon,160,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,divorced,high.school,no,no,no,cellular,jul,mon,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,services,married,basic.9y,no,yes,no,telephone,jul,mon,543,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,admin.,married,professional.course,no,no,no,cellular,jul,mon,182,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,unemployed,single,basic.9y,no,yes,yes,cellular,jul,mon,104,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,management,divorced,university.degree,no,no,no,cellular,jul,mon,13,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,technician,single,professional.course,unknown,yes,no,cellular,jul,mon,224,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,single,unknown,no,yes,no,cellular,jul,mon,179,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,married,high.school,no,no,no,cellular,jul,mon,74,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,422,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,447,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,single,basic.6y,no,no,yes,cellular,jul,mon,380,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,371,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,261,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,140,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jul,mon,360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,500,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,basic.9y,no,no,yes,telephone,jul,mon,146,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,services,divorced,university.degree,no,no,no,cellular,jul,mon,407,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,jul,mon,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,single,university.degree,no,no,no,cellular,jul,mon,756,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,divorced,basic.6y,unknown,no,yes,telephone,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,mon,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,admin.,divorced,high.school,no,no,no,telephone,jul,mon,352,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,management,married,university.degree,unknown,yes,no,cellular,jul,mon,16,34,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,288,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,unemployed,single,high.school,no,yes,no,telephone,jul,mon,245,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,technician,married,university.degree,no,no,no,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,married,unknown,unknown,yes,no,cellular,jul,mon,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,housemaid,divorced,high.school,no,yes,no,cellular,jul,mon,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,services,single,high.school,no,no,no,cellular,jul,mon,422,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,admin.,single,university.degree,unknown,yes,no,cellular,jul,mon,719,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +40,services,married,high.school,no,yes,no,telephone,jul,mon,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +53,services,married,high.school,no,no,no,telephone,jul,mon,336,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,technician,married,professional.course,unknown,no,no,telephone,jul,mon,89,13,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,112,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,management,married,university.degree,unknown,no,no,cellular,jul,mon,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,services,married,high.school,no,no,no,cellular,jul,mon,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,married,high.school,no,no,no,cellular,jul,mon,624,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,single,high.school,unknown,no,no,cellular,jul,mon,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +60,management,married,unknown,unknown,no,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,mon,482,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,single,unknown,no,yes,no,telephone,jul,mon,564,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,jul,mon,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,jul,mon,279,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,jul,mon,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,jul,mon,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,jul,mon,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,technician,married,professional.course,no,yes,no,telephone,jul,mon,9,17,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,admin.,married,high.school,no,no,yes,cellular,jul,mon,205,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,131,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,married,university.degree,no,no,yes,cellular,jul,mon,15,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,technician,married,professional.course,no,no,no,cellular,jul,mon,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,housemaid,married,high.school,no,yes,yes,cellular,jul,mon,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,technician,married,unknown,unknown,yes,no,cellular,jul,mon,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,290,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,342,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,yes,no,cellular,jul,tue,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,no,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,divorced,high.school,unknown,yes,yes,cellular,jul,tue,47,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,entrepreneur,married,unknown,unknown,yes,yes,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,married,basic.9y,no,no,no,cellular,jul,tue,491,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,married,high.school,no,no,no,cellular,jul,tue,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,tue,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,tue,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unemployed,divorced,professional.course,no,no,no,telephone,jul,tue,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,jul,tue,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,services,married,high.school,no,yes,no,cellular,jul,tue,24,26,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,jul,tue,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,divorced,high.school,no,yes,no,telephone,jul,tue,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,divorced,high.school,no,no,no,cellular,jul,tue,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,services,divorced,high.school,no,yes,no,cellular,jul,tue,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,basic.9y,unknown,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,divorced,high.school,no,yes,yes,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,unknown,no,no,cellular,jul,tue,509,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +42,unemployed,married,university.degree,unknown,yes,no,cellular,jul,tue,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,basic.4y,unknown,no,no,cellular,jul,tue,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,395,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,married,high.school,unknown,yes,no,cellular,jul,tue,740,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +56,services,married,basic.4y,unknown,no,no,cellular,jul,tue,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +60,admin.,married,high.school,unknown,no,no,cellular,jul,tue,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,admin.,married,high.school,unknown,no,no,cellular,jul,tue,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,divorced,high.school,no,yes,no,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,425,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,entrepreneur,married,university.degree,no,no,no,telephone,jul,tue,208,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,yes,no,cellular,jul,tue,85,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,single,unknown,no,no,no,cellular,jul,tue,290,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,married,basic.6y,unknown,no,no,cellular,jul,tue,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,single,unknown,no,no,no,cellular,jul,tue,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,professional.course,no,no,yes,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,523,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,married,high.school,unknown,no,no,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,married,high.school,no,yes,yes,cellular,jul,tue,144,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,university.degree,no,no,yes,cellular,jul,tue,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,management,divorced,university.degree,no,yes,no,cellular,jul,tue,732,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,admin.,married,university.degree,no,no,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,married,high.school,unknown,no,no,cellular,jul,tue,733,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,self-employed,single,professional.course,no,yes,no,cellular,jul,tue,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,jul,tue,524,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,377,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,single,high.school,no,yes,no,cellular,jul,tue,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,management,married,basic.6y,unknown,yes,no,cellular,jul,tue,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,admin.,married,high.school,no,no,no,cellular,jul,tue,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,jul,tue,711,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,married,high.school,unknown,yes,no,cellular,jul,tue,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,management,single,unknown,no,yes,no,cellular,jul,tue,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,jul,tue,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,high.school,no,no,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,531,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,management,married,basic.9y,no,no,no,cellular,jul,tue,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,divorced,high.school,unknown,yes,no,cellular,jul,tue,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,tue,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,single,university.degree,no,no,no,cellular,jul,tue,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +38,entrepreneur,married,basic.9y,unknown,no,yes,cellular,jul,tue,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,services,single,high.school,unknown,no,no,cellular,jul,tue,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,single,unknown,no,yes,no,cellular,jul,tue,1046,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,married,high.school,unknown,no,no,cellular,jul,tue,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,high.school,no,no,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,single,professional.course,unknown,yes,no,cellular,jul,tue,265,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,married,high.school,no,no,no,telephone,jul,tue,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,no,yes,yes,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,divorced,high.school,no,unknown,unknown,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,tue,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,no,yes,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,high.school,no,no,no,cellular,jul,tue,705,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +47,technician,married,professional.course,unknown,no,yes,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,professional.course,no,yes,no,cellular,jul,tue,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,high.school,no,yes,no,cellular,jul,tue,992,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +47,technician,married,professional.course,unknown,no,no,cellular,jul,tue,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,single,university.degree,no,no,no,cellular,jul,tue,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,high.school,no,no,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,management,single,university.degree,no,yes,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,management,single,university.degree,no,yes,no,cellular,jul,tue,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,unknown,no,no,no,cellular,jul,tue,574,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,no,no,cellular,jul,tue,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,401,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,student,single,high.school,unknown,no,no,cellular,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,single,university.degree,no,no,no,cellular,jul,tue,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,no,telephone,jul,tue,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,management,single,university.degree,unknown,yes,yes,cellular,jul,tue,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,jul,tue,574,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,220,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,no,no,cellular,jul,tue,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,tue,443,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,jul,tue,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,high.school,no,no,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,tue,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,divorced,professional.course,no,no,no,cellular,jul,tue,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,services,married,basic.9y,no,no,no,telephone,jul,tue,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,325,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,no,no,cellular,jul,tue,1767,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +34,admin.,married,university.degree,no,no,no,cellular,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,tue,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,services,married,basic.9y,no,no,no,cellular,jul,tue,630,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,high.school,no,no,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,545,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,high.school,no,yes,no,cellular,jul,tue,681,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +30,unemployed,single,basic.4y,unknown,no,yes,cellular,jul,tue,489,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,yes,no,cellular,jul,tue,483,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,services,married,basic.6y,no,yes,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,jul,tue,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,yes,yes,cellular,jul,tue,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,no,yes,cellular,jul,tue,1082,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +30,technician,single,professional.course,no,yes,no,cellular,jul,tue,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +33,services,single,high.school,no,yes,no,cellular,jul,tue,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,self-employed,married,unknown,no,no,no,cellular,jul,tue,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,jul,tue,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,single,university.degree,unknown,yes,yes,cellular,jul,tue,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,single,basic.9y,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,716,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +39,services,married,high.school,no,no,no,cellular,jul,tue,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,technician,divorced,professional.course,no,no,no,cellular,jul,tue,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,jul,tue,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,338,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,university.degree,no,no,no,cellular,jul,tue,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,admin.,single,high.school,no,no,yes,cellular,jul,tue,586,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,413,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,single,professional.course,unknown,no,no,cellular,jul,tue,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,high.school,no,unknown,unknown,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,self-employed,divorced,professional.course,unknown,no,no,cellular,jul,tue,361,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,single,university.degree,no,no,yes,cellular,jul,tue,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,tue,528,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,admin.,single,high.school,no,no,no,cellular,jul,tue,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,no,no,cellular,jul,tue,803,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,no,yes,no,cellular,jul,tue,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,jul,tue,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,jul,tue,220,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +20,blue-collar,married,basic.4y,no,no,yes,cellular,jul,tue,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,university.degree,unknown,yes,no,cellular,jul,tue,231,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,university.degree,unknown,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,student,single,high.school,unknown,yes,no,cellular,jul,tue,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,single,professional.course,no,no,no,cellular,jul,tue,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,454,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,jul,tue,215,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,basic.9y,no,yes,no,cellular,jul,tue,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,tue,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,491,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,tue,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,services,single,high.school,no,yes,no,telephone,jul,tue,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,basic.6y,unknown,no,no,cellular,jul,tue,61,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,tue,1027,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,entrepreneur,married,high.school,no,no,no,cellular,jul,tue,831,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +26,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,tue,510,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,no,no,cellular,jul,tue,338,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,management,married,university.degree,unknown,unknown,unknown,cellular,jul,tue,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,services,divorced,basic.6y,no,yes,yes,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,entrepreneur,married,professional.course,no,no,no,cellular,jul,tue,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,tue,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,entrepreneur,single,basic.9y,unknown,yes,no,cellular,jul,tue,349,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,management,single,university.degree,unknown,no,no,cellular,jul,tue,312,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,entrepreneur,married,professional.course,no,yes,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,360,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,327,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,management,single,university.degree,no,yes,yes,cellular,jul,tue,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,tue,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,unknown,no,yes,yes,cellular,jul,tue,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,unknown,no,yes,no,telephone,jul,tue,460,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,jul,tue,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,high.school,no,no,yes,cellular,jul,tue,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,single,professional.course,no,yes,no,cellular,jul,tue,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,no,yes,cellular,jul,tue,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,divorced,high.school,unknown,yes,no,cellular,jul,tue,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,unknown,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,married,professional.course,no,yes,no,cellular,jul,tue,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,unknown,no,no,yes,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,married,basic.6y,no,no,no,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,yes,cellular,jul,tue,54,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,basic.6y,unknown,yes,yes,cellular,jul,tue,632,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,tue,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,yes,yes,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,251,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,jul,tue,319,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,635,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +35,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,584,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,jul,tue,157,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,unknown,no,yes,cellular,jul,tue,606,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,married,high.school,no,yes,no,cellular,jul,tue,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,divorced,high.school,no,yes,yes,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,professional.course,unknown,no,yes,cellular,jul,tue,1720,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,452,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,jul,tue,819,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,623,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +29,technician,married,professional.course,no,no,no,cellular,jul,tue,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,tue,63,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,married,professional.course,no,yes,no,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,no,yes,cellular,jul,tue,518,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,no,yes,no,telephone,jul,tue,336,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,married,basic.6y,unknown,yes,no,cellular,jul,tue,326,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,married,high.school,no,no,yes,cellular,jul,tue,302,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,323,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,no,no,telephone,jul,tue,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,entrepreneur,married,basic.9y,no,no,no,cellular,jul,tue,291,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,tue,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,483,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,jul,tue,52,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,management,single,university.degree,no,no,no,cellular,jul,tue,517,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,telephone,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,554,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,tue,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,242,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,basic.4y,unknown,yes,no,cellular,jul,tue,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,154,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,658,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +34,technician,single,university.degree,no,no,no,cellular,jul,tue,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,362,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,145,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,professional.course,no,yes,no,cellular,jul,tue,1061,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,entrepreneur,married,basic.9y,no,unknown,unknown,cellular,jul,tue,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,237,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,yes,cellular,jul,tue,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,tue,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,professional.course,unknown,unknown,unknown,cellular,jul,tue,392,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,tue,21,35,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.9y,no,no,no,telephone,jul,tue,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,201,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,services,married,high.school,no,yes,no,cellular,jul,tue,1344,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +27,admin.,single,professional.course,no,yes,yes,cellular,jul,tue,520,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,high.school,no,no,no,cellular,jul,tue,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,single,basic.9y,no,yes,yes,cellular,jul,tue,687,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +30,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,divorced,professional.course,no,yes,no,telephone,jul,tue,243,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,unknown,unknown,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.4y,no,yes,no,telephone,jul,tue,49,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,high.school,no,no,yes,telephone,jul,tue,65,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,tue,476,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,entrepreneur,married,university.degree,unknown,yes,yes,telephone,jul,tue,379,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,tue,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,services,divorced,high.school,no,yes,no,cellular,jul,tue,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,tue,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,high.school,no,no,no,telephone,jul,tue,17,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,tue,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,management,single,unknown,no,no,no,cellular,jul,tue,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,married,professional.course,no,yes,no,telephone,jul,tue,389,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,283,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,basic.6y,unknown,yes,no,telephone,jul,tue,554,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,17,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,high.school,no,yes,no,cellular,jul,tue,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,entrepreneur,single,basic.9y,no,yes,no,cellular,jul,tue,38,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,jul,tue,480,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,tue,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,married,professional.course,no,yes,no,cellular,jul,tue,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,divorced,high.school,no,yes,no,cellular,jul,tue,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,admin.,single,high.school,no,yes,no,cellular,jul,tue,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,yes,telephone,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,jul,tue,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,tue,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,self-employed,single,professional.course,no,yes,no,cellular,jul,tue,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,tue,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,no,no,telephone,jul,tue,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,professional.course,no,yes,no,cellular,jul,tue,861,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,technician,married,unknown,no,yes,no,telephone,jul,tue,114,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,student,single,high.school,unknown,no,no,cellular,jul,tue,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,single,high.school,no,no,yes,telephone,jul,tue,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,married,professional.course,no,yes,no,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,single,professional.course,no,no,no,cellular,jul,tue,529,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,entrepreneur,married,unknown,unknown,yes,no,cellular,jul,tue,244,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,student,single,high.school,unknown,no,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.4y,no,no,no,telephone,jul,tue,104,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,high.school,no,no,no,cellular,jul,tue,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,married,high.school,no,yes,no,cellular,jul,tue,369,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,high.school,no,no,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,high.school,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,divorced,basic.9y,no,yes,no,cellular,jul,tue,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unemployed,divorced,professional.course,no,yes,no,cellular,jul,tue,214,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,student,single,high.school,unknown,no,no,cellular,jul,tue,1111,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,technician,divorced,professional.course,no,no,no,cellular,jul,tue,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,jul,tue,183,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,entrepreneur,married,basic.9y,unknown,yes,no,telephone,jul,tue,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,professional.course,no,no,no,cellular,jul,tue,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,married,high.school,no,no,no,cellular,jul,tue,329,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,jul,tue,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,unknown,no,no,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,married,basic.9y,no,no,no,telephone,jul,tue,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,management,married,university.degree,unknown,yes,yes,cellular,jul,tue,1011,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,142,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,basic.9y,no,no,no,telephone,jul,tue,280,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,jul,wed,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,wed,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,unknown,unknown,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,477,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,high.school,no,yes,no,cellular,jul,wed,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,self-employed,single,university.degree,no,no,no,cellular,jul,wed,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,jul,wed,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,jul,wed,394,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,divorced,university.degree,unknown,unknown,unknown,cellular,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,divorced,basic.9y,unknown,no,no,cellular,jul,wed,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,married,professional.course,no,yes,no,cellular,jul,wed,53,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,unknown,no,no,no,cellular,jul,wed,618,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,divorced,university.degree,no,yes,no,cellular,jul,wed,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,divorced,university.degree,no,no,no,cellular,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,divorced,university.degree,no,no,no,cellular,jul,wed,265,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,married,high.school,no,no,no,telephone,jul,wed,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,married,high.school,no,no,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,management,single,university.degree,no,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,wed,1272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,married,university.degree,no,no,no,cellular,jul,wed,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,admin.,married,high.school,no,no,no,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,basic.4y,unknown,yes,yes,cellular,jul,wed,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,single,high.school,unknown,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,university.degree,unknown,yes,no,cellular,jul,wed,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,single,university.degree,no,yes,no,cellular,jul,wed,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,815,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,basic.9y,no,yes,no,cellular,jul,wed,537,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,technician,married,professional.course,no,yes,yes,cellular,jul,wed,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,basic.9y,no,no,no,cellular,jul,wed,679,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +29,blue-collar,married,high.school,no,yes,no,telephone,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,jul,wed,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,2122,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,admin.,married,university.degree,no,yes,no,cellular,jul,wed,618,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,basic.9y,unknown,yes,no,cellular,jul,wed,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,wed,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,389,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,jul,wed,420,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,married,university.degree,no,no,no,cellular,jul,wed,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,no,yes,cellular,jul,wed,697,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,divorced,basic.9y,no,yes,no,telephone,jul,wed,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,no,yes,cellular,jul,wed,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,professional.course,no,yes,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,no,no,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,professional.course,no,yes,no,cellular,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,no,yes,cellular,jul,wed,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,professional.course,no,yes,no,cellular,jul,wed,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,professional.course,no,yes,no,cellular,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,professional.course,no,yes,no,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,unemployed,married,basic.6y,unknown,yes,no,cellular,jul,wed,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,high.school,no,yes,no,cellular,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,570,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +34,technician,married,professional.course,no,yes,no,cellular,jul,wed,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,single,university.degree,no,yes,yes,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,high.school,no,yes,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,high.school,no,yes,no,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,high.school,no,no,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,high.school,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,married,high.school,no,yes,no,cellular,jul,wed,761,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +48,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,wed,781,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +26,services,single,high.school,no,unknown,unknown,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,management,married,university.degree,no,yes,no,cellular,jul,wed,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,university.degree,unknown,yes,yes,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,university.degree,unknown,yes,yes,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,university.degree,unknown,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,wed,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,basic.9y,unknown,yes,no,telephone,jul,wed,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,high.school,no,yes,no,cellular,jul,wed,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,single,university.degree,no,yes,yes,cellular,jul,wed,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,entrepreneur,divorced,basic.4y,no,no,no,cellular,jul,wed,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,unemployed,married,basic.9y,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,married,professional.course,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,high.school,unknown,yes,no,cellular,jul,wed,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,high.school,unknown,no,no,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,married,university.degree,no,no,no,telephone,jul,wed,238,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,single,university.degree,no,no,no,cellular,jul,wed,645,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +32,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,wed,990,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +31,technician,divorced,professional.course,no,unknown,unknown,cellular,jul,wed,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,divorced,professional.course,no,no,no,cellular,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,unemployed,married,basic.9y,unknown,no,yes,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,662,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +31,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,625,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +28,technician,married,university.degree,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,unemployed,married,basic.9y,unknown,yes,no,cellular,jul,wed,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,married,university.degree,no,yes,no,cellular,jul,wed,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,technician,single,professional.course,unknown,no,no,cellular,jul,wed,482,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,727,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +55,admin.,divorced,high.school,no,no,no,cellular,jul,wed,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,married,university.degree,no,yes,no,telephone,jul,wed,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,wed,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,290,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,high.school,no,yes,no,cellular,jul,wed,310,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,married,professional.course,no,yes,no,cellular,jul,wed,389,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,professional.course,no,yes,no,cellular,jul,wed,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,275,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,married,high.school,no,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,married,high.school,no,yes,no,cellular,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,management,married,professional.course,no,no,no,cellular,jul,wed,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,married,university.degree,no,yes,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,divorced,high.school,no,yes,yes,cellular,jul,wed,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,366,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,jul,wed,52,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,90,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,jul,wed,426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +29,technician,married,professional.course,no,yes,no,cellular,jul,wed,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,housemaid,married,basic.9y,no,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,single,high.school,no,yes,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,married,high.school,no,yes,yes,cellular,jul,wed,273,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,student,single,high.school,no,no,yes,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,590,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +32,technician,single,university.degree,no,no,yes,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,wed,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,jul,wed,899,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,single,basic.4y,unknown,unknown,unknown,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,unemployed,married,university.degree,unknown,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,unemployed,married,university.degree,unknown,yes,no,telephone,jul,wed,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +36,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,basic.9y,unknown,unknown,unknown,cellular,jul,wed,628,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,jul,wed,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,unemployed,single,university.degree,no,yes,no,cellular,jul,wed,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,1139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +44,admin.,married,high.school,no,yes,no,cellular,jul,wed,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,divorced,high.school,no,yes,no,cellular,jul,wed,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,housemaid,single,high.school,no,no,no,cellular,jul,wed,1156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,management,married,university.degree,no,no,no,cellular,jul,wed,71,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,single,high.school,no,yes,yes,cellular,jul,wed,668,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,no,no,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,single,high.school,no,yes,no,cellular,jul,wed,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,wed,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,divorced,high.school,no,no,no,cellular,jul,wed,89,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,divorced,high.school,no,yes,no,cellular,jul,wed,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,high.school,no,no,no,cellular,jul,wed,869,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +24,services,single,high.school,no,yes,no,cellular,jul,wed,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,married,professional.course,no,yes,no,telephone,jul,wed,87,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,married,basic.9y,no,no,no,cellular,jul,wed,100,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,married,high.school,no,no,yes,telephone,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,205,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,unknown,yes,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,jul,wed,494,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,university.degree,no,no,no,cellular,jul,wed,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,self-employed,married,basic.4y,unknown,no,no,cellular,jul,wed,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,married,university.degree,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,services,married,high.school,no,unknown,unknown,cellular,jul,wed,136,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,married,high.school,no,yes,no,telephone,jul,wed,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,management,divorced,basic.6y,unknown,yes,yes,cellular,jul,wed,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,279,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,jul,wed,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,wed,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,self-employed,married,basic.9y,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,university.degree,no,yes,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,jul,wed,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,self-employed,married,basic.9y,no,yes,yes,cellular,jul,wed,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,university.degree,no,yes,no,telephone,jul,wed,693,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,wed,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,single,high.school,no,no,no,cellular,jul,wed,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,entrepreneur,divorced,university.degree,no,no,yes,cellular,jul,wed,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,management,single,high.school,no,yes,no,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,no,no,telephone,jul,wed,672,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,management,single,university.degree,unknown,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,jul,wed,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,divorced,high.school,unknown,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,wed,360,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,unknown,yes,yes,cellular,jul,wed,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,professional.course,unknown,no,no,cellular,jul,wed,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,professional.course,unknown,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,services,single,university.degree,no,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,high.school,no,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,married,basic.6y,unknown,yes,no,telephone,jul,wed,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,728,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,single,high.school,no,no,no,cellular,jul,wed,643,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,wed,203,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,entrepreneur,divorced,basic.4y,no,yes,yes,cellular,jul,wed,1317,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,services,married,high.school,no,no,no,cellular,jul,wed,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,divorced,high.school,no,no,no,cellular,jul,wed,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,technician,single,professional.course,no,yes,no,cellular,jul,wed,171,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,married,professional.course,no,no,no,cellular,jul,wed,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,unknown,married,basic.4y,unknown,yes,no,cellular,jul,wed,659,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,unemployed,married,high.school,no,no,no,cellular,jul,wed,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,married,high.school,no,no,no,cellular,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,entrepreneur,married,professional.course,no,no,no,cellular,jul,wed,736,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,university.degree,no,yes,no,cellular,jul,wed,458,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,university.degree,no,yes,no,cellular,jul,wed,174,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,self-employed,single,university.degree,no,no,no,cellular,jul,wed,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,management,married,university.degree,unknown,no,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,single,high.school,no,yes,no,telephone,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,services,married,high.school,unknown,no,no,telephone,jul,wed,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.9y,no,no,no,telephone,jul,wed,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,telephone,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,601,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,housemaid,married,university.degree,no,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +21,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +21,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,wed,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +21,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,housemaid,married,university.degree,no,no,no,cellular,jul,wed,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,wed,397,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,university.degree,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,480,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,wed,676,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,university.degree,no,no,no,telephone,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.6y,no,no,no,telephone,jul,wed,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,wed,271,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,131,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,single,high.school,no,yes,no,telephone,jul,wed,233,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,jul,wed,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,no,no,cellular,jul,wed,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,no,yes,cellular,jul,wed,432,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,yes,yes,cellular,jul,wed,411,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +20,admin.,single,high.school,no,no,no,cellular,jul,wed,208,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,no,no,cellular,jul,wed,359,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +41,unemployed,single,high.school,no,no,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,management,married,university.degree,no,unknown,unknown,cellular,jul,wed,530,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,unemployed,single,high.school,no,yes,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,unemployed,married,basic.6y,unknown,no,yes,telephone,jul,wed,399,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,university.degree,unknown,yes,yes,cellular,jul,wed,328,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,married,university.degree,no,unknown,unknown,telephone,jul,wed,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,jul,wed,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,wed,211,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,married,professional.course,no,no,no,cellular,jul,wed,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,wed,226,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,married,university.degree,no,unknown,unknown,cellular,jul,wed,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,jul,wed,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,married,university.degree,no,no,no,telephone,jul,wed,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,married,basic.9y,no,no,no,cellular,jul,wed,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,243,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,137,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,university.degree,no,yes,no,cellular,jul,wed,593,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,high.school,no,no,no,cellular,jul,wed,445,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,wed,1014,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +36,services,single,high.school,no,no,no,cellular,jul,wed,399,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,telephone,jul,wed,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,married,university.degree,no,no,no,telephone,jul,wed,19,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,wed,10,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,single,professional.course,no,yes,yes,telephone,jul,wed,17,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,professional.course,no,no,no,cellular,jul,wed,1290,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +55,management,divorced,basic.6y,unknown,no,no,telephone,jul,wed,297,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,management,married,university.degree,no,yes,no,cellular,jul,wed,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,married,university.degree,no,yes,no,telephone,jul,wed,193,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,university.degree,no,no,no,telephone,jul,wed,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,unemployed,married,basic.9y,unknown,yes,no,telephone,jul,wed,73,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,wed,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,single,university.degree,no,yes,yes,telephone,jul,wed,16,43,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,married,professional.course,no,no,no,telephone,jul,wed,20,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,university.degree,no,yes,no,cellular,jul,wed,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,unknown,no,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,no,no,cellular,jul,wed,607,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,wed,236,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,unknown,unknown,unknown,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,married,professional.course,no,no,no,telephone,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,wed,799,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,basic.9y,no,no,no,telephone,jul,wed,372,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,1439,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +41,admin.,married,basic.9y,no,yes,no,telephone,jul,wed,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,basic.9y,no,no,no,telephone,jul,wed,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,wed,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +45,technician,married,professional.course,unknown,no,no,telephone,jul,wed,130,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,services,single,university.degree,no,yes,no,cellular,jul,wed,170,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,services,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,services,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,wed,630,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,services,married,high.school,no,yes,yes,cellular,jul,wed,134,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,services,single,high.school,no,no,no,cellular,jul,wed,1426,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +27,retired,single,basic.9y,no,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,no,no,no,telephone,jul,thu,317,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,668,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,retired,married,basic.4y,no,yes,no,cellular,jul,thu,496,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,315,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,yes,telephone,jul,thu,29,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,347,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,admin.,married,high.school,no,no,no,cellular,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,admin.,married,high.school,no,yes,no,cellular,jul,thu,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,jul,thu,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,married,high.school,no,no,no,cellular,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,high.school,no,no,no,cellular,jul,thu,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,unemployed,married,professional.course,unknown,yes,yes,cellular,jul,thu,901,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +55,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,technician,divorced,professional.course,no,yes,yes,cellular,jul,thu,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,management,married,university.degree,no,no,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,266,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,single,professional.course,no,yes,no,cellular,jul,thu,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,retired,divorced,high.school,no,yes,no,cellular,jul,thu,162,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,jul,thu,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,jul,thu,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +48,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,no,yes,cellular,jul,thu,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,jul,thu,1019,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,single,high.school,no,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,single,high.school,no,yes,no,telephone,jul,thu,140,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,yes,yes,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,married,high.school,no,no,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,married,high.school,no,unknown,unknown,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,basic.9y,no,no,no,cellular,jul,thu,119,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,402,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,technician,divorced,university.degree,no,no,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,university.degree,no,yes,yes,cellular,jul,thu,1065,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,services,married,high.school,no,no,yes,cellular,jul,thu,371,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,217,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,854,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,services,married,high.school,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,thu,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,admin.,married,basic.4y,unknown,yes,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,university.degree,no,no,no,cellular,jul,thu,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,364,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,jul,thu,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,624,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,divorced,high.school,no,no,no,cellular,jul,thu,128,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,unknown,no,no,cellular,jul,thu,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,professional.course,no,yes,no,cellular,jul,thu,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,single,basic.9y,no,yes,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,unknown,no,no,cellular,jul,thu,863,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +33,technician,married,university.degree,no,yes,no,cellular,jul,thu,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,housemaid,married,high.school,no,no,no,telephone,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,housemaid,married,high.school,no,no,no,cellular,jul,thu,356,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,thu,783,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,high.school,unknown,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,blue-collar,single,high.school,no,no,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,student,single,university.degree,no,no,no,cellular,jul,thu,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,1102,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,thu,441,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,student,single,university.degree,no,yes,no,cellular,jul,thu,370,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,student,single,university.degree,no,yes,no,cellular,jul,thu,489,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,thu,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,no,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,no,yes,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,retired,married,high.school,no,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,management,married,university.degree,unknown,no,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,thu,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,unemployed,married,university.degree,unknown,no,no,telephone,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,jul,thu,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,technician,married,university.degree,unknown,no,no,cellular,jul,thu,793,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,473,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,high.school,no,no,no,cellular,jul,thu,964,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,services,divorced,high.school,no,no,no,cellular,jul,thu,503,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,technician,married,professional.course,no,no,no,cellular,jul,thu,439,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,married,professional.course,no,no,no,cellular,jul,thu,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,married,high.school,no,no,no,cellular,jul,thu,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,technician,married,professional.course,no,yes,no,cellular,jul,thu,804,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +27,technician,married,professional.course,no,yes,no,cellular,jul,thu,347,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,no,no,cellular,jul,thu,642,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,management,married,high.school,unknown,no,no,cellular,jul,thu,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,management,married,high.school,unknown,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,thu,660,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,management,single,university.degree,no,yes,yes,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,management,married,high.school,unknown,yes,no,cellular,jul,thu,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,no,no,telephone,jul,thu,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,982,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +42,admin.,single,university.degree,no,yes,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,student,married,high.school,no,no,no,cellular,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,services,married,high.school,unknown,no,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,thu,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,thu,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,thu,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,jul,thu,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,thu,792,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,thu,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,jul,thu,369,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,thu,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,thu,418,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,telephone,jul,thu,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,student,divorced,basic.6y,no,yes,no,cellular,jul,thu,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,thu,330,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,management,married,basic.4y,unknown,no,yes,cellular,jul,thu,584,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +34,technician,married,high.school,no,no,yes,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,613,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,thu,152,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,management,married,university.degree,no,no,yes,cellular,jul,thu,542,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,jul,thu,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,unemployed,married,basic.4y,unknown,no,no,cellular,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.9y,no,no,yes,cellular,jul,thu,880,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +39,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,admin.,married,professional.course,no,yes,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,admin.,married,professional.course,no,no,no,cellular,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,high.school,no,no,no,cellular,jul,thu,481,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,high.school,no,yes,yes,cellular,jul,thu,815,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,married,high.school,no,yes,no,cellular,jul,thu,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,married,university.degree,unknown,no,yes,cellular,jul,thu,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,279,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,technician,married,basic.9y,no,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,married,university.degree,no,no,no,cellular,jul,thu,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,married,university.degree,no,yes,no,cellular,jul,thu,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,high.school,no,yes,no,telephone,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,married,professional.course,no,yes,no,telephone,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,self-employed,married,basic.9y,no,no,no,cellular,jul,thu,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,admin.,married,unknown,no,no,no,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,506,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,professional.course,no,no,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,no,no,cellular,jul,thu,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,self-employed,married,basic.9y,no,no,no,cellular,jul,thu,742,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,university.degree,no,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,retired,divorced,basic.4y,no,no,no,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,university.degree,no,yes,no,cellular,jul,thu,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,single,high.school,no,no,no,cellular,jul,thu,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,thu,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,admin.,single,university.degree,no,yes,no,cellular,jul,thu,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,356,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,married,professional.course,no,no,no,cellular,jul,thu,102,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,basic.6y,unknown,yes,no,cellular,jul,thu,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,466,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,thu,380,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,no,no,cellular,jul,thu,358,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,single,university.degree,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,divorced,high.school,no,yes,no,cellular,jul,thu,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,married,high.school,no,no,no,telephone,jul,thu,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,421,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,blue-collar,divorced,high.school,unknown,yes,yes,cellular,jul,thu,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,single,high.school,no,yes,no,cellular,jul,thu,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,thu,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,428,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,married,high.school,no,no,yes,cellular,jul,thu,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,high.school,no,no,no,cellular,jul,thu,720,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,technician,single,university.degree,no,yes,yes,cellular,jul,thu,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,entrepreneur,single,university.degree,no,no,no,cellular,jul,thu,361,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,basic.9y,no,yes,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,high.school,no,no,no,cellular,jul,thu,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,housemaid,married,professional.course,no,yes,no,telephone,jul,thu,645,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,unknown,single,professional.course,no,yes,no,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,486,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,high.school,no,yes,no,telephone,jul,thu,180,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,technician,single,basic.9y,no,no,no,telephone,jul,thu,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,married,university.degree,unknown,yes,no,telephone,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,married,university.degree,unknown,yes,yes,telephone,jul,thu,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,married,high.school,no,yes,no,telephone,jul,thu,445,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,basic.9y,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,married,high.school,no,no,no,cellular,jul,thu,771,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +49,management,divorced,university.degree,no,no,no,cellular,jul,thu,161,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,technician,single,professional.course,no,no,no,telephone,jul,thu,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,thu,627,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,admin.,married,high.school,no,no,no,cellular,jul,thu,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,divorced,professional.course,no,yes,no,telephone,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,thu,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,management,married,university.degree,no,yes,no,cellular,jul,thu,1341,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,admin.,married,high.school,no,no,no,cellular,jul,thu,634,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,admin.,married,high.school,no,no,no,cellular,jul,thu,363,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,unknown,unknown,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,thu,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,self-employed,single,professional.course,no,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jul,thu,310,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,thu,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,no,no,cellular,jul,thu,573,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,thu,476,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +42,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,829,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,admin.,married,university.degree,no,no,no,telephone,jul,thu,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,360,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,unknown,single,professional.course,no,no,no,telephone,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,227,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,724,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +29,technician,married,university.degree,no,no,yes,cellular,jul,thu,525,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +26,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,559,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,353,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,unknown,single,professional.course,no,no,no,cellular,jul,thu,2029,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +42,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,housemaid,married,professional.course,no,yes,no,cellular,jul,thu,351,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,thu,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,396,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,456,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,technician,married,unknown,no,yes,no,cellular,jul,thu,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,entrepreneur,married,professional.course,no,no,no,cellular,jul,thu,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,basic.9y,no,no,yes,cellular,jul,thu,1499,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,no,no,cellular,jul,thu,82,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,thu,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,services,single,basic.6y,no,yes,no,cellular,jul,thu,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,839,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,married,university.degree,no,yes,no,cellular,jul,thu,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,thu,160,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,thu,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,90,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,services,single,university.degree,no,no,no,cellular,jul,thu,363,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,management,married,unknown,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,management,single,university.degree,no,no,no,cellular,jul,thu,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,admin.,single,high.school,no,yes,no,cellular,jul,thu,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,self-employed,married,basic.9y,no,yes,yes,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,housemaid,married,basic.4y,unknown,no,no,cellular,jul,thu,223,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,jul,thu,480,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,single,professional.course,no,no,yes,telephone,jul,thu,156,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,single,basic.9y,no,yes,yes,telephone,jul,thu,834,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,blue-collar,single,professional.course,no,yes,no,cellular,jul,thu,164,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,thu,562,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,326,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,housemaid,single,high.school,unknown,yes,yes,telephone,jul,thu,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,technician,married,university.degree,no,yes,no,cellular,jul,thu,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,housemaid,single,high.school,unknown,yes,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,thu,377,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,management,married,high.school,no,no,no,telephone,jul,thu,524,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,85,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,admin.,married,high.school,no,no,no,cellular,jul,thu,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,professional.course,no,no,no,telephone,jul,thu,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,1399,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,374,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,1187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +51,housemaid,divorced,high.school,no,yes,yes,cellular,jul,thu,460,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,technician,married,university.degree,no,no,no,telephone,jul,thu,270,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,married,professional.course,no,unknown,unknown,cellular,jul,thu,338,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,basic.6y,no,no,no,cellular,jul,thu,171,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,thu,721,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,high.school,no,no,no,cellular,jul,thu,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,married,professional.course,no,no,yes,cellular,jul,thu,487,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +42,admin.,single,high.school,no,no,no,telephone,jul,thu,229,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,no,yes,cellular,jul,thu,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,university.degree,no,no,no,cellular,jul,thu,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,entrepreneur,divorced,professional.course,no,yes,yes,cellular,jul,thu,109,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,married,high.school,no,no,no,cellular,jul,thu,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,148,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,91,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,services,single,high.school,no,no,no,cellular,jul,thu,1097,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +49,management,divorced,university.degree,no,no,no,cellular,jul,thu,144,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,150,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,high.school,no,no,no,telephone,jul,thu,535,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,465,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,high.school,no,yes,no,cellular,jul,thu,154,14,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,311,27,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,high.school,no,no,no,telephone,jul,thu,924,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,technician,married,university.degree,no,yes,no,cellular,jul,thu,296,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,jul,thu,200,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,management,married,university.degree,unknown,yes,no,cellular,jul,thu,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,management,married,university.degree,unknown,no,yes,cellular,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,jul,thu,3643,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +26,entrepreneur,single,university.degree,no,no,no,telephone,jul,fri,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,no,no,cellular,jul,fri,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,divorced,professional.course,no,yes,no,cellular,jul,fri,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,admin.,married,high.school,no,yes,no,cellular,jul,fri,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,no,no,telephone,jul,fri,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,divorced,basic.6y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,522,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,married,unknown,no,yes,no,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,545,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,services,married,basic.4y,no,yes,no,cellular,jul,fri,264,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,married,high.school,no,yes,no,cellular,jul,fri,812,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +52,admin.,divorced,high.school,unknown,no,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,794,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +29,technician,married,unknown,no,yes,no,cellular,jul,fri,404,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,student,single,basic.9y,no,no,no,cellular,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,fri,170,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,333,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.6y,no,no,no,cellular,jul,fri,252,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,23,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,services,single,basic.6y,no,yes,no,cellular,jul,fri,48,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,services,single,high.school,no,yes,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,no,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,unknown,unknown,cellular,jul,fri,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,yes,yes,telephone,jul,fri,57,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,services,single,basic.6y,no,no,no,cellular,jul,fri,484,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,no,no,cellular,jul,fri,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,management,married,university.degree,no,yes,yes,cellular,jul,fri,772,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,unknown,unknown,cellular,jul,fri,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,student,single,basic.4y,no,no,no,cellular,jul,fri,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,no,no,cellular,jul,fri,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,yes,yes,cellular,jul,fri,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,retired,divorced,high.school,no,yes,no,cellular,jul,fri,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,unknown,no,yes,cellular,jul,fri,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,divorced,basic.9y,no,no,no,cellular,jul,fri,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,retired,single,basic.4y,unknown,no,no,cellular,jul,fri,802,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,entrepreneur,divorced,basic.4y,no,no,no,cellular,jul,fri,170,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,services,married,university.degree,no,yes,no,cellular,jul,fri,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,fri,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,269,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,services,single,high.school,no,yes,no,cellular,jul,fri,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,technician,married,professional.course,no,no,no,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,housemaid,married,basic.4y,no,no,no,cellular,jul,fri,479,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,services,married,professional.course,no,yes,no,cellular,jul,fri,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,housemaid,married,basic.4y,no,no,no,cellular,jul,fri,347,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,management,single,high.school,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,housemaid,married,basic.4y,no,no,yes,cellular,jul,fri,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,817,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +33,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,439,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,single,professional.course,no,yes,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,retired,married,university.degree,no,yes,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,basic.9y,no,yes,no,telephone,jul,fri,321,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,891,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,high.school,no,yes,no,cellular,jul,fri,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,fri,1242,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,fri,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,high.school,no,yes,no,cellular,jul,fri,45,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,138,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,fri,132,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,student,single,high.school,no,yes,no,cellular,jul,fri,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,technician,divorced,professional.course,no,no,no,cellular,jul,fri,318,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,technician,married,basic.9y,no,yes,yes,cellular,jul,fri,906,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,fri,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,unknown,yes,no,cellular,jul,fri,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,technician,divorced,professional.course,no,yes,no,telephone,jul,fri,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,jul,fri,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,564,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jul,fri,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,student,single,university.degree,unknown,no,yes,cellular,jul,fri,226,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,jul,fri,16,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,fri,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.9y,no,no,yes,telephone,jul,fri,518,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,jul,fri,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,fri,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,jul,fri,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,504,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,fri,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,unknown,no,yes,cellular,jul,fri,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,fri,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,fri,223,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,high.school,unknown,yes,no,cellular,jul,fri,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,married,high.school,no,yes,no,cellular,jul,fri,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,divorced,high.school,unknown,no,no,cellular,jul,fri,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,fri,1060,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +36,services,single,high.school,no,yes,no,cellular,jul,fri,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,services,married,basic.9y,no,no,no,cellular,jul,fri,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,retired,married,university.degree,no,no,no,cellular,jul,fri,659,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,telephone,jul,fri,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,222,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,professional.course,unknown,no,no,cellular,jul,fri,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,no,yes,cellular,jul,fri,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,jul,fri,42,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,management,married,high.school,no,yes,no,cellular,jul,fri,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,fri,455,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,basic.9y,no,yes,no,cellular,jul,fri,431,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,unemployed,married,high.school,unknown,unknown,unknown,cellular,jul,fri,147,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,single,high.school,unknown,no,no,cellular,jul,fri,717,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,286,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,jul,fri,614,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +38,technician,married,professional.course,no,yes,yes,cellular,jul,fri,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,services,single,high.school,unknown,yes,no,cellular,jul,fri,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,no,yes,telephone,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,unknown,no,no,cellular,jul,fri,487,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,services,married,professional.course,no,yes,yes,cellular,jul,fri,348,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,divorced,professional.course,no,yes,yes,cellular,jul,fri,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,1689,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,unemployed,married,university.degree,no,yes,no,cellular,jul,fri,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,1294,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +37,technician,married,professional.course,no,yes,no,cellular,jul,fri,314,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,technician,single,university.degree,no,no,yes,cellular,jul,fri,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,married,professional.course,unknown,yes,no,cellular,jul,fri,965,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,services,married,high.school,no,yes,no,cellular,jul,fri,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,entrepreneur,divorced,professional.course,no,no,yes,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,jul,fri,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,services,married,professional.course,no,no,yes,cellular,jul,fri,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,fri,712,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,jul,fri,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,fri,260,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,fri,252,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,fri,239,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,entrepreneur,divorced,high.school,no,no,no,cellular,jul,fri,347,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,fri,764,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +38,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,jul,fri,1120,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +57,retired,single,basic.9y,unknown,unknown,unknown,cellular,jul,fri,16,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,unknown,no,yes,no,cellular,jul,fri,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,970,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,963,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +55,entrepreneur,married,professional.course,unknown,no,no,cellular,jul,fri,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,unknown,no,yes,yes,cellular,jul,fri,1973,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,technician,married,unknown,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,fri,706,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,divorced,university.degree,no,no,yes,cellular,jul,fri,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,jul,fri,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,232,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,divorced,university.degree,no,yes,no,cellular,jul,fri,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,student,single,university.degree,no,no,no,telephone,jul,fri,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,fri,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,student,single,high.school,unknown,no,no,cellular,jul,fri,175,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,unemployed,married,university.degree,no,no,no,telephone,jul,fri,176,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,management,married,basic.9y,unknown,yes,yes,cellular,jul,fri,1041,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,services,married,basic.9y,no,yes,no,cellular,jul,fri,1389,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,high.school,unknown,no,no,telephone,jul,fri,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,unemployed,married,high.school,unknown,no,no,cellular,jul,fri,120,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,fri,213,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,management,married,unknown,no,yes,no,cellular,jul,fri,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,636,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,fri,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,telephone,jul,fri,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,technician,single,professional.course,no,yes,yes,cellular,jul,fri,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,technician,single,university.degree,no,yes,no,cellular,jul,fri,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,married,university.degree,unknown,no,yes,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,divorced,basic.9y,no,no,no,cellular,jul,fri,452,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,professional.course,unknown,no,no,cellular,jul,fri,255,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,technician,single,professional.course,no,no,no,cellular,jul,fri,260,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,admin.,divorced,high.school,no,no,no,cellular,jul,fri,666,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,admin.,married,university.degree,no,no,yes,telephone,jul,fri,498,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,344,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,divorced,university.degree,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,housemaid,married,high.school,no,yes,no,cellular,jul,fri,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,single,high.school,no,no,no,cellular,jul,fri,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,unemployed,married,basic.9y,no,no,no,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,housemaid,married,high.school,no,no,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,self-employed,married,basic.9y,no,no,no,cellular,jul,fri,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,single,high.school,no,no,no,telephone,jul,fri,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,technician,married,professional.course,no,no,no,cellular,jul,fri,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,1164,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,fri,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,1081,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,single,high.school,no,no,no,cellular,jul,fri,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,202,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,unemployed,married,university.degree,unknown,no,yes,cellular,jul,fri,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,single,basic.6y,unknown,no,yes,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,management,married,basic.9y,unknown,no,yes,cellular,jul,fri,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,550,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,fri,69,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,no,yes,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,fri,396,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,management,divorced,university.degree,no,yes,no,cellular,jul,fri,215,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,basic.9y,no,no,no,cellular,jul,fri,271,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,self-employed,divorced,professional.course,no,no,no,cellular,jul,fri,911,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +35,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,high.school,no,yes,no,cellular,jul,fri,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,married,basic.9y,no,yes,yes,telephone,jul,fri,437,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,admin.,single,university.degree,no,no,no,cellular,jul,fri,1180,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,unknown,no,yes,no,cellular,jul,fri,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,unemployed,married,university.degree,no,no,no,telephone,jul,fri,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,divorced,professional.course,no,no,no,cellular,jul,fri,261,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,342,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,single,high.school,no,no,no,cellular,jul,fri,425,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,technician,married,professional.course,no,no,yes,cellular,jul,fri,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,773,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,822,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +37,admin.,single,university.degree,no,no,no,cellular,jul,fri,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,technician,divorced,basic.9y,no,no,no,cellular,jul,fri,853,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +28,admin.,married,professional.course,no,no,no,cellular,jul,fri,549,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,single,high.school,no,no,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,161,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,single,unknown,unknown,no,no,cellular,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,housemaid,married,basic.4y,unknown,no,no,cellular,jul,fri,1649,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +26,admin.,single,high.school,no,no,no,cellular,jul,fri,1310,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +25,technician,single,professional.course,no,yes,no,cellular,jul,fri,1187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,married,high.school,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,married,professional.course,no,yes,yes,cellular,jul,mon,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,married,basic.9y,no,no,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,unemployed,married,university.degree,no,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,management,married,basic.6y,unknown,no,no,cellular,jul,mon,175,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,330,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,management,married,university.degree,unknown,no,no,cellular,jul,mon,607,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,management,married,university.degree,unknown,yes,no,cellular,jul,mon,332,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,236,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,mon,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,yes,telephone,jul,mon,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,married,high.school,no,no,no,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,324,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,self-employed,single,professional.course,no,yes,no,cellular,jul,mon,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,divorced,university.degree,no,no,no,cellular,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,jul,mon,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +30,admin.,single,university.degree,unknown,yes,no,telephone,jul,mon,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unknown,single,basic.9y,no,no,no,cellular,jul,mon,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,basic.9y,no,no,no,cellular,jul,mon,221,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,329,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,single,basic.9y,no,yes,no,cellular,jul,mon,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,management,married,university.degree,unknown,yes,yes,cellular,jul,mon,56,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,unemployed,single,university.degree,no,yes,no,telephone,jul,mon,158,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,mon,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unknown,single,basic.9y,no,no,yes,cellular,jul,mon,53,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,276,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,mon,505,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,unknown,unknown,unknown,cellular,jul,mon,178,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,single,university.degree,no,no,no,telephone,jul,mon,211,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,116,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,single,university.degree,no,no,no,cellular,jul,mon,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,jul,mon,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,47,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,self-employed,married,university.degree,no,no,no,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,high.school,unknown,no,no,cellular,jul,mon,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,244,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,mon,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,611,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,78,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,mon,306,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,divorced,high.school,no,no,no,telephone,jul,mon,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,high.school,no,yes,yes,cellular,jul,mon,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,married,professional.course,no,yes,no,cellular,jul,mon,751,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +35,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,289,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,126,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,management,single,university.degree,no,yes,no,cellular,jul,mon,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,jul,mon,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,yes,no,telephone,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,housemaid,single,high.school,no,yes,yes,cellular,jul,mon,767,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unknown,single,basic.9y,no,no,yes,cellular,jul,mon,329,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,married,university.degree,no,yes,no,cellular,jul,mon,1397,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,550,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,mon,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,married,basic.6y,no,yes,no,cellular,jul,mon,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,university.degree,unknown,yes,no,cellular,jul,mon,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,high.school,unknown,no,no,telephone,jul,mon,44,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,management,single,university.degree,no,no,no,cellular,jul,mon,173,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,high.school,no,no,no,cellular,jul,mon,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,single,basic.4y,no,unknown,unknown,cellular,jul,mon,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,unemployed,married,university.degree,no,yes,no,telephone,jul,mon,363,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,single,high.school,no,no,no,cellular,jul,mon,226,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,jul,mon,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,married,university.degree,no,no,no,cellular,jul,mon,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,jul,mon,467,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,no,no,no,cellular,jul,mon,549,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,high.school,no,no,yes,cellular,jul,mon,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,1153,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,services,married,basic.6y,no,no,no,cellular,jul,mon,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,yes,yes,cellular,jul,mon,138,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,354,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,jul,mon,154,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,high.school,unknown,yes,yes,telephone,jul,mon,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,mon,132,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,high.school,no,no,no,cellular,jul,mon,69,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,mon,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,high.school,no,no,no,cellular,jul,mon,650,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,high.school,no,no,yes,telephone,jul,mon,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,jul,mon,125,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,yes,yes,cellular,jul,mon,183,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,married,basic.6y,no,no,no,cellular,jul,mon,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,management,single,university.degree,no,yes,no,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,professional.course,no,no,no,cellular,jul,mon,74,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,53,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,married,professional.course,no,yes,no,cellular,jul,mon,634,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,single,unknown,no,yes,no,cellular,jul,mon,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,telephone,jul,mon,124,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,jul,mon,58,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,mon,219,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jul,mon,19,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jul,mon,310,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,management,married,basic.9y,no,no,yes,cellular,jul,mon,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,397,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,high.school,no,yes,yes,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,management,single,university.degree,no,yes,no,telephone,jul,mon,305,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,686,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +36,technician,divorced,professional.course,no,no,no,cellular,jul,mon,319,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,766,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +45,management,married,basic.9y,unknown,yes,no,cellular,jul,mon,297,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,673,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,divorced,high.school,no,no,no,cellular,jul,mon,388,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,basic.9y,no,yes,no,cellular,jul,mon,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,high.school,unknown,no,no,cellular,jul,mon,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,services,married,basic.6y,no,yes,no,cellular,jul,mon,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,self-employed,divorced,university.degree,no,yes,no,telephone,jul,mon,162,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,292,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,mon,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,student,single,university.degree,no,yes,no,cellular,jul,mon,134,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,788,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +32,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,mon,171,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jul,mon,182,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,self-employed,married,university.degree,no,yes,no,telephone,jul,mon,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,married,university.degree,no,yes,no,cellular,jul,mon,106,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,64,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,divorced,high.school,no,no,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,single,high.school,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,no,no,yes,telephone,jul,mon,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,self-employed,single,professional.course,no,yes,no,cellular,jul,mon,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,616,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,housemaid,married,high.school,no,yes,no,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,mon,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,unemployed,married,high.school,unknown,yes,no,cellular,jul,mon,38,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,mon,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,245,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,management,married,basic.4y,no,yes,no,cellular,jul,mon,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,professional.course,no,yes,yes,cellular,jul,mon,699,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,divorced,high.school,no,yes,no,cellular,jul,mon,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,university.degree,no,yes,no,cellular,jul,mon,768,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,1130,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,high.school,no,no,no,cellular,jul,mon,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,mon,341,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,high.school,no,no,yes,cellular,jul,mon,417,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,admin.,married,high.school,no,no,no,cellular,jul,mon,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,no,no,no,cellular,jul,mon,455,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,divorced,basic.6y,no,yes,no,cellular,jul,mon,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,243,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,no,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,mon,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,high.school,no,no,no,cellular,jul,mon,568,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,university.degree,no,yes,yes,cellular,jul,mon,1062,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +29,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,single,high.school,unknown,yes,yes,cellular,jul,mon,393,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,250,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,mon,364,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,229,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,single,unknown,no,no,no,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,retired,single,basic.6y,unknown,yes,no,cellular,jul,mon,315,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,single,high.school,no,yes,no,cellular,jul,mon,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,admin.,single,university.degree,no,no,no,cellular,jul,mon,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,self-employed,married,university.degree,no,no,no,cellular,jul,mon,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,married,professional.course,unknown,yes,no,cellular,jul,mon,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,housemaid,single,basic.4y,unknown,yes,no,cellular,jul,mon,385,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,unemployed,married,high.school,no,yes,no,cellular,jul,mon,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,married,university.degree,no,no,no,cellular,jul,mon,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,high.school,no,no,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,services,married,high.school,no,no,no,cellular,jul,mon,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,465,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,university.degree,no,yes,no,cellular,jul,mon,216,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,392,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,married,high.school,no,yes,no,cellular,jul,mon,407,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,married,professional.course,no,no,no,telephone,jul,mon,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,619,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,university.degree,no,yes,no,cellular,jul,mon,248,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,retired,single,basic.6y,unknown,no,no,cellular,jul,mon,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,professional.course,unknown,yes,no,cellular,jul,mon,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,425,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,1669,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,married,high.school,no,yes,yes,cellular,jul,mon,460,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,256,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,single,basic.6y,unknown,no,yes,cellular,jul,mon,272,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,basic.9y,unknown,yes,yes,cellular,jul,mon,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,retired,single,basic.6y,unknown,yes,yes,cellular,jul,mon,431,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,single,high.school,no,yes,no,cellular,jul,mon,377,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,professional.course,no,yes,yes,cellular,jul,mon,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,single,professional.course,no,no,yes,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,250,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,housemaid,married,high.school,no,yes,no,cellular,jul,mon,109,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,301,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,mon,257,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,jul,mon,136,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,387,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,163,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,unknown,no,no,yes,cellular,jul,mon,326,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,557,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,unemployed,married,high.school,no,yes,no,cellular,jul,mon,512,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,management,single,unknown,no,no,yes,cellular,jul,mon,342,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,telephone,jul,mon,197,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,97,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,divorced,high.school,no,yes,no,telephone,jul,mon,109,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,mon,298,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,married,high.school,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,643,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,services,married,high.school,no,no,no,cellular,jul,mon,1271,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,mon,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,no,no,cellular,jul,mon,81,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,244,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,high.school,unknown,no,no,cellular,jul,mon,1336,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +27,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,111,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,high.school,no,no,yes,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,services,married,high.school,no,unknown,unknown,cellular,jul,mon,455,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,single,unknown,no,no,no,telephone,jul,mon,185,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,married,university.degree,no,no,no,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,304,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,professional.course,no,yes,yes,cellular,jul,mon,43,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,mon,1071,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +27,admin.,single,high.school,no,yes,no,telephone,jul,mon,167,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,240,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,management,married,professional.course,unknown,no,no,cellular,jul,mon,565,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,divorced,high.school,unknown,no,yes,telephone,jul,mon,716,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,149,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,615,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,services,single,basic.9y,no,yes,no,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,housemaid,married,high.school,no,yes,no,cellular,jul,mon,424,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,364,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,no,no,telephone,jul,mon,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,single,university.degree,no,no,no,cellular,jul,mon,403,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,unemployed,married,high.school,no,yes,no,cellular,jul,mon,745,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,high.school,no,yes,no,cellular,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,235,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,married,professional.course,no,yes,yes,cellular,jul,mon,330,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,university.degree,no,yes,no,telephone,jul,mon,160,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,student,single,high.school,no,yes,no,telephone,jul,mon,12,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,entrepreneur,married,high.school,no,no,no,cellular,jul,mon,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,552,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,telephone,jul,mon,35,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,professional.course,no,no,no,cellular,jul,mon,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,services,single,high.school,no,no,no,telephone,jul,mon,821,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,high.school,no,yes,yes,telephone,jul,mon,198,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,single,high.school,no,yes,yes,cellular,jul,mon,894,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +59,blue-collar,divorced,basic.4y,unknown,no,yes,cellular,jul,mon,84,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,married,high.school,no,yes,no,cellular,jul,mon,250,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,high.school,no,no,no,cellular,jul,mon,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,mon,133,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,entrepreneur,single,basic.9y,no,no,no,cellular,jul,mon,223,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.6y,unknown,no,yes,telephone,jul,mon,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,married,basic.9y,no,no,yes,cellular,jul,mon,131,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,married,high.school,unknown,no,no,cellular,jul,mon,356,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,self-employed,married,basic.9y,unknown,yes,no,telephone,jul,mon,135,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,358,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,no,no,no,telephone,jul,mon,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,mon,399,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,mon,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,telephone,jul,mon,252,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,telephone,jul,mon,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.9y,no,unknown,unknown,telephone,jul,mon,102,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,457,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,254,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,management,single,university.degree,no,yes,no,cellular,jul,mon,400,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,jul,mon,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,professional.course,no,yes,yes,telephone,jul,mon,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,jul,mon,546,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,management,married,university.degree,no,no,no,cellular,jul,mon,798,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +39,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,tue,321,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,single,high.school,no,no,no,cellular,jul,tue,31,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,jul,tue,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,services,married,basic.6y,no,no,no,cellular,jul,tue,376,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,married,basic.9y,unknown,yes,yes,telephone,jul,tue,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,tue,656,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,122,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,335,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,528,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,services,divorced,basic.9y,no,no,no,cellular,jul,tue,805,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +35,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,single,basic.4y,unknown,yes,yes,cellular,jul,tue,21,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,retired,single,basic.6y,unknown,no,no,cellular,jul,tue,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,jul,tue,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,management,single,university.degree,no,no,no,cellular,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,telephone,jul,tue,285,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,divorced,high.school,unknown,no,no,cellular,jul,tue,175,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,university.degree,no,no,no,cellular,jul,tue,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,married,high.school,no,yes,no,cellular,jul,tue,649,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,231,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,management,married,university.degree,no,no,no,cellular,jul,tue,442,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,jul,tue,439,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,jul,tue,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,married,illiterate,no,yes,no,cellular,jul,tue,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,technician,single,professional.course,no,yes,no,cellular,jul,tue,131,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,services,single,basic.6y,no,no,no,cellular,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,retired,married,university.degree,unknown,no,no,cellular,jul,tue,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,housemaid,married,basic.4y,no,no,no,cellular,jul,tue,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,42,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,tue,112,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,basic.6y,unknown,unknown,unknown,cellular,jul,tue,199,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,management,divorced,university.degree,no,no,no,cellular,jul,tue,131,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,101,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,self-employed,divorced,basic.6y,unknown,yes,no,cellular,jul,tue,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,single,basic.9y,no,no,yes,cellular,jul,tue,416,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,659,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,services,married,basic.6y,no,no,no,cellular,jul,tue,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,368,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,technician,married,basic.9y,no,no,no,cellular,jul,tue,723,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +48,admin.,single,university.degree,no,yes,yes,telephone,jul,tue,265,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,579,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,technician,single,professional.course,no,no,yes,cellular,jul,tue,80,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,jul,tue,401,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,services,divorced,high.school,no,no,yes,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,housemaid,single,university.degree,unknown,yes,no,cellular,jul,tue,71,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,tue,134,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,tue,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,tue,280,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,289,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,791,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +55,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,retired,married,basic.4y,no,yes,yes,telephone,jul,tue,533,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +30,entrepreneur,single,high.school,no,yes,no,telephone,jul,tue,501,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,divorced,basic.6y,no,no,no,cellular,jul,tue,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,self-employed,married,professional.course,no,yes,no,cellular,jul,tue,1056,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +36,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,753,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,admin.,single,university.degree,no,yes,yes,telephone,jul,tue,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,services,divorced,high.school,no,yes,no,cellular,jul,tue,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,married,illiterate,no,no,no,cellular,jul,tue,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,jul,tue,237,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,self-employed,divorced,professional.course,unknown,yes,yes,cellular,jul,tue,110,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,entrepreneur,single,high.school,no,no,yes,cellular,jul,tue,295,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,jul,tue,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,management,single,university.degree,no,yes,no,cellular,jul,tue,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,technician,single,professional.course,no,no,no,cellular,jul,tue,815,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +40,blue-collar,married,unknown,no,no,no,cellular,jul,tue,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,tue,89,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,tue,101,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,retired,married,basic.9y,no,yes,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,315,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,226,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,tue,49,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,entrepreneur,single,university.degree,no,no,yes,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,83,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,121,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,778,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,jul,tue,350,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,services,single,university.degree,no,no,no,cellular,jul,tue,368,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,entrepreneur,married,basic.4y,no,no,no,cellular,jul,tue,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,232,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,admin.,married,high.school,unknown,no,no,cellular,jul,tue,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,high.school,unknown,no,no,cellular,jul,tue,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,entrepreneur,married,high.school,unknown,no,no,cellular,jul,tue,924,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,65,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,tue,256,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,jul,tue,132,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,single,high.school,no,unknown,unknown,telephone,jul,tue,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,services,married,basic.4y,no,no,no,telephone,jul,tue,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,unknown,unknown,yes,no,telephone,jul,tue,49,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,tue,67,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,management,married,university.degree,no,yes,no,cellular,jul,tue,646,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,808,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +37,admin.,divorced,high.school,no,no,no,cellular,jul,tue,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,services,married,high.school,unknown,yes,no,cellular,jul,tue,178,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,56,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,basic.6y,no,yes,no,cellular,jul,tue,364,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,services,single,high.school,no,no,no,cellular,jul,tue,1317,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +37,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,unemployed,married,university.degree,no,yes,yes,cellular,jul,tue,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,blue-collar,single,basic.4y,no,no,no,cellular,jul,tue,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,services,married,high.school,no,no,yes,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,technician,single,professional.course,no,no,no,telephone,jul,tue,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,243,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,university.degree,unknown,no,yes,cellular,jul,tue,133,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,management,divorced,university.degree,no,no,yes,cellular,jul,tue,321,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,technician,divorced,high.school,no,yes,no,cellular,jul,tue,201,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,admin.,divorced,university.degree,no,no,yes,telephone,jul,tue,571,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,unknown,no,no,no,cellular,jul,tue,137,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,married,university.degree,no,no,no,cellular,jul,tue,503,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,unemployed,married,university.degree,no,no,no,cellular,jul,tue,277,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,married,high.school,no,yes,no,cellular,jul,tue,377,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,jul,tue,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,tue,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,106,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,single,basic.6y,no,yes,no,telephone,jul,tue,135,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,services,married,high.school,no,no,no,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,387,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,372,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,jul,tue,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,1615,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +33,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,860,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +24,admin.,single,high.school,no,yes,yes,telephone,jul,tue,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,married,basic.6y,no,unknown,unknown,cellular,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,married,basic.6y,no,yes,no,cellular,jul,tue,462,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,student,single,high.school,unknown,unknown,unknown,cellular,jul,tue,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,jul,tue,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,280,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,services,single,high.school,no,yes,no,cellular,jul,tue,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,basic.9y,no,yes,no,cellular,jul,tue,274,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,technician,married,professional.course,unknown,yes,yes,cellular,jul,tue,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,technician,divorced,professional.course,no,no,no,cellular,jul,tue,116,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,jul,tue,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,442,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,92,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,tue,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,658,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +31,technician,single,professional.course,no,yes,no,telephone,jul,tue,37,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,technician,married,professional.course,unknown,yes,yes,cellular,jul,tue,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,management,married,university.degree,no,no,no,cellular,jul,tue,794,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,management,married,university.degree,no,yes,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,married,basic.9y,no,no,no,cellular,jul,tue,878,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +35,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,280,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,divorced,high.school,no,yes,no,cellular,jul,tue,193,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.9y,no,no,yes,cellular,jul,tue,148,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,513,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,services,single,high.school,no,no,yes,cellular,jul,tue,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,792,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,tue,355,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,services,single,unknown,unknown,yes,no,cellular,jul,tue,881,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +32,services,single,unknown,unknown,no,no,cellular,jul,tue,981,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +28,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,158,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,admin.,married,high.school,unknown,yes,yes,cellular,jul,tue,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,management,single,high.school,no,no,yes,cellular,jul,tue,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,tue,820,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +50,admin.,married,professional.course,no,no,no,cellular,jul,tue,1001,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +26,technician,divorced,professional.course,no,no,yes,cellular,jul,tue,500,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +26,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,348,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,technician,single,professional.course,no,no,yes,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,management,divorced,university.degree,no,yes,no,cellular,jul,tue,1228,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +25,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,services,married,high.school,no,yes,no,cellular,jul,tue,331,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,779,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,admin.,single,high.school,no,no,yes,telephone,jul,tue,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,jul,tue,555,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,management,divorced,university.degree,no,yes,no,cellular,jul,tue,580,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,housemaid,single,university.degree,unknown,no,no,telephone,jul,tue,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,technician,married,university.degree,no,no,no,cellular,jul,tue,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,blue-collar,divorced,unknown,no,no,no,cellular,jul,tue,111,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,technician,single,university.degree,no,yes,yes,cellular,jul,tue,603,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,unemployed,single,unknown,no,no,no,cellular,jul,tue,211,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,housemaid,married,basic.4y,no,yes,yes,cellular,jul,tue,105,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,divorced,high.school,no,yes,no,cellular,jul,tue,514,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +32,technician,single,professional.course,no,yes,no,cellular,jul,tue,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,111,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,368,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,jul,tue,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,housemaid,single,high.school,no,yes,no,cellular,jul,tue,257,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,jul,tue,98,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,admin.,divorced,professional.course,no,yes,no,cellular,jul,tue,408,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,divorced,basic.6y,unknown,yes,yes,cellular,jul,tue,329,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,admin.,married,professional.course,no,no,no,cellular,jul,tue,306,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,entrepreneur,married,basic.6y,no,no,no,telephone,jul,tue,275,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,management,divorced,basic.4y,no,yes,no,cellular,jul,tue,68,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,135,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,technician,divorced,basic.6y,no,yes,no,cellular,jul,tue,716,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +36,services,single,high.school,no,no,yes,cellular,jul,tue,257,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,826,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,admin.,single,university.degree,no,no,no,cellular,jul,tue,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.9y,no,no,yes,cellular,jul,tue,1083,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,235,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,technician,single,professional.course,no,no,yes,cellular,jul,tue,955,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +41,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,tue,194,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,194,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,management,divorced,university.degree,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,services,single,high.school,no,no,no,cellular,jul,tue,612,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,tue,85,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,admin.,single,university.degree,no,no,no,telephone,jul,tue,237,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,admin.,single,university.degree,no,no,no,cellular,jul,tue,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,144,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,entrepreneur,single,high.school,no,yes,no,cellular,jul,tue,85,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,technician,single,professional.course,no,yes,no,cellular,jul,tue,179,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,220,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,basic.9y,no,no,yes,cellular,jul,tue,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,260,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,150,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,management,married,basic.4y,unknown,yes,no,cellular,jul,tue,673,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,entrepreneur,single,university.degree,no,no,no,cellular,jul,tue,272,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,263,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,admin.,married,university.degree,no,yes,no,cellular,jul,tue,275,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,tue,157,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,management,married,high.school,no,no,no,cellular,jul,tue,419,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,146,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,115,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,management,married,university.degree,no,yes,no,cellular,jul,tue,347,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,services,single,unknown,unknown,yes,yes,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,357,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,management,married,basic.9y,no,no,no,cellular,jul,tue,374,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,120,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,technician,divorced,professional.course,no,no,no,cellular,jul,tue,323,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,jul,tue,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,84,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,no,unknown,unknown,telephone,jul,tue,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,basic.6y,no,unknown,unknown,telephone,jul,tue,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,395,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,married,high.school,unknown,no,no,cellular,jul,tue,169,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,divorced,high.school,no,no,no,cellular,jul,tue,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,462,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,jul,tue,216,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,jul,tue,769,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +45,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,tue,115,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,tue,889,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +56,unknown,divorced,basic.4y,no,no,no,cellular,jul,tue,547,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,housemaid,single,university.degree,unknown,no,yes,cellular,jul,tue,142,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,yes,no,telephone,jul,tue,166,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,admin.,divorced,basic.9y,no,no,no,cellular,jul,tue,1424,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +35,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,high.school,no,unknown,unknown,cellular,jul,tue,290,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,520,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,no,yes,no,cellular,jul,tue,490,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,management,married,high.school,no,yes,no,cellular,jul,tue,838,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +55,retired,married,basic.4y,unknown,no,yes,cellular,jul,tue,599,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,single,high.school,no,yes,no,cellular,jul,tue,498,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,technician,divorced,high.school,no,no,no,cellular,jul,tue,166,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,no,no,telephone,jul,tue,232,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,270,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,admin.,married,basic.4y,no,yes,no,cellular,jul,tue,118,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,159,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,265,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,419,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,624,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,59,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,unemployed,married,university.degree,no,yes,no,cellular,jul,tue,812,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,97,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,tue,119,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,tue,84,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,tue,632,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +27,admin.,single,professional.course,no,no,no,cellular,jul,tue,448,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +48,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,163,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,tue,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,jul,tue,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,married,high.school,no,yes,no,telephone,jul,tue,32,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,single,high.school,no,yes,no,telephone,jul,tue,1142,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,87,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,services,divorced,basic.9y,no,yes,no,telephone,jul,tue,62,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,unknown,no,yes,no,telephone,jul,tue,341,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,1412,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,services,single,high.school,no,no,no,telephone,jul,wed,61,14,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,admin.,single,high.school,no,no,no,telephone,jul,wed,41,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,wed,276,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +58,management,divorced,university.degree,no,yes,no,cellular,jul,wed,75,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,208,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,high.school,unknown,yes,no,cellular,jul,wed,298,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +59,retired,married,university.degree,unknown,no,no,cellular,jul,wed,767,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +58,management,divorced,university.degree,no,yes,no,telephone,jul,wed,174,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,admin.,single,unknown,no,no,yes,cellular,jul,wed,186,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,self-employed,married,professional.course,no,no,no,cellular,jul,wed,350,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,52,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,services,single,professional.course,no,unknown,unknown,telephone,jul,wed,46,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,510,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,student,married,university.degree,no,yes,no,cellular,jul,wed,81,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,jul,wed,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,admin.,single,high.school,no,no,no,cellular,jul,wed,220,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,31,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,self-employed,single,university.degree,no,no,no,cellular,jul,wed,1147,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,wed,130,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,jul,wed,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,no,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,469,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,unknown,unknown,cellular,jul,wed,578,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +30,self-employed,married,university.degree,no,yes,no,telephone,jul,wed,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,771,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,single,university.degree,unknown,yes,no,cellular,jul,wed,390,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,blue-collar,divorced,basic.9y,unknown,no,no,telephone,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,single,professional.course,unknown,yes,no,cellular,jul,wed,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,715,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,housemaid,married,basic.9y,unknown,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,525,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,wed,1806,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +28,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,400,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,yes,no,cellular,jul,wed,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,technician,divorced,professional.course,no,no,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,services,married,high.school,no,no,no,cellular,jul,wed,151,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,344,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,self-employed,married,basic.9y,no,no,no,cellular,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,401,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,management,married,university.degree,unknown,no,no,cellular,jul,wed,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,admin.,single,high.school,no,yes,no,cellular,jul,wed,145,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,services,married,high.school,unknown,yes,no,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,services,married,high.school,unknown,yes,no,cellular,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,technician,married,unknown,no,yes,no,cellular,jul,wed,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,admin.,married,basic.9y,unknown,no,no,cellular,jul,wed,428,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,jul,wed,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,divorced,high.school,no,no,no,cellular,jul,wed,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,management,married,university.degree,unknown,no,no,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,technician,married,high.school,unknown,no,no,cellular,jul,wed,781,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +45,unknown,unknown,unknown,no,yes,yes,cellular,jul,wed,496,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +45,unknown,unknown,unknown,no,yes,no,cellular,jul,wed,586,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +34,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,wed,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,management,married,basic.9y,no,yes,no,cellular,jul,wed,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,management,married,basic.9y,no,yes,no,cellular,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,339,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,services,married,unknown,no,yes,yes,cellular,jul,wed,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,689,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +45,management,married,high.school,unknown,no,no,cellular,jul,wed,94,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,divorced,high.school,no,no,no,cellular,jul,wed,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +58,retired,divorced,basic.4y,unknown,no,no,cellular,jul,wed,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,high.school,unknown,no,no,cellular,jul,wed,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,retired,married,high.school,no,yes,no,cellular,jul,wed,239,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,admin.,single,university.degree,no,no,yes,telephone,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,retired,married,high.school,no,yes,no,cellular,jul,wed,555,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +37,technician,married,high.school,no,yes,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,jul,wed,686,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +32,technician,married,university.degree,no,no,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,high.school,no,yes,yes,cellular,jul,wed,29,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,single,professional.course,unknown,no,no,cellular,jul,wed,528,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,no,no,cellular,jul,wed,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,high.school,no,no,no,cellular,jul,wed,251,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,yes,no,cellular,jul,wed,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,jul,wed,1150,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,basic.9y,no,yes,no,cellular,jul,wed,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,high.school,no,no,no,cellular,jul,wed,435,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,self-employed,married,basic.9y,no,no,no,cellular,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,services,married,high.school,unknown,no,yes,telephone,jul,wed,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,830,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +24,services,single,high.school,no,yes,no,cellular,jul,wed,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,divorced,high.school,no,yes,no,cellular,jul,wed,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,yes,no,cellular,jul,wed,76,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,wed,873,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,blue-collar,single,high.school,no,no,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,high.school,no,no,no,cellular,jul,wed,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,wed,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,technician,single,high.school,no,yes,no,telephone,jul,wed,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,wed,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,jul,wed,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,335,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,services,divorced,basic.9y,no,no,no,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,services,divorced,basic.9y,no,yes,no,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,48,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,jul,wed,198,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,single,high.school,no,yes,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,unemployed,single,high.school,no,yes,yes,cellular,jul,wed,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,services,divorced,basic.9y,no,yes,no,cellular,jul,wed,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,unemployed,single,high.school,no,yes,no,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,management,single,university.degree,no,no,no,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,services,divorced,basic.9y,no,no,no,cellular,jul,wed,885,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,retired,married,basic.4y,no,no,no,cellular,jul,wed,1222,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,wed,520,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,retired,married,basic.4y,no,yes,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,325,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,retired,married,basic.4y,no,unknown,unknown,cellular,jul,wed,236,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,admin.,married,high.school,no,yes,no,cellular,jul,wed,419,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,technician,married,high.school,unknown,yes,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,housemaid,married,university.degree,no,yes,no,cellular,jul,wed,705,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,married,university.degree,no,yes,no,telephone,jul,wed,649,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,513,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,jul,wed,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,housemaid,married,university.degree,no,no,no,cellular,jul,wed,988,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +21,admin.,single,high.school,no,yes,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +21,admin.,single,high.school,no,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,high.school,unknown,no,no,cellular,jul,wed,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,wed,558,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,services,married,high.school,no,yes,yes,cellular,jul,wed,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +21,admin.,single,high.school,no,yes,no,cellular,jul,wed,680,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,admin.,single,high.school,no,yes,yes,cellular,jul,wed,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +28,services,married,high.school,no,yes,no,cellular,jul,wed,350,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +58,retired,married,high.school,no,yes,no,cellular,jul,wed,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,management,single,basic.4y,unknown,yes,no,cellular,jul,wed,592,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,165,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,married,basic.9y,no,no,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,68,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,married,basic.9y,unknown,yes,no,telephone,jul,wed,367,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +25,management,married,basic.6y,no,no,no,cellular,jul,wed,192,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,divorced,high.school,no,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,547,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1019,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +43,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,married,high.school,no,no,no,cellular,jul,wed,332,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,jul,wed,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,709,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +29,self-employed,married,basic.9y,unknown,yes,no,telephone,jul,wed,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,married,high.school,unknown,no,no,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,blue-collar,married,unknown,unknown,no,no,cellular,jul,wed,516,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +51,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,561,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +21,services,single,high.school,no,yes,no,telephone,jul,wed,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,services,married,high.school,unknown,yes,no,cellular,jul,wed,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,entrepreneur,married,professional.course,no,yes,no,cellular,jul,wed,157,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +40,services,married,high.school,no,yes,no,cellular,jul,wed,254,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,171,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,technician,single,professional.course,no,no,no,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +59,retired,married,university.degree,unknown,yes,yes,cellular,jul,wed,87,16,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,217,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,housemaid,single,high.school,no,no,no,cellular,jul,wed,293,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,blue-collar,married,professional.course,no,no,no,cellular,jul,wed,378,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jul,wed,129,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,132,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,unemployed,married,basic.6y,unknown,no,no,cellular,jul,wed,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,single,basic.9y,no,no,no,cellular,jul,wed,1432,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,single,professional.course,unknown,no,no,telephone,jul,wed,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,services,married,high.school,unknown,no,no,cellular,jul,wed,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,housemaid,married,basic.4y,no,no,no,cellular,jul,wed,141,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,married,high.school,no,no,no,cellular,jul,wed,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,blue-collar,single,basic.6y,no,unknown,unknown,cellular,jul,wed,254,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,455,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,285,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +51,admin.,married,high.school,no,yes,no,cellular,jul,wed,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,wed,1018,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +35,blue-collar,single,high.school,unknown,yes,no,cellular,jul,wed,60,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,single,university.degree,unknown,no,no,cellular,jul,wed,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,yes,no,cellular,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,management,single,university.degree,no,no,no,cellular,jul,wed,101,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,married,basic.9y,no,no,no,cellular,jul,wed,110,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,divorced,high.school,no,yes,no,cellular,jul,wed,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,student,married,basic.9y,no,no,no,cellular,jul,wed,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +58,admin.,divorced,basic.9y,no,no,no,telephone,jul,wed,231,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,406,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,blue-collar,divorced,unknown,unknown,no,no,cellular,jul,wed,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,wed,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,191,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,management,single,university.degree,no,yes,no,cellular,jul,wed,118,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,technician,married,unknown,unknown,yes,no,cellular,jul,wed,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,wed,164,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jul,wed,73,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,blue-collar,single,basic.9y,unknown,no,yes,cellular,jul,wed,278,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,technician,married,high.school,unknown,no,no,cellular,jul,wed,252,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,77,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,345,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +40,admin.,single,high.school,no,no,no,cellular,jul,wed,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,single,professional.course,unknown,yes,no,telephone,jul,wed,39,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,management,married,basic.6y,no,no,no,cellular,jul,wed,169,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,jul,wed,781,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +27,admin.,married,high.school,no,yes,no,telephone,jul,wed,202,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,single,university.degree,no,no,yes,telephone,jul,wed,357,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,jul,wed,159,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,married,high.school,no,no,no,cellular,jul,wed,1389,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,1056,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,166,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,single,professional.course,no,no,yes,cellular,jul,wed,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,university.degree,no,no,no,cellular,jul,wed,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,management,divorced,basic.4y,no,no,no,telephone,jul,wed,201,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,services,married,basic.9y,no,no,no,cellular,jul,wed,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,married,high.school,no,yes,no,cellular,jul,wed,1339,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,university.degree,no,yes,no,telephone,jul,wed,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,management,married,basic.9y,no,no,no,telephone,jul,wed,127,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,jul,wed,319,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,management,single,university.degree,no,no,no,telephone,jul,wed,284,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,married,basic.9y,no,no,yes,telephone,jul,wed,264,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,services,married,basic.9y,no,no,yes,cellular,jul,wed,204,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +23,blue-collar,single,unknown,unknown,no,no,cellular,jul,wed,1473,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +55,admin.,single,high.school,no,no,yes,cellular,jul,wed,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,divorced,high.school,unknown,no,no,cellular,jul,wed,524,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,26,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,613,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,jul,wed,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,605,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,technician,divorced,professional.course,no,no,no,cellular,jul,thu,93,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,high.school,no,no,no,cellular,jul,thu,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,services,single,high.school,no,yes,no,cellular,jul,thu,63,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,thu,128,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,basic.9y,no,no,no,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,management,married,university.degree,no,no,no,cellular,jul,thu,66,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,retired,single,professional.course,no,yes,no,cellular,jul,thu,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,technician,married,high.school,no,no,no,cellular,jul,thu,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +52,technician,married,professional.course,no,yes,no,telephone,jul,thu,293,20,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,management,married,university.degree,no,no,yes,cellular,jul,thu,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,basic.9y,no,no,no,cellular,jul,thu,330,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,high.school,no,yes,no,telephone,jul,thu,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,59,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,159,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,self-employed,single,high.school,no,no,no,cellular,jul,thu,63,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,admin.,married,high.school,no,no,no,cellular,jul,thu,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,blue-collar,married,high.school,unknown,no,no,cellular,jul,thu,413,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,53,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +40,management,single,university.degree,no,no,no,cellular,jul,thu,309,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,thu,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,55,14,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,admin.,married,basic.6y,no,yes,yes,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,student,single,university.degree,unknown,yes,no,cellular,jul,thu,20,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,technician,single,university.degree,no,yes,no,cellular,jul,thu,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,109,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,397,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,264,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,married,high.school,no,no,no,cellular,jul,thu,48,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,technician,single,professional.course,no,yes,no,cellular,jul,thu,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +41,technician,married,professional.course,no,yes,yes,cellular,jul,thu,539,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,thu,1150,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +25,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,services,single,high.school,no,no,yes,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,services,married,high.school,no,yes,yes,cellular,jul,thu,302,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,technician,single,professional.course,no,yes,yes,cellular,jul,thu,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,235,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,entrepreneur,single,university.degree,no,no,no,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,unemployed,married,high.school,no,no,yes,telephone,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,151,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.4y,no,no,yes,cellular,jul,thu,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +55,housemaid,divorced,unknown,unknown,yes,no,cellular,jul,thu,80,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,technician,divorced,unknown,unknown,no,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +40,services,married,basic.9y,no,yes,no,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,services,single,high.school,no,yes,yes,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,self-employed,married,university.degree,no,no,no,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +40,services,married,basic.9y,no,no,no,cellular,jul,thu,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,thu,20,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,628,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,blue-collar,single,high.school,unknown,no,no,cellular,jul,thu,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,418,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +48,admin.,married,high.school,unknown,yes,yes,cellular,jul,thu,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,302,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,17,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,services,married,basic.9y,no,no,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,thu,45,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,admin.,single,university.degree,no,yes,no,cellular,jul,thu,544,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,technician,divorced,high.school,no,no,no,cellular,jul,thu,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,services,single,basic.9y,no,yes,no,cellular,jul,thu,753,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +43,blue-collar,single,basic.6y,no,yes,no,cellular,jul,thu,391,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,services,single,high.school,no,yes,no,cellular,jul,thu,72,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,student,single,university.degree,no,no,no,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,thu,686,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,student,single,university.degree,no,yes,no,cellular,jul,thu,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,student,single,university.degree,no,yes,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +47,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,504,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,1171,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,thu,430,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,technician,single,university.degree,no,yes,no,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,technician,married,basic.9y,no,yes,no,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,technician,single,high.school,no,no,no,cellular,jul,thu,224,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,technician,single,university.degree,no,yes,no,cellular,jul,thu,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,thu,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,self-employed,divorced,university.degree,no,unknown,unknown,cellular,jul,thu,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,admin.,single,university.degree,no,yes,no,telephone,jul,thu,344,10,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,818,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,technician,single,university.degree,no,yes,no,cellular,jul,thu,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +52,technician,married,professional.course,no,yes,no,cellular,jul,thu,402,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,yes,no,cellular,jul,thu,127,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +41,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,management,single,basic.9y,no,yes,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,admin.,single,university.degree,no,yes,no,telephone,jul,thu,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,management,single,basic.9y,no,yes,no,cellular,jul,thu,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,unemployed,married,professional.course,no,unknown,unknown,cellular,jul,thu,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,admin.,divorced,high.school,no,yes,yes,cellular,jul,thu,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,unemployed,single,university.degree,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,technician,single,professional.course,no,no,no,cellular,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,housemaid,married,basic.9y,no,yes,no,cellular,jul,thu,410,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,jul,thu,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,1275,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +30,entrepreneur,single,university.degree,no,yes,no,cellular,jul,thu,11,12,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,1183,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,692,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +58,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,thu,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +59,retired,single,high.school,no,yes,no,cellular,jul,thu,143,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,unknown,unknown,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,yes,no,telephone,jul,thu,15,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,technician,married,basic.9y,no,no,yes,cellular,jul,thu,536,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,thu,490,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,282,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.4y,no,no,yes,telephone,jul,thu,1008,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +24,admin.,single,high.school,unknown,yes,yes,cellular,jul,thu,493,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,jul,thu,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,housemaid,married,basic.9y,no,yes,yes,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,housemaid,divorced,basic.9y,no,yes,no,cellular,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,unemployed,married,university.degree,no,no,no,cellular,jul,thu,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,management,single,university.degree,no,no,yes,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,management,single,university.degree,no,yes,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,unemployed,single,university.degree,no,yes,yes,cellular,jul,thu,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +41,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,jul,thu,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +41,entrepreneur,divorced,basic.9y,no,yes,no,cellular,jul,thu,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,195,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +38,management,married,university.degree,no,yes,yes,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,management,single,university.degree,no,no,no,cellular,jul,thu,795,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,housemaid,divorced,basic.9y,no,no,no,cellular,jul,thu,926,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +41,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,jul,thu,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +58,retired,married,high.school,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +58,retired,married,high.school,no,yes,no,cellular,jul,thu,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +58,retired,married,high.school,no,yes,no,cellular,jul,thu,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,technician,divorced,university.degree,no,yes,yes,cellular,jul,thu,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,admin.,unknown,university.degree,no,yes,no,cellular,jul,thu,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,470,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,self-employed,married,university.degree,no,no,no,cellular,jul,thu,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,student,single,university.degree,no,yes,no,cellular,jul,thu,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,student,single,university.degree,no,unknown,unknown,cellular,jul,thu,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,student,single,university.degree,no,yes,no,cellular,jul,thu,393,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,services,married,basic.9y,unknown,yes,yes,cellular,jul,thu,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,jul,thu,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,married,basic.9y,no,no,yes,cellular,jul,thu,655,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,technician,divorced,high.school,no,no,no,cellular,jul,thu,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,services,married,basic.9y,unknown,no,yes,cellular,jul,thu,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +54,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,services,divorced,high.school,no,no,no,cellular,jul,thu,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,student,single,university.degree,no,yes,no,cellular,jul,thu,747,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,technician,married,high.school,unknown,no,no,cellular,jul,thu,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,jul,thu,54,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,thu,312,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,university.degree,no,no,yes,cellular,jul,thu,1027,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +32,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,630,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,thu,360,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,thu,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,admin.,single,university.degree,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,services,married,high.school,no,no,no,cellular,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,506,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,388,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,377,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,technician,married,professional.course,no,no,no,cellular,jul,thu,683,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,services,single,high.school,no,no,no,cellular,jul,thu,796,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,thu,381,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,management,single,university.degree,no,yes,yes,cellular,jul,thu,804,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,services,single,high.school,no,yes,no,cellular,jul,thu,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,18,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +41,blue-collar,divorced,high.school,no,yes,no,cellular,jul,thu,168,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,263,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,thu,309,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +40,housemaid,divorced,high.school,unknown,yes,yes,cellular,jul,thu,43,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,single,basic.9y,no,no,no,cellular,jul,thu,504,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,blue-collar,single,high.school,no,no,no,cellular,jul,thu,353,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +57,entrepreneur,married,unknown,unknown,no,no,cellular,jul,thu,384,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,unemployed,married,university.degree,no,unknown,unknown,cellular,jul,thu,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,yes,yes,cellular,jul,thu,18,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,334,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,275,17,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,yes,no,cellular,jul,thu,378,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,management,divorced,university.degree,unknown,yes,no,cellular,jul,thu,489,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,jul,thu,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +56,admin.,divorced,basic.6y,no,no,yes,cellular,jul,thu,174,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,entrepreneur,married,basic.4y,unknown,yes,no,telephone,jul,thu,485,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,management,single,university.degree,no,no,no,cellular,jul,thu,1584,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,420,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,thu,626,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,104,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,housemaid,married,basic.4y,no,no,no,cellular,jul,thu,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +55,housemaid,divorced,unknown,unknown,no,no,cellular,jul,thu,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,jul,thu,582,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +24,technician,single,basic.6y,no,yes,no,telephone,jul,thu,1448,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +23,management,single,university.degree,no,no,no,cellular,jul,thu,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,1151,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +40,housemaid,divorced,high.school,unknown,no,yes,telephone,jul,thu,265,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,admin.,single,basic.9y,unknown,no,no,telephone,jul,thu,171,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,services,single,basic.9y,no,yes,no,cellular,jul,thu,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,self-employed,unknown,professional.course,no,no,yes,cellular,jul,thu,383,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,admin.,single,university.degree,no,yes,no,cellular,jul,thu,271,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +52,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,thu,160,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,technician,married,professional.course,no,no,yes,cellular,jul,thu,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,admin.,divorced,high.school,no,yes,no,telephone,jul,thu,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +34,technician,single,university.degree,no,yes,no,telephone,jul,thu,202,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,656,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +33,management,married,university.degree,no,yes,yes,cellular,jul,thu,1390,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,637,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,thu,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,738,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,551,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +28,blue-collar,single,unknown,no,yes,no,cellular,jul,thu,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +56,admin.,divorced,basic.6y,no,no,no,cellular,jul,thu,614,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,437,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,technician,married,basic.9y,no,no,yes,cellular,jul,thu,1319,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +27,admin.,single,high.school,unknown,yes,no,cellular,jul,thu,606,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,entrepreneur,married,basic.4y,unknown,no,no,cellular,jul,thu,235,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,services,single,basic.9y,unknown,yes,no,cellular,jul,thu,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,201,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,self-employed,divorced,university.degree,no,yes,no,cellular,jul,thu,275,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,268,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,admin.,married,high.school,unknown,no,no,cellular,jul,thu,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,unemployed,married,university.degree,no,no,no,cellular,jul,thu,275,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,538,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,304,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +43,admin.,married,basic.9y,unknown,no,no,cellular,jul,thu,294,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,59,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +48,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,182,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,jul,thu,410,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,married,basic.6y,no,yes,no,cellular,jul,thu,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,124,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,unknown,single,high.school,unknown,yes,no,cellular,jul,thu,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,222,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,high.school,no,no,no,cellular,jul,thu,147,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,thu,278,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,admin.,single,university.degree,no,yes,no,cellular,jul,thu,174,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,self-employed,married,university.degree,no,no,no,cellular,jul,thu,1175,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +35,blue-collar,married,basic.9y,no,no,no,telephone,jul,thu,46,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,divorced,unknown,no,no,no,cellular,jul,thu,536,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +59,retired,single,high.school,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,blue-collar,single,basic.4y,no,no,yes,cellular,jul,thu,728,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,thu,1018,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,blue-collar,married,unknown,unknown,no,no,cellular,jul,thu,291,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,management,single,university.degree,no,no,no,cellular,jul,thu,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,1673,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,technician,single,professional.course,no,no,no,cellular,jul,thu,330,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,self-employed,single,professional.course,no,yes,no,telephone,jul,thu,171,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,yes,no,telephone,jul,thu,248,9,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,admin.,single,university.degree,no,yes,no,cellular,jul,thu,170,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +44,technician,single,professional.course,no,yes,no,cellular,jul,thu,408,11,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,services,single,basic.6y,unknown,yes,no,cellular,jul,thu,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,services,single,basic.6y,unknown,no,no,cellular,jul,thu,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +23,technician,married,professional.course,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +57,technician,married,basic.9y,unknown,yes,yes,cellular,jul,thu,155,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,services,single,high.school,no,no,no,cellular,jul,thu,770,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +52,technician,married,professional.course,no,yes,no,cellular,jul,thu,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,thu,991,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +28,blue-collar,single,unknown,no,no,no,cellular,jul,thu,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,903,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,610,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,175,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,122,17,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,technician,divorced,high.school,no,yes,no,cellular,jul,thu,395,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +38,entrepreneur,married,basic.6y,unknown,no,no,telephone,jul,thu,517,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +38,services,divorced,high.school,no,yes,no,cellular,jul,thu,444,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,no,no,telephone,jul,thu,207,10,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,technician,single,professional.course,no,yes,no,cellular,jul,thu,230,5,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,674,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +48,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,thu,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +35,unemployed,divorced,basic.9y,no,no,no,cellular,jul,thu,169,7,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,admin.,single,high.school,unknown,no,no,cellular,jul,thu,320,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +46,admin.,single,university.degree,unknown,yes,no,cellular,jul,thu,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +46,admin.,single,university.degree,unknown,yes,no,cellular,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +29,blue-collar,single,professional.course,no,no,no,cellular,jul,thu,43,8,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +50,technician,married,professional.course,no,yes,no,cellular,jul,thu,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +31,self-employed,unknown,professional.course,no,no,no,cellular,jul,thu,505,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +49,admin.,divorced,high.school,no,no,no,telephone,jul,thu,27,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,jul,thu,546,6,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,jul,thu,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +24,technician,single,basic.6y,no,no,no,cellular,jul,thu,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +42,services,married,high.school,no,no,no,cellular,jul,thu,1153,4,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,yes +49,admin.,divorced,high.school,no,no,no,cellular,jul,thu,602,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,740,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +27,blue-collar,divorced,unknown,no,no,no,cellular,jul,thu,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +28,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +52,housemaid,single,university.degree,no,no,no,cellular,jul,thu,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +57,admin.,married,high.school,no,no,no,telephone,jul,thu,487,9,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +39,admin.,married,high.school,unknown,no,yes,cellular,jul,thu,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,735,2,999,0,nonexistent,1.4,93.918,-42.7,4.958,5228.1,no +25,services,single,high.school,no,yes,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +22,admin.,single,high.school,no,yes,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,services,married,high.school,no,no,yes,cellular,jul,fri,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,services,single,high.school,no,no,no,cellular,jul,fri,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,high.school,no,no,yes,telephone,jul,fri,21,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,jul,fri,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,services,married,high.school,no,yes,no,cellular,jul,fri,302,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,services,married,high.school,no,no,no,cellular,jul,fri,95,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +22,blue-collar,single,basic.6y,no,no,no,cellular,jul,fri,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,self-employed,married,university.degree,unknown,no,no,cellular,jul,fri,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,623,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +37,technician,married,professional.course,no,no,yes,cellular,jul,fri,674,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +39,housemaid,married,basic.6y,no,yes,no,cellular,jul,fri,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,1081,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,management,married,university.degree,no,no,yes,cellular,jul,fri,69,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,technician,single,university.degree,no,no,no,telephone,jul,fri,455,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,admin.,single,university.degree,no,no,no,cellular,jul,fri,142,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,jul,fri,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,management,married,high.school,no,no,no,cellular,jul,fri,91,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,entrepreneur,married,basic.9y,no,yes,no,telephone,jul,fri,53,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,fri,400,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,self-employed,single,university.degree,no,yes,no,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +51,housemaid,married,high.school,unknown,yes,yes,cellular,jul,fri,454,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,high.school,no,yes,yes,cellular,jul,fri,67,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,services,divorced,basic.9y,no,no,no,cellular,jul,fri,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,178,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +48,admin.,married,high.school,no,no,no,cellular,jul,fri,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,technician,single,professional.course,no,no,no,cellular,jul,fri,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,high.school,no,no,yes,cellular,jul,fri,287,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,jul,fri,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,technician,married,professional.course,no,yes,yes,cellular,jul,fri,292,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,admin.,single,university.degree,unknown,yes,yes,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +40,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,admin.,married,university.degree,no,no,no,cellular,jul,fri,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,technician,married,basic.9y,no,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,blue-collar,married,high.school,unknown,no,no,cellular,jul,fri,558,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +57,blue-collar,married,high.school,unknown,yes,no,cellular,jul,fri,572,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +27,admin.,married,university.degree,no,yes,no,cellular,jul,fri,494,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,14,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,admin.,married,high.school,no,no,yes,cellular,jul,fri,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,admin.,married,high.school,no,unknown,unknown,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,single,basic.9y,no,no,no,cellular,jul,fri,978,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +32,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,blue-collar,single,basic.9y,unknown,unknown,unknown,cellular,jul,fri,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,536,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +32,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,fri,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,services,married,high.school,no,yes,no,cellular,jul,fri,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,fri,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,management,single,university.degree,no,yes,no,cellular,jul,fri,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,management,single,basic.9y,no,yes,no,telephone,jul,fri,11,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,management,single,basic.9y,no,yes,no,cellular,jul,fri,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,412,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,383,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,admin.,single,high.school,no,yes,no,telephone,jul,fri,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,jul,fri,567,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,technician,single,university.degree,no,yes,no,cellular,jul,fri,800,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,self-employed,married,university.degree,no,no,no,cellular,jul,fri,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,single,high.school,no,no,no,cellular,jul,fri,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,single,professional.course,no,no,no,cellular,jul,fri,274,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,technician,married,university.degree,no,yes,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,fri,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,management,single,basic.9y,no,no,yes,cellular,jul,fri,968,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +43,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,377,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,jul,fri,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,admin.,married,professional.course,no,no,no,cellular,jul,fri,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,474,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +33,admin.,single,high.school,no,no,no,cellular,jul,fri,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,married,high.school,no,yes,no,cellular,jul,fri,110,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,yes,telephone,jul,fri,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,single,high.school,no,no,no,cellular,jul,fri,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,self-employed,married,basic.9y,no,no,no,cellular,jul,fri,411,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,admin.,single,high.school,no,yes,no,cellular,jul,fri,516,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,admin.,married,university.degree,no,no,no,cellular,jul,fri,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,married,high.school,no,yes,no,cellular,jul,fri,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,single,high.school,no,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,services,divorced,high.school,unknown,yes,no,cellular,jul,fri,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,single,high.school,no,no,no,cellular,jul,fri,482,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,no,yes,cellular,jul,fri,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,unemployed,divorced,high.school,no,no,no,cellular,jul,fri,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,services,divorced,high.school,unknown,no,yes,cellular,jul,fri,278,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +54,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,single,unknown,no,unknown,unknown,cellular,jul,fri,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,services,married,high.school,no,yes,no,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,383,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,286,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +22,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,610,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,fri,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,unknown,unknown,cellular,jul,fri,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,admin.,single,high.school,no,yes,no,cellular,jul,fri,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,services,single,university.degree,no,no,no,cellular,jul,fri,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,services,married,high.school,no,yes,no,cellular,jul,fri,60,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,yes,no,cellular,jul,fri,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,119,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,services,divorced,high.school,no,no,no,cellular,jul,fri,238,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,services,single,university.degree,no,yes,no,cellular,jul,fri,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,retired,single,university.degree,no,yes,no,cellular,jul,fri,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,high.school,unknown,yes,yes,telephone,jul,fri,11,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,fri,174,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,fri,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,483,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,services,married,high.school,no,yes,no,cellular,jul,fri,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,blue-collar,single,basic.4y,no,no,no,cellular,jul,fri,308,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,269,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,jul,fri,640,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +33,admin.,married,university.degree,no,no,no,cellular,jul,fri,384,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,management,single,university.degree,no,no,no,cellular,jul,fri,292,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,fri,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,jul,fri,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +22,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,fri,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,blue-collar,married,high.school,no,yes,no,cellular,jul,fri,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,fri,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,admin.,married,high.school,no,yes,no,cellular,jul,fri,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,admin.,single,university.degree,no,yes,no,cellular,jul,fri,439,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,unemployed,divorced,university.degree,no,yes,yes,cellular,jul,fri,133,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,married,basic.9y,no,no,yes,telephone,jul,fri,494,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,technician,married,professional.course,no,no,no,cellular,jul,fri,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,management,single,university.degree,no,yes,no,cellular,jul,fri,381,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,services,married,basic.4y,unknown,no,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,fri,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,housemaid,married,university.degree,unknown,yes,no,cellular,jul,fri,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,technician,divorced,professional.course,no,yes,no,cellular,jul,fri,239,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,services,single,professional.course,no,yes,no,cellular,jul,fri,671,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +45,admin.,divorced,university.degree,no,no,no,cellular,jul,fri,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,fri,420,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +44,entrepreneur,married,professional.course,no,no,no,cellular,jul,fri,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,entrepreneur,single,basic.9y,no,no,no,cellular,jul,fri,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,entrepreneur,single,basic.9y,no,yes,no,cellular,jul,fri,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,married,basic.9y,unknown,yes,no,cellular,jul,fri,658,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +30,admin.,married,high.school,no,yes,no,cellular,jul,fri,362,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,342,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,fri,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,unemployed,divorced,high.school,no,yes,no,cellular,jul,fri,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,services,divorced,basic.6y,unknown,yes,yes,cellular,jul,fri,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +51,services,married,basic.4y,no,yes,no,cellular,jul,fri,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,jul,fri,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +50,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,single,high.school,no,yes,no,cellular,jul,fri,259,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,services,divorced,basic.9y,no,yes,no,cellular,jul,fri,503,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,blue-collar,divorced,basic.4y,unknown,yes,no,telephone,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,technician,married,university.degree,no,no,no,cellular,jul,fri,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,high.school,no,no,no,cellular,jul,fri,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,services,divorced,basic.6y,unknown,no,no,telephone,jul,fri,744,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,retired,divorced,basic.4y,unknown,no,no,cellular,jul,fri,655,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +59,management,married,basic.9y,unknown,yes,no,cellular,jul,fri,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,technician,married,university.degree,no,no,no,cellular,jul,fri,642,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,blue-collar,single,basic.4y,no,yes,no,cellular,jul,fri,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,659,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +43,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,101,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +60,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,179,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +60,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,services,married,basic.9y,no,yes,no,cellular,jul,fri,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,admin.,single,university.degree,no,yes,no,telephone,jul,fri,199,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,divorced,high.school,no,no,no,cellular,jul,fri,143,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,641,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +25,admin.,single,university.degree,no,no,no,cellular,jul,fri,835,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,technician,single,university.degree,no,yes,no,telephone,jul,fri,54,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,management,single,university.degree,no,yes,no,cellular,jul,fri,415,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +42,admin.,married,university.degree,no,yes,no,cellular,jul,fri,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +52,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,410,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,jul,fri,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +27,technician,single,basic.9y,unknown,no,no,cellular,jul,fri,171,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,self-employed,married,university.degree,unknown,no,no,telephone,jul,fri,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,jul,fri,328,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,admin.,single,university.degree,no,no,no,cellular,jul,fri,852,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +34,admin.,single,high.school,no,yes,no,cellular,jul,fri,49,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,635,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +38,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,fri,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,high.school,unknown,yes,no,cellular,jul,fri,34,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +42,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,jul,fri,352,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,management,single,basic.9y,no,no,no,cellular,jul,fri,652,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +46,management,divorced,university.degree,no,yes,no,cellular,jul,fri,317,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,entrepreneur,single,professional.course,no,yes,no,cellular,jul,fri,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,entrepreneur,married,basic.9y,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,married,high.school,no,no,no,cellular,jul,fri,297,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,high.school,unknown,no,no,cellular,jul,fri,225,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,admin.,single,university.degree,no,no,yes,telephone,jul,fri,183,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +20,student,single,university.degree,no,yes,no,cellular,jul,fri,1503,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,entrepreneur,married,basic.6y,no,yes,no,cellular,jul,fri,168,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,blue-collar,single,basic.6y,no,no,yes,cellular,jul,fri,1127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +24,technician,single,professional.course,no,no,no,cellular,jul,fri,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,entrepreneur,married,basic.9y,no,no,yes,telephone,jul,fri,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,technician,single,university.degree,no,no,no,cellular,jul,fri,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,no,no,telephone,jul,fri,55,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,admin.,single,university.degree,no,yes,no,cellular,jul,fri,706,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,jul,fri,728,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,management,single,basic.9y,no,yes,yes,cellular,jul,fri,351,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,admin.,single,high.school,no,no,no,cellular,jul,fri,134,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,jul,fri,127,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,fri,579,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,fri,909,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,technician,single,high.school,no,no,no,cellular,jul,fri,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,fri,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,fri,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +45,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,fri,183,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +47,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,247,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,jul,fri,252,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,self-employed,married,high.school,unknown,no,no,cellular,jul,fri,175,11,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,technician,married,high.school,no,yes,no,cellular,jul,fri,1360,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +36,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,no,no,cellular,jul,fri,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,464,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,788,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,jul,fri,570,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,services,married,high.school,no,no,no,cellular,jul,fri,905,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +60,admin.,divorced,high.school,no,no,no,cellular,jul,fri,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +51,retired,married,basic.9y,no,no,no,cellular,jul,fri,180,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,fri,541,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,services,married,basic.4y,unknown,no,yes,cellular,jul,fri,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,housemaid,married,high.school,no,yes,no,cellular,jul,fri,440,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,admin.,married,university.degree,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,fri,300,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,services,single,university.degree,no,no,yes,cellular,jul,fri,409,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,married,basic.9y,no,yes,no,cellular,jul,fri,247,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +56,admin.,married,university.degree,no,yes,no,cellular,jul,fri,177,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,services,single,high.school,no,no,no,cellular,jul,fri,320,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +32,entrepreneur,single,university.degree,no,no,no,cellular,jul,fri,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,high.school,no,yes,no,telephone,jul,fri,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,jul,fri,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,services,divorced,basic.4y,unknown,no,no,cellular,jul,fri,207,9,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,technician,single,university.degree,no,no,no,cellular,jul,fri,453,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,technician,single,unknown,no,no,no,cellular,jul,fri,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,379,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +36,housemaid,single,basic.4y,unknown,no,no,cellular,jul,fri,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,fri,37,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +24,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,services,single,unknown,no,no,no,telephone,jul,fri,662,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +28,admin.,single,unknown,no,yes,no,cellular,jul,fri,251,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,services,single,high.school,no,no,no,cellular,jul,fri,588,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +28,admin.,single,high.school,no,no,no,telephone,jul,fri,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,fri,1373,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +21,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,entrepreneur,married,professional.course,no,no,no,cellular,jul,fri,462,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,fri,305,10,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +41,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,46,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,married,basic.9y,no,yes,yes,telephone,jul,fri,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,single,university.degree,no,no,no,cellular,jul,fri,35,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +53,technician,married,professional.course,unknown,yes,yes,cellular,jul,fri,264,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +38,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,fri,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,837,8,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,fri,243,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +21,admin.,married,unknown,no,yes,no,cellular,jul,fri,528,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +29,admin.,single,university.degree,no,no,no,telephone,jul,fri,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +39,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,fri,470,24,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,913,4,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +37,technician,married,professional.course,no,no,no,cellular,jul,fri,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +25,technician,married,professional.course,no,no,no,cellular,jul,fri,197,3,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +33,technician,married,professional.course,no,no,yes,cellular,jul,fri,414,6,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +22,student,single,high.school,no,no,yes,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,jul,fri,799,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +31,blue-collar,divorced,unknown,no,yes,no,cellular,jul,fri,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +31,blue-collar,divorced,unknown,no,yes,no,cellular,jul,fri,596,1,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +57,admin.,married,basic.9y,no,no,no,cellular,jul,fri,1139,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,yes +51,blue-collar,married,basic.6y,no,yes,no,cellular,jul,fri,227,2,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +44,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,fri,580,7,999,0,nonexistent,1.4,93.918,-42.7,4.957,5228.1,no +26,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,single,basic.9y,no,no,no,cellular,jul,mon,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,self-employed,single,university.degree,no,yes,no,cellular,jul,mon,212,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,single,professional.course,no,no,no,telephone,jul,mon,280,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,married,university.degree,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,single,professional.course,no,yes,no,telephone,jul,mon,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,120,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,jul,mon,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,jul,mon,239,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,jul,mon,463,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,high.school,no,yes,no,telephone,jul,mon,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,services,single,high.school,no,yes,no,cellular,jul,mon,75,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,services,married,high.school,no,yes,no,cellular,jul,mon,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,mon,999,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +26,services,married,high.school,no,yes,yes,cellular,jul,mon,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,services,single,high.school,no,yes,no,cellular,jul,mon,335,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,unknown,no,yes,no,cellular,jul,mon,43,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,mon,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,jul,mon,589,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,91,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,student,single,high.school,unknown,yes,no,cellular,jul,mon,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,78,16,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,yes,no,cellular,jul,mon,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,168,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,blue-collar,single,basic.9y,no,yes,no,telephone,jul,mon,110,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +60,retired,married,university.degree,no,yes,no,cellular,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,married,unknown,no,yes,no,cellular,jul,mon,149,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,489,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,single,high.school,no,no,yes,telephone,jul,mon,1425,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,24,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,university.degree,no,yes,no,telephone,jul,mon,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,unknown,no,no,yes,cellular,jul,mon,78,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,mon,93,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +20,student,single,high.school,no,yes,no,cellular,jul,mon,100,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,140,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,mon,145,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,single,university.degree,no,yes,no,telephone,jul,mon,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,122,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,admin.,single,professional.course,no,yes,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,management,married,university.degree,no,yes,no,cellular,jul,mon,638,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +45,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,478,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,no,yes,telephone,jul,mon,118,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,jul,mon,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,self-employed,single,university.degree,no,no,no,cellular,jul,mon,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,divorced,basic.9y,no,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,single,high.school,unknown,no,yes,cellular,jul,mon,169,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,married,high.school,no,yes,no,cellular,jul,mon,176,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,self-employed,single,university.degree,no,no,no,cellular,jul,mon,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,married,basic.9y,no,unknown,unknown,cellular,jul,mon,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,mon,519,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,entrepreneur,married,basic.9y,unknown,no,no,cellular,jul,mon,394,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,married,basic.9y,no,yes,no,cellular,jul,mon,236,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,mon,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,no,yes,cellular,jul,mon,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,jul,mon,89,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,317,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,172,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,1105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +27,self-employed,single,professional.course,no,no,no,cellular,jul,mon,553,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,technician,single,high.school,no,yes,no,cellular,jul,mon,538,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,808,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,blue-collar,divorced,high.school,no,yes,no,cellular,jul,mon,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,single,university.degree,no,yes,no,cellular,jul,mon,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,technician,married,professional.course,no,no,yes,cellular,jul,mon,554,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,management,married,university.degree,no,yes,no,cellular,jul,mon,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,jul,mon,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,316,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,405,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,self-employed,married,high.school,no,no,no,cellular,jul,mon,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,jul,mon,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,management,single,university.degree,no,yes,no,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,management,married,university.degree,unknown,yes,no,cellular,jul,mon,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,single,high.school,no,no,no,cellular,jul,mon,42,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,technician,single,professional.course,unknown,no,no,cellular,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,mon,455,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,jul,mon,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,mon,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,single,university.degree,no,yes,no,cellular,jul,mon,323,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,single,basic.6y,unknown,no,no,telephone,jul,mon,37,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,services,divorced,high.school,no,yes,no,cellular,jul,mon,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,472,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,blue-collar,single,university.degree,no,no,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,mon,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,mon,581,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,mon,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,admin.,married,high.school,no,yes,yes,cellular,jul,mon,193,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,jul,mon,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,management,married,university.degree,no,no,no,cellular,jul,mon,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +53,entrepreneur,married,university.degree,no,yes,no,cellular,jul,mon,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,120,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +53,entrepreneur,married,university.degree,no,no,no,cellular,jul,mon,304,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,admin.,married,university.degree,no,no,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,856,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,admin.,married,university.degree,no,no,yes,cellular,jul,mon,396,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,853,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,single,high.school,unknown,no,no,cellular,jul,mon,590,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +35,self-employed,divorced,basic.9y,no,no,no,cellular,jul,mon,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,mon,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,475,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,blue-collar,married,basic.4y,no,no,yes,cellular,jul,mon,141,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,mon,54,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,management,married,high.school,no,yes,no,cellular,jul,mon,54,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,730,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,single,professional.course,no,yes,no,cellular,jul,mon,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,533,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,admin.,married,high.school,no,yes,no,cellular,jul,mon,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,no,yes,cellular,jul,mon,304,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,technician,married,basic.4y,no,no,no,cellular,jul,mon,854,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +41,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,services,divorced,high.school,unknown,no,yes,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,single,high.school,no,no,no,cellular,jul,mon,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +60,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,entrepreneur,married,basic.9y,no,no,no,cellular,jul,mon,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,services,married,high.school,no,yes,no,cellular,jul,mon,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,married,basic.9y,no,no,yes,cellular,jul,mon,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,services,married,high.school,no,yes,no,telephone,jul,mon,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,divorced,professional.course,no,no,yes,cellular,jul,mon,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,married,high.school,no,yes,no,telephone,jul,mon,19,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,married,high.school,no,no,no,telephone,jul,mon,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,services,married,high.school,unknown,no,yes,cellular,jul,mon,336,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,services,married,high.school,unknown,no,no,cellular,jul,mon,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,services,married,high.school,unknown,no,yes,cellular,jul,mon,479,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,single,basic.9y,no,no,no,cellular,jul,mon,71,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,single,professional.course,no,no,no,cellular,jul,mon,617,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +46,management,married,university.degree,no,yes,no,cellular,jul,mon,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,divorced,basic.9y,no,no,no,cellular,jul,mon,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,admin.,married,university.degree,unknown,no,yes,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,mon,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,technician,married,high.school,no,no,no,cellular,jul,mon,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +34,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,163,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,high.school,no,no,yes,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,admin.,single,professional.course,no,yes,no,cellular,jul,mon,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,1039,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +36,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,221,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,single,high.school,unknown,yes,no,cellular,jul,mon,141,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +44,admin.,single,basic.9y,no,yes,yes,cellular,jul,mon,919,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +47,services,divorced,basic.9y,unknown,no,no,cellular,jul,mon,678,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,married,high.school,no,no,no,cellular,jul,mon,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,student,single,high.school,no,no,no,cellular,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,technician,married,professional.course,no,no,no,cellular,jul,mon,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,jul,mon,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,single,professional.course,no,no,no,cellular,jul,mon,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,divorced,high.school,no,yes,no,telephone,jul,mon,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,divorced,high.school,no,yes,no,cellular,jul,mon,521,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,mon,1017,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +40,self-employed,married,high.school,no,yes,no,cellular,jul,mon,51,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,divorced,high.school,no,yes,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,449,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,848,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +38,entrepreneur,married,professional.course,no,yes,no,cellular,jul,mon,356,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,admin.,single,high.school,no,no,no,cellular,jul,mon,71,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,technician,married,professional.course,no,yes,no,cellular,jul,mon,163,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,no,yes,cellular,jul,mon,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,university.degree,no,no,no,telephone,jul,mon,733,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +40,self-employed,married,high.school,no,no,no,cellular,jul,mon,353,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,self-employed,married,high.school,no,yes,no,telephone,jul,mon,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,808,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,single,university.degree,no,yes,no,cellular,jul,mon,553,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +43,admin.,married,high.school,no,no,no,cellular,jul,mon,507,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,admin.,married,university.degree,no,no,no,cellular,jul,mon,93,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,married,basic.9y,no,yes,no,cellular,jul,mon,1080,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +43,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,339,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,services,married,high.school,no,no,no,cellular,jul,mon,710,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +40,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,824,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,mon,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,services,married,high.school,no,yes,yes,cellular,jul,mon,1212,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +32,entrepreneur,married,high.school,no,yes,no,cellular,jul,mon,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +19,student,single,basic.9y,unknown,yes,no,cellular,jul,mon,87,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,jul,mon,1156,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,self-employed,married,high.school,no,no,no,cellular,jul,mon,761,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,jul,mon,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,no,no,cellular,jul,mon,137,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,623,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,mon,881,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +59,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,251,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,mon,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,services,married,basic.4y,unknown,no,no,cellular,jul,mon,891,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +22,blue-collar,single,unknown,unknown,no,no,cellular,jul,mon,228,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,yes,no,cellular,jul,mon,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,mon,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,single,university.degree,no,no,no,cellular,jul,mon,333,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,mon,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,technician,married,unknown,unknown,yes,no,cellular,jul,mon,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +52,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,jul,mon,410,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,services,married,university.degree,no,no,no,telephone,jul,mon,691,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +33,admin.,married,basic.9y,no,yes,yes,cellular,jul,mon,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,mon,580,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jul,mon,742,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,single,basic.6y,unknown,yes,no,telephone,jul,mon,1877,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +49,admin.,married,university.degree,unknown,yes,no,telephone,jul,mon,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,295,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,management,married,university.degree,no,yes,no,cellular,jul,mon,292,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,married,basic.9y,no,no,no,telephone,jul,mon,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,578,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,299,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,married,university.degree,no,yes,no,cellular,jul,mon,588,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,single,basic.9y,no,yes,yes,cellular,jul,mon,145,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,mon,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,jul,mon,149,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,services,single,high.school,no,yes,yes,cellular,jul,mon,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,services,single,high.school,no,yes,yes,cellular,jul,mon,208,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,admin.,single,high.school,no,no,no,cellular,jul,mon,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,technician,single,professional.course,no,yes,no,cellular,jul,mon,292,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,technician,single,high.school,no,yes,no,cellular,jul,mon,407,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,50,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,technician,married,unknown,no,no,no,cellular,jul,mon,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,services,married,high.school,unknown,yes,no,cellular,jul,mon,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,married,high.school,no,no,no,telephone,jul,mon,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,married,high.school,no,yes,no,telephone,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,services,married,high.school,no,yes,yes,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,132,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +54,retired,married,basic.4y,unknown,yes,yes,cellular,jul,mon,320,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,mon,71,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,91,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,392,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,mon,210,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,blue-collar,single,unknown,unknown,no,no,telephone,jul,mon,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,blue-collar,married,professional.course,unknown,yes,no,cellular,jul,mon,857,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +31,services,single,university.degree,no,yes,no,cellular,jul,mon,68,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +56,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,single,basic.4y,unknown,yes,yes,cellular,jul,mon,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,services,single,university.degree,no,yes,no,cellular,jul,mon,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +58,management,married,university.degree,no,yes,no,cellular,jul,mon,260,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,services,married,high.school,no,no,no,cellular,jul,mon,474,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,jul,mon,231,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,admin.,single,high.school,no,yes,yes,cellular,jul,mon,936,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,single,professional.course,no,no,no,cellular,jul,mon,690,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,single,basic.9y,no,yes,no,cellular,jul,mon,381,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +40,admin.,single,basic.9y,no,no,no,cellular,jul,mon,1089,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,management,single,high.school,no,no,no,cellular,jul,mon,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,single,university.degree,no,no,no,cellular,jul,mon,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,technician,single,high.school,no,no,no,cellular,jul,mon,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,378,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,jul,mon,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,366,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,mon,71,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,blue-collar,divorced,basic.9y,unknown,no,no,cellular,jul,mon,862,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,mon,71,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,divorced,high.school,no,yes,no,cellular,jul,mon,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,admin.,single,high.school,no,yes,no,cellular,jul,mon,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,services,single,high.school,no,no,no,cellular,jul,mon,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,single,university.degree,no,no,yes,telephone,jul,mon,1130,8,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +29,admin.,married,basic.9y,no,yes,no,cellular,jul,mon,577,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +26,services,single,high.school,no,yes,no,cellular,jul,mon,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,mon,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,high.school,unknown,no,no,cellular,jul,mon,510,6,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,services,married,high.school,no,no,no,cellular,jul,mon,1342,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +29,technician,married,high.school,no,no,no,cellular,jul,mon,363,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,services,divorced,high.school,no,yes,no,cellular,jul,mon,522,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,admin.,married,high.school,no,no,no,cellular,jul,mon,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,services,married,high.school,no,no,yes,cellular,jul,mon,306,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,entrepreneur,single,professional.course,no,yes,no,cellular,jul,mon,354,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,jul,mon,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +50,entrepreneur,married,basic.9y,unknown,no,no,cellular,jul,mon,262,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,admin.,single,high.school,no,yes,no,cellular,jul,mon,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +47,blue-collar,married,basic.6y,no,no,yes,cellular,jul,mon,930,1,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,services,married,high.school,no,yes,yes,telephone,jul,mon,342,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,admin.,divorced,university.degree,no,no,yes,cellular,jul,mon,564,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,admin.,married,high.school,no,no,no,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,services,married,high.school,no,yes,no,cellular,jul,mon,181,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +58,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,418,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +31,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,199,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,251,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,single,professional.course,no,yes,no,cellular,jul,mon,1002,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +30,management,married,university.degree,no,no,yes,cellular,jul,mon,833,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,technician,single,professional.course,no,no,yes,cellular,jul,mon,452,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,274,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,unemployed,married,basic.9y,no,yes,no,cellular,jul,mon,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,admin.,married,university.degree,no,yes,no,cellular,jul,mon,564,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,yes,no,telephone,jul,mon,132,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,250,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,blue-collar,single,unknown,unknown,unknown,unknown,cellular,jul,mon,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,services,divorced,high.school,no,yes,no,cellular,jul,mon,313,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +22,student,single,university.degree,no,yes,no,telephone,jul,mon,138,12,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,management,married,university.degree,no,no,no,cellular,jul,mon,338,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,227,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,blue-collar,single,basic.9y,no,no,yes,cellular,jul,mon,985,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +35,admin.,married,unknown,unknown,yes,no,cellular,jul,mon,236,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,married,high.school,no,yes,no,cellular,jul,mon,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,162,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,121,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,jul,mon,929,15,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,unknown,no,no,no,cellular,jul,mon,91,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +35,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,mon,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,admin.,married,high.school,no,yes,no,cellular,jul,mon,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,769,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,jul,mon,1360,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,90,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,technician,divorced,professional.course,unknown,yes,no,cellular,jul,mon,1134,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +30,blue-collar,married,basic.6y,no,no,no,cellular,jul,mon,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,management,married,university.degree,no,no,no,cellular,jul,mon,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,130,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,mon,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +38,housemaid,married,unknown,unknown,yes,no,cellular,jul,mon,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,mon,276,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +26,admin.,single,unknown,no,no,yes,cellular,jul,mon,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,married,unknown,no,no,no,cellular,jul,mon,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,482,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,mon,21,31,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,technician,married,professional.course,unknown,no,no,cellular,jul,mon,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +39,management,married,university.degree,unknown,yes,no,cellular,jul,mon,908,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,yes +35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,mon,88,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,150,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +46,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,31,20,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,services,married,high.school,no,yes,yes,cellular,jul,mon,185,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +37,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +28,technician,married,basic.9y,no,yes,no,telephone,jul,mon,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,admin.,single,university.degree,no,no,no,telephone,jul,mon,86,9,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +23,admin.,single,high.school,no,yes,no,cellular,jul,mon,34,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,mon,105,10,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,services,married,basic.4y,unknown,no,no,cellular,jul,mon,322,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,housemaid,single,basic.9y,no,yes,no,cellular,jul,mon,898,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,jul,mon,549,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,193,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,admin.,single,high.school,no,no,no,telephone,jul,mon,177,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +27,technician,single,professional.course,no,no,no,cellular,jul,mon,357,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +32,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,mon,419,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +55,technician,married,professional.course,unknown,no,no,cellular,jul,mon,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,admin.,single,high.school,no,yes,no,cellular,jul,mon,595,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,24,28,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,married,high.school,unknown,yes,no,cellular,jul,mon,147,5,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +30,management,single,university.degree,no,no,yes,telephone,jul,mon,100,11,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,mon,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,admin.,single,high.school,no,no,no,telephone,jul,mon,184,21,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +33,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,mon,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,jul,mon,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +29,retired,single,basic.4y,unknown,no,no,cellular,jul,mon,314,7,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +25,services,single,high.school,no,no,no,cellular,jul,mon,322,2,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,54,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +36,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,mon,445,4,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,mon,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +49,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +24,admin.,single,high.school,no,yes,no,telephone,jul,mon,722,3,999,0,nonexistent,1.4,93.918,-42.7,4.96,5228.1,no +45,services,married,high.school,no,yes,no,telephone,jul,tue,68,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,technician,married,basic.6y,no,yes,no,cellular,jul,tue,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,high.school,no,no,no,cellular,jul,tue,78,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,admin.,divorced,high.school,no,no,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,professional.course,unknown,no,no,telephone,jul,tue,44,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,management,married,unknown,no,yes,no,cellular,jul,tue,70,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,services,married,high.school,no,no,no,telephone,jul,tue,80,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,retired,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,159,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,admin.,single,high.school,no,no,no,cellular,jul,tue,72,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,jul,tue,125,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,unknown,no,no,cellular,jul,tue,712,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +38,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,156,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,181,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,unemployed,married,high.school,no,yes,no,cellular,jul,tue,383,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,technician,single,high.school,no,no,yes,cellular,jul,tue,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,services,single,high.school,unknown,yes,no,cellular,jul,tue,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,152,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,housemaid,divorced,basic.6y,no,yes,no,cellular,jul,tue,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,46,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,tue,17,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,basic.6y,no,no,no,telephone,jul,tue,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,married,professional.course,no,no,no,cellular,jul,tue,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,services,single,high.school,unknown,yes,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,tue,102,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,tue,637,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,professional.course,no,yes,no,cellular,jul,tue,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,238,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,420,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,jul,tue,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,high.school,no,no,no,cellular,jul,tue,29,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,entrepreneur,married,university.degree,unknown,no,yes,cellular,jul,tue,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,tue,1352,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +29,technician,married,professional.course,no,yes,yes,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,self-employed,single,unknown,no,yes,no,cellular,jul,tue,438,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,married,basic.4y,no,no,no,cellular,jul,tue,153,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +22,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,139,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,married,high.school,no,no,yes,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,services,divorced,high.school,no,yes,no,cellular,jul,tue,77,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,211,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,management,married,university.degree,no,no,no,cellular,jul,tue,314,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,tue,278,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,single,university.degree,no,no,yes,cellular,jul,tue,263,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +21,services,single,high.school,no,yes,no,cellular,jul,tue,344,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,1077,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,high.school,no,no,no,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,high.school,no,no,no,cellular,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,high.school,no,no,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,single,high.school,no,yes,no,cellular,jul,tue,714,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,technician,married,high.school,no,no,no,cellular,jul,tue,422,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,yes,cellular,jul,tue,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,housemaid,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,518,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,tue,168,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,single,high.school,no,no,no,cellular,jul,tue,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,527,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,married,unknown,unknown,no,no,cellular,jul,tue,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +44,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,663,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,690,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +39,blue-collar,single,high.school,unknown,yes,no,cellular,jul,tue,132,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,basic.9y,no,yes,yes,cellular,jul,tue,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,702,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,professional.course,unknown,no,no,cellular,jul,tue,407,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,yes,yes,cellular,jul,tue,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,jul,tue,176,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,services,married,high.school,no,no,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,married,high.school,no,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +22,admin.,single,high.school,no,yes,no,cellular,jul,tue,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,technician,single,unknown,no,yes,no,cellular,jul,tue,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,married,basic.6y,no,no,no,cellular,jul,tue,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,yes,no,cellular,jul,tue,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,single,university.degree,no,no,no,cellular,jul,tue,490,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,tue,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,807,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,1545,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +35,services,single,high.school,unknown,yes,no,cellular,jul,tue,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,no,no,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,yes,yes,cellular,jul,tue,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,yes,no,cellular,jul,tue,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,jul,tue,274,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,services,single,high.school,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,1017,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,no,no,cellular,jul,tue,520,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,student,married,university.degree,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,self-employed,single,unknown,no,no,no,cellular,jul,tue,843,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,273,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,unknown,no,no,no,telephone,jul,tue,74,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,485,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,single,basic.4y,no,no,yes,cellular,jul,tue,271,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,services,married,high.school,no,no,no,cellular,jul,tue,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,599,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,admin.,married,unknown,no,yes,yes,cellular,jul,tue,247,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,no,yes,telephone,jul,tue,215,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,88,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,married,high.school,unknown,yes,no,cellular,jul,tue,423,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,285,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,22,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,management,single,university.degree,no,no,no,cellular,jul,tue,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,352,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,no,yes,cellular,jul,tue,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,188,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,506,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,married,basic.6y,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,tue,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,no,yes,cellular,jul,tue,455,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,unemployed,single,university.degree,no,no,no,telephone,jul,tue,27,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,272,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,married,basic.4y,no,no,yes,telephone,jul,tue,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,management,married,university.degree,no,no,yes,cellular,jul,tue,630,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,self-employed,single,high.school,no,yes,no,cellular,jul,tue,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,jul,tue,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,technician,married,professional.course,no,no,yes,cellular,jul,tue,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,tue,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,admin.,married,unknown,unknown,no,no,cellular,jul,tue,599,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,tue,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,divorced,university.degree,no,no,yes,cellular,jul,tue,654,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +30,admin.,single,university.degree,no,no,yes,cellular,jul,tue,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,management,single,high.school,no,no,no,cellular,jul,tue,1288,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,divorced,basic.9y,no,yes,no,telephone,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,services,single,high.school,no,no,no,telephone,jul,tue,29,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,technician,married,professional.course,no,no,no,cellular,jul,tue,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,tue,333,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,married,basic.9y,unknown,yes,no,cellular,jul,tue,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,403,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,admin.,married,basic.9y,no,yes,no,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,yes,cellular,jul,tue,52,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,tue,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.4y,no,no,yes,cellular,jul,tue,849,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +36,services,divorced,professional.course,no,yes,no,telephone,jul,tue,261,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,jul,tue,614,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,services,married,high.school,unknown,no,no,cellular,jul,tue,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,1833,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +31,technician,single,professional.course,no,yes,no,cellular,jul,tue,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,married,university.degree,no,unknown,unknown,cellular,jul,tue,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,369,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,no,no,cellular,jul,tue,431,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,self-employed,married,university.degree,no,no,yes,cellular,jul,tue,1220,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,entrepreneur,divorced,unknown,no,no,no,cellular,jul,tue,67,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,technician,divorced,professional.course,no,yes,yes,cellular,jul,tue,639,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,divorced,university.degree,no,yes,no,cellular,jul,tue,722,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +49,admin.,single,high.school,no,yes,no,cellular,jul,tue,1281,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +22,services,single,high.school,no,yes,no,cellular,jul,tue,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,entrepreneur,single,university.degree,no,yes,no,cellular,jul,tue,654,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,basic.4y,no,no,no,telephone,jul,tue,204,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,self-employed,single,high.school,no,no,no,cellular,jul,tue,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,self-employed,single,high.school,no,no,yes,cellular,jul,tue,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,tue,211,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,1029,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,married,university.degree,no,yes,no,telephone,jul,tue,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,tue,115,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,jul,tue,443,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,basic.6y,no,no,yes,cellular,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,unknown,no,no,no,cellular,jul,tue,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,578,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,unknown,no,no,no,cellular,jul,tue,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,services,single,high.school,no,unknown,unknown,cellular,jul,tue,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,basic.6y,no,no,no,cellular,jul,tue,1508,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +57,management,married,university.degree,no,no,no,cellular,jul,tue,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,management,married,university.degree,no,no,no,cellular,jul,tue,632,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,unemployed,married,basic.4y,unknown,yes,yes,cellular,jul,tue,212,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,entrepreneur,married,university.degree,unknown,yes,yes,cellular,jul,tue,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,yes,no,cellular,jul,tue,662,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,tue,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,married,unknown,unknown,yes,yes,cellular,jul,tue,97,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,retired,divorced,professional.course,no,no,no,cellular,jul,tue,867,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,entrepreneur,divorced,professional.course,no,yes,no,cellular,jul,tue,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,telephone,jul,tue,563,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,high.school,no,no,no,cellular,jul,tue,385,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,self-employed,single,high.school,no,no,no,cellular,jul,tue,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,966,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +48,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,264,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,tue,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,services,married,high.school,unknown,no,no,cellular,jul,tue,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,unemployed,married,basic.4y,unknown,yes,no,telephone,jul,tue,275,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,admin.,married,high.school,no,unknown,unknown,cellular,jul,tue,502,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,blue-collar,married,high.school,no,no,no,cellular,jul,tue,405,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,289,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,unemployed,married,professional.course,no,no,no,cellular,jul,tue,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,technician,married,high.school,no,yes,no,telephone,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,jul,tue,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,professional.course,no,no,no,cellular,jul,tue,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,admin.,single,unknown,unknown,no,no,cellular,jul,tue,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,tue,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,tue,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,487,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,tue,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,housemaid,married,basic.9y,no,yes,no,cellular,jul,tue,681,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,283,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,technician,single,professional.course,unknown,yes,no,cellular,jul,tue,417,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,282,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,no,no,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,yes,no,cellular,jul,tue,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,student,single,unknown,no,yes,no,cellular,jul,tue,661,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,no,no,cellular,jul,tue,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,yes,no,cellular,jul,tue,445,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,management,married,university.degree,no,yes,no,cellular,jul,tue,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,370,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,242,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,single,professional.course,no,no,yes,cellular,jul,tue,1408,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,services,married,high.school,no,yes,no,telephone,jul,tue,514,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,tue,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,admin.,single,high.school,no,unknown,unknown,cellular,jul,tue,176,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,jul,tue,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,services,divorced,unknown,unknown,yes,yes,cellular,jul,tue,483,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,608,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,services,divorced,high.school,unknown,yes,no,cellular,jul,tue,100,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,married,basic.9y,no,yes,yes,cellular,jul,tue,145,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,housemaid,married,basic.9y,no,yes,no,cellular,jul,tue,160,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,blue-collar,divorced,unknown,no,yes,no,cellular,jul,tue,160,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,261,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,tue,236,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,tue,403,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,high.school,no,no,yes,cellular,jul,tue,241,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,387,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,services,single,unknown,no,yes,no,cellular,jul,tue,598,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +33,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,1206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,single,high.school,no,no,yes,cellular,jul,tue,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,jul,tue,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,management,married,university.degree,no,yes,no,cellular,jul,tue,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,retired,divorced,basic.4y,no,yes,no,cellular,jul,tue,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,management,married,university.degree,no,no,no,cellular,jul,tue,477,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,management,married,high.school,no,yes,no,cellular,jul,tue,312,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,tue,727,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jul,tue,249,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,technician,married,university.degree,no,yes,no,cellular,jul,tue,459,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,married,professional.course,no,no,no,cellular,jul,tue,240,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,divorced,professional.course,no,no,no,cellular,jul,tue,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,unknown,no,yes,telephone,jul,tue,287,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,housemaid,married,illiterate,unknown,yes,no,cellular,jul,tue,176,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,jul,tue,270,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,single,high.school,no,yes,no,cellular,jul,tue,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,services,divorced,unknown,unknown,yes,no,cellular,jul,tue,139,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,single,high.school,unknown,yes,no,cellular,jul,tue,560,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +37,services,single,high.school,no,no,yes,cellular,jul,tue,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,high.school,no,no,no,cellular,jul,tue,100,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,entrepreneur,single,university.degree,no,no,yes,cellular,jul,tue,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,self-employed,single,unknown,no,yes,yes,cellular,jul,tue,55,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,university.degree,no,no,no,cellular,jul,tue,1237,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +27,blue-collar,single,unknown,no,unknown,unknown,cellular,jul,tue,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,blue-collar,married,unknown,no,no,yes,cellular,jul,tue,44,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,493,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,jul,tue,345,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,jul,tue,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,technician,married,high.school,no,yes,no,cellular,jul,tue,187,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,580,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,services,single,high.school,no,no,no,cellular,jul,tue,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,184,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,management,married,university.degree,no,no,no,cellular,jul,tue,443,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,single,unknown,unknown,yes,no,cellular,jul,tue,213,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,blue-collar,married,basic.9y,no,no,no,telephone,jul,tue,400,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,289,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,services,single,unknown,unknown,no,no,cellular,jul,tue,717,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,entrepreneur,single,university.degree,no,no,no,cellular,jul,tue,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,89,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,503,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,single,unknown,no,no,no,cellular,jul,tue,62,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,services,single,high.school,unknown,yes,no,cellular,jul,tue,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +20,services,single,high.school,no,no,no,telephone,jul,tue,97,15,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,blue-collar,single,unknown,no,no,no,cellular,jul,tue,39,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,management,married,university.degree,no,no,no,cellular,jul,tue,88,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,unknown,married,basic.6y,no,no,no,cellular,jul,tue,199,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,management,divorced,university.degree,no,yes,no,cellular,jul,tue,233,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,tue,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,admin.,single,basic.9y,no,yes,no,cellular,jul,tue,44,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,single,unknown,unknown,yes,no,cellular,jul,tue,78,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,blue-collar,single,basic.6y,no,yes,yes,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,housemaid,married,basic.9y,no,no,no,cellular,jul,tue,209,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,728,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,services,divorced,high.school,no,yes,no,cellular,jul,tue,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,admin.,single,high.school,no,no,yes,cellular,jul,tue,210,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,tue,1287,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,services,single,high.school,no,no,no,cellular,jul,tue,32,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,self-employed,divorced,professional.course,no,yes,no,cellular,jul,tue,437,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,jul,tue,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,single,high.school,unknown,yes,yes,telephone,jul,tue,1148,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,864,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +55,admin.,married,university.degree,no,yes,no,cellular,jul,tue,464,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +23,management,single,university.degree,no,yes,no,cellular,jul,tue,314,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,technician,married,high.school,no,yes,no,cellular,jul,tue,1037,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +41,blue-collar,divorced,unknown,no,yes,no,telephone,jul,tue,351,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,divorced,university.degree,no,yes,no,telephone,jul,tue,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,162,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +22,services,married,basic.9y,no,yes,no,cellular,jul,tue,209,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +20,student,single,high.school,no,yes,yes,cellular,jul,tue,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,technician,divorced,professional.course,no,no,no,cellular,jul,tue,624,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,167,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,housemaid,married,basic.4y,no,no,yes,cellular,jul,tue,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,high.school,no,no,no,telephone,jul,tue,802,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +28,blue-collar,married,basic.9y,no,no,no,cellular,jul,tue,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,262,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,254,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,1226,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,technician,married,professional.course,unknown,no,no,cellular,jul,tue,113,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,714,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,tue,282,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,tue,534,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,married,unknown,unknown,yes,yes,cellular,jul,tue,174,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,blue-collar,single,basic.9y,unknown,yes,yes,cellular,jul,tue,532,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,admin.,single,unknown,unknown,yes,no,cellular,jul,tue,319,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,unknown,unknown,no,no,cellular,jul,tue,1608,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,no,no,cellular,jul,wed,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.9y,unknown,no,no,cellular,jul,wed,127,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,85,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,487,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,yes,no,cellular,jul,wed,217,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,no,no,cellular,jul,wed,439,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,unknown,no,yes,no,cellular,jul,wed,170,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,411,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,services,single,basic.9y,no,yes,no,cellular,jul,wed,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,442,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,unknown,no,no,no,cellular,jul,wed,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,unknown,unknown,no,no,cellular,jul,wed,100,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,retired,married,unknown,unknown,no,no,cellular,jul,wed,133,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,40,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,187,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,no,yes,cellular,jul,wed,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,89,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,wed,75,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,wed,284,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,221,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,wed,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,housemaid,married,basic.4y,unknown,no,yes,cellular,jul,wed,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,364,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,professional.course,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,no,yes,cellular,jul,wed,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,basic.9y,no,yes,yes,cellular,jul,wed,51,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,housemaid,single,basic.4y,unknown,no,yes,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,married,basic.9y,no,no,no,cellular,jul,wed,500,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,single,high.school,no,yes,no,cellular,jul,wed,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,entrepreneur,married,university.degree,no,no,yes,cellular,jul,wed,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,entrepreneur,married,university.degree,no,no,no,telephone,jul,wed,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,retired,married,basic.4y,no,no,no,cellular,jul,wed,390,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,high.school,no,yes,no,cellular,jul,wed,926,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,blue-collar,single,high.school,no,yes,yes,cellular,jul,wed,870,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +24,services,single,basic.9y,no,no,no,cellular,jul,wed,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,yes,no,cellular,jul,wed,411,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,no,cellular,jul,wed,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,no,cellular,jul,wed,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,yes,cellular,jul,wed,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,retired,married,unknown,unknown,no,no,cellular,jul,wed,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,429,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,management,divorced,university.degree,no,yes,no,cellular,jul,wed,256,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,admin.,single,high.school,no,yes,no,cellular,jul,wed,271,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,telephone,jul,wed,157,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,high.school,no,no,no,cellular,jul,wed,107,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,university.degree,no,no,no,cellular,jul,wed,285,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,services,married,basic.4y,unknown,yes,no,cellular,jul,wed,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,married,basic.9y,no,yes,no,cellular,jul,wed,161,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,jul,wed,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,no,yes,cellular,jul,wed,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,technician,single,basic.9y,no,yes,no,cellular,jul,wed,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,technician,married,professional.course,no,no,no,cellular,jul,wed,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,wed,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,wed,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,basic.6y,unknown,yes,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,retired,married,basic.4y,no,yes,no,cellular,jul,wed,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,basic.6y,unknown,yes,no,cellular,jul,wed,327,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,divorced,basic.6y,unknown,yes,no,telephone,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,high.school,no,yes,yes,cellular,jul,wed,376,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,married,basic.6y,no,yes,no,cellular,jul,wed,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,379,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,retired,married,basic.4y,no,no,no,cellular,jul,wed,761,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +24,services,single,basic.9y,no,yes,no,telephone,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,divorced,professional.course,no,yes,yes,cellular,jul,wed,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,high.school,no,yes,yes,cellular,jul,wed,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,management,married,university.degree,unknown,no,no,cellular,jul,wed,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,77,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,basic.6y,unknown,no,no,cellular,jul,wed,1176,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +42,admin.,married,university.degree,no,unknown,unknown,cellular,jul,wed,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,281,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,university.degree,no,unknown,unknown,cellular,jul,wed,145,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,married,unknown,no,yes,no,telephone,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,technician,divorced,basic.9y,no,yes,no,cellular,jul,wed,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,high.school,no,no,yes,cellular,jul,wed,136,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,university.degree,no,yes,no,cellular,jul,wed,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,495,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,jul,wed,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,married,high.school,no,no,no,cellular,jul,wed,235,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,unemployed,single,basic.9y,unknown,yes,yes,cellular,jul,wed,633,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,services,single,high.school,no,yes,no,telephone,jul,wed,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,management,married,basic.9y,no,no,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,jul,wed,1089,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,management,married,university.degree,no,yes,yes,telephone,jul,wed,43,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,wed,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,unknown,unknown,yes,no,cellular,jul,wed,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,high.school,no,yes,yes,cellular,jul,wed,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,wed,336,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,unemployed,married,professional.course,unknown,yes,no,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.9y,unknown,yes,no,telephone,jul,wed,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,basic.9y,no,yes,no,cellular,jul,wed,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,yes,no,telephone,jul,wed,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,basic.9y,no,yes,no,cellular,jul,wed,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,no,no,cellular,jul,wed,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.4y,no,yes,yes,telephone,jul,wed,18,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.6y,no,no,no,telephone,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,housemaid,single,high.school,no,yes,yes,cellular,jul,wed,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,technician,married,unknown,no,yes,no,cellular,jul,wed,644,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,services,married,high.school,no,yes,yes,telephone,jul,wed,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,421,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,178,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,unknown,married,basic.6y,no,no,no,cellular,jul,wed,884,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,high.school,no,no,no,cellular,jul,wed,238,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,married,high.school,no,no,no,cellular,jul,wed,319,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.4y,no,yes,yes,cellular,jul,wed,371,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,wed,670,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,services,married,high.school,no,yes,no,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,management,single,university.degree,no,yes,no,cellular,jul,wed,35,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,284,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,admin.,married,basic.9y,no,no,yes,cellular,jul,wed,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,entrepreneur,married,university.degree,no,no,yes,cellular,jul,wed,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,basic.6y,unknown,yes,no,cellular,jul,wed,375,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,married,university.degree,no,yes,no,telephone,jul,wed,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,wed,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,housemaid,single,high.school,no,no,yes,cellular,jul,wed,952,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,high.school,no,no,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,unknown,unknown,no,no,cellular,jul,wed,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,admin.,single,basic.9y,no,yes,no,cellular,jul,wed,158,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,yes,no,telephone,jul,wed,163,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,single,basic.6y,no,yes,no,cellular,jul,wed,423,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,368,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,yes,no,cellular,jul,wed,280,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,married,high.school,unknown,no,no,cellular,jul,wed,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,high.school,no,no,no,telephone,jul,wed,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,high.school,no,yes,no,cellular,jul,wed,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,professional.course,no,no,yes,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,639,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,divorced,unknown,no,no,no,cellular,jul,wed,222,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,single,basic.4y,unknown,yes,no,telephone,jul,wed,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,self-employed,single,unknown,no,yes,no,cellular,jul,wed,202,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,wed,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,no,no,cellular,jul,wed,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,no,no,yes,cellular,jul,wed,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,unknown,no,no,telephone,jul,wed,173,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,unemployed,married,university.degree,no,yes,no,cellular,jul,wed,387,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,74,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,management,married,high.school,no,yes,no,cellular,jul,wed,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,unknown,no,yes,no,cellular,jul,wed,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,university.degree,no,no,yes,cellular,jul,wed,690,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +53,services,married,high.school,no,no,yes,cellular,jul,wed,159,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,services,single,high.school,no,no,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,no,yes,cellular,jul,wed,465,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,student,single,high.school,no,no,yes,cellular,jul,wed,312,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,telephone,jul,wed,717,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,technician,single,university.degree,no,no,yes,telephone,jul,wed,355,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,jul,wed,538,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,single,university.degree,no,no,no,cellular,jul,wed,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,university.degree,no,no,no,cellular,jul,wed,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,services,divorced,high.school,no,no,no,telephone,jul,wed,197,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,retired,married,basic.4y,unknown,yes,no,cellular,jul,wed,374,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,unknown,no,yes,yes,cellular,jul,wed,130,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,97,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,university.degree,no,yes,no,cellular,jul,wed,529,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +49,unemployed,married,high.school,no,yes,no,cellular,jul,wed,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,retired,married,university.degree,unknown,no,no,cellular,jul,wed,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,unknown,unknown,unknown,unknown,cellular,jul,wed,140,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,university.degree,no,no,no,cellular,jul,wed,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,married,professional.course,no,no,no,cellular,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,university.degree,no,no,no,cellular,jul,wed,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,jul,wed,511,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,management,single,university.degree,no,no,no,cellular,jul,wed,435,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,single,university.degree,no,no,no,telephone,jul,wed,36,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,self-employed,divorced,university.degree,no,no,yes,cellular,jul,wed,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,unknown,unknown,cellular,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,366,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,admin.,divorced,university.degree,no,no,yes,cellular,jul,wed,216,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,297,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,housemaid,married,unknown,no,yes,no,cellular,jul,wed,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,management,single,university.degree,no,no,no,cellular,jul,wed,76,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,no,no,cellular,jul,wed,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,single,high.school,no,yes,yes,cellular,jul,wed,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,high.school,no,no,no,telephone,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.6y,no,no,yes,cellular,jul,wed,1152,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +27,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,335,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,self-employed,divorced,university.degree,no,yes,no,cellular,jul,wed,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,439,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,technician,single,professional.course,no,no,no,cellular,jul,wed,169,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,university.degree,no,no,yes,cellular,jul,wed,979,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,unknown,married,university.degree,no,yes,no,cellular,jul,wed,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,high.school,unknown,yes,no,telephone,jul,wed,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,jul,wed,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,married,unknown,no,yes,no,cellular,jul,wed,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,university.degree,no,yes,no,cellular,jul,wed,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,jul,wed,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,entrepreneur,divorced,university.degree,no,no,no,telephone,jul,wed,383,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,unknown,unknown,telephone,jul,wed,588,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,basic.4y,no,no,yes,telephone,jul,wed,25,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,874,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,married,university.degree,no,yes,no,cellular,jul,wed,396,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,self-employed,married,professional.course,unknown,no,no,cellular,jul,wed,434,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,wed,322,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,545,24,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,retired,divorced,unknown,no,no,no,cellular,jul,wed,413,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,jul,wed,34,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,jul,wed,586,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,single,university.degree,no,no,no,cellular,jul,wed,698,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,basic.9y,no,yes,no,cellular,jul,wed,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,divorced,high.school,no,no,no,cellular,jul,wed,1960,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +28,blue-collar,single,basic.4y,unknown,no,no,cellular,jul,wed,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,basic.6y,no,no,no,cellular,jul,wed,212,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,wed,1331,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,high.school,no,no,no,cellular,jul,wed,1776,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,basic.6y,unknown,no,no,cellular,jul,wed,312,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.6y,no,no,no,cellular,jul,wed,638,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,married,high.school,no,no,no,cellular,jul,wed,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,technician,married,high.school,unknown,no,no,cellular,jul,wed,517,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,basic.9y,no,no,no,cellular,jul,wed,271,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,jul,wed,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,married,high.school,no,no,no,cellular,jul,wed,206,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,high.school,unknown,yes,no,cellular,jul,wed,671,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,jul,wed,259,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,yes,no,cellular,jul,wed,957,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,technician,single,professional.course,no,no,no,telephone,jul,wed,296,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,entrepreneur,married,basic.9y,no,yes,yes,telephone,jul,wed,85,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,unknown,married,unknown,unknown,yes,no,cellular,jul,wed,323,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,yes,no,cellular,jul,wed,438,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,jul,wed,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,332,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,technician,married,basic.4y,unknown,no,no,cellular,jul,wed,158,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,services,single,university.degree,no,unknown,unknown,cellular,jul,wed,288,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,management,married,unknown,no,yes,no,cellular,jul,wed,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,wed,544,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,single,university.degree,no,no,no,cellular,jul,wed,91,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,wed,448,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,single,basic.9y,no,no,no,cellular,jul,wed,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,university.degree,no,no,no,cellular,jul,wed,203,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,yes,no,cellular,jul,wed,902,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +39,blue-collar,married,unknown,unknown,yes,no,cellular,jul,wed,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,management,divorced,high.school,no,no,yes,cellular,jul,wed,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,high.school,no,no,no,cellular,jul,wed,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,single,basic.9y,no,no,no,cellular,jul,wed,711,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,55,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,1327,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +30,management,married,university.degree,no,yes,no,telephone,jul,wed,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,high.school,no,no,no,telephone,jul,wed,239,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,admin.,married,university.degree,unknown,no,yes,cellular,jul,wed,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,1090,12,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,technician,single,professional.course,no,unknown,unknown,cellular,jul,wed,361,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,telephone,jul,wed,67,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +21,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,2078,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +36,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,339,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,services,married,professional.course,no,yes,no,cellular,jul,wed,185,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,no,yes,telephone,jul,wed,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,technician,single,university.degree,no,no,yes,telephone,jul,wed,1118,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,divorced,high.school,no,no,yes,cellular,jul,wed,400,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,no,cellular,jul,wed,580,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,179,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,475,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,single,high.school,no,no,no,cellular,jul,wed,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,management,married,university.degree,no,yes,yes,cellular,jul,wed,229,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,530,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,497,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,technician,married,basic.9y,no,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,362,19,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,unknown,married,university.degree,no,no,yes,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,admin.,single,professional.course,no,no,yes,cellular,jul,wed,206,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,self-employed,married,university.degree,no,no,no,telephone,jul,wed,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,125,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,jul,wed,673,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,self-employed,divorced,university.degree,no,yes,no,cellular,jul,wed,1124,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +51,admin.,married,basic.9y,unknown,yes,no,cellular,jul,wed,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +30,technician,divorced,professional.course,no,no,no,cellular,jul,wed,180,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,divorced,professional.course,no,no,yes,cellular,jul,wed,808,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +28,admin.,married,university.degree,no,yes,no,cellular,jul,wed,510,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,jul,wed,162,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,413,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,housemaid,unknown,basic.4y,no,yes,no,cellular,jul,wed,198,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,management,married,basic.9y,no,yes,no,cellular,jul,wed,421,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,basic.9y,no,no,no,telephone,jul,wed,350,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,professional.course,no,yes,no,cellular,jul,wed,322,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,married,high.school,no,no,no,cellular,jul,wed,201,16,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,638,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +28,admin.,single,high.school,no,no,yes,cellular,jul,wed,437,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,divorced,basic.9y,unknown,no,no,cellular,jul,wed,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,wed,147,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,married,high.school,no,no,no,telephone,jul,wed,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,108,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,jul,wed,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,married,professional.course,no,yes,no,cellular,jul,wed,1066,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,admin.,single,high.school,no,yes,no,telephone,jul,wed,293,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,technician,married,professional.course,no,unknown,unknown,cellular,jul,wed,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,services,married,unknown,no,yes,yes,telephone,jul,wed,329,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.6y,no,yes,yes,telephone,jul,wed,329,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,609,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,jul,wed,652,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,unknown,unknown,yes,yes,cellular,jul,wed,1201,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +35,services,married,basic.9y,no,yes,yes,cellular,jul,wed,252,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,wed,1309,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +48,technician,divorced,professional.course,no,no,no,cellular,jul,wed,127,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,married,high.school,no,yes,yes,cellular,jul,wed,205,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,services,married,high.school,unknown,yes,no,cellular,jul,wed,476,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,158,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,services,single,high.school,no,no,no,cellular,jul,wed,74,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,admin.,married,high.school,no,no,no,cellular,jul,wed,419,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,basic.6y,no,yes,no,telephone,jul,wed,165,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,management,single,unknown,no,yes,yes,cellular,jul,wed,408,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,housemaid,single,basic.4y,unknown,no,no,telephone,jul,wed,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,services,single,high.school,no,unknown,unknown,cellular,jul,wed,1300,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,housemaid,married,high.school,unknown,yes,no,cellular,jul,wed,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,divorced,basic.6y,no,no,no,cellular,jul,wed,144,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,293,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,173,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,wed,156,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,280,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,self-employed,married,basic.9y,no,yes,no,cellular,jul,wed,1359,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +43,admin.,married,university.degree,no,yes,no,telephone,jul,wed,122,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,416,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +27,technician,married,professional.course,no,no,no,telephone,jul,wed,36,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,623,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,single,basic.4y,no,no,no,cellular,jul,wed,53,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,279,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,divorced,high.school,no,no,no,cellular,jul,wed,532,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +48,services,married,basic.9y,no,yes,no,cellular,jul,wed,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,wed,933,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,management,married,university.degree,no,no,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,790,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,university.degree,no,no,no,telephone,jul,wed,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,jul,wed,171,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,single,professional.course,no,yes,no,cellular,jul,wed,505,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,jul,wed,495,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,technician,married,unknown,unknown,no,no,cellular,jul,wed,799,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,self-employed,married,professional.course,unknown,yes,yes,cellular,jul,wed,683,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +24,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,84,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,divorced,professional.course,no,yes,yes,cellular,jul,wed,547,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,admin.,married,high.school,no,yes,no,telephone,jul,wed,103,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,236,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,married,basic.9y,no,yes,no,telephone,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,university.degree,no,no,no,telephone,jul,wed,192,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,services,single,basic.6y,no,yes,no,cellular,jul,wed,476,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,jul,thu,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,single,high.school,no,no,no,cellular,jul,thu,54,29,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,high.school,no,no,no,cellular,jul,thu,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,retired,married,basic.4y,no,no,no,cellular,jul,thu,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,blue-collar,single,basic.9y,unknown,no,yes,telephone,jul,thu,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,basic.4y,no,no,yes,cellular,jul,thu,265,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,yes,no,cellular,jul,thu,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,entrepreneur,married,university.degree,no,unknown,unknown,cellular,jul,thu,430,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +47,technician,divorced,high.school,no,no,no,cellular,jul,thu,202,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,single,university.degree,no,no,no,cellular,jul,thu,537,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,high.school,no,no,yes,cellular,jul,thu,219,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,48,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,married,basic.4y,unknown,unknown,unknown,cellular,jul,thu,143,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,high.school,no,yes,yes,cellular,jul,thu,241,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,services,married,high.school,no,no,no,cellular,jul,thu,63,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,jul,thu,357,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,yes,cellular,jul,thu,21,20,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,entrepreneur,married,university.degree,unknown,no,yes,cellular,jul,thu,13,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,yes,no,telephone,jul,thu,32,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,high.school,no,no,no,cellular,jul,thu,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,thu,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,divorced,basic.6y,unknown,no,yes,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,119,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,blue-collar,single,basic.6y,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,basic.6y,no,unknown,unknown,cellular,jul,thu,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,university.degree,no,no,yes,cellular,jul,thu,200,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,no,no,cellular,jul,thu,42,24,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,divorced,high.school,no,no,yes,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,divorced,high.school,no,no,yes,cellular,jul,thu,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,thu,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,professional.course,no,no,no,cellular,jul,thu,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,thu,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,single,university.degree,no,no,yes,cellular,jul,thu,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,divorced,high.school,no,no,yes,cellular,jul,thu,481,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,high.school,unknown,no,yes,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,jul,thu,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,311,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,single,university.degree,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,professional.course,no,yes,yes,cellular,jul,thu,137,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,single,high.school,no,no,no,cellular,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,married,high.school,no,no,no,cellular,jul,thu,544,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,single,university.degree,unknown,yes,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,single,university.degree,no,yes,yes,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,no,no,cellular,jul,thu,67,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,blue-collar,single,basic.6y,no,no,no,cellular,jul,thu,326,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,no,telephone,jul,thu,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,entrepreneur,married,university.degree,unknown,no,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,basic.6y,no,no,no,cellular,jul,thu,130,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,divorced,basic.6y,unknown,yes,yes,cellular,jul,thu,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,technician,married,university.degree,unknown,no,yes,cellular,jul,thu,459,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,single,university.degree,no,no,no,cellular,jul,thu,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,thu,71,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,thu,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,professional.course,no,no,no,cellular,jul,thu,458,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,married,high.school,unknown,no,no,telephone,jul,thu,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,student,single,high.school,no,yes,no,cellular,jul,thu,853,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +57,management,married,university.degree,no,no,no,cellular,jul,thu,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,380,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,194,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,1204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +31,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,467,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,university.degree,no,no,no,cellular,jul,thu,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,married,high.school,unknown,no,yes,cellular,jul,thu,338,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,professional.course,no,no,yes,cellular,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,157,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,management,single,university.degree,no,no,no,cellular,jul,thu,528,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,technician,married,professional.course,no,no,no,cellular,jul,thu,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,no,yes,yes,telephone,jul,thu,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,yes,no,cellular,jul,thu,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,no,no,no,cellular,jul,thu,313,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,high.school,unknown,yes,no,telephone,jul,thu,279,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,335,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,high.school,unknown,no,yes,cellular,jul,thu,775,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,married,basic.9y,unknown,no,no,cellular,jul,thu,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,jul,thu,561,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,basic.4y,no,yes,no,cellular,jul,thu,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,entrepreneur,single,university.degree,no,yes,no,cellular,jul,thu,329,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,no,yes,cellular,jul,thu,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,high.school,unknown,yes,no,cellular,jul,thu,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,basic.9y,no,no,no,cellular,jul,thu,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,523,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,high.school,unknown,yes,yes,telephone,jul,thu,193,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,basic.9y,no,yes,no,cellular,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,302,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,205,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,married,basic.4y,unknown,yes,no,cellular,jul,thu,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,married,basic.4y,unknown,no,no,cellular,jul,thu,142,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,retired,single,basic.9y,no,no,no,telephone,jul,thu,239,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,high.school,unknown,no,no,cellular,jul,thu,1756,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,services,married,high.school,no,no,no,cellular,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,services,single,basic.9y,no,no,yes,cellular,jul,thu,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,no,no,yes,cellular,jul,thu,1441,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +52,technician,married,professional.course,no,no,no,cellular,jul,thu,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,unknown,no,yes,no,cellular,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,technician,married,professional.course,no,no,no,cellular,jul,thu,191,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,services,single,high.school,unknown,no,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,unknown,unknown,unknown,unknown,telephone,jul,thu,747,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,jul,thu,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,divorced,university.degree,no,yes,no,cellular,jul,thu,223,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,management,married,university.degree,no,yes,yes,telephone,jul,thu,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,divorced,high.school,no,no,no,cellular,jul,thu,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,divorced,high.school,no,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,university.degree,no,yes,no,cellular,jul,thu,185,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,married,professional.course,no,yes,no,cellular,jul,thu,224,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,management,married,unknown,unknown,yes,no,cellular,jul,thu,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,married,high.school,unknown,unknown,unknown,cellular,jul,thu,84,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,married,basic.4y,no,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,basic.4y,no,yes,yes,cellular,jul,thu,164,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,128,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,thu,15,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,386,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,401,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,divorced,high.school,no,yes,yes,cellular,jul,thu,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,no,no,cellular,jul,thu,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,yes,yes,cellular,jul,thu,379,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,unknown,unknown,no,no,cellular,jul,thu,188,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,self-employed,single,high.school,no,no,no,cellular,jul,thu,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,651,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +57,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,high.school,unknown,yes,no,cellular,jul,thu,497,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,205,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,married,basic.4y,no,yes,no,telephone,jul,thu,179,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,services,divorced,high.school,no,no,no,telephone,jul,thu,212,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,unknown,no,no,yes,cellular,jul,thu,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,39,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +24,services,single,high.school,no,yes,no,cellular,jul,thu,576,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,basic.6y,no,yes,yes,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,240,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,technician,married,professional.course,no,yes,no,cellular,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,married,high.school,no,yes,no,cellular,jul,thu,604,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,married,professional.course,unknown,yes,no,telephone,jul,thu,193,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,211,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,divorced,basic.6y,no,yes,no,cellular,jul,thu,1491,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,blue-collar,married,unknown,no,no,no,cellular,jul,thu,131,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,unknown,single,unknown,no,yes,no,cellular,jul,thu,343,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,divorced,high.school,no,yes,yes,cellular,jul,thu,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +23,blue-collar,single,basic.9y,no,yes,no,telephone,jul,thu,308,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,retired,married,basic.4y,unknown,no,no,cellular,jul,thu,408,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,technician,single,university.degree,no,yes,no,telephone,jul,thu,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,unknown,unknown,yes,no,cellular,jul,thu,418,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,unknown,no,no,yes,cellular,jul,thu,821,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,16,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,unemployed,married,professional.course,unknown,yes,yes,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,604,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,married,unknown,unknown,yes,no,cellular,jul,thu,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,jul,thu,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,thu,23,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,single,professional.course,no,yes,no,cellular,jul,thu,498,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,jul,thu,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,management,married,high.school,no,no,no,cellular,jul,thu,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,divorced,high.school,no,no,no,cellular,jul,thu,539,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,entrepreneur,divorced,unknown,no,no,yes,cellular,jul,thu,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,107,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,university.degree,no,no,no,cellular,jul,thu,650,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,jul,thu,48,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,management,married,university.degree,no,no,no,cellular,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,229,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,yes,no,cellular,jul,thu,304,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,no,cellular,jul,thu,129,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,divorced,high.school,no,no,no,cellular,jul,thu,537,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,self-employed,married,university.degree,no,yes,no,cellular,jul,thu,915,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,married,high.school,no,yes,no,cellular,jul,thu,903,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,retired,married,basic.9y,no,yes,yes,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,jul,thu,122,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,873,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +35,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,248,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unknown,married,basic.4y,no,yes,no,cellular,jul,thu,1298,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +41,entrepreneur,single,high.school,no,yes,no,cellular,jul,thu,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,university.degree,unknown,no,no,cellular,jul,thu,717,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,telephone,jul,thu,147,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +21,unemployed,married,high.school,no,yes,yes,cellular,jul,thu,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,technician,married,basic.4y,unknown,yes,yes,cellular,jul,thu,709,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +32,technician,single,university.degree,no,yes,no,cellular,jul,thu,72,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unknown,married,basic.4y,no,no,yes,cellular,jul,thu,185,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,single,basic.9y,no,no,no,telephone,jul,thu,28,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,married,basic.9y,no,yes,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,unknown,no,yes,no,cellular,jul,thu,172,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,thu,150,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,single,unknown,unknown,yes,no,cellular,jul,thu,51,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,management,married,university.degree,no,yes,yes,cellular,jul,thu,90,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,1206,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,no,yes,cellular,jul,thu,1869,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,unknown,married,unknown,no,yes,no,cellular,jul,thu,52,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,technician,single,professional.course,no,no,no,telephone,jul,thu,575,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.6y,unknown,no,yes,cellular,jul,thu,256,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,basic.6y,no,yes,no,cellular,jul,thu,823,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,484,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,professional.course,no,unknown,unknown,cellular,jul,thu,230,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,basic.6y,no,no,no,cellular,jul,thu,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,services,divorced,high.school,no,yes,no,cellular,jul,thu,56,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,management,divorced,university.degree,unknown,no,no,cellular,jul,thu,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,332,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,unknown,unknown,yes,no,cellular,jul,thu,988,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,no,yes,cellular,jul,thu,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,218,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,773,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,single,high.school,unknown,no,no,cellular,jul,thu,147,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,953,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,thu,1259,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,unemployed,married,basic.6y,no,yes,no,cellular,jul,thu,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,entrepreneur,married,university.degree,no,yes,yes,cellular,jul,thu,736,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,management,married,university.degree,unknown,no,no,cellular,jul,thu,901,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,entrepreneur,married,high.school,no,no,no,cellular,jul,thu,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,basic.9y,no,no,no,cellular,jul,thu,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,jul,thu,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,professional.course,no,no,yes,cellular,jul,thu,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,unemployed,married,basic.6y,no,no,no,cellular,jul,thu,1850,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +46,blue-collar,married,high.school,unknown,no,no,cellular,jul,thu,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,basic.9y,no,yes,yes,cellular,jul,thu,217,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,married,high.school,no,yes,no,cellular,jul,thu,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,347,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,jul,thu,559,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,141,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,unknown,unknown,yes,no,telephone,jul,thu,27,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,blue-collar,married,high.school,no,yes,yes,cellular,jul,thu,126,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,no,telephone,jul,thu,101,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,entrepreneur,married,university.degree,unknown,yes,yes,cellular,jul,thu,62,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,services,divorced,high.school,no,yes,yes,cellular,jul,thu,464,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,631,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,single,professional.course,unknown,yes,no,cellular,jul,thu,306,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,services,married,basic.9y,unknown,yes,no,cellular,jul,thu,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,810,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,married,high.school,unknown,yes,no,cellular,jul,thu,273,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,single,professional.course,unknown,yes,no,telephone,jul,thu,780,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,844,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,thu,947,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,328,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +22,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,448,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,high.school,no,no,no,telephone,jul,thu,258,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,technician,married,university.degree,unknown,no,no,cellular,jul,thu,213,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,jul,thu,161,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,entrepreneur,married,basic.4y,no,yes,no,cellular,jul,thu,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,unknown,no,no,no,cellular,jul,thu,730,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,unknown,unknown,yes,no,cellular,jul,thu,180,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,university.degree,unknown,unknown,unknown,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,divorced,high.school,no,yes,no,cellular,jul,thu,870,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,1820,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,basic.9y,no,yes,no,cellular,jul,thu,144,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,732,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,303,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,married,basic.4y,no,yes,no,telephone,jul,thu,553,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,married,high.school,unknown,yes,no,cellular,jul,thu,90,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,divorced,university.degree,no,yes,no,cellular,jul,thu,137,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,professional.course,no,no,yes,cellular,jul,thu,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,jul,thu,828,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,basic.9y,no,yes,no,cellular,jul,thu,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,thu,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +38,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,513,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,married,basic.9y,no,yes,no,cellular,jul,thu,347,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,1173,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,entrepreneur,single,high.school,no,yes,no,telephone,jul,thu,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,university.degree,no,yes,no,cellular,jul,thu,73,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,unemployed,married,unknown,no,no,no,telephone,jul,thu,626,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,basic.9y,no,yes,no,cellular,jul,thu,123,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,jul,thu,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,unemployed,married,university.degree,no,yes,no,cellular,jul,thu,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,divorced,university.degree,no,no,no,cellular,jul,thu,91,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,single,high.school,no,yes,no,cellular,jul,thu,577,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,no,yes,cellular,jul,thu,417,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,high.school,no,no,no,telephone,jul,thu,393,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unknown,married,basic.4y,no,yes,no,cellular,jul,thu,633,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,self-employed,married,university.degree,no,no,no,cellular,jul,thu,568,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,divorced,high.school,no,yes,no,cellular,jul,thu,237,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,180,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,management,single,university.degree,no,no,no,cellular,jul,thu,257,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,unemployed,married,professional.course,unknown,no,no,cellular,jul,thu,144,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,212,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,technician,single,university.degree,no,no,no,telephone,jul,thu,447,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,92,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,no,no,no,telephone,jul,thu,552,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,divorced,high.school,no,yes,no,cellular,jul,thu,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,thu,458,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,admin.,married,basic.6y,no,yes,yes,cellular,jul,thu,1602,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,technician,married,basic.6y,unknown,no,no,cellular,jul,fri,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,unknown,no,no,cellular,jul,fri,197,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,high.school,no,no,no,cellular,jul,fri,52,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,high.school,no,no,no,cellular,jul,fri,441,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,unknown,unknown,yes,no,cellular,jul,fri,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,single,high.school,no,no,no,telephone,jul,fri,219,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,fri,1492,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,admin.,married,basic.9y,no,no,no,cellular,jul,fri,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,divorced,unknown,unknown,no,no,cellular,jul,fri,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,entrepreneur,single,university.degree,no,no,yes,cellular,jul,fri,210,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,married,high.school,unknown,no,no,telephone,jul,fri,133,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,divorced,high.school,no,no,no,cellular,jul,fri,203,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,basic.9y,unknown,no,no,cellular,jul,fri,823,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,682,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,jul,fri,154,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,no,yes,no,telephone,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,married,professional.course,no,yes,no,cellular,jul,fri,13,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,jul,fri,1422,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +52,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,114,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,divorced,high.school,no,no,yes,cellular,jul,fri,186,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,entrepreneur,divorced,university.degree,no,yes,yes,cellular,jul,fri,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,divorced,professional.course,no,yes,no,telephone,jul,fri,159,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,123,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,high.school,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,high.school,no,yes,yes,cellular,jul,fri,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,university.degree,no,no,no,telephone,jul,fri,78,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,services,married,high.school,no,yes,no,cellular,jul,fri,303,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,professional.course,no,no,yes,cellular,jul,fri,43,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,married,university.degree,no,no,no,cellular,jul,fri,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,jul,fri,212,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,admin.,single,university.degree,unknown,yes,no,cellular,jul,fri,111,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,retired,single,professional.course,unknown,yes,no,cellular,jul,fri,161,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,no,yes,cellular,jul,fri,979,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +42,admin.,married,university.degree,no,no,no,cellular,jul,fri,591,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,602,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,fri,190,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,services,single,high.school,no,no,yes,cellular,jul,fri,616,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +42,admin.,single,high.school,no,no,yes,cellular,jul,fri,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,married,professional.course,no,no,no,cellular,jul,fri,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,university.degree,no,no,yes,cellular,jul,fri,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,high.school,no,no,no,cellular,jul,fri,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,jul,fri,136,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,technician,married,unknown,no,no,no,cellular,jul,fri,173,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,divorced,high.school,no,no,no,cellular,jul,fri,294,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,high.school,no,yes,no,cellular,jul,fri,784,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,admin.,married,university.degree,no,yes,no,cellular,jul,fri,310,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,fri,107,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,self-employed,married,university.degree,no,yes,no,cellular,jul,fri,298,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,no,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,single,unknown,no,no,yes,cellular,jul,fri,1000,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +39,admin.,single,high.school,no,yes,no,cellular,jul,fri,361,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,retired,married,professional.course,no,yes,no,cellular,jul,fri,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +52,blue-collar,single,unknown,unknown,no,yes,cellular,jul,fri,137,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,no,cellular,jul,fri,335,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,unknown,no,no,no,cellular,jul,fri,735,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unemployed,married,high.school,no,yes,yes,cellular,jul,fri,57,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,single,high.school,no,yes,no,cellular,jul,fri,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,university.degree,no,no,yes,cellular,jul,fri,337,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,jul,fri,267,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,803,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,technician,married,university.degree,no,yes,no,cellular,jul,fri,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,282,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,professional.course,no,yes,no,telephone,jul,fri,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,unknown,unknown,no,no,cellular,jul,fri,18,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,married,university.degree,no,no,no,cellular,jul,fri,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,single,unknown,no,yes,no,cellular,jul,fri,172,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,professional.course,no,no,no,cellular,jul,fri,256,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,technician,single,high.school,no,no,yes,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,services,single,high.school,no,yes,no,cellular,jul,fri,862,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +45,technician,divorced,unknown,unknown,no,no,cellular,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,jul,fri,324,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,jul,fri,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,jul,fri,250,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,jul,fri,198,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,single,university.degree,no,no,no,telephone,jul,fri,241,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,married,high.school,unknown,yes,no,cellular,jul,fri,79,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,single,basic.4y,no,yes,no,cellular,jul,fri,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,married,unknown,unknown,yes,no,cellular,jul,fri,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,jul,fri,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,divorced,university.degree,unknown,yes,no,cellular,jul,fri,246,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,retired,married,basic.9y,unknown,yes,no,cellular,jul,fri,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,high.school,no,yes,no,cellular,jul,fri,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,basic.9y,no,no,no,cellular,jul,fri,61,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,self-employed,married,basic.6y,no,yes,no,cellular,jul,fri,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,married,high.school,no,no,no,cellular,jul,fri,720,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,jul,fri,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,jul,fri,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,yes,no,cellular,jul,fri,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,unknown,unknown,cellular,jul,fri,352,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,unknown,unknown,no,no,cellular,jul,fri,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,jul,fri,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,self-employed,married,basic.9y,unknown,no,no,cellular,jul,fri,571,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,married,basic.4y,no,no,no,telephone,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +29,services,single,university.degree,no,no,no,cellular,jul,fri,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,divorced,professional.course,no,no,no,cellular,jul,fri,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,113,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,jul,fri,188,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,married,university.degree,no,yes,no,cellular,jul,fri,133,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,single,professional.course,no,yes,no,cellular,jul,fri,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,fri,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,blue-collar,married,basic.9y,no,no,no,telephone,jul,fri,286,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,unknown,no,yes,no,cellular,jul,fri,238,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,professional.course,no,no,no,cellular,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,married,university.degree,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,high.school,no,no,yes,cellular,jul,fri,18,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,jul,fri,795,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,divorced,university.degree,unknown,yes,no,telephone,jul,fri,1946,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,560,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,no,yes,no,cellular,jul,fri,172,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,fri,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,married,university.degree,no,no,no,cellular,jul,fri,99,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,married,high.school,unknown,yes,no,telephone,jul,fri,297,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,married,basic.6y,unknown,no,no,cellular,jul,fri,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,married,basic.6y,unknown,no,no,cellular,jul,fri,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,telephone,jul,fri,182,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,jul,fri,168,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,divorced,unknown,unknown,yes,no,cellular,jul,fri,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,46,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,professional.course,no,no,no,cellular,jul,fri,1106,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,blue-collar,married,unknown,no,no,no,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,fri,236,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,high.school,no,yes,yes,cellular,jul,fri,132,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,entrepreneur,married,university.degree,no,yes,no,cellular,jul,fri,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,unemployed,married,high.school,unknown,no,no,cellular,jul,fri,203,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,yes,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,university.degree,no,no,no,cellular,jul,fri,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,single,basic.4y,no,no,no,telephone,jul,fri,102,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,high.school,no,no,no,cellular,jul,fri,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,university.degree,no,yes,no,cellular,jul,fri,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,basic.6y,no,yes,no,cellular,jul,fri,426,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,800,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,professional.course,no,yes,no,cellular,jul,fri,96,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,divorced,university.degree,no,no,yes,cellular,jul,fri,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,357,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,self-employed,married,basic.9y,no,yes,no,cellular,jul,fri,177,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,professional.course,unknown,no,no,cellular,jul,fri,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,married,professional.course,no,yes,no,cellular,jul,fri,72,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,professional.course,unknown,no,no,cellular,jul,fri,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,divorced,basic.9y,unknown,yes,no,telephone,jul,fri,362,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,fri,132,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,married,unknown,unknown,yes,no,cellular,jul,fri,177,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,university.degree,no,no,no,cellular,jul,fri,67,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,married,high.school,no,no,yes,cellular,jul,fri,204,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,single,unknown,no,yes,no,cellular,jul,fri,153,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,services,married,high.school,unknown,yes,yes,cellular,jul,fri,239,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,single,unknown,no,no,no,cellular,jul,fri,337,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,professional.course,no,yes,no,telephone,jul,fri,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,basic.9y,unknown,yes,no,cellular,jul,fri,471,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,high.school,no,yes,yes,telephone,jul,fri,214,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,professional.course,no,no,no,cellular,jul,fri,796,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,professional.course,no,yes,no,cellular,jul,fri,51,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,management,married,basic.9y,no,yes,no,telephone,jul,fri,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,fri,211,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,high.school,no,yes,no,cellular,jul,fri,311,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,technician,married,university.degree,no,yes,yes,cellular,jul,fri,483,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,professional.course,no,yes,yes,cellular,jul,fri,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,yes,cellular,jul,fri,110,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,276,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,married,university.degree,no,no,no,telephone,jul,fri,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,retired,married,professional.course,no,no,yes,cellular,jul,fri,39,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,jul,fri,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,fri,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,divorced,university.degree,no,no,no,telephone,jul,fri,87,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,66,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,single,high.school,no,no,no,cellular,jul,fri,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,unemployed,married,high.school,unknown,yes,no,cellular,jul,fri,83,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,divorced,unknown,unknown,no,no,telephone,jul,fri,511,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,technician,single,unknown,no,yes,no,cellular,jul,fri,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,services,single,basic.9y,no,no,no,cellular,jul,fri,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,53,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,jul,fri,743,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +55,retired,married,basic.4y,unknown,yes,no,cellular,jul,fri,129,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,basic.4y,unknown,yes,yes,cellular,jul,fri,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,2015,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +56,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,98,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,self-employed,divorced,professional.course,no,no,no,telephone,jul,fri,657,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,married,university.degree,no,yes,no,telephone,jul,fri,199,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,services,married,high.school,no,yes,no,cellular,jul,fri,442,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,management,married,university.degree,no,no,no,cellular,jul,fri,241,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,unknown,yes,yes,cellular,jul,fri,152,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,jul,fri,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unemployed,married,high.school,no,yes,yes,cellular,jul,fri,730,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,technician,married,high.school,no,no,no,cellular,jul,fri,1161,26,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,admin.,married,basic.9y,no,no,no,cellular,jul,fri,90,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,married,university.degree,no,no,no,cellular,jul,fri,95,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,blue-collar,married,high.school,no,no,no,cellular,jul,fri,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,374,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,services,married,high.school,no,no,no,cellular,jul,fri,468,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,entrepreneur,married,basic.6y,unknown,no,no,cellular,jul,fri,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,fri,155,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,fri,356,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,divorced,university.degree,no,no,no,cellular,jul,fri,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,basic.6y,no,no,yes,cellular,jul,fri,268,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,jul,fri,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,basic.9y,unknown,no,no,telephone,jul,fri,259,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,entrepreneur,divorced,high.school,no,unknown,unknown,cellular,jul,fri,360,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,married,professional.course,no,yes,no,cellular,jul,fri,1031,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +46,technician,married,professional.course,no,unknown,unknown,cellular,jul,fri,1368,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,services,married,high.school,unknown,yes,no,cellular,jul,fri,507,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,technician,single,unknown,no,yes,no,cellular,jul,fri,266,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,unknown,single,unknown,no,no,no,cellular,jul,fri,295,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,services,married,high.school,no,no,no,cellular,jul,fri,134,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,jul,fri,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +33,services,married,high.school,no,yes,no,cellular,jul,fri,396,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,services,single,high.school,no,yes,no,cellular,jul,fri,273,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,services,married,high.school,no,yes,no,cellular,jul,fri,72,30,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,blue-collar,single,basic.4y,no,unknown,unknown,telephone,jul,fri,385,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,high.school,no,no,no,cellular,jul,fri,87,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,married,professional.course,no,no,no,cellular,jul,fri,161,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,entrepreneur,married,basic.6y,unknown,yes,no,cellular,jul,fri,92,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,married,professional.course,no,no,no,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,self-employed,married,university.degree,no,no,no,cellular,jul,fri,356,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,unknown,no,no,cellular,jul,fri,394,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,married,university.degree,no,no,no,cellular,jul,fri,293,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,high.school,no,no,no,cellular,jul,fri,135,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,technician,married,high.school,no,no,no,cellular,jul,fri,590,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +28,services,married,high.school,no,no,yes,cellular,jul,fri,200,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,student,single,unknown,no,yes,no,cellular,jul,fri,587,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,married,basic.9y,unknown,no,no,cellular,jul,fri,1330,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +45,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,194,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,divorced,high.school,no,yes,no,cellular,jul,fri,238,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,married,university.degree,no,no,yes,cellular,jul,fri,171,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,unemployed,single,basic.9y,no,no,no,cellular,jul,fri,936,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,management,divorced,university.degree,no,no,no,cellular,jul,fri,210,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,single,university.degree,no,no,yes,cellular,jul,fri,83,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,services,married,high.school,unknown,yes,no,cellular,jul,fri,946,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +31,services,married,high.school,no,no,yes,cellular,jul,fri,1319,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,entrepreneur,married,university.degree,no,no,yes,cellular,jul,fri,250,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,technician,married,basic.4y,unknown,no,yes,cellular,jul,fri,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,married,unknown,unknown,yes,no,cellular,jul,fri,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,married,university.degree,unknown,no,no,cellular,jul,fri,67,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,entrepreneur,married,basic.6y,unknown,yes,yes,cellular,jul,fri,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,yes,cellular,jul,fri,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,single,basic.4y,no,no,yes,telephone,jul,fri,93,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,married,high.school,no,yes,no,cellular,jul,fri,99,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,married,high.school,no,yes,no,cellular,jul,fri,1448,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +52,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,fri,432,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,admin.,single,high.school,no,yes,no,telephone,jul,fri,143,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,unemployed,single,basic.9y,no,yes,yes,cellular,jul,fri,50,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,self-employed,married,basic.4y,unknown,yes,no,cellular,jul,fri,126,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,high.school,no,no,yes,cellular,jul,fri,87,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,no,no,yes,cellular,jul,fri,400,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,student,single,unknown,no,yes,no,telephone,jul,fri,279,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +44,blue-collar,married,basic.9y,no,no,yes,cellular,jul,fri,185,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,divorced,high.school,no,yes,yes,cellular,jul,fri,164,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,admin.,married,university.degree,no,no,yes,cellular,jul,fri,188,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,technician,married,professional.course,unknown,no,yes,cellular,jul,fri,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,admin.,married,high.school,unknown,yes,no,cellular,jul,fri,661,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +57,admin.,single,unknown,no,no,no,cellular,jul,fri,137,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,high.school,no,yes,no,cellular,jul,fri,237,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,unemployed,divorced,high.school,unknown,no,no,cellular,jul,fri,195,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.6y,unknown,yes,yes,cellular,jul,fri,138,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +25,management,single,university.degree,no,yes,yes,cellular,jul,fri,114,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,management,married,high.school,no,yes,no,cellular,jul,fri,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,technician,divorced,university.degree,unknown,no,no,cellular,jul,fri,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,cellular,jul,fri,144,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,fri,198,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,unknown,unknown,yes,no,cellular,jul,fri,386,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,single,university.degree,no,no,no,telephone,jul,fri,163,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,admin.,single,high.school,no,no,yes,cellular,jul,fri,63,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,married,unknown,unknown,yes,yes,cellular,jul,fri,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,married,basic.9y,unknown,no,no,cellular,jul,fri,188,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,divorced,basic.9y,no,yes,yes,cellular,jul,fri,481,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,jul,fri,1369,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +39,admin.,married,university.degree,no,no,no,cellular,jul,fri,653,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +50,retired,married,professional.course,no,yes,yes,cellular,jul,fri,460,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,jul,fri,41,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,fri,282,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,professional.course,no,no,yes,telephone,jul,fri,395,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,fri,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,71,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,divorced,professional.course,unknown,no,no,cellular,jul,mon,68,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,yes,yes,cellular,jul,mon,32,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,yes,no,cellular,jul,mon,102,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,147,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,unknown,single,university.degree,unknown,yes,no,cellular,jul,mon,93,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,29,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,married,high.school,no,yes,yes,telephone,jul,mon,63,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,mon,40,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,230,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,unknown,married,unknown,no,yes,no,cellular,jul,mon,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,housemaid,divorced,university.degree,unknown,yes,no,cellular,jul,mon,57,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,technician,married,basic.6y,no,yes,no,cellular,jul,mon,177,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,blue-collar,single,basic.9y,no,yes,yes,cellular,jul,mon,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,49,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,123,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,44,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,243,30,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,mon,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,divorced,university.degree,no,no,no,cellular,jul,mon,60,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,divorced,university.degree,unknown,yes,yes,telephone,jul,mon,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,divorced,high.school,no,yes,yes,cellular,jul,mon,52,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,student,married,unknown,no,yes,no,cellular,jul,mon,110,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,basic.9y,unknown,yes,yes,cellular,jul,mon,33,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,unknown,unknown,unknown,unknown,yes,yes,cellular,jul,mon,49,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,high.school,unknown,no,no,cellular,jul,mon,327,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,single,professional.course,no,yes,no,cellular,jul,mon,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,services,married,high.school,no,yes,yes,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,divorced,high.school,no,no,no,cellular,jul,mon,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,admin.,divorced,basic.6y,unknown,no,yes,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,management,single,university.degree,unknown,no,no,cellular,jul,mon,261,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,management,married,basic.9y,no,yes,no,cellular,jul,mon,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,services,married,high.school,no,yes,no,cellular,jul,mon,56,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,retired,divorced,professional.course,no,yes,no,cellular,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,basic.9y,unknown,yes,no,cellular,jul,mon,163,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,jul,mon,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,110,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,386,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,jul,mon,295,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,458,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +51,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,117,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,married,high.school,no,yes,no,cellular,jul,mon,69,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,jul,mon,48,20,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,57,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,divorced,university.degree,no,no,no,cellular,jul,mon,983,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +47,technician,single,professional.course,no,yes,no,cellular,jul,mon,365,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +42,self-employed,married,university.degree,unknown,no,yes,cellular,jul,mon,95,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,31,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,jul,mon,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,married,high.school,unknown,yes,no,cellular,jul,mon,49,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,single,high.school,unknown,no,no,telephone,jul,mon,193,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,telephone,jul,mon,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,jul,mon,664,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +40,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,108,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,technician,married,professional.course,no,no,no,cellular,jul,mon,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,services,married,high.school,unknown,no,no,cellular,jul,mon,57,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,university.degree,no,no,no,cellular,jul,mon,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,single,high.school,unknown,no,no,cellular,jul,mon,699,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,admin.,divorced,high.school,no,no,yes,cellular,jul,mon,131,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,no,no,cellular,jul,mon,463,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,management,single,university.degree,no,yes,no,cellular,jul,mon,30,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,married,high.school,no,yes,no,cellular,jul,mon,700,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,124,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,management,married,university.degree,unknown,no,yes,cellular,jul,mon,219,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,services,married,professional.course,no,yes,yes,cellular,jul,mon,307,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,services,married,high.school,no,yes,no,cellular,jul,mon,82,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,151,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,management,single,university.degree,unknown,yes,no,cellular,jul,mon,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,unknown,unknown,yes,no,telephone,jul,mon,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,married,high.school,no,yes,yes,cellular,jul,mon,115,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,unknown,unknown,cellular,jul,mon,939,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +51,management,married,university.degree,unknown,no,no,cellular,jul,mon,60,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,divorced,university.degree,no,yes,yes,cellular,jul,mon,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,technician,married,professional.course,unknown,yes,no,cellular,jul,mon,54,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,divorced,university.degree,unknown,no,no,cellular,jul,mon,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,divorced,basic.4y,unknown,yes,no,cellular,jul,mon,362,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,management,married,university.degree,unknown,yes,yes,cellular,jul,mon,746,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,unknown,unknown,yes,no,telephone,jul,mon,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,divorced,basic.4y,unknown,yes,yes,cellular,jul,mon,745,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +38,admin.,married,high.school,no,yes,no,cellular,jul,mon,319,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,high.school,no,no,no,cellular,jul,mon,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,technician,divorced,high.school,no,yes,yes,cellular,jul,mon,200,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,unknown,unknown,yes,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,136,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,divorced,university.degree,unknown,no,no,cellular,jul,mon,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,telephone,jul,mon,108,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,university.degree,no,no,no,cellular,jul,mon,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,technician,married,professional.course,no,no,no,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,unknown,unknown,unknown,telephone,jul,mon,644,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,mon,108,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,mon,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,married,university.degree,no,no,no,cellular,jul,mon,139,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,84,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,240,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,basic.9y,unknown,no,no,cellular,jul,mon,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,professional.course,no,yes,yes,cellular,jul,mon,330,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,admin.,single,unknown,unknown,no,no,telephone,jul,mon,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,university.degree,no,no,no,cellular,jul,mon,662,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +53,services,married,unknown,unknown,yes,no,cellular,jul,mon,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,unknown,yes,no,telephone,jul,mon,40,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,unknown,unknown,unknown,unknown,yes,no,cellular,jul,mon,230,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,jul,mon,173,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,78,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,retired,married,basic.9y,no,no,no,cellular,jul,mon,551,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,divorced,university.degree,no,no,no,telephone,jul,mon,130,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,admin.,single,unknown,unknown,no,yes,cellular,jul,mon,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,295,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,139,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,yes,no,telephone,jul,mon,13,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,no,no,telephone,jul,mon,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,97,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,married,university.degree,no,no,no,cellular,jul,mon,73,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,yes,no,cellular,jul,mon,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,no,no,cellular,jul,mon,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,jul,mon,50,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,mon,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,jul,mon,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,no,no,cellular,jul,mon,547,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,no,yes,cellular,jul,mon,292,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,unknown,married,unknown,unknown,no,no,cellular,jul,mon,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,241,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,yes,no,cellular,jul,mon,418,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,divorced,high.school,no,yes,yes,telephone,jul,mon,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,basic.4y,unknown,no,yes,cellular,jul,mon,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,married,high.school,no,yes,yes,telephone,jul,mon,388,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,unemployed,married,basic.6y,unknown,no,no,cellular,jul,mon,273,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,housemaid,divorced,unknown,unknown,no,no,cellular,jul,mon,103,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,divorced,high.school,no,yes,yes,cellular,jul,mon,1169,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +46,admin.,divorced,university.degree,no,yes,no,telephone,jul,mon,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,yes,yes,cellular,jul,mon,431,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +50,unknown,married,unknown,unknown,yes,no,cellular,jul,mon,143,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,405,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,admin.,married,high.school,no,yes,yes,cellular,jul,mon,263,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,self-employed,married,unknown,unknown,no,no,cellular,jul,mon,143,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,divorced,high.school,no,no,no,cellular,jul,mon,837,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +45,services,married,professional.course,no,yes,no,cellular,jul,mon,19,23,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,jul,mon,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,unknown,no,yes,telephone,jul,mon,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,services,married,high.school,unknown,yes,no,telephone,jul,mon,596,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,high.school,no,no,no,cellular,jul,mon,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,yes,no,cellular,jul,mon,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,unknown,married,unknown,no,yes,no,cellular,jul,mon,48,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,services,married,high.school,unknown,no,no,cellular,jul,mon,174,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,unknown,yes,no,cellular,jul,mon,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,divorced,basic.6y,no,no,yes,telephone,jul,mon,296,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +35,entrepreneur,single,university.degree,no,no,no,cellular,jul,mon,180,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,332,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,mon,55,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,unknown,no,yes,cellular,jul,mon,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,no,no,telephone,jul,mon,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,jul,mon,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,basic.9y,unknown,yes,no,cellular,jul,mon,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,404,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,blue-collar,single,high.school,no,yes,no,cellular,jul,mon,435,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,university.degree,no,no,yes,cellular,jul,mon,231,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.4y,no,yes,yes,telephone,jul,mon,40,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,jul,mon,73,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,divorced,high.school,no,no,no,cellular,jul,mon,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,married,high.school,unknown,yes,no,cellular,jul,mon,193,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,management,married,high.school,unknown,no,yes,telephone,jul,mon,73,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,22,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,technician,married,basic.9y,no,yes,no,cellular,jul,mon,502,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,self-employed,married,university.degree,no,no,yes,cellular,jul,mon,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,289,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,management,divorced,professional.course,no,no,no,cellular,jul,mon,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,services,married,high.school,no,no,no,cellular,jul,mon,157,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,438,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,technician,married,professional.course,no,no,no,telephone,jul,mon,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,189,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,yes,no,cellular,jul,mon,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,25,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,divorced,high.school,no,yes,yes,cellular,jul,mon,395,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,blue-collar,single,high.school,unknown,yes,no,cellular,jul,mon,246,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,admin.,divorced,high.school,unknown,no,yes,cellular,jul,mon,630,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +37,admin.,married,university.degree,no,no,no,cellular,jul,mon,60,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,technician,married,basic.9y,unknown,no,no,cellular,jul,mon,116,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,self-employed,married,unknown,unknown,no,no,telephone,jul,mon,1025,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,231,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,services,married,basic.6y,unknown,yes,yes,cellular,jul,mon,76,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,unemployed,married,basic.6y,unknown,yes,no,cellular,jul,mon,131,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,470,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,management,divorced,university.degree,no,no,no,cellular,jul,mon,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,mon,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,married,professional.course,no,yes,no,cellular,jul,mon,383,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +36,services,single,high.school,no,no,no,cellular,jul,mon,719,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,unemployed,married,basic.9y,unknown,yes,no,cellular,jul,mon,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,admin.,divorced,basic.6y,unknown,no,no,cellular,jul,mon,70,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,blue-collar,single,basic.9y,no,no,no,cellular,jul,mon,234,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,81,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +59,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,mon,106,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,self-employed,married,university.degree,unknown,no,no,cellular,jul,mon,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,89,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,jul,mon,82,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,118,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,married,high.school,no,no,no,cellular,jul,mon,76,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,single,university.degree,unknown,no,no,telephone,jul,mon,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,blue-collar,married,high.school,unknown,no,no,cellular,jul,mon,33,29,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,1339,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,mon,359,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,102,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,mon,59,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,mon,128,22,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,services,married,high.school,unknown,yes,no,cellular,jul,mon,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,professional.course,no,no,no,cellular,jul,mon,674,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,jul,mon,1009,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +55,self-employed,married,unknown,unknown,no,no,cellular,jul,mon,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,self-employed,married,unknown,unknown,yes,no,telephone,jul,mon,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,management,divorced,university.degree,unknown,yes,no,cellular,jul,mon,141,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,services,divorced,high.school,no,yes,no,cellular,jul,mon,158,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,technician,married,unknown,no,yes,no,cellular,jul,mon,1096,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +42,self-employed,married,university.degree,no,unknown,unknown,cellular,jul,mon,624,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,management,married,university.degree,unknown,no,no,cellular,jul,mon,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,professional.course,no,yes,no,cellular,jul,mon,534,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,housemaid,divorced,basic.4y,no,yes,yes,cellular,jul,mon,78,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,247,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,services,married,university.degree,unknown,yes,no,telephone,jul,mon,317,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,divorced,high.school,no,yes,no,telephone,jul,mon,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,married,unknown,no,yes,yes,cellular,jul,mon,88,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,divorced,university.degree,no,yes,no,cellular,jul,mon,63,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,318,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,unknown,no,no,no,cellular,jul,mon,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,867,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,unemployed,divorced,basic.9y,no,yes,yes,telephone,jul,mon,41,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,unknown,married,unknown,unknown,yes,no,cellular,jul,mon,207,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,jul,mon,761,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,high.school,no,yes,yes,cellular,jul,mon,234,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,management,single,university.degree,no,no,no,cellular,jul,mon,310,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,self-employed,married,high.school,unknown,yes,yes,cellular,jul,mon,88,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,admin.,married,high.school,no,yes,yes,cellular,jul,mon,283,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,admin.,single,basic.9y,unknown,yes,no,cellular,jul,mon,418,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,self-employed,divorced,university.degree,no,no,no,cellular,jul,mon,179,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,single,high.school,no,no,no,cellular,jul,mon,419,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,divorced,high.school,no,no,no,cellular,jul,mon,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,divorced,unknown,no,no,no,cellular,jul,mon,42,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,services,married,high.school,unknown,no,yes,telephone,jul,mon,187,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,university.degree,no,yes,yes,cellular,jul,mon,141,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,married,university.degree,no,yes,no,cellular,jul,mon,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,technician,divorced,professional.course,no,yes,yes,cellular,jul,mon,154,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,high.school,no,no,no,cellular,jul,mon,339,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,divorced,high.school,no,no,no,cellular,jul,mon,493,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,admin.,married,high.school,no,no,yes,cellular,jul,mon,551,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +50,self-employed,married,professional.course,no,yes,yes,cellular,jul,mon,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,single,university.degree,unknown,no,no,cellular,jul,mon,644,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,university.degree,no,yes,no,cellular,jul,mon,322,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,admin.,divorced,unknown,no,yes,yes,cellular,jul,mon,269,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,jul,mon,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,single,university.degree,unknown,yes,no,cellular,jul,mon,333,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,admin.,married,high.school,no,no,no,cellular,jul,mon,180,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +32,blue-collar,single,basic.4y,no,no,no,cellular,jul,mon,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,services,divorced,high.school,no,yes,no,cellular,jul,mon,192,19,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,management,married,university.degree,unknown,yes,no,telephone,jul,mon,182,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,housemaid,married,basic.4y,no,yes,no,cellular,jul,mon,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,self-employed,divorced,university.degree,unknown,yes,no,cellular,jul,mon,433,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,technician,divorced,basic.6y,no,yes,no,cellular,jul,mon,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +27,admin.,married,high.school,no,yes,no,cellular,jul,mon,290,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,university.degree,no,yes,no,cellular,jul,mon,118,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,divorced,high.school,no,yes,no,cellular,jul,mon,58,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,married,high.school,no,yes,no,cellular,jul,mon,149,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,student,single,unknown,unknown,no,no,cellular,jul,mon,91,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,398,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,services,married,basic.4y,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,divorced,unknown,no,no,yes,cellular,jul,mon,117,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,services,married,basic.6y,no,yes,no,cellular,jul,mon,159,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,management,married,university.degree,unknown,yes,no,cellular,jul,mon,37,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,divorced,university.degree,no,no,yes,cellular,jul,mon,127,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,90,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,divorced,professional.course,no,no,yes,cellular,jul,mon,155,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +37,services,married,high.school,no,no,yes,cellular,jul,mon,264,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,unemployed,divorced,high.school,no,no,no,cellular,jul,mon,377,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,high.school,no,no,no,cellular,jul,mon,73,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,housemaid,married,university.degree,unknown,yes,no,cellular,jul,mon,71,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,blue-collar,married,unknown,unknown,no,no,cellular,jul,mon,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,admin.,married,university.degree,unknown,no,no,cellular,jul,mon,257,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,unknown,no,no,no,cellular,jul,mon,234,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,divorced,basic.6y,unknown,no,no,cellular,jul,mon,1065,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +55,services,divorced,high.school,no,yes,no,cellular,jul,mon,499,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,unknown,no,no,no,cellular,jul,mon,220,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +30,admin.,married,unknown,no,no,no,cellular,jul,mon,270,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,mon,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,divorced,basic.6y,unknown,no,no,telephone,jul,mon,1037,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,housemaid,married,basic.4y,no,no,no,cellular,jul,mon,262,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,self-employed,married,university.degree,no,no,no,cellular,jul,mon,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,management,married,unknown,no,no,no,cellular,jul,mon,123,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,basic.9y,unknown,no,no,cellular,jul,mon,83,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,138,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,self-employed,married,university.degree,unknown,no,no,cellular,jul,mon,191,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,technician,single,university.degree,unknown,yes,no,cellular,jul,mon,267,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,retired,divorced,high.school,no,no,no,cellular,jul,mon,609,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,retired,divorced,basic.9y,no,no,no,telephone,jul,mon,313,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,admin.,married,high.school,no,yes,no,cellular,jul,mon,170,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,single,unknown,unknown,no,no,cellular,jul,mon,117,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +38,student,single,unknown,unknown,yes,yes,cellular,jul,mon,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,retired,married,basic.4y,unknown,no,yes,cellular,jul,mon,780,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,mon,165,5,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,jul,mon,314,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,housemaid,married,university.degree,no,yes,no,cellular,jul,mon,306,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +52,housemaid,married,basic.9y,no,yes,no,cellular,jul,mon,83,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,services,married,basic.6y,no,yes,no,cellular,jul,mon,320,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,unemployed,divorced,basic.9y,no,no,no,cellular,jul,mon,39,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,technician,divorced,unknown,unknown,yes,no,cellular,jul,mon,341,12,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +34,admin.,married,university.degree,no,yes,yes,cellular,jul,mon,151,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,married,high.school,no,no,no,cellular,jul,mon,377,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +51,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,jul,mon,19,14,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,admin.,married,high.school,no,yes,yes,cellular,jul,mon,76,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,technician,married,basic.9y,unknown,yes,no,cellular,jul,mon,72,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,university.degree,unknown,yes,no,cellular,jul,mon,194,24,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,self-employed,divorced,university.degree,no,no,yes,cellular,jul,mon,890,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +43,services,married,high.school,no,yes,yes,telephone,jul,mon,118,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +45,self-employed,divorced,university.degree,no,yes,no,cellular,jul,mon,168,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,technician,married,professional.course,no,no,yes,telephone,jul,mon,76,18,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,services,divorced,high.school,no,no,no,cellular,jul,mon,167,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,admin.,single,university.degree,no,no,no,cellular,jul,mon,472,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,self-employed,divorced,high.school,unknown,no,no,telephone,jul,mon,178,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,admin.,divorced,professional.course,no,yes,no,cellular,jul,mon,276,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,university.degree,no,no,no,cellular,jul,mon,147,15,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +60,retired,divorced,professional.course,no,no,no,cellular,jul,mon,131,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +56,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,mon,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,mon,50,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,divorced,university.degree,unknown,no,yes,cellular,jul,mon,85,9,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +41,unknown,unknown,unknown,no,yes,no,cellular,jul,mon,91,13,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,high.school,no,yes,no,cellular,jul,mon,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +58,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,97,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,admin.,married,university.degree,no,no,no,telephone,jul,mon,1076,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,yes +46,self-employed,married,university.degree,no,yes,no,cellular,jul,mon,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,divorced,professional.course,no,no,yes,telephone,jul,mon,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,housemaid,married,basic.9y,unknown,no,no,cellular,jul,mon,100,16,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +46,management,married,basic.9y,unknown,yes,yes,cellular,jul,mon,488,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +43,unemployed,divorced,basic.9y,no,yes,no,cellular,jul,mon,265,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,retired,single,unknown,unknown,yes,yes,cellular,jul,mon,174,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,mon,504,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +26,admin.,single,university.degree,no,no,no,telephone,jul,mon,127,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,high.school,no,no,yes,cellular,jul,mon,136,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +55,services,divorced,high.school,no,no,no,cellular,jul,mon,164,7,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,retired,married,basic.4y,unknown,no,no,cellular,jul,mon,110,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +53,blue-collar,married,high.school,no,yes,yes,cellular,jul,mon,243,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +36,housemaid,married,basic.4y,no,yes,yes,cellular,jul,mon,120,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +57,admin.,married,professional.course,no,unknown,unknown,cellular,jul,mon,127,6,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +42,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,mon,122,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +40,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,206,10,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +44,technician,divorced,professional.course,no,yes,yes,telephone,jul,mon,90,11,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +48,retired,married,basic.4y,unknown,yes,yes,telephone,jul,mon,27,17,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,divorced,high.school,no,no,no,telephone,jul,mon,210,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,technician,married,high.school,no,yes,no,telephone,jul,mon,126,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,mon,125,2,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +39,admin.,single,high.school,no,yes,no,telephone,jul,mon,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +50,technician,single,professional.course,no,no,yes,cellular,jul,mon,173,8,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +49,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,jul,mon,786,4,999,0,nonexistent,1.4,93.918,-42.7,4.962,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,38,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,retired,married,high.school,no,no,no,cellular,jul,tue,193,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,tue,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,tue,393,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,retired,divorced,university.degree,no,yes,no,cellular,jul,tue,62,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,self-employed,married,high.school,no,yes,no,telephone,jul,tue,121,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,entrepreneur,divorced,university.degree,no,no,no,telephone,jul,tue,345,16,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,technician,married,high.school,no,yes,no,cellular,jul,tue,88,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,technician,married,professional.course,no,no,yes,cellular,jul,tue,178,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,divorced,high.school,no,no,no,cellular,jul,tue,858,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,self-employed,married,high.school,no,yes,no,cellular,jul,tue,119,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,blue-collar,single,high.school,no,no,no,telephone,jul,tue,480,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,technician,single,professional.course,no,yes,no,cellular,jul,tue,179,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,single,unknown,no,yes,no,cellular,jul,tue,95,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,62,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,technician,single,unknown,no,no,no,cellular,jul,tue,117,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,unemployed,married,basic.4y,unknown,yes,no,cellular,jul,tue,176,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,47,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,services,single,unknown,unknown,yes,no,telephone,jul,tue,105,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,married,high.school,unknown,yes,yes,cellular,jul,tue,10,22,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,jul,tue,62,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,married,university.degree,unknown,yes,yes,telephone,jul,tue,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,single,university.degree,no,no,no,cellular,jul,tue,60,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,technician,single,professional.course,no,no,no,cellular,jul,tue,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,technician,married,basic.9y,unknown,yes,no,cellular,jul,tue,234,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,management,divorced,university.degree,no,yes,yes,cellular,jul,tue,192,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,118,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,services,married,high.school,unknown,no,no,cellular,jul,tue,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,professional.course,no,no,yes,telephone,jul,tue,186,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,82,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,services,divorced,high.school,no,yes,yes,cellular,jul,tue,148,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,tue,215,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,jul,tue,54,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,management,divorced,high.school,no,no,no,cellular,jul,tue,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,146,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,housemaid,married,professional.course,no,no,no,cellular,jul,tue,604,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,cellular,jul,tue,303,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,unknown,married,unknown,unknown,no,no,cellular,jul,tue,156,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,retired,married,basic.4y,unknown,no,no,cellular,jul,tue,32,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,874,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +41,services,married,unknown,no,no,no,cellular,jul,tue,99,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,divorced,basic.4y,no,yes,no,telephone,jul,tue,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,648,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +54,management,married,university.degree,no,yes,yes,telephone,jul,tue,44,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,jul,tue,71,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,jul,tue,101,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,109,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,management,divorced,university.degree,no,yes,no,cellular,jul,tue,76,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,single,university.degree,no,no,no,cellular,jul,tue,90,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,management,married,university.degree,no,no,yes,cellular,jul,tue,218,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,jul,tue,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,technician,married,basic.9y,no,unknown,unknown,cellular,jul,tue,1569,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,married,university.degree,no,yes,no,telephone,jul,tue,7,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,self-employed,divorced,university.degree,no,no,no,cellular,jul,tue,69,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,entrepreneur,divorced,university.degree,no,no,no,cellular,jul,tue,122,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,divorced,high.school,unknown,yes,no,cellular,jul,tue,162,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,housemaid,divorced,basic.4y,no,unknown,unknown,cellular,jul,tue,179,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,management,married,high.school,unknown,no,no,cellular,jul,tue,179,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,blue-collar,married,illiterate,unknown,yes,yes,cellular,jul,tue,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,divorced,university.degree,unknown,yes,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,services,married,high.school,no,no,no,cellular,jul,tue,301,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,divorced,university.degree,unknown,yes,no,cellular,jul,tue,466,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,services,married,high.school,no,yes,no,cellular,jul,tue,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,services,divorced,professional.course,no,yes,no,telephone,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,unknown,unknown,no,yes,cellular,jul,tue,25,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,services,divorced,professional.course,no,no,no,cellular,jul,tue,318,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,entrepreneur,divorced,high.school,unknown,yes,no,cellular,jul,tue,710,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +55,blue-collar,divorced,basic.9y,no,yes,yes,cellular,jul,tue,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,married,professional.course,unknown,yes,no,cellular,jul,tue,116,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,retired,divorced,high.school,no,yes,no,cellular,jul,tue,609,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,married,professional.course,unknown,no,yes,cellular,jul,tue,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,164,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,tue,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,services,divorced,basic.4y,no,no,no,cellular,jul,tue,149,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,divorced,basic.4y,no,yes,no,cellular,jul,tue,600,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +46,admin.,single,university.degree,no,no,no,cellular,jul,tue,206,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,divorced,high.school,unknown,yes,yes,cellular,jul,tue,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,admin.,married,basic.9y,unknown,no,no,telephone,jul,tue,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,technician,divorced,professional.course,no,no,no,cellular,jul,tue,124,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,tue,893,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +47,services,single,high.school,no,yes,no,cellular,jul,tue,43,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,admin.,married,basic.9y,unknown,no,yes,cellular,jul,tue,336,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,unknown,married,unknown,unknown,yes,no,cellular,jul,tue,112,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,services,married,basic.9y,no,no,no,cellular,jul,tue,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,jul,tue,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,services,single,high.school,no,no,no,cellular,jul,tue,293,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,unknown,married,unknown,unknown,yes,no,telephone,jul,tue,237,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,technician,married,professional.course,unknown,no,no,cellular,jul,tue,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,services,married,university.degree,no,yes,no,cellular,jul,tue,135,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,married,unknown,unknown,yes,no,cellular,jul,tue,299,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,jul,tue,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,jul,tue,497,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,jul,tue,97,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,services,married,high.school,no,yes,no,cellular,jul,tue,55,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,admin.,married,high.school,no,yes,no,cellular,jul,tue,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,single,high.school,no,no,no,cellular,jul,tue,48,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,admin.,divorced,unknown,no,no,no,cellular,jul,tue,109,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,housemaid,married,university.degree,no,no,no,cellular,jul,tue,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,housemaid,divorced,professional.course,unknown,no,no,cellular,jul,tue,167,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,tue,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,married,high.school,no,yes,no,cellular,jul,tue,98,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,tue,345,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,services,married,high.school,unknown,no,no,cellular,jul,tue,165,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,single,university.degree,no,yes,no,cellular,jul,tue,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,technician,married,professional.course,unknown,no,no,telephone,jul,tue,55,15,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,high.school,no,no,no,telephone,jul,tue,647,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,single,university.degree,no,no,no,cellular,jul,tue,105,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,single,university.degree,no,yes,no,cellular,jul,tue,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,basic.4y,unknown,yes,no,cellular,jul,tue,96,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,management,married,university.degree,no,yes,no,cellular,jul,tue,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,single,unknown,no,yes,no,cellular,jul,tue,91,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,services,married,high.school,unknown,no,yes,cellular,jul,tue,285,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,professional.course,no,no,no,cellular,jul,tue,214,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,tue,155,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,tue,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,tue,305,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,technician,divorced,unknown,unknown,yes,no,cellular,jul,tue,261,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,446,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,jul,tue,248,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,admin.,married,high.school,unknown,yes,no,cellular,jul,tue,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,technician,single,university.degree,unknown,no,no,cellular,jul,tue,86,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,housemaid,married,basic.4y,unknown,unknown,unknown,cellular,jul,tue,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,services,divorced,high.school,no,no,no,cellular,jul,tue,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,services,divorced,university.degree,no,no,no,cellular,jul,tue,221,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,tue,2516,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +48,housemaid,married,basic.4y,unknown,yes,yes,cellular,jul,tue,72,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,retired,married,university.degree,unknown,no,no,cellular,jul,tue,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,married,high.school,no,yes,no,cellular,jul,tue,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +29,services,divorced,high.school,unknown,no,no,cellular,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,self-employed,married,university.degree,no,yes,no,cellular,jul,tue,146,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,married,unknown,no,no,yes,cellular,jul,tue,64,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,522,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,213,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,housemaid,married,university.degree,no,no,yes,cellular,jul,tue,137,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,married,university.degree,no,yes,yes,telephone,jul,tue,104,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,single,university.degree,no,no,no,cellular,jul,tue,57,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,services,married,basic.6y,no,no,no,cellular,jul,tue,100,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,technician,married,professional.course,no,yes,no,cellular,jul,tue,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,professional.course,no,no,no,cellular,jul,tue,735,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,technician,married,basic.9y,no,no,no,cellular,jul,tue,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,retired,divorced,university.degree,unknown,no,no,cellular,jul,tue,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,unemployed,married,high.school,unknown,no,no,telephone,jul,tue,28,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,technician,divorced,professional.course,no,yes,no,cellular,jul,tue,121,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,single,university.degree,no,yes,yes,cellular,jul,tue,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,retired,married,high.school,no,yes,yes,cellular,jul,tue,394,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,retired,single,unknown,unknown,yes,no,cellular,jul,tue,189,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,technician,divorced,professional.course,no,yes,yes,cellular,jul,tue,797,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,services,divorced,high.school,unknown,no,no,cellular,jul,tue,204,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,admin.,single,university.degree,no,no,no,cellular,jul,tue,212,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,admin.,married,university.degree,no,no,yes,cellular,jul,tue,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,divorced,basic.4y,no,no,yes,cellular,jul,tue,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,divorced,high.school,unknown,yes,no,telephone,jul,tue,184,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,university.degree,no,yes,no,telephone,jul,tue,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,housemaid,married,basic.4y,no,no,no,telephone,jul,tue,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,divorced,professional.course,no,no,no,cellular,jul,tue,47,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,technician,single,unknown,no,yes,yes,telephone,jul,tue,24,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,tue,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,blue-collar,divorced,high.school,no,yes,no,cellular,jul,tue,538,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,services,married,high.school,no,yes,no,cellular,jul,tue,520,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,jul,tue,283,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,student,single,high.school,no,yes,no,cellular,jul,tue,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,82,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,unknown,married,unknown,unknown,yes,no,cellular,jul,tue,198,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,533,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,married,professional.course,no,yes,no,cellular,jul,tue,60,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +24,student,single,high.school,no,no,no,cellular,jul,tue,569,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,entrepreneur,married,high.school,no,yes,no,cellular,jul,tue,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,entrepreneur,married,high.school,no,no,no,cellular,jul,tue,422,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,tue,100,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,129,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,admin.,single,university.degree,no,no,no,cellular,jul,tue,57,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,university.degree,no,no,no,cellular,jul,tue,199,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,jul,tue,281,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,jul,tue,207,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,1186,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,divorced,professional.course,no,no,no,cellular,jul,tue,454,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +48,blue-collar,married,basic.6y,no,no,yes,cellular,jul,tue,337,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,unemployed,married,basic.4y,unknown,yes,no,telephone,jul,tue,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,195,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,jul,tue,63,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,20,18,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,admin.,divorced,high.school,no,no,no,cellular,jul,tue,52,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,student,single,unknown,unknown,no,yes,cellular,jul,tue,113,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,single,professional.course,no,no,no,cellular,jul,tue,328,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,admin.,divorced,university.degree,no,yes,no,cellular,jul,tue,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,unemployed,married,basic.4y,unknown,no,no,cellular,jul,tue,1058,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +49,entrepreneur,married,university.degree,no,no,no,cellular,jul,tue,114,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,divorced,high.school,no,no,no,cellular,jul,tue,121,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,self-employed,married,university.degree,no,yes,yes,cellular,jul,tue,45,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,unemployed,divorced,basic.9y,no,yes,no,cellular,jul,tue,187,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,tue,369,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,unknown,no,no,telephone,jul,tue,143,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,housemaid,divorced,basic.4y,unknown,no,no,cellular,jul,tue,277,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,blue-collar,single,basic.6y,unknown,yes,yes,cellular,jul,tue,85,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,married,high.school,unknown,no,no,cellular,jul,tue,96,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +42,blue-collar,single,basic.6y,unknown,no,no,telephone,jul,tue,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,admin.,divorced,high.school,no,yes,yes,cellular,jul,tue,180,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,housemaid,married,high.school,unknown,no,no,telephone,jul,tue,317,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,jul,tue,108,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,admin.,married,high.school,no,yes,no,cellular,jul,tue,104,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,housemaid,married,basic.4y,no,yes,no,cellular,jul,tue,665,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,services,single,high.school,no,no,yes,cellular,jul,tue,125,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,services,divorced,high.school,no,no,yes,cellular,jul,tue,246,17,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,33,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,jul,tue,95,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,retired,married,professional.course,no,yes,no,cellular,jul,tue,277,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,127,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,university.degree,unknown,no,no,telephone,jul,tue,38,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,admin.,married,high.school,no,no,no,telephone,jul,tue,790,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,jul,tue,635,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,housemaid,married,university.degree,no,yes,no,cellular,jul,tue,597,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,yes,no,telephone,jul,tue,77,34,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,technician,married,university.degree,no,no,no,cellular,jul,tue,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,management,single,professional.course,unknown,no,no,cellular,jul,tue,72,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,professional.course,no,no,yes,cellular,jul,tue,171,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,technician,divorced,professional.course,unknown,no,no,telephone,jul,tue,665,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +50,services,single,high.school,no,yes,no,cellular,jul,tue,110,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,technician,divorced,professional.course,no,no,no,cellular,jul,tue,77,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,housemaid,divorced,university.degree,no,yes,no,cellular,jul,tue,226,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,housemaid,divorced,university.degree,no,no,no,cellular,jul,tue,367,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +56,retired,married,basic.6y,no,yes,no,cellular,jul,tue,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +49,retired,married,high.school,no,yes,no,cellular,jul,tue,228,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,married,high.school,no,no,no,cellular,jul,tue,935,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,divorced,high.school,no,yes,no,telephone,jul,tue,129,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,admin.,single,high.school,no,no,no,cellular,jul,tue,313,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,single,basic.9y,unknown,yes,no,cellular,jul,tue,80,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,divorced,university.degree,unknown,yes,no,telephone,jul,tue,375,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,blue-collar,single,basic.9y,unknown,no,yes,cellular,jul,tue,194,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,housemaid,divorced,basic.9y,no,yes,no,cellular,jul,tue,94,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,admin.,married,professional.course,unknown,yes,no,cellular,jul,tue,97,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,services,married,high.school,no,yes,yes,cellular,jul,tue,197,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,403,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,technician,married,professional.course,no,yes,no,telephone,jul,tue,616,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +42,admin.,divorced,high.school,no,yes,yes,telephone,jul,tue,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +57,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,tue,816,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +54,entrepreneur,divorced,high.school,unknown,no,yes,cellular,jul,tue,268,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,admin.,married,high.school,no,no,no,telephone,jul,tue,99,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,tue,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,jul,tue,123,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +59,housemaid,divorced,unknown,no,unknown,unknown,cellular,jul,tue,246,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,unemployed,married,high.school,no,unknown,unknown,cellular,jul,tue,263,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,services,single,high.school,unknown,yes,no,cellular,jul,tue,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +60,retired,married,basic.6y,unknown,yes,no,cellular,jul,tue,122,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,technician,married,basic.9y,no,no,no,cellular,jul,tue,162,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,services,divorced,high.school,no,no,no,cellular,jul,tue,69,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +39,blue-collar,married,unknown,no,yes,no,cellular,jul,tue,82,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,yes,no,cellular,jul,tue,205,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,admin.,divorced,high.school,unknown,yes,no,cellular,jul,tue,136,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +28,technician,single,university.degree,unknown,no,no,cellular,jul,tue,808,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +37,admin.,single,high.school,no,yes,no,cellular,jul,tue,316,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,entrepreneur,married,high.school,no,no,no,telephone,jul,tue,259,12,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +33,technician,married,professional.course,no,yes,yes,cellular,jul,tue,110,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,services,married,basic.6y,unknown,yes,no,cellular,jul,tue,64,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,services,married,high.school,no,yes,no,cellular,jul,tue,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,entrepreneur,divorced,university.degree,no,no,yes,telephone,jul,tue,119,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,jul,tue,336,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,admin.,married,high.school,no,no,no,cellular,jul,tue,327,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +48,technician,married,professional.course,no,no,no,telephone,jul,tue,316,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,blue-collar,single,basic.9y,no,yes,no,telephone,jul,tue,1127,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,yes +55,housemaid,married,basic.4y,unknown,no,no,telephone,jul,tue,1140,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +43,retired,married,basic.9y,no,yes,no,cellular,jul,tue,284,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,management,divorced,university.degree,no,yes,no,cellular,jul,tue,543,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +54,retired,divorced,basic.4y,unknown,no,yes,cellular,jul,tue,189,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,yes,no,cellular,jul,tue,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,no,yes,cellular,jul,tue,223,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,housemaid,married,university.degree,unknown,no,yes,cellular,jul,tue,468,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +26,unemployed,married,high.school,no,no,no,cellular,jul,tue,322,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +51,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,tue,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +41,housemaid,divorced,high.school,unknown,yes,yes,cellular,jul,tue,185,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,services,married,high.school,no,no,yes,cellular,jul,tue,347,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,divorced,university.degree,no,yes,no,telephone,jul,tue,399,9,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,married,university.degree,no,no,no,cellular,jul,tue,340,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,637,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +58,retired,divorced,professional.course,no,no,no,cellular,jul,tue,60,24,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +25,admin.,single,high.school,no,no,yes,cellular,jul,tue,234,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +53,housemaid,married,basic.4y,unknown,no,no,cellular,jul,tue,165,20,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,housemaid,married,basic.4y,unknown,yes,yes,telephone,jul,tue,308,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,professional.course,no,no,no,cellular,jul,tue,75,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,tue,242,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,management,married,basic.4y,unknown,no,yes,cellular,jul,tue,142,7,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,unknown,married,high.school,unknown,no,no,cellular,jul,tue,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +55,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,tue,481,2,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,admin.,single,university.degree,no,no,no,telephone,jul,tue,128,11,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +46,admin.,married,university.degree,no,no,no,telephone,jul,tue,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,yes,no,cellular,jul,tue,234,5,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +44,technician,divorced,unknown,no,no,no,telephone,jul,tue,222,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,186,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,technician,married,professional.course,no,no,no,cellular,jul,tue,333,19,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,no,no,cellular,jul,tue,333,8,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,jul,tue,79,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,blue-collar,married,unknown,no,no,no,cellular,jul,tue,112,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,services,married,high.school,unknown,yes,no,telephone,jul,tue,157,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,blue-collar,single,high.school,no,yes,no,cellular,jul,tue,101,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,jul,tue,193,14,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +47,retired,married,university.degree,no,no,no,telephone,jul,tue,863,10,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +35,management,single,university.degree,no,yes,no,cellular,jul,tue,590,23,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,jul,tue,92,30,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +52,admin.,single,high.school,unknown,yes,no,cellular,jul,tue,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +40,housemaid,married,basic.6y,no,yes,no,telephone,jul,tue,225,3,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +37,admin.,single,high.school,no,yes,no,telephone,jul,tue,49,4,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +27,services,single,basic.9y,no,yes,yes,cellular,jul,tue,88,6,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +31,blue-collar,single,professional.course,no,yes,no,cellular,jul,tue,825,13,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +30,entrepreneur,single,university.degree,no,no,no,telephone,jul,tue,254,21,999,0,nonexistent,1.4,93.918,-42.7,4.961,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,jul,wed,11,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,wed,520,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,technician,married,basic.4y,unknown,yes,yes,cellular,jul,wed,138,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,44,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,university.degree,no,yes,no,cellular,jul,wed,142,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,high.school,unknown,yes,yes,cellular,jul,wed,984,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,services,married,basic.9y,no,yes,no,telephone,jul,wed,78,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,management,married,university.degree,no,yes,yes,cellular,jul,wed,329,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,jul,wed,353,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,housemaid,married,basic.4y,unknown,no,no,cellular,jul,wed,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,housemaid,single,high.school,no,yes,no,cellular,jul,wed,125,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +60,blue-collar,divorced,basic.4y,unknown,no,no,cellular,jul,wed,105,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,334,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,housemaid,married,basic.4y,unknown,no,yes,cellular,jul,wed,68,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,management,single,professional.course,unknown,no,no,cellular,jul,wed,76,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,married,university.degree,no,yes,no,cellular,jul,wed,28,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,housemaid,divorced,basic.4y,unknown,yes,no,cellular,jul,wed,458,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,services,single,high.school,no,yes,no,cellular,jul,wed,142,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,admin.,married,high.school,no,no,no,cellular,jul,wed,189,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,blue-collar,married,high.school,no,yes,yes,cellular,jul,wed,70,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,unemployed,divorced,university.degree,no,yes,no,cellular,jul,wed,18,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,jul,wed,158,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,59,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,services,single,basic.9y,no,yes,no,cellular,jul,wed,31,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,married,basic.6y,no,yes,no,telephone,jul,wed,90,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,jul,wed,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,single,university.degree,no,yes,no,cellular,jul,wed,305,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +47,services,divorced,basic.4y,unknown,no,no,cellular,jul,wed,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,high.school,no,yes,no,telephone,jul,wed,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,single,high.school,no,yes,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,divorced,basic.9y,no,no,no,cellular,jul,wed,39,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,admin.,divorced,basic.9y,no,yes,no,cellular,jul,wed,70,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,no,yes,cellular,jul,wed,112,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,high.school,unknown,yes,no,cellular,jul,wed,113,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,student,married,unknown,unknown,yes,yes,cellular,jul,wed,69,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,married,basic.6y,no,no,no,cellular,jul,wed,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +59,retired,married,high.school,unknown,yes,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,divorced,basic.6y,no,no,yes,cellular,jul,wed,684,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +37,admin.,single,university.degree,no,no,yes,cellular,jul,wed,312,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,married,university.degree,no,yes,yes,telephone,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,services,married,high.school,unknown,yes,yes,cellular,jul,wed,42,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,high.school,unknown,yes,yes,cellular,jul,wed,843,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +38,technician,married,university.degree,no,yes,yes,cellular,jul,wed,150,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,admin.,single,university.degree,no,yes,no,cellular,jul,wed,834,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,technician,married,basic.9y,no,yes,no,cellular,jul,wed,528,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,technician,married,basic.9y,no,no,no,cellular,jul,wed,516,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,services,married,high.school,unknown,yes,no,cellular,jul,wed,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,services,divorced,high.school,no,yes,no,cellular,jul,wed,652,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,housemaid,married,basic.6y,no,yes,no,cellular,jul,wed,102,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,entrepreneur,single,unknown,no,no,no,cellular,jul,wed,295,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,services,married,high.school,no,no,no,cellular,jul,wed,650,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +25,services,single,high.school,unknown,no,no,telephone,jul,wed,273,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,professional.course,unknown,yes,no,cellular,jul,wed,409,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,divorced,high.school,no,no,no,cellular,jul,wed,160,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,admin.,single,professional.course,no,yes,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,services,married,high.school,no,no,no,cellular,jul,wed,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.4y,no,yes,yes,cellular,jul,wed,132,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,services,single,high.school,unknown,yes,no,cellular,jul,wed,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,entrepreneur,single,university.degree,no,yes,yes,cellular,jul,wed,192,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,jul,wed,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,single,unknown,unknown,no,no,telephone,jul,wed,542,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +27,services,single,basic.9y,no,no,no,telephone,jul,wed,120,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,unknown,married,unknown,unknown,yes,no,cellular,jul,wed,219,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,blue-collar,married,basic.6y,no,yes,yes,telephone,jul,wed,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,married,high.school,no,yes,no,cellular,jul,wed,93,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,services,divorced,high.school,no,no,no,cellular,jul,wed,32,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,management,married,university.degree,no,no,no,cellular,jul,wed,119,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,229,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,jul,wed,25,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,unknown,married,high.school,unknown,yes,no,telephone,jul,wed,195,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,entrepreneur,married,university.degree,no,yes,no,telephone,jul,wed,64,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,management,married,university.degree,no,yes,yes,telephone,jul,wed,270,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,professional.course,no,yes,no,cellular,jul,wed,173,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,695,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,594,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,jul,wed,115,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,entrepreneur,married,university.degree,no,no,no,cellular,jul,wed,101,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,jul,wed,605,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,wed,537,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,services,married,basic.9y,unknown,no,no,telephone,jul,wed,42,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,self-employed,single,university.degree,no,yes,no,telephone,jul,wed,51,19,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,no,no,cellular,jul,wed,71,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,technician,married,university.degree,no,yes,no,cellular,jul,wed,141,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,admin.,married,high.school,no,yes,yes,cellular,jul,wed,351,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,jul,wed,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,technician,single,professional.course,no,no,no,cellular,jul,wed,76,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,jul,wed,58,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,wed,141,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,jul,wed,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,wed,55,22,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,high.school,no,yes,yes,cellular,jul,wed,164,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,technician,single,professional.course,no,yes,no,cellular,jul,wed,111,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,technician,single,unknown,no,yes,no,telephone,jul,wed,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,wed,292,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,71,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,jul,wed,14,29,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,220,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,single,high.school,no,yes,no,telephone,jul,wed,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,unemployed,single,high.school,no,yes,no,cellular,jul,wed,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,blue-collar,married,high.school,unknown,yes,no,cellular,jul,wed,105,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,management,married,university.degree,no,no,yes,telephone,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,wed,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,wed,138,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,unemployed,single,high.school,no,yes,no,cellular,jul,wed,597,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,unemployed,divorced,university.degree,no,no,no,cellular,jul,wed,161,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,admin.,married,university.degree,unknown,unknown,unknown,telephone,jul,wed,171,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,single,high.school,no,no,no,cellular,jul,wed,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,unemployed,divorced,university.degree,no,yes,no,cellular,jul,wed,1373,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +47,unknown,married,unknown,no,yes,no,cellular,jul,wed,133,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,housemaid,divorced,basic.9y,unknown,no,yes,cellular,jul,wed,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,single,university.degree,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,management,single,university.degree,no,yes,no,cellular,jul,wed,65,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,self-employed,married,basic.9y,unknown,yes,no,cellular,jul,wed,41,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,married,university.degree,no,no,no,cellular,jul,wed,29,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,self-employed,married,university.degree,no,no,no,cellular,jul,wed,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,jul,wed,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,218,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,197,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,wed,788,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +31,housemaid,single,high.school,no,yes,no,cellular,jul,wed,380,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,988,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +25,admin.,single,high.school,no,no,no,cellular,jul,wed,55,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,single,high.school,no,no,no,cellular,jul,wed,129,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,student,married,high.school,no,no,no,cellular,jul,wed,622,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,technician,divorced,professional.course,no,no,no,telephone,jul,wed,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,blue-collar,married,basic.6y,no,no,no,cellular,jul,wed,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,married,high.school,no,no,no,cellular,jul,wed,227,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,services,divorced,high.school,no,no,no,cellular,jul,wed,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,married,high.school,unknown,yes,no,cellular,jul,wed,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,jul,wed,144,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,single,university.degree,no,yes,yes,cellular,jul,wed,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,technician,single,university.degree,no,yes,no,telephone,jul,wed,185,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,basic.9y,no,yes,no,cellular,jul,wed,197,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,wed,543,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +37,blue-collar,married,basic.6y,unknown,no,no,cellular,jul,wed,99,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,jul,wed,156,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,management,single,high.school,no,no,no,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,blue-collar,married,basic.9y,unknown,no,no,telephone,jul,wed,87,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,high.school,no,yes,no,telephone,jul,wed,82,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,student,single,university.degree,no,yes,yes,cellular,jul,wed,77,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,basic.9y,no,no,yes,cellular,jul,wed,444,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,housemaid,married,basic.6y,no,no,no,telephone,jul,wed,34,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,high.school,no,no,yes,cellular,jul,wed,287,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,student,married,high.school,no,no,yes,cellular,jul,wed,73,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,wed,152,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,jul,wed,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,basic.9y,no,yes,no,cellular,jul,wed,535,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,student,single,university.degree,no,yes,no,cellular,jul,wed,209,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,jul,wed,72,15,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,housemaid,married,high.school,no,yes,no,cellular,jul,wed,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +52,admin.,married,basic.9y,no,no,no,cellular,jul,wed,1171,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +41,services,divorced,high.school,no,no,yes,cellular,jul,wed,72,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,entrepreneur,divorced,professional.course,no,no,no,telephone,jul,wed,117,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,wed,729,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +57,admin.,single,university.degree,no,no,no,cellular,jul,wed,341,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +28,self-employed,married,university.degree,no,yes,yes,cellular,jul,wed,186,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,jul,wed,96,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,services,single,basic.9y,no,yes,no,cellular,jul,wed,509,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +32,admin.,married,professional.course,no,yes,no,telephone,jul,wed,166,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,jul,wed,1078,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,married,basic.9y,no,no,yes,telephone,jul,wed,27,16,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,services,married,high.school,no,yes,no,cellular,jul,wed,698,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,no,no,cellular,jul,wed,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,married,university.degree,unknown,yes,no,telephone,jul,wed,340,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,jul,wed,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,424,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,services,married,high.school,no,yes,no,cellular,jul,wed,436,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,159,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,self-employed,single,university.degree,no,no,no,cellular,jul,wed,208,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,married,high.school,no,no,no,cellular,jul,wed,96,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,359,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,basic.6y,no,no,no,cellular,jul,wed,69,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,blue-collar,married,high.school,no,no,no,cellular,jul,wed,259,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,blue-collar,married,unknown,no,yes,yes,cellular,jul,wed,225,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,married,high.school,no,yes,yes,telephone,jul,wed,1089,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +40,technician,married,professional.course,no,no,no,cellular,jul,wed,65,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,professional.course,no,no,yes,cellular,jul,wed,266,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,self-employed,single,university.degree,no,no,no,cellular,jul,wed,1211,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +44,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,50,18,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,management,married,unknown,no,no,no,cellular,jul,wed,178,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,single,high.school,no,no,no,telephone,jul,wed,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,housemaid,divorced,basic.9y,unknown,no,no,cellular,jul,wed,118,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,divorced,basic.9y,no,no,no,telephone,jul,wed,109,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,single,basic.9y,unknown,no,yes,cellular,jul,wed,94,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,wed,647,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +55,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,120,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,married,high.school,no,yes,no,cellular,jul,wed,136,13,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,458,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +48,entrepreneur,married,basic.9y,no,yes,no,cellular,jul,wed,438,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,self-employed,married,university.degree,no,yes,no,cellular,jul,wed,225,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,student,single,unknown,unknown,no,no,cellular,jul,wed,103,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,services,single,high.school,no,yes,no,cellular,jul,wed,112,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,admin.,single,high.school,unknown,yes,no,cellular,jul,wed,145,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,technician,single,university.degree,no,no,no,cellular,jul,wed,31,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,divorced,professional.course,no,yes,no,telephone,jul,wed,216,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,married,high.school,no,no,no,telephone,jul,wed,156,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,services,single,high.school,no,no,yes,cellular,jul,wed,52,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,high.school,no,yes,no,cellular,jul,wed,154,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,technician,married,high.school,no,no,no,cellular,jul,wed,1165,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +50,services,single,high.school,no,no,no,cellular,jul,wed,117,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,wed,89,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,unemployed,single,university.degree,no,yes,yes,cellular,jul,wed,266,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,jul,wed,107,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,jul,wed,486,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,blue-collar,single,high.school,no,yes,no,cellular,jul,wed,72,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,technician,married,university.degree,no,yes,yes,cellular,jul,wed,63,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,married,high.school,no,no,no,telephone,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,management,married,university.degree,no,no,no,cellular,jul,wed,174,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +25,admin.,single,high.school,no,yes,no,cellular,jul,wed,62,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,single,professional.course,no,yes,no,cellular,jul,wed,520,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,jul,wed,103,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,no,yes,cellular,jul,wed,233,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,technician,single,university.degree,no,no,yes,cellular,jul,wed,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,no,cellular,jul,wed,64,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,unemployed,married,high.school,no,yes,yes,cellular,jul,wed,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,professional.course,no,unknown,unknown,cellular,jul,wed,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,wed,57,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,housemaid,married,high.school,no,yes,no,cellular,jul,wed,335,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,divorced,basic.4y,no,no,yes,cellular,jul,wed,246,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,single,high.school,no,no,no,cellular,jul,wed,86,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,retired,divorced,professional.course,no,no,no,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,unemployed,divorced,university.degree,no,yes,yes,cellular,jul,wed,104,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +57,admin.,married,university.degree,unknown,no,no,cellular,jul,wed,35,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,services,married,high.school,no,yes,yes,cellular,jul,wed,149,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,blue-collar,single,basic.9y,no,no,yes,cellular,jul,wed,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,married,high.school,unknown,no,no,cellular,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,wed,350,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,self-employed,single,university.degree,no,no,no,cellular,jul,wed,540,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +29,technician,married,university.degree,no,yes,no,cellular,jul,wed,115,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,management,married,basic.9y,no,no,no,cellular,jul,wed,109,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,management,married,unknown,no,yes,yes,cellular,jul,wed,595,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,jul,wed,155,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,telephone,jul,wed,242,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,288,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,cellular,jul,wed,163,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,self-employed,married,professional.course,no,yes,no,telephone,jul,wed,339,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,services,married,high.school,no,no,no,telephone,jul,wed,29,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,high.school,no,no,no,telephone,jul,wed,139,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,123,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,technician,married,professional.course,no,no,no,cellular,jul,wed,72,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,management,single,university.degree,no,no,yes,cellular,jul,wed,352,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,103,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,retired,divorced,high.school,no,yes,no,cellular,jul,wed,173,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,blue-collar,single,high.school,no,yes,no,telephone,jul,wed,168,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,management,married,university.degree,no,no,yes,cellular,jul,wed,50,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,services,single,basic.9y,no,yes,no,cellular,jul,wed,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +53,technician,married,professional.course,unknown,no,no,telephone,jul,wed,191,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,entrepreneur,divorced,high.school,no,no,yes,cellular,jul,wed,245,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,admin.,single,high.school,no,no,no,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,student,single,high.school,no,yes,no,cellular,jul,wed,139,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,admin.,single,university.degree,no,unknown,unknown,cellular,jul,wed,95,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +23,services,single,high.school,no,no,yes,cellular,jul,wed,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,single,high.school,unknown,yes,no,cellular,jul,wed,88,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,technician,married,high.school,unknown,no,no,cellular,jul,wed,96,1,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,admin.,single,high.school,no,yes,yes,cellular,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,housemaid,married,basic.4y,no,yes,no,cellular,jul,wed,638,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,married,high.school,no,no,no,cellular,jul,wed,142,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,jul,wed,90,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,jul,wed,695,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +39,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,53,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,jul,wed,269,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,professional.course,unknown,yes,yes,cellular,jul,wed,354,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,admin.,divorced,high.school,no,no,no,cellular,jul,wed,764,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +40,services,married,high.school,no,yes,yes,cellular,jul,wed,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,services,single,high.school,no,yes,no,cellular,jul,wed,411,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,1065,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +33,unemployed,married,high.school,unknown,yes,no,cellular,jul,wed,590,9,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,self-employed,married,university.degree,no,no,no,telephone,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,admin.,married,high.school,no,no,no,cellular,jul,wed,184,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,technician,divorced,professional.course,unknown,yes,yes,cellular,jul,wed,180,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,unknown,single,high.school,no,yes,no,cellular,jul,wed,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,married,university.degree,no,no,no,cellular,jul,wed,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +41,management,married,university.degree,no,no,no,telephone,jul,wed,300,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,divorced,high.school,no,yes,yes,cellular,jul,wed,70,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,jul,wed,126,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,technician,single,university.degree,no,no,no,cellular,jul,wed,141,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,technician,married,basic.9y,unknown,yes,no,cellular,jul,wed,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,no,cellular,jul,wed,75,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +43,housemaid,married,basic.6y,unknown,yes,no,cellular,jul,wed,61,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,jul,wed,95,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,1259,6,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,blue-collar,married,basic.9y,no,no,no,cellular,jul,wed,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,married,high.school,no,no,no,cellular,jul,wed,356,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +58,unknown,married,high.school,unknown,no,no,cellular,jul,wed,258,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,admin.,married,unknown,no,no,yes,cellular,jul,wed,311,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,services,single,high.school,no,no,no,cellular,jul,wed,239,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,telephone,jul,wed,2692,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +28,services,married,high.school,no,yes,yes,telephone,jul,wed,79,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +49,technician,married,basic.9y,unknown,yes,no,cellular,jul,wed,117,17,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,admin.,divorced,university.degree,no,yes,no,cellular,jul,wed,121,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,management,single,university.degree,no,no,no,cellular,jul,wed,675,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +51,management,married,basic.9y,no,no,no,cellular,jul,wed,71,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,103,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +45,services,divorced,high.school,no,yes,yes,cellular,jul,wed,230,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,admin.,married,professional.course,unknown,no,no,cellular,jul,wed,100,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,professional.course,no,yes,no,cellular,jul,wed,192,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,admin.,married,unknown,no,yes,no,cellular,jul,wed,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +56,technician,divorced,university.degree,unknown,yes,yes,cellular,jul,wed,448,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,unemployed,married,high.school,unknown,yes,yes,cellular,jul,wed,285,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +54,housemaid,married,basic.4y,unknown,yes,no,cellular,jul,wed,92,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,54,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,management,married,basic.9y,no,yes,no,cellular,jul,wed,154,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,wed,184,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +30,admin.,single,high.school,no,yes,no,telephone,jul,wed,196,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,jul,wed,185,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +40,self-employed,single,university.degree,no,yes,yes,telephone,jul,wed,98,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,590,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,services,married,professional.course,no,no,no,cellular,jul,wed,782,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +26,admin.,single,university.degree,no,no,no,telephone,jul,wed,342,5,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,jul,wed,151,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +44,admin.,single,basic.6y,unknown,no,no,telephone,jul,wed,383,7,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +33,admin.,divorced,high.school,no,no,no,cellular,jul,wed,249,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,management,married,university.degree,no,no,yes,cellular,jul,wed,93,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,jul,wed,134,23,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +27,self-employed,married,university.degree,no,no,no,telephone,jul,wed,215,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,housemaid,single,professional.course,no,yes,no,cellular,jul,wed,60,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +39,technician,married,high.school,no,no,no,cellular,jul,wed,188,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +37,blue-collar,married,professional.course,no,yes,no,cellular,jul,wed,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,jul,wed,187,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,management,married,university.degree,no,no,no,cellular,jul,wed,777,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +30,admin.,single,university.degree,no,no,no,telephone,jul,wed,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,wed,21,20,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +29,admin.,single,high.school,no,yes,yes,cellular,jul,wed,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,jul,wed,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,jul,wed,53,10,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +22,unemployed,single,high.school,no,no,no,telephone,jul,wed,82,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +51,management,married,basic.9y,no,yes,no,telephone,jul,wed,208,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,jul,wed,84,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,jul,wed,962,4,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +43,services,married,high.school,unknown,no,yes,cellular,jul,wed,105,11,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +48,services,married,professional.course,unknown,yes,yes,cellular,jul,wed,98,2,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,admin.,married,high.school,no,no,no,cellular,jul,wed,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +26,blue-collar,single,high.school,no,no,yes,cellular,jul,wed,111,8,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,no +38,admin.,married,unknown,no,yes,no,cellular,jul,wed,481,3,999,0,nonexistent,1.4,93.918,-42.7,4.963,5228.1,yes +44,management,married,university.degree,unknown,yes,no,cellular,jul,thu,148,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,admin.,married,basic.9y,no,yes,no,cellular,jul,thu,106,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,technician,married,professional.course,no,yes,yes,cellular,jul,thu,101,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,admin.,divorced,high.school,no,yes,yes,cellular,jul,thu,75,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,technician,married,basic.9y,unknown,yes,no,cellular,jul,thu,75,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,professional.course,unknown,yes,no,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,admin.,married,university.degree,no,yes,no,telephone,jul,thu,24,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,entrepreneur,married,basic.4y,unknown,yes,no,cellular,jul,thu,20,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,blue-collar,single,high.school,no,no,no,telephone,jul,thu,234,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,thu,15,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,thu,13,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,self-employed,divorced,university.degree,no,no,no,cellular,jul,thu,81,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,admin.,single,university.degree,no,yes,no,cellular,jul,thu,435,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,retired,married,basic.9y,unknown,no,no,cellular,jul,thu,59,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,high.school,no,no,no,cellular,jul,thu,175,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,admin.,married,basic.9y,no,yes,yes,telephone,jul,thu,43,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,services,single,high.school,no,no,no,cellular,jul,thu,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,unknown,married,unknown,no,yes,yes,cellular,jul,thu,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,jul,thu,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,self-employed,married,university.degree,no,no,no,telephone,jul,thu,11,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,jul,thu,13,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,university.degree,no,no,no,cellular,jul,thu,153,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,thu,87,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,admin.,divorced,university.degree,no,no,yes,telephone,jul,thu,46,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,admin.,single,high.school,no,yes,yes,cellular,jul,thu,283,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,yes,no,cellular,jul,thu,69,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,unemployed,married,university.degree,no,no,no,cellular,jul,thu,616,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,blue-collar,divorced,basic.4y,unknown,no,no,telephone,jul,thu,69,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,jul,thu,160,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,165,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,technician,divorced,university.degree,unknown,no,yes,cellular,jul,thu,13,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,admin.,married,high.school,unknown,no,yes,cellular,jul,thu,141,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,346,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,jul,thu,79,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,admin.,married,university.degree,no,no,yes,cellular,jul,thu,175,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,retired,divorced,high.school,no,yes,no,cellular,jul,thu,11,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,services,divorced,high.school,no,no,no,cellular,jul,thu,98,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,technician,single,high.school,unknown,no,no,telephone,jul,thu,125,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,11,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,married,university.degree,no,no,no,cellular,jul,thu,5,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,married,professional.course,no,unknown,unknown,cellular,jul,thu,12,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,entrepreneur,divorced,high.school,no,yes,no,cellular,jul,thu,812,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +36,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,8,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,thu,194,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,single,high.school,no,no,yes,cellular,jul,thu,130,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,services,married,high.school,no,yes,no,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,technician,divorced,professional.course,no,yes,no,cellular,jul,thu,87,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,517,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,management,married,university.degree,no,yes,no,cellular,jul,thu,350,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,technician,married,professional.course,unknown,no,yes,telephone,jul,thu,921,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,217,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,single,university.degree,no,no,yes,cellular,jul,thu,749,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,services,married,professional.course,no,yes,yes,cellular,jul,thu,630,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +32,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,thu,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,university.degree,no,no,no,cellular,jul,thu,85,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,married,high.school,no,no,no,cellular,jul,thu,468,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,services,married,professional.course,unknown,yes,no,cellular,jul,thu,55,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,no,no,cellular,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,jul,thu,207,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,27,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,1088,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +37,blue-collar,divorced,basic.9y,no,yes,no,cellular,jul,thu,1150,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +35,technician,married,professional.course,no,yes,no,cellular,jul,thu,570,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,yes,no,cellular,jul,thu,404,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,admin.,single,high.school,unknown,no,no,cellular,jul,thu,75,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,no,no,cellular,jul,thu,232,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,technician,married,high.school,no,no,no,cellular,jul,thu,190,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,admin.,single,high.school,no,unknown,unknown,cellular,jul,thu,37,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,married,high.school,unknown,no,no,cellular,jul,thu,84,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,technician,divorced,university.degree,unknown,no,no,cellular,jul,thu,384,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,university.degree,no,no,no,cellular,jul,thu,321,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,blue-collar,married,unknown,no,no,no,cellular,jul,thu,394,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,blue-collar,single,basic.4y,no,no,no,cellular,jul,thu,451,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,thu,117,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,blue-collar,single,basic.4y,no,no,no,cellular,jul,thu,508,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +22,unemployed,single,high.school,no,no,no,cellular,jul,thu,60,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,207,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,107,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,thu,196,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,high.school,no,no,yes,cellular,jul,thu,106,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,413,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,married,professional.course,no,no,yes,cellular,jul,thu,15,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,unknown,unknown,cellular,jul,thu,81,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,student,divorced,university.degree,no,no,yes,cellular,jul,thu,125,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,thu,543,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,admin.,married,university.degree,no,yes,no,telephone,jul,thu,91,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,entrepreneur,married,basic.4y,unknown,yes,yes,cellular,jul,thu,14,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,admin.,single,basic.6y,unknown,yes,no,cellular,jul,thu,130,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,services,married,professional.course,no,no,yes,cellular,jul,thu,151,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,single,high.school,no,yes,yes,cellular,jul,thu,104,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,admin.,married,university.degree,no,no,yes,cellular,jul,thu,468,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,housemaid,married,basic.4y,no,yes,yes,cellular,jul,thu,69,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,blue-collar,single,basic.6y,unknown,no,no,cellular,jul,thu,79,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,admin.,married,high.school,unknown,no,yes,telephone,jul,thu,225,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,blue-collar,single,university.degree,no,yes,no,cellular,jul,thu,102,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,technician,married,basic.9y,no,yes,no,cellular,jul,thu,183,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,technician,married,university.degree,no,no,yes,cellular,jul,thu,65,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,university.degree,no,no,no,cellular,jul,thu,395,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,blue-collar,single,university.degree,no,no,no,cellular,jul,thu,291,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,self-employed,married,professional.course,no,no,no,cellular,jul,thu,49,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,services,divorced,high.school,no,yes,no,cellular,jul,thu,474,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,management,married,university.degree,unknown,no,no,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,management,married,university.degree,unknown,yes,no,telephone,jul,thu,30,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,management,married,university.degree,unknown,yes,no,telephone,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,management,married,university.degree,unknown,yes,no,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,30,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,entrepreneur,divorced,university.degree,no,no,yes,cellular,jul,thu,216,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,single,high.school,no,yes,no,cellular,jul,thu,149,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,technician,married,high.school,no,no,no,telephone,jul,thu,110,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,services,married,high.school,unknown,no,no,cellular,jul,thu,374,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,housemaid,married,high.school,no,yes,no,cellular,jul,thu,108,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,entrepreneur,married,high.school,no,yes,no,cellular,jul,thu,244,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,technician,married,high.school,no,yes,no,cellular,jul,thu,196,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,no,yes,cellular,jul,thu,74,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,no,no,cellular,jul,thu,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,telephone,jul,thu,19,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,services,married,high.school,unknown,no,no,cellular,jul,thu,126,19,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,services,divorced,high.school,no,no,yes,cellular,jul,thu,51,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,thu,100,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,574,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +32,technician,single,professional.course,no,no,yes,telephone,jul,thu,181,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,high.school,no,yes,yes,cellular,jul,thu,23,22,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,university.degree,no,no,yes,cellular,jul,thu,242,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,jul,thu,167,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,jul,thu,35,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,admin.,married,professional.course,no,yes,yes,cellular,jul,thu,203,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,jul,thu,140,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,yes,yes,cellular,jul,thu,234,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,56,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,technician,single,high.school,no,no,no,cellular,jul,thu,27,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,entrepreneur,single,university.degree,unknown,no,yes,telephone,jul,thu,15,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,unemployed,single,university.degree,no,yes,no,cellular,jul,thu,47,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,thu,46,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,technician,married,professional.course,no,yes,no,telephone,jul,thu,144,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,blue-collar,married,basic.4y,no,unknown,unknown,telephone,jul,thu,175,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,married,basic.6y,unknown,no,no,telephone,jul,thu,208,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,180,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,jul,thu,307,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,unknown,no,yes,no,cellular,jul,thu,51,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,unknown,no,yes,no,telephone,jul,thu,121,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,yes,no,cellular,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,yes,no,telephone,jul,thu,120,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,no,no,cellular,jul,thu,127,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,university.degree,no,no,yes,cellular,jul,thu,114,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,admin.,married,professional.course,unknown,no,no,cellular,jul,thu,106,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +24,admin.,single,high.school,no,yes,no,cellular,jul,thu,725,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +35,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,105,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,yes,no,telephone,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,management,married,basic.9y,no,no,no,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,management,married,basic.9y,no,no,no,telephone,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,jul,thu,6,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,yes,no,cellular,jul,thu,123,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,management,married,university.degree,no,yes,no,cellular,jul,thu,22,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,management,married,basic.9y,no,yes,no,cellular,jul,thu,253,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,management,married,university.degree,no,no,no,cellular,jul,thu,57,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,jul,thu,126,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,no,no,no,cellular,jul,thu,38,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,no,no,no,telephone,jul,thu,77,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,blue-collar,married,basic.9y,unknown,no,yes,cellular,jul,thu,349,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,36,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,services,married,high.school,no,yes,no,cellular,jul,thu,543,29,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,blue-collar,married,basic.9y,no,yes,yes,cellular,jul,thu,114,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +26,blue-collar,married,high.school,no,yes,no,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,professional.course,unknown,no,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,jul,thu,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,management,married,university.degree,no,yes,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,admin.,married,high.school,no,unknown,unknown,cellular,jul,thu,56,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,technician,single,professional.course,unknown,yes,no,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,unemployed,married,high.school,no,unknown,unknown,cellular,jul,thu,94,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,management,married,university.degree,no,yes,no,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,unemployed,married,high.school,no,yes,yes,cellular,jul,thu,118,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,jul,thu,60,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,technician,divorced,university.degree,unknown,yes,no,cellular,jul,thu,227,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,jul,thu,662,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +28,admin.,single,university.degree,no,no,no,cellular,jul,thu,727,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +49,technician,married,professional.course,unknown,yes,no,telephone,jul,thu,219,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,79,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,high.school,no,yes,no,cellular,jul,thu,231,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,technician,divorced,university.degree,unknown,yes,no,cellular,jul,thu,49,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,married,university.degree,no,yes,yes,cellular,jul,thu,201,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,jul,thu,221,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,technician,married,professional.course,no,yes,no,telephone,jul,thu,168,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,married,university.degree,no,yes,no,telephone,jul,thu,258,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,married,university.degree,no,no,no,telephone,jul,thu,240,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,basic.4y,no,yes,yes,telephone,jul,thu,119,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,technician,divorced,university.degree,unknown,no,no,cellular,jul,thu,59,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,jul,thu,156,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,jul,thu,131,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,jul,thu,189,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,thu,107,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,technician,married,university.degree,no,no,no,cellular,jul,thu,122,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,self-employed,single,basic.4y,no,no,no,telephone,jul,thu,73,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,services,married,high.school,no,yes,no,cellular,jul,thu,216,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,self-employed,single,basic.4y,no,no,no,cellular,jul,thu,148,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,professional.course,unknown,no,no,telephone,jul,thu,46,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,no,no,cellular,jul,thu,145,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,self-employed,divorced,university.degree,no,no,yes,cellular,jul,thu,52,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +57,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,38,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +60,retired,married,basic.6y,unknown,no,no,cellular,jul,thu,126,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,106,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,62,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,technician,married,professional.course,no,no,no,telephone,jul,thu,45,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,technician,married,professional.course,no,no,no,cellular,jul,thu,53,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,jul,thu,225,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,unemployed,married,high.school,unknown,unknown,unknown,cellular,jul,thu,268,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,management,married,university.degree,no,no,no,cellular,jul,thu,52,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,self-employed,single,university.degree,no,no,no,cellular,jul,thu,609,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,blue-collar,single,basic.4y,no,no,yes,cellular,jul,thu,83,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +51,management,married,basic.9y,no,yes,yes,cellular,jul,thu,79,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,thu,462,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,847,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,services,married,high.school,no,no,no,cellular,jul,thu,857,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +43,housemaid,married,basic.6y,unknown,yes,no,cellular,jul,thu,188,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,no,yes,telephone,jul,thu,80,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,housemaid,single,professional.course,no,no,yes,cellular,jul,thu,50,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,housemaid,single,professional.course,no,yes,no,cellular,jul,thu,255,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,services,married,high.school,no,no,no,cellular,jul,thu,92,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,management,married,high.school,no,no,yes,cellular,jul,thu,245,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,admin.,divorced,high.school,no,no,yes,cellular,jul,thu,83,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,entrepreneur,married,university.degree,unknown,yes,no,cellular,jul,thu,55,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,self-employed,divorced,university.degree,no,yes,no,cellular,jul,thu,548,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,jul,thu,281,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,services,single,high.school,no,no,yes,cellular,jul,thu,81,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +57,admin.,single,high.school,unknown,yes,no,telephone,jul,thu,35,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,university.degree,no,no,no,cellular,jul,thu,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,admin.,married,university.degree,no,yes,no,cellular,jul,thu,51,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,admin.,single,university.degree,no,no,no,cellular,jul,thu,829,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,367,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,thu,612,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +38,technician,single,professional.course,no,no,no,cellular,jul,thu,25,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,married,high.school,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,unemployed,married,high.school,no,no,no,cellular,jul,thu,284,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,admin.,married,high.school,no,no,no,cellular,jul,thu,187,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,jul,thu,128,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,jul,thu,150,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,technician,married,university.degree,no,no,no,cellular,jul,thu,124,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +51,management,married,basic.4y,no,yes,no,cellular,jul,thu,47,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,249,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,married,high.school,no,yes,no,cellular,jul,thu,74,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,self-employed,divorced,basic.9y,no,yes,yes,cellular,jul,thu,119,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,blue-collar,married,basic.9y,unknown,no,yes,telephone,jul,thu,88,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,admin.,married,high.school,no,yes,no,cellular,jul,thu,434,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,blue-collar,single,high.school,no,no,no,cellular,jul,thu,288,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +24,admin.,single,high.school,no,yes,yes,cellular,jul,thu,109,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,technician,married,high.school,no,yes,no,cellular,jul,thu,388,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,yes,no,cellular,jul,thu,1461,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +44,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,155,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,172,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,services,single,high.school,no,no,no,cellular,jul,thu,465,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,services,single,high.school,no,yes,no,cellular,jul,thu,91,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,management,single,university.degree,no,yes,no,cellular,jul,thu,166,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,unknown,married,unknown,no,yes,no,cellular,jul,thu,716,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,33,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,high.school,no,no,no,cellular,jul,thu,266,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,721,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,single,unknown,no,no,no,cellular,jul,thu,99,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,admin.,married,high.school,no,no,no,cellular,jul,thu,228,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,self-employed,married,university.degree,no,yes,no,telephone,jul,thu,36,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,unemployed,married,professional.course,no,no,no,cellular,jul,thu,74,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,unknown,married,high.school,unknown,no,no,cellular,jul,thu,222,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +22,unemployed,single,high.school,no,yes,no,cellular,jul,thu,361,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +48,admin.,divorced,university.degree,no,yes,no,cellular,jul,thu,294,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,247,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,109,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,324,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,technician,married,professional.course,no,no,no,cellular,jul,thu,223,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,services,married,high.school,no,yes,no,cellular,jul,thu,362,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,services,married,high.school,no,yes,no,cellular,jul,thu,300,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,admin.,married,high.school,no,no,no,cellular,jul,thu,66,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,169,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,jul,thu,391,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +57,technician,single,professional.course,no,yes,no,cellular,jul,thu,155,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,management,divorced,basic.9y,unknown,yes,no,cellular,jul,thu,86,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jul,thu,151,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,management,married,university.degree,no,yes,yes,cellular,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,94,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,management,married,university.degree,no,no,no,cellular,jul,thu,843,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,blue-collar,divorced,professional.course,no,yes,yes,cellular,jul,thu,81,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,75,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,198,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,81,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,unemployed,married,high.school,no,yes,no,cellular,jul,thu,34,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,admin.,married,high.school,unknown,no,no,cellular,jul,thu,61,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +60,management,married,professional.course,unknown,yes,no,cellular,jul,thu,241,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,services,married,high.school,no,yes,no,cellular,jul,thu,156,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,jul,thu,1739,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,services,married,high.school,no,yes,no,telephone,jul,thu,345,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,jul,thu,111,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,blue-collar,married,basic.4y,unknown,no,no,cellular,jul,thu,166,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,blue-collar,married,basic.9y,no,yes,no,telephone,jul,thu,28,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,admin.,divorced,university.degree,no,no,no,cellular,jul,thu,119,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,admin.,divorced,university.degree,no,yes,yes,cellular,jul,thu,209,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,services,married,high.school,no,no,no,telephone,jul,thu,733,1,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,44,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,18,29,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,services,single,high.school,no,no,no,telephone,jul,thu,444,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,744,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,management,married,university.degree,no,yes,no,cellular,jul,thu,196,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,no,telephone,jul,thu,190,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,self-employed,married,university.degree,no,no,no,cellular,jul,thu,245,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,blue-collar,married,professional.course,no,no,no,cellular,jul,thu,22,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,blue-collar,single,high.school,no,yes,no,telephone,jul,thu,13,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,thu,59,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,108,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,admin.,single,professional.course,no,yes,no,cellular,jul,thu,134,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,technician,single,university.degree,no,yes,no,cellular,jul,thu,58,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,management,married,university.degree,no,no,yes,cellular,jul,thu,32,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,jul,thu,9,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,unknown,no,yes,telephone,jul,thu,37,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,jul,thu,90,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,20,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,33,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,18,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,blue-collar,divorced,professional.course,no,no,no,cellular,jul,thu,66,31,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,jul,thu,23,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,jul,thu,19,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,37,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,high.school,no,yes,no,telephone,jul,thu,51,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,no,yes,no,cellular,jul,thu,21,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,294,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,no,no,telephone,jul,thu,65,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,services,married,high.school,no,yes,no,cellular,jul,thu,70,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,technician,married,high.school,no,yes,yes,cellular,jul,thu,18,34,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,self-employed,married,professional.course,no,yes,no,cellular,jul,thu,77,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,admin.,married,university.degree,no,no,no,cellular,jul,thu,9,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,housemaid,married,basic.4y,unknown,no,no,cellular,jul,thu,17,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,blue-collar,married,basic.9y,unknown,no,no,cellular,jul,thu,393,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,jul,thu,22,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,thu,10,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,services,single,high.school,unknown,no,no,telephone,jul,thu,454,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,married,university.degree,no,no,no,cellular,jul,thu,89,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,jul,thu,11,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,retired,married,basic.4y,no,no,no,telephone,jul,thu,37,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +44,technician,single,unknown,unknown,no,yes,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,admin.,married,high.school,unknown,no,no,cellular,jul,thu,10,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,married,university.degree,unknown,no,no,cellular,jul,thu,67,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,jul,thu,58,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,unemployed,married,high.school,no,yes,no,cellular,jul,thu,272,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,technician,single,professional.course,no,yes,yes,cellular,jul,thu,164,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,admin.,single,university.degree,no,yes,yes,telephone,jul,thu,55,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +26,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,530,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,17,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,thu,16,35,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,14,28,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,jul,thu,153,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,yes,cellular,jul,thu,8,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,69,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,8,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,technician,married,professional.course,no,no,no,telephone,jul,thu,43,32,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,106,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,self-employed,married,university.degree,unknown,no,no,cellular,jul,thu,255,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,no,telephone,jul,thu,251,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,jul,thu,30,33,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,jul,thu,21,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,retired,married,basic.9y,unknown,yes,no,cellular,jul,thu,55,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,retired,married,basic.9y,unknown,no,no,telephone,jul,thu,16,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,admin.,single,professional.course,no,yes,yes,cellular,jul,thu,9,18,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,technician,single,professional.course,no,no,no,telephone,jul,thu,237,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,technician,married,professional.course,no,yes,yes,cellular,jul,thu,58,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,115,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,unemployed,single,unknown,unknown,no,no,cellular,jul,thu,189,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,admin.,married,university.degree,no,no,yes,cellular,jul,thu,56,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,blue-collar,single,basic.6y,no,no,no,telephone,jul,thu,114,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,213,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,thu,70,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +52,admin.,married,university.degree,no,no,no,cellular,jul,thu,368,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,10,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,35,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,high.school,no,yes,no,telephone,jul,thu,14,23,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,professional.course,unknown,yes,no,cellular,jul,thu,68,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,retired,married,basic.4y,no,no,yes,telephone,jul,thu,22,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,blue-collar,married,basic.6y,no,no,no,telephone,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,technician,married,unknown,unknown,yes,no,cellular,jul,thu,160,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +40,services,married,basic.9y,no,no,no,telephone,jul,thu,21,35,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,33,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,admin.,single,high.school,no,no,no,telephone,jul,thu,6,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,retired,married,basic.9y,unknown,no,no,cellular,jul,thu,149,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,no,no,cellular,jul,thu,40,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,46,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,single,high.school,no,no,no,cellular,jul,thu,9,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,no,no,cellular,jul,thu,39,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,jul,thu,280,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +41,housemaid,married,basic.4y,unknown,yes,no,telephone,jul,thu,350,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,65,43,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,jul,thu,37,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,49,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,yes,cellular,jul,thu,470,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,262,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,services,married,basic.6y,no,no,yes,cellular,jul,thu,124,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,entrepreneur,married,professional.course,no,yes,no,cellular,jul,thu,576,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,10,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,306,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,101,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,unknown,no,yes,no,cellular,jul,thu,108,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,jul,thu,67,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,telephone,jul,thu,16,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,admin.,married,university.degree,unknown,no,no,telephone,jul,thu,94,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,admin.,single,high.school,no,yes,no,cellular,jul,thu,24,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,no,no,cellular,jul,thu,18,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,admin.,married,university.degree,unknown,yes,no,cellular,jul,thu,77,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,professional.course,unknown,yes,no,cellular,jul,thu,747,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +24,technician,single,university.degree,no,no,no,cellular,jul,thu,299,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,yes,no,telephone,jul,thu,42,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,services,married,basic.9y,no,yes,no,cellular,jul,thu,40,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,high.school,no,no,no,cellular,jul,thu,10,20,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,no,yes,cellular,jul,thu,9,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,blue-collar,married,basic.6y,no,no,yes,cellular,jul,thu,92,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,thu,92,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,technician,married,high.school,unknown,no,no,telephone,jul,thu,130,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,jul,thu,18,40,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,83,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +49,management,married,basic.9y,unknown,no,yes,cellular,jul,thu,8,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,technician,single,professional.course,no,no,no,cellular,jul,thu,28,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,14,30,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,single,basic.9y,no,yes,no,cellular,jul,thu,8,27,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,telephone,jul,thu,443,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,yes,no,telephone,jul,thu,214,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,jul,thu,258,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,services,married,basic.6y,no,yes,no,cellular,jul,thu,86,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +30,services,single,high.school,no,yes,no,cellular,jul,thu,248,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,536,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,jul,thu,148,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,married,high.school,no,no,yes,cellular,jul,thu,18,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,management,single,university.degree,no,no,no,cellular,jul,thu,90,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,jul,thu,78,16,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,admin.,married,university.degree,no,yes,no,cellular,jul,thu,60,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +32,technician,married,university.degree,no,yes,yes,telephone,jul,thu,50,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,telephone,jul,thu,9,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,no,no,cellular,jul,thu,61,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,unknown,yes,no,cellular,jul,thu,5,2,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,high.school,no,yes,no,cellular,jul,thu,5,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,yes,cellular,jul,thu,12,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,jul,thu,1142,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +29,self-employed,single,university.degree,no,yes,yes,cellular,jul,thu,22,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,services,married,high.school,no,yes,yes,telephone,jul,thu,576,17,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,blue-collar,married,basic.9y,unknown,yes,no,cellular,jul,thu,28,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,blue-collar,married,basic.4y,unknown,yes,no,cellular,jul,thu,6,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,blue-collar,single,basic.4y,unknown,yes,no,cellular,jul,thu,6,12,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,420,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,55,15,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,jul,thu,76,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,blue-collar,married,unknown,no,yes,no,telephone,jul,thu,15,25,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,services,married,high.school,no,yes,yes,cellular,jul,thu,1721,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,yes +38,admin.,married,basic.6y,no,yes,no,telephone,jul,thu,39,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +25,student,single,high.school,no,no,no,cellular,jul,thu,85,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +55,retired,married,high.school,no,yes,no,cellular,jul,thu,32,24,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +58,blue-collar,married,basic.6y,unknown,yes,yes,telephone,jul,thu,31,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +53,self-employed,married,professional.course,no,yes,no,cellular,jul,thu,9,31,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,jul,thu,52,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +45,technician,married,basic.9y,unknown,no,no,cellular,jul,thu,31,22,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,thu,45,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +47,services,married,unknown,no,yes,no,cellular,jul,thu,43,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,jul,thu,84,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +38,admin.,married,basic.6y,no,yes,no,cellular,jul,thu,17,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +56,blue-collar,married,basic.6y,unknown,yes,no,cellular,jul,thu,28,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,thu,34,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +31,services,single,high.school,no,yes,no,cellular,jul,thu,48,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +37,admin.,married,high.school,no,yes,no,telephone,jul,thu,29,14,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,yes,no,cellular,jul,thu,27,13,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +29,technician,married,university.degree,no,no,no,cellular,jul,thu,652,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +51,retired,married,university.degree,unknown,no,no,cellular,jul,thu,110,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,jul,thu,19,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +34,technician,divorced,unknown,no,no,no,telephone,jul,thu,41,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,technician,married,professional.course,unknown,no,yes,cellular,jul,thu,6,10,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,blue-collar,married,professional.course,no,yes,no,cellular,jul,thu,12,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +33,admin.,single,professional.course,no,yes,no,cellular,jul,thu,143,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,services,married,high.school,no,yes,no,cellular,jul,thu,14,6,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,management,married,university.degree,unknown,yes,no,telephone,jul,thu,11,5,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +46,services,married,basic.9y,no,no,no,cellular,jul,thu,153,4,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +36,admin.,single,university.degree,no,no,yes,cellular,jul,thu,35,11,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +50,self-employed,married,professional.course,no,no,no,cellular,jul,thu,73,7,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +27,admin.,single,high.school,no,no,no,telephone,jul,thu,135,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +54,technician,married,basic.9y,no,no,yes,cellular,jul,thu,50,9,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +59,housemaid,married,basic.4y,no,no,yes,cellular,jul,thu,7,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +43,admin.,married,professional.course,unknown,no,no,cellular,jul,thu,127,3,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +28,blue-collar,married,basic.4y,unknown,no,yes,cellular,jul,thu,29,8,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +39,blue-collar,single,basic.4y,unknown,no,no,telephone,jul,thu,9,21,999,0,nonexistent,1.4,93.918,-42.7,4.968,5228.1,no +48,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,management,divorced,high.school,no,no,yes,cellular,aug,mon,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,mon,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,unknown,unknown,cellular,aug,mon,531,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +38,blue-collar,single,high.school,no,yes,no,cellular,aug,mon,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,management,divorced,high.school,no,yes,no,cellular,aug,mon,272,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,admin.,single,university.degree,no,no,no,cellular,aug,mon,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,self-employed,married,basic.4y,unknown,no,no,cellular,aug,mon,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,mon,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,mon,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,mon,53,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,mon,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,unknown,married,unknown,unknown,yes,no,cellular,aug,mon,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,admin.,married,university.degree,no,yes,no,cellular,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,436,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,mon,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,498,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,846,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes +48,blue-collar,married,university.degree,no,no,no,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,mon,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,mon,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,blue-collar,married,basic.9y,no,no,yes,cellular,aug,mon,221,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,aug,mon,629,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +56,admin.,married,basic.6y,no,yes,no,cellular,aug,mon,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,services,married,basic.9y,unknown,no,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +37,student,married,professional.course,no,no,no,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +56,blue-collar,married,basic.9y,no,unknown,unknown,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +47,services,married,high.school,no,no,no,cellular,aug,mon,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +51,technician,married,professional.course,no,no,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,telephone,aug,mon,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,retired,married,professional.course,no,yes,no,cellular,aug,mon,302,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,408,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +56,retired,married,university.degree,no,yes,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,technician,married,university.degree,unknown,no,no,cellular,aug,mon,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,housemaid,married,high.school,no,yes,no,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,housemaid,married,high.school,no,yes,no,telephone,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,mon,167,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,university.degree,unknown,no,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,university.degree,unknown,yes,no,cellular,aug,mon,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,technician,divorced,university.degree,no,yes,yes,cellular,aug,mon,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +39,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +47,entrepreneur,married,university.degree,no,yes,yes,cellular,aug,mon,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,admin.,divorced,university.degree,no,no,yes,cellular,aug,mon,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,management,married,university.degree,unknown,yes,no,cellular,aug,mon,372,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +38,technician,married,professional.course,no,no,no,cellular,aug,mon,606,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,mon,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,technician,married,professional.course,no,no,no,cellular,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,technician,single,high.school,no,no,no,cellular,aug,mon,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +31,technician,married,professional.course,unknown,no,no,cellular,aug,mon,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +39,technician,single,professional.course,unknown,no,no,cellular,aug,mon,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,unknown,married,basic.9y,no,no,no,cellular,aug,mon,307,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,services,married,professional.course,no,no,yes,cellular,aug,mon,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,services,married,professional.course,no,no,no,cellular,aug,mon,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,technician,single,professional.course,no,yes,yes,telephone,aug,mon,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,aug,mon,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,basic.6y,no,no,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +36,admin.,married,professional.course,no,no,no,cellular,aug,mon,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,unknown,married,unknown,no,yes,no,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,technician,divorced,professional.course,no,no,yes,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,retired,married,basic.4y,no,yes,no,telephone,aug,mon,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,679,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,315,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,admin.,married,high.school,no,no,no,cellular,aug,mon,20,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,retired,married,basic.4y,no,no,no,cellular,aug,mon,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,488,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,technician,single,professional.course,unknown,no,no,cellular,aug,mon,824,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,mon,506,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,technician,single,professional.course,no,no,yes,cellular,aug,mon,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,432,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,372,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,student,divorced,professional.course,no,no,no,cellular,aug,mon,1110,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes +35,technician,single,professional.course,no,yes,no,cellular,aug,mon,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,mon,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,unknown,married,unknown,no,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,unknown,married,unknown,unknown,yes,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,551,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,blue-collar,married,high.school,no,no,no,cellular,aug,mon,422,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,mon,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,unknown,married,unknown,no,yes,yes,cellular,aug,mon,653,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +37,management,married,university.degree,unknown,no,no,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +37,management,married,university.degree,unknown,no,no,cellular,aug,mon,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,yes,cellular,aug,mon,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +54,technician,divorced,high.school,no,no,no,cellular,aug,mon,86,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,admin.,married,high.school,no,yes,no,cellular,aug,mon,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,admin.,married,high.school,no,yes,no,cellular,aug,mon,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +39,technician,single,university.degree,no,yes,no,cellular,aug,mon,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,mon,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +39,housemaid,married,basic.4y,no,no,yes,cellular,aug,mon,357,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,282,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,aug,mon,144,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,unknown,married,unknown,no,no,no,cellular,aug,mon,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,services,married,professional.course,no,no,no,cellular,aug,mon,341,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +53,blue-collar,married,unknown,no,no,no,cellular,aug,mon,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +56,admin.,married,university.degree,no,yes,no,cellular,aug,mon,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,aug,mon,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,management,single,university.degree,no,yes,no,cellular,aug,mon,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,333,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +54,blue-collar,married,unknown,no,no,no,cellular,aug,mon,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,182,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,328,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,378,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,retired,married,professional.course,unknown,no,no,cellular,aug,mon,244,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +49,admin.,divorced,professional.course,no,yes,yes,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +57,admin.,married,high.school,no,no,no,cellular,aug,mon,958,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,aug,mon,99,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,170,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,technician,divorced,high.school,no,yes,yes,cellular,aug,mon,482,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,mon,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,190,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +47,services,married,high.school,no,yes,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +37,management,married,university.degree,unknown,no,no,cellular,aug,mon,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,technician,married,high.school,no,yes,no,cellular,aug,mon,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +54,technician,married,professional.course,unknown,no,yes,cellular,aug,mon,281,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,admin.,married,high.school,no,no,no,cellular,aug,mon,67,6,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,university.degree,unknown,yes,no,cellular,aug,mon,368,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,university.degree,unknown,yes,yes,cellular,aug,mon,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +40,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,198,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +59,retired,married,high.school,no,yes,no,cellular,aug,mon,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,mon,337,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +34,admin.,single,university.degree,no,no,yes,cellular,aug,mon,230,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +33,technician,divorced,professional.course,no,no,no,cellular,aug,mon,686,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,365,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,597,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,441,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,857,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,admin.,married,university.degree,no,no,yes,cellular,aug,mon,753,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,mon,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +44,services,married,professional.course,no,no,no,cellular,aug,mon,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +58,retired,married,professional.course,unknown,yes,no,cellular,aug,mon,410,4,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +60,retired,married,university.degree,unknown,no,no,cellular,aug,mon,430,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +48,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +59,retired,married,basic.4y,no,no,no,cellular,aug,mon,357,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +54,technician,married,university.degree,no,yes,no,telephone,aug,mon,652,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes +34,admin.,single,university.degree,no,no,no,cellular,aug,mon,177,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +30,unknown,married,university.degree,no,yes,no,cellular,aug,mon,183,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +52,management,married,university.degree,no,no,no,cellular,aug,mon,1488,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,yes +40,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +45,services,married,high.school,unknown,yes,no,cellular,aug,mon,413,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +50,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +47,technician,married,professional.course,no,no,no,cellular,aug,mon,428,2,999,0,nonexistent,1.4,93.444,-36.1,4.97,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,married,university.degree,no,yes,no,cellular,aug,tue,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,blue-collar,single,high.school,no,no,no,cellular,aug,tue,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,basic.9y,no,no,no,cellular,aug,tue,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,high.school,no,yes,no,cellular,aug,tue,276,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,retired,married,university.degree,no,yes,no,cellular,aug,tue,377,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,entrepreneur,married,university.degree,no,no,no,cellular,aug,tue,487,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +47,entrepreneur,married,university.degree,no,yes,no,cellular,aug,tue,641,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +52,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,126,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,high.school,no,no,yes,cellular,aug,tue,519,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,aug,tue,837,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +57,retired,married,basic.6y,no,no,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,unknown,married,basic.9y,no,no,no,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,admin.,married,high.school,no,yes,yes,cellular,aug,tue,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,admin.,married,high.school,no,yes,no,cellular,aug,tue,553,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +52,admin.,married,unknown,no,yes,no,cellular,aug,tue,976,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +38,technician,single,professional.course,no,yes,no,cellular,aug,tue,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,divorced,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,divorced,university.degree,no,no,yes,cellular,aug,tue,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,admin.,married,unknown,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,admin.,married,unknown,no,no,no,cellular,aug,tue,422,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,divorced,university.degree,no,no,yes,cellular,aug,tue,794,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +47,admin.,married,high.school,no,yes,no,cellular,aug,tue,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,technician,divorced,professional.course,no,no,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,241,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,technician,divorced,professional.course,no,no,no,cellular,aug,tue,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,divorced,professional.course,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,services,married,high.school,no,yes,no,cellular,aug,tue,836,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +41,technician,married,professional.course,no,no,no,cellular,aug,tue,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,tue,448,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,technician,married,professional.course,unknown,no,no,cellular,aug,tue,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,tue,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,171,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,545,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,management,married,high.school,unknown,no,no,cellular,aug,tue,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,1134,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +57,retired,married,professional.course,unknown,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,technician,married,high.school,no,yes,no,cellular,aug,tue,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,technician,single,professional.course,no,yes,no,cellular,aug,tue,164,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,technician,married,high.school,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,tue,607,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +39,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,328,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,university.degree,no,no,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,university.degree,no,no,no,cellular,aug,tue,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,married,university.degree,no,yes,yes,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,technician,divorced,high.school,unknown,no,no,cellular,aug,tue,162,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,single,professional.course,no,yes,no,cellular,aug,tue,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,single,professional.course,no,no,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,tue,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,management,married,university.degree,unknown,yes,no,cellular,aug,tue,268,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,tue,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,tue,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,tue,1186,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +58,services,married,unknown,unknown,yes,no,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,technician,married,professional.course,no,yes,no,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,790,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,married,professional.course,no,no,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,technician,married,professional.course,unknown,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,tue,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,tue,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,tue,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +55,admin.,married,professional.course,no,yes,yes,cellular,aug,tue,482,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,married,professional.course,no,no,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,tue,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,229,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,services,divorced,basic.6y,no,yes,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,technician,married,high.school,no,yes,no,cellular,aug,tue,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,technician,married,high.school,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,278,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,married,basic.4y,unknown,yes,yes,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,334,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,married,basic.4y,unknown,yes,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,unknown,married,university.degree,no,yes,no,cellular,aug,tue,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,unknown,married,basic.9y,no,yes,no,cellular,aug,tue,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,admin.,married,university.degree,no,yes,no,cellular,aug,tue,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,aug,tue,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,housemaid,married,basic.6y,no,no,no,cellular,aug,tue,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,720,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +44,technician,married,university.degree,no,yes,no,cellular,aug,tue,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,aug,tue,316,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,no,yes,cellular,aug,tue,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,tue,168,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,services,divorced,basic.6y,no,yes,no,cellular,aug,tue,683,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,935,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +45,technician,married,professional.course,unknown,no,no,cellular,aug,tue,320,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,technician,single,professional.course,no,no,no,cellular,aug,tue,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,unknown,no,no,cellular,aug,tue,241,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,622,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,no,yes,no,cellular,aug,tue,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,tue,531,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +42,technician,divorced,university.degree,no,yes,no,cellular,aug,tue,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,married,university.degree,no,no,yes,cellular,aug,tue,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,339,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,tue,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,tue,766,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +41,technician,married,university.degree,no,yes,no,cellular,aug,tue,27,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,229,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,tue,704,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,management,married,university.degree,no,no,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,management,married,university.degree,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,1311,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +37,admin.,single,professional.course,no,no,no,cellular,aug,tue,223,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,married,professional.course,no,no,yes,cellular,aug,tue,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,technician,married,professional.course,unknown,no,no,cellular,aug,tue,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,tue,109,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,housemaid,married,professional.course,no,yes,yes,cellular,aug,tue,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,unemployed,divorced,university.degree,unknown,no,no,cellular,aug,tue,307,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,tue,451,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,33,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +57,housemaid,married,unknown,no,no,no,cellular,aug,tue,318,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,technician,divorced,university.degree,unknown,no,no,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,blue-collar,married,high.school,no,no,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,tue,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,tue,344,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,services,married,high.school,no,yes,no,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,self-employed,married,basic.4y,unknown,no,no,telephone,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,divorced,professional.course,no,no,no,cellular,aug,tue,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,1332,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +54,technician,divorced,university.degree,no,no,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,tue,618,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,1110,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,admin.,married,university.degree,no,no,yes,cellular,aug,tue,445,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,technician,married,professional.course,unknown,yes,yes,cellular,aug,tue,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,385,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,married,professional.course,no,yes,no,cellular,aug,tue,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,technician,married,high.school,no,no,no,cellular,aug,tue,134,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,entrepreneur,married,professional.course,no,no,no,cellular,aug,tue,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,married,high.school,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,unknown,married,unknown,no,yes,no,cellular,aug,tue,214,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,married,university.degree,no,no,yes,cellular,aug,tue,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,tue,513,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,unknown,unknown,no,no,cellular,aug,tue,371,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +37,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,459,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,management,married,university.degree,no,yes,no,cellular,aug,tue,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,blue-collar,married,professional.course,no,no,yes,cellular,aug,tue,150,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,married,professional.course,unknown,no,no,cellular,aug,tue,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,1227,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,507,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,608,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,housemaid,married,university.degree,no,yes,no,cellular,aug,tue,295,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,admin.,married,high.school,no,no,no,cellular,aug,tue,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,tue,307,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,tue,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,1197,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,1208,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,tue,223,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,professional.course,no,yes,no,cellular,aug,tue,996,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,92,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +57,retired,married,high.school,no,no,no,cellular,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,self-employed,married,professional.course,no,yes,no,telephone,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,wed,314,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,wed,384,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,housemaid,single,university.degree,unknown,yes,no,cellular,aug,wed,46,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,1357,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +44,admin.,married,basic.4y,unknown,yes,no,cellular,aug,wed,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,technician,single,university.degree,no,yes,yes,cellular,aug,wed,455,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,146,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,wed,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,aug,wed,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,divorced,professional.course,no,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +58,retired,married,university.degree,unknown,yes,yes,cellular,aug,wed,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,services,married,high.school,no,yes,no,cellular,aug,wed,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +32,technician,single,professional.course,no,no,no,cellular,aug,wed,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +58,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,84,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,management,married,university.degree,no,no,no,cellular,aug,wed,902,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +46,admin.,married,university.degree,no,no,no,cellular,aug,wed,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,management,married,university.degree,no,no,yes,cellular,aug,wed,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,wed,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +38,technician,married,professional.course,no,no,yes,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,self-employed,married,basic.9y,no,no,no,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,services,married,high.school,unknown,yes,no,cellular,aug,wed,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,wed,898,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,technician,married,high.school,unknown,unknown,unknown,cellular,aug,wed,637,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +46,admin.,married,high.school,no,unknown,unknown,cellular,aug,wed,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,high.school,no,no,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,aug,wed,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,technician,single,university.degree,no,yes,no,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,technician,single,university.degree,no,no,no,cellular,aug,wed,254,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,technician,married,professional.course,unknown,no,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,married,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,services,married,high.school,unknown,yes,yes,cellular,aug,wed,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,yes,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,501,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +52,technician,married,high.school,no,yes,yes,cellular,aug,wed,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,unemployed,married,high.school,unknown,yes,no,cellular,aug,wed,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,technician,single,university.degree,no,no,no,cellular,aug,wed,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,wed,499,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,aug,wed,720,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +34,admin.,married,university.degree,no,no,no,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,high.school,no,yes,yes,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,professional.course,no,yes,yes,cellular,aug,wed,952,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +31,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,admin.,married,high.school,no,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,unemployed,married,professional.course,unknown,yes,no,cellular,aug,wed,397,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +46,self-employed,married,basic.9y,unknown,yes,yes,cellular,aug,wed,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,technician,married,high.school,no,yes,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,wed,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,wed,281,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,self-employed,married,university.degree,no,yes,yes,cellular,aug,wed,585,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,technician,married,professional.course,unknown,no,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +40,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +40,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +55,technician,married,university.degree,no,no,yes,cellular,aug,wed,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +55,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +36,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,admin.,divorced,high.school,unknown,no,no,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,admin.,divorced,high.school,unknown,no,yes,cellular,aug,wed,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,married,high.school,unknown,no,no,cellular,aug,wed,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,technician,single,high.school,no,yes,no,cellular,aug,wed,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,technician,married,professional.course,no,no,no,cellular,aug,wed,467,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,225,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,wed,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,technician,single,high.school,no,yes,yes,cellular,aug,wed,763,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +31,technician,married,professional.course,no,yes,yes,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,married,university.degree,no,unknown,unknown,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,married,university.degree,no,no,no,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,admin.,married,high.school,no,yes,no,cellular,aug,wed,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,management,married,university.degree,no,yes,yes,cellular,aug,wed,649,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +50,admin.,single,university.degree,no,yes,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,technician,married,professional.course,no,no,no,cellular,aug,wed,221,9,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,wed,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,technician,married,high.school,no,yes,no,cellular,aug,wed,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,technician,married,high.school,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,302,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,unemployed,married,high.school,unknown,yes,yes,cellular,aug,wed,400,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,375,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,technician,married,high.school,no,yes,no,cellular,aug,wed,329,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,blue-collar,married,professional.course,no,yes,no,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,technician,single,professional.course,no,no,no,cellular,aug,wed,341,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +38,admin.,single,high.school,no,yes,no,cellular,aug,wed,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +38,admin.,single,high.school,no,no,no,cellular,aug,wed,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,admin.,single,university.degree,no,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,married,high.school,unknown,no,yes,cellular,aug,wed,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,547,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,wed,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,unknown,married,unknown,no,yes,no,cellular,aug,wed,174,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,high.school,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,high.school,no,no,no,cellular,aug,wed,232,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +57,blue-collar,married,unknown,unknown,yes,no,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,wed,199,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,179,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,wed,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,aug,wed,2191,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +57,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,wed,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,technician,married,professional.course,unknown,unknown,unknown,cellular,aug,wed,275,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,388,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +55,retired,married,basic.4y,unknown,yes,yes,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +59,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,divorced,professional.course,no,yes,no,cellular,aug,wed,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,unemployed,married,high.school,unknown,yes,no,cellular,aug,wed,344,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,1044,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +33,technician,single,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,wed,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,wed,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,wed,290,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,wed,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,365,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,384,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,wed,732,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,technician,divorced,university.degree,no,yes,yes,cellular,aug,wed,100,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,admin.,married,high.school,no,no,no,cellular,aug,wed,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,university.degree,no,unknown,unknown,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,retired,married,basic.9y,no,yes,no,cellular,aug,wed,45,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,wed,411,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,188,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,technician,single,professional.course,no,yes,no,cellular,aug,wed,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,entrepreneur,married,basic.9y,no,no,no,cellular,aug,wed,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,entrepreneur,married,basic.9y,no,no,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +56,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,admin.,married,professional.course,no,no,no,cellular,aug,wed,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +56,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,admin.,divorced,high.school,no,no,no,cellular,aug,wed,170,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,aug,wed,312,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,438,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,retired,married,basic.9y,no,yes,no,cellular,aug,wed,601,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,39,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +58,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,management,married,university.degree,unknown,no,no,cellular,aug,wed,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,high.school,no,no,no,cellular,aug,wed,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +59,technician,married,professional.course,no,no,no,cellular,aug,wed,378,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +55,admin.,married,university.degree,unknown,no,yes,cellular,aug,wed,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,432,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +56,retired,married,basic.4y,no,yes,no,cellular,aug,wed,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,professional.course,no,yes,no,telephone,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,aug,wed,851,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,wed,291,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,wed,224,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +60,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,wed,996,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +34,technician,married,university.degree,no,yes,yes,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +51,technician,married,high.school,unknown,no,no,cellular,aug,wed,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +36,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,wed,175,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +50,admin.,married,university.degree,no,no,no,cellular,aug,wed,536,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +44,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,1552,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +48,blue-collar,married,unknown,no,yes,yes,cellular,aug,wed,742,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +54,technician,married,professional.course,no,no,no,cellular,aug,wed,171,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,203,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,132,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,management,married,high.school,no,no,no,cellular,aug,wed,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,unknown,married,unknown,unknown,no,no,cellular,aug,wed,245,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,admin.,single,university.degree,no,unknown,unknown,cellular,aug,wed,311,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,technician,single,professional.course,no,no,yes,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,management,married,university.degree,no,yes,no,cellular,aug,wed,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,admin.,divorced,high.school,no,yes,yes,cellular,aug,wed,192,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,aug,wed,275,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,269,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,wed,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,admin.,married,professional.course,no,yes,no,cellular,aug,wed,276,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,management,married,university.degree,no,yes,no,cellular,aug,wed,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,entrepreneur,married,university.degree,no,no,no,cellular,aug,wed,83,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,management,married,university.degree,no,yes,no,cellular,aug,wed,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,459,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,739,1,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +42,admin.,married,university.degree,no,no,no,cellular,aug,wed,21,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,252,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +46,management,married,high.school,no,no,no,cellular,aug,wed,322,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +43,technician,married,professional.course,unknown,no,no,cellular,aug,wed,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +58,retired,married,professional.course,no,yes,no,cellular,aug,wed,406,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,wed,395,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,aug,wed,286,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +57,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +43,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +59,retired,married,high.school,no,no,no,cellular,aug,wed,292,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +48,admin.,married,high.school,unknown,no,no,cellular,aug,wed,562,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +34,admin.,divorced,high.school,no,no,no,cellular,aug,wed,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +53,technician,single,professional.course,no,no,no,cellular,aug,wed,293,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +54,retired,married,high.school,no,no,no,cellular,aug,wed,543,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,wed,685,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,technician,married,high.school,no,yes,yes,cellular,aug,wed,45,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +45,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +35,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,wed,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +43,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,wed,426,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,services,married,professional.course,unknown,no,yes,cellular,aug,wed,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,236,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,aug,wed,626,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +41,technician,married,high.school,no,yes,yes,cellular,aug,wed,105,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,275,9,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +55,admin.,married,university.degree,no,no,no,cellular,aug,wed,54,6,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,226,5,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +29,management,married,university.degree,no,no,yes,cellular,aug,wed,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,entrepreneur,married,basic.6y,unknown,no,no,telephone,aug,wed,244,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +30,self-employed,single,university.degree,no,yes,yes,cellular,aug,wed,131,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +39,technician,married,high.school,no,yes,yes,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +47,management,married,university.degree,no,yes,yes,cellular,aug,wed,135,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +49,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +31,technician,single,university.degree,no,yes,yes,cellular,aug,wed,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +52,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,1250,4,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +42,technician,married,professional.course,no,yes,yes,cellular,aug,wed,40,2,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,no +43,admin.,single,university.degree,no,no,yes,cellular,aug,wed,1471,7,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +46,management,married,high.school,no,yes,yes,cellular,aug,wed,1456,3,999,0,nonexistent,1.4,93.444,-36.1,4.967,5228.1,yes +35,technician,married,professional.course,no,yes,yes,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,thu,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,technician,divorced,professional.course,no,no,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,unemployed,married,high.school,no,no,no,cellular,aug,thu,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,297,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,technician,married,high.school,no,no,no,cellular,aug,thu,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,married,unknown,unknown,yes,yes,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,technician,married,high.school,unknown,no,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,aug,thu,1288,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +36,admin.,married,university.degree,no,no,no,cellular,aug,thu,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,420,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,single,professional.course,no,no,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,single,professional.course,no,yes,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,267,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,no,yes,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,318,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,402,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,no,no,cellular,aug,thu,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,thu,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,single,university.degree,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,no,no,cellular,aug,thu,666,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,395,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,326,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,single,university.degree,no,yes,no,cellular,aug,thu,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,admin.,married,high.school,no,no,no,cellular,aug,thu,663,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +51,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,student,single,university.degree,no,no,no,cellular,aug,thu,387,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,thu,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,single,professional.course,no,yes,no,cellular,aug,thu,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,thu,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,1056,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,aug,thu,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,services,single,high.school,no,yes,no,cellular,aug,thu,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,student,single,university.degree,no,yes,yes,cellular,aug,thu,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,self-employed,married,basic.4y,no,no,yes,cellular,aug,thu,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,admin.,married,unknown,no,no,no,cellular,aug,thu,262,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,274,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,technician,married,university.degree,no,yes,yes,cellular,aug,thu,22,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,thu,309,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,single,professional.course,no,no,no,cellular,aug,thu,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,yes,yes,cellular,aug,thu,30,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,1462,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,yes,yes,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,thu,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,technician,single,high.school,no,no,no,cellular,aug,thu,225,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,228,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,thu,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,thu,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,566,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +45,blue-collar,married,professional.course,no,yes,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,1834,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,thu,148,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,retired,married,high.school,unknown,yes,no,cellular,aug,thu,674,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +43,admin.,single,university.degree,no,no,yes,cellular,aug,thu,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,no,yes,cellular,aug,thu,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,1327,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,46,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,services,single,high.school,no,yes,no,cellular,aug,thu,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,retired,married,professional.course,no,no,no,cellular,aug,thu,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,retired,married,professional.course,no,yes,yes,cellular,aug,thu,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,divorced,university.degree,no,yes,yes,cellular,aug,thu,526,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +33,technician,married,high.school,no,no,yes,cellular,aug,thu,401,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +48,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,divorced,university.degree,no,no,no,cellular,aug,thu,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,divorced,university.degree,no,no,no,cellular,aug,thu,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,housemaid,divorced,basic.9y,no,yes,no,cellular,aug,thu,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,single,university.degree,unknown,no,yes,cellular,aug,thu,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,thu,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,management,married,university.degree,unknown,yes,yes,cellular,aug,thu,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,thu,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,thu,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,services,married,basic.4y,unknown,no,no,cellular,aug,thu,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,services,married,basic.4y,unknown,yes,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,single,high.school,no,yes,no,cellular,aug,thu,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,single,high.school,no,no,yes,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,single,high.school,no,unknown,unknown,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,single,high.school,no,no,no,cellular,aug,thu,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,married,basic.9y,unknown,no,yes,cellular,aug,thu,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,management,married,university.degree,no,yes,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,493,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,admin.,married,basic.6y,unknown,no,no,cellular,aug,thu,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,services,married,basic.6y,no,yes,no,cellular,aug,thu,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,admin.,single,university.degree,no,yes,no,cellular,aug,thu,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,blue-collar,single,high.school,no,yes,no,cellular,aug,thu,296,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,married,high.school,no,no,no,cellular,aug,thu,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,thu,14,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,single,university.degree,no,no,no,cellular,aug,thu,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,thu,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,aug,thu,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,unemployed,divorced,university.degree,unknown,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,single,high.school,no,yes,yes,cellular,aug,thu,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,unemployed,divorced,university.degree,unknown,yes,no,cellular,aug,thu,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,self-employed,married,basic.4y,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,retired,married,high.school,no,unknown,unknown,telephone,aug,thu,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,single,university.degree,no,no,no,cellular,aug,thu,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,university.degree,no,no,no,cellular,aug,thu,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,thu,112,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,single,high.school,no,no,yes,cellular,aug,thu,216,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,retired,married,high.school,unknown,yes,no,cellular,aug,thu,252,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,services,married,professional.course,unknown,yes,no,cellular,aug,thu,133,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,aug,thu,84,10,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,services,married,basic.4y,unknown,no,yes,cellular,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,self-employed,married,basic.4y,no,yes,yes,cellular,aug,thu,266,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,married,high.school,no,no,no,cellular,aug,thu,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,services,single,professional.course,no,yes,yes,cellular,aug,thu,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,thu,643,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,technician,married,professional.course,no,yes,no,cellular,aug,thu,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,technician,married,professional.course,no,yes,no,cellular,aug,thu,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,management,married,university.degree,unknown,yes,no,cellular,aug,thu,109,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,228,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,30,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,management,married,university.degree,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,management,married,university.degree,no,no,no,cellular,aug,thu,1321,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +45,self-employed,married,basic.4y,no,yes,yes,cellular,aug,thu,797,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +50,admin.,married,university.degree,no,no,no,cellular,aug,thu,407,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,high.school,no,no,no,cellular,aug,thu,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,services,married,unknown,no,yes,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,admin.,divorced,university.degree,no,no,yes,cellular,aug,thu,205,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,aug,thu,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +54,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,218,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,entrepreneur,married,university.degree,no,no,no,cellular,aug,thu,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,admin.,married,basic.9y,no,no,no,cellular,aug,thu,73,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,admin.,married,high.school,no,yes,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,admin.,married,high.school,no,no,no,cellular,aug,thu,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,management,married,university.degree,no,no,yes,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,self-employed,married,basic.4y,no,no,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,thu,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,services,married,basic.4y,unknown,no,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,unemployed,married,professional.course,unknown,no,no,cellular,aug,thu,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,technician,married,professional.course,no,no,no,cellular,aug,thu,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,student,married,professional.course,unknown,yes,no,cellular,aug,thu,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,student,married,professional.course,unknown,no,no,cellular,aug,thu,266,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,admin.,single,university.degree,no,no,no,telephone,aug,thu,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,high.school,no,no,no,cellular,aug,thu,3422,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,238,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,unknown,married,unknown,unknown,no,no,cellular,aug,thu,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,thu,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,university.degree,no,yes,no,cellular,aug,thu,20,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,management,married,university.degree,no,no,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,self-employed,married,university.degree,no,no,no,cellular,aug,thu,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,single,professional.course,no,yes,yes,cellular,aug,thu,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,services,single,high.school,no,yes,no,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +57,technician,married,high.school,no,no,no,cellular,aug,thu,1230,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,divorced,high.school,no,yes,no,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +57,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,446,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +54,admin.,married,university.degree,no,yes,no,cellular,aug,thu,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,housemaid,married,high.school,unknown,no,no,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,housemaid,married,high.school,unknown,yes,no,cellular,aug,thu,481,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,married,professional.course,unknown,no,no,cellular,aug,thu,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +54,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,thu,429,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +57,admin.,single,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,admin.,single,university.degree,no,yes,no,cellular,aug,thu,408,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,198,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,entrepreneur,married,professional.course,no,yes,yes,cellular,aug,thu,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +41,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,339,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,thu,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,married,high.school,no,yes,no,cellular,aug,thu,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,162,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,management,married,high.school,no,no,no,cellular,aug,thu,402,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +47,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,235,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +36,admin.,married,high.school,unknown,no,no,cellular,aug,thu,324,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,aug,thu,876,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +48,admin.,married,university.degree,no,yes,no,cellular,aug,thu,321,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,524,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,122,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,409,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,unknown,unknown,unknown,unknown,cellular,aug,thu,642,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,admin.,married,basic.9y,no,no,no,cellular,aug,thu,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +55,retired,married,professional.course,no,yes,no,cellular,aug,thu,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1934,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,married,professional.course,no,yes,no,cellular,aug,thu,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,technician,married,high.school,no,yes,no,cellular,aug,thu,452,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,admin.,married,basic.9y,no,no,no,cellular,aug,thu,524,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,technician,married,professional.course,no,yes,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +42,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,51,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +52,technician,single,professional.course,no,yes,no,cellular,aug,thu,365,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,management,married,high.school,no,no,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +60,retired,married,professional.course,no,yes,no,cellular,aug,thu,448,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,telephone,aug,thu,262,7,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,37,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,aug,thu,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,336,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +55,admin.,married,unknown,unknown,yes,no,cellular,aug,thu,197,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,self-employed,married,university.degree,no,no,no,cellular,aug,thu,242,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,773,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,unemployed,married,professional.course,unknown,yes,no,cellular,aug,thu,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,1336,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +45,blue-collar,married,high.school,unknown,no,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,admin.,married,university.degree,no,no,yes,cellular,aug,thu,260,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,unemployed,married,professional.course,unknown,yes,no,cellular,aug,thu,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +50,entrepreneur,married,professional.course,unknown,yes,no,cellular,aug,thu,293,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +44,self-employed,married,university.degree,no,no,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +37,housemaid,married,high.school,unknown,no,yes,cellular,aug,thu,534,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,158,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,housemaid,married,basic.6y,no,yes,no,cellular,aug,thu,256,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +58,unemployed,married,professional.course,unknown,no,no,cellular,aug,thu,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,259,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,thu,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,452,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,yes +36,admin.,married,high.school,unknown,yes,yes,cellular,aug,thu,163,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,technician,married,university.degree,no,no,no,telephone,aug,thu,430,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,thu,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +45,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,163,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,technician,married,university.degree,no,yes,yes,cellular,aug,thu,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,management,married,university.degree,no,yes,no,telephone,aug,thu,35,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,thu,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,152,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,385,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +59,unemployed,married,professional.course,no,no,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,thu,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +56,admin.,married,basic.4y,no,no,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,married,high.school,no,no,no,cellular,aug,thu,390,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,aug,thu,185,4,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,services,married,basic.6y,no,yes,no,cellular,aug,thu,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,218,6,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +46,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,721,5,999,0,nonexistent,1.4,93.444,-36.1,4.968,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,201,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,management,married,high.school,no,no,no,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,technician,married,high.school,unknown,yes,no,cellular,aug,fri,152,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,self-employed,married,university.degree,no,no,no,cellular,aug,fri,36,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,90,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,fri,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,fri,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,fri,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +31,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,entrepreneur,married,university.degree,no,no,no,cellular,aug,fri,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,entrepreneur,married,professional.course,unknown,yes,no,cellular,aug,fri,1306,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +35,technician,married,high.school,no,no,no,telephone,aug,fri,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +31,admin.,married,university.degree,no,no,yes,cellular,aug,fri,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,fri,188,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,married,professional.course,unknown,yes,no,cellular,aug,fri,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,high.school,no,no,no,cellular,aug,fri,52,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,550,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,services,married,high.school,no,no,no,cellular,aug,fri,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,technician,divorced,professional.course,no,no,yes,cellular,aug,fri,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,unemployed,married,professional.course,unknown,no,no,cellular,aug,fri,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,unemployed,married,professional.course,unknown,yes,no,cellular,aug,fri,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,retired,married,professional.course,no,yes,no,cellular,aug,fri,282,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,high.school,unknown,no,no,cellular,aug,fri,442,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,fri,299,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,housemaid,married,basic.9y,no,yes,no,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,technician,married,university.degree,unknown,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,fri,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,high.school,no,no,no,cellular,aug,fri,161,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,entrepreneur,married,basic.9y,no,no,no,cellular,aug,fri,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,management,married,university.degree,no,yes,no,cellular,aug,fri,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,admin.,married,high.school,no,yes,no,cellular,aug,fri,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,technician,married,high.school,no,yes,yes,cellular,aug,fri,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,60,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,retired,married,high.school,no,yes,no,cellular,aug,fri,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,services,married,high.school,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,129,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,services,married,high.school,no,yes,yes,cellular,aug,fri,502,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,technician,married,professional.course,unknown,no,no,cellular,aug,fri,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,fri,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,management,married,university.degree,no,no,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,management,married,university.degree,no,no,no,cellular,aug,fri,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,married,professional.course,unknown,no,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,85,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,admin.,divorced,high.school,no,no,no,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,technician,divorced,professional.course,no,no,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +56,housemaid,married,basic.4y,unknown,no,no,cellular,aug,fri,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,management,married,university.degree,no,no,no,cellular,aug,fri,261,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,technician,single,university.degree,no,yes,yes,cellular,aug,fri,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,258,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,services,married,high.school,no,yes,no,cellular,aug,fri,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,technician,married,university.degree,unknown,no,no,cellular,aug,fri,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,994,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +57,technician,married,high.school,unknown,no,yes,cellular,aug,fri,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,single,university.degree,no,no,no,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,professional.course,no,no,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,professional.course,no,no,no,cellular,aug,fri,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,management,married,high.school,unknown,yes,no,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,169,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,fri,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +56,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,507,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +36,technician,married,professional.course,no,yes,no,cellular,aug,fri,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,professional.course,no,yes,no,cellular,aug,fri,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,single,university.degree,no,no,no,cellular,aug,fri,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,self-employed,single,university.degree,no,yes,no,cellular,aug,fri,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,257,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,technician,married,high.school,unknown,no,no,cellular,aug,fri,784,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +37,admin.,single,university.degree,no,no,no,cellular,aug,fri,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,172,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,aug,fri,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,admin.,married,high.school,no,yes,no,cellular,aug,fri,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,admin.,married,high.school,unknown,no,no,cellular,aug,fri,45,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,249,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,fri,472,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,admin.,married,high.school,unknown,yes,yes,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,high.school,no,no,no,cellular,aug,fri,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,aug,fri,353,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,professional.course,unknown,no,no,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,high.school,no,no,no,cellular,aug,fri,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,admin.,married,professional.course,no,yes,no,cellular,aug,fri,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,housemaid,married,university.degree,unknown,no,yes,cellular,aug,fri,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,admin.,married,professional.course,no,no,no,cellular,aug,fri,385,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,fri,233,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,admin.,married,university.degree,no,yes,no,cellular,aug,fri,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,entrepreneur,married,high.school,no,unknown,unknown,cellular,aug,fri,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,services,married,basic.4y,no,no,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,services,married,high.school,unknown,yes,yes,cellular,aug,fri,34,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,services,married,high.school,unknown,yes,yes,cellular,aug,fri,324,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,technician,married,professional.course,unknown,unknown,unknown,cellular,aug,fri,254,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,316,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,809,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +60,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,admin.,married,high.school,unknown,no,no,cellular,aug,fri,49,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,523,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +39,management,married,university.degree,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,technician,married,university.degree,no,no,no,cellular,aug,fri,321,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,management,married,university.degree,no,no,no,cellular,aug,fri,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,self-employed,married,professional.course,no,no,no,cellular,aug,fri,309,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,admin.,married,basic.9y,no,no,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,admin.,married,basic.9y,no,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +55,admin.,married,professional.course,no,yes,no,cellular,aug,fri,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,433,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,university.degree,no,unknown,unknown,cellular,aug,fri,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,technician,married,university.degree,no,yes,no,cellular,aug,fri,103,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,admin.,married,university.degree,no,no,yes,cellular,aug,fri,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,admin.,married,high.school,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,fri,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,521,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,fri,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,fri,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,fri,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,fri,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,technician,married,high.school,no,yes,no,cellular,aug,fri,419,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +34,technician,married,professional.course,no,no,yes,cellular,aug,fri,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,fri,385,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,admin.,married,high.school,unknown,unknown,unknown,cellular,aug,fri,215,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,single,professional.course,no,no,yes,cellular,aug,fri,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,technician,single,university.degree,no,yes,no,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,services,married,high.school,unknown,yes,no,cellular,aug,fri,629,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,82,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,university.degree,no,no,yes,cellular,aug,fri,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,876,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,admin.,married,high.school,unknown,no,no,cellular,aug,fri,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,single,professional.course,no,yes,yes,cellular,aug,fri,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,single,high.school,no,yes,no,cellular,aug,fri,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,services,married,high.school,no,yes,no,cellular,aug,fri,236,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,fri,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,technician,divorced,high.school,unknown,yes,no,cellular,aug,fri,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,fri,445,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,148,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,technician,married,university.degree,no,no,yes,cellular,aug,fri,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,admin.,married,basic.9y,unknown,no,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,single,university.degree,no,no,yes,telephone,aug,fri,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,362,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,services,married,basic.6y,no,yes,no,cellular,aug,fri,16,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,high.school,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +60,admin.,married,university.degree,no,no,no,cellular,aug,fri,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,fri,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,310,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,retired,married,unknown,unknown,no,no,cellular,aug,fri,153,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,divorced,professional.course,no,no,no,cellular,aug,fri,780,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +48,technician,married,university.degree,unknown,no,no,cellular,aug,fri,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,single,high.school,unknown,no,no,telephone,aug,fri,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,professional.course,unknown,no,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,professional.course,unknown,no,no,cellular,aug,fri,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,459,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +30,technician,single,professional.course,no,no,no,cellular,aug,fri,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,aug,fri,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,aug,fri,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,fri,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,divorced,high.school,no,no,no,cellular,aug,fri,178,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,fri,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,services,married,professional.course,no,no,yes,cellular,aug,fri,173,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,technician,married,university.degree,no,no,no,cellular,aug,fri,74,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,1000,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,494,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,172,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,273,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,divorced,university.degree,no,no,no,cellular,aug,fri,519,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,divorced,high.school,no,yes,yes,cellular,aug,fri,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,entrepreneur,married,university.degree,no,no,no,cellular,aug,fri,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,fri,52,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,housemaid,married,basic.4y,no,yes,no,cellular,aug,fri,448,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,admin.,married,high.school,no,no,no,cellular,aug,fri,528,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,733,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +52,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,fri,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,fri,580,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +38,technician,married,professional.course,no,no,no,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,single,professional.course,no,no,no,cellular,aug,fri,72,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,fri,258,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,aug,fri,848,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +58,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,aug,fri,406,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,fri,229,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,604,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,self-employed,married,university.degree,no,no,no,cellular,aug,fri,1242,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +53,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,899,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,services,married,high.school,unknown,yes,no,cellular,aug,fri,889,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,420,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,housemaid,married,basic.6y,unknown,no,no,cellular,aug,fri,71,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,retired,married,basic.9y,unknown,yes,no,cellular,aug,fri,27,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,blue-collar,married,high.school,no,no,no,cellular,aug,fri,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,professional.course,unknown,no,yes,cellular,aug,fri,498,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,self-employed,married,university.degree,no,no,yes,cellular,aug,fri,327,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,self-employed,married,professional.course,no,unknown,unknown,cellular,aug,fri,179,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,aug,fri,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +57,retired,married,basic.9y,unknown,yes,no,cellular,aug,fri,189,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,455,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,technician,married,high.school,no,yes,yes,cellular,aug,fri,390,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,management,married,university.degree,no,no,no,cellular,aug,fri,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,fri,922,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +42,self-employed,married,university.degree,no,no,no,cellular,aug,fri,1206,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +42,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,divorced,professional.course,no,no,no,cellular,aug,fri,424,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,entrepreneur,married,university.degree,no,unknown,unknown,cellular,aug,fri,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,492,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,divorced,high.school,no,no,no,cellular,aug,fri,174,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,453,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,263,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,57,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,329,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,fri,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,fri,334,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,admin.,divorced,high.school,no,no,yes,cellular,aug,fri,1567,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,blue-collar,married,high.school,no,yes,no,cellular,aug,fri,765,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +43,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,high.school,no,no,no,cellular,aug,fri,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,admin.,married,university.degree,no,no,yes,cellular,aug,fri,14,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,self-employed,married,university.degree,no,no,no,cellular,aug,fri,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,divorced,university.degree,no,yes,yes,cellular,aug,fri,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,17,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,retired,married,high.school,no,yes,no,cellular,aug,fri,293,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,445,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,married,high.school,unknown,no,no,cellular,aug,fri,262,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,fri,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,mon,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,high.school,no,no,no,cellular,aug,mon,46,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,entrepreneur,married,university.degree,unknown,yes,no,cellular,aug,mon,343,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,technician,married,professional.course,no,yes,no,telephone,aug,mon,697,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,no,yes,no,cellular,aug,mon,67,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,divorced,high.school,no,yes,no,cellular,aug,mon,171,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,aug,mon,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,326,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,married,high.school,no,no,no,cellular,aug,mon,70,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,mon,716,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,367,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,255,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,258,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,single,university.degree,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,management,married,university.degree,no,yes,no,cellular,aug,mon,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,technician,married,professional.course,no,no,no,cellular,aug,mon,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,single,high.school,no,no,no,cellular,aug,mon,177,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,single,university.degree,no,no,no,cellular,aug,mon,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,high.school,unknown,yes,yes,telephone,aug,mon,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,divorced,high.school,no,no,no,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,mon,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,admin.,married,high.school,no,yes,no,cellular,aug,mon,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,yes,cellular,aug,mon,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,no,yes,yes,cellular,aug,mon,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,588,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,management,married,university.degree,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,unknown,married,basic.4y,no,yes,no,cellular,aug,mon,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,high.school,no,no,no,cellular,aug,mon,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,aug,mon,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,303,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,admin.,married,university.degree,no,unknown,unknown,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,retired,married,basic.9y,unknown,no,yes,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,667,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,mon,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,services,married,high.school,unknown,no,no,cellular,aug,mon,33,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,mon,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,university.degree,no,no,no,cellular,aug,mon,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,yes,yes,cellular,aug,mon,382,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,mon,47,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,housemaid,married,university.degree,unknown,no,yes,cellular,aug,mon,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,unemployed,single,university.degree,no,no,no,cellular,aug,mon,386,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +36,technician,married,professional.course,no,yes,no,cellular,aug,mon,45,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,high.school,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,high.school,no,no,no,cellular,aug,mon,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,married,professional.course,unknown,no,yes,cellular,aug,mon,607,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,management,divorced,university.degree,no,yes,no,cellular,aug,mon,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,mon,505,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,mon,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,aug,mon,758,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,admin.,married,university.degree,no,no,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,mon,565,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,172,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,mon,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,self-employed,married,professional.course,no,no,no,cellular,aug,mon,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,self-employed,married,professional.course,no,yes,no,cellular,aug,mon,323,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,mon,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,services,married,high.school,unknown,no,no,cellular,aug,mon,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,unknown,yes,yes,cellular,aug,mon,243,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,mon,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,aug,mon,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,high.school,unknown,yes,no,cellular,aug,mon,102,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,555,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +50,admin.,married,basic.4y,unknown,yes,no,cellular,aug,mon,179,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,mon,187,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,services,married,high.school,unknown,no,no,cellular,aug,mon,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,275,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,high.school,no,no,no,cellular,aug,mon,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,high.school,unknown,yes,no,cellular,aug,mon,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,university.degree,no,yes,no,cellular,aug,mon,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,single,university.degree,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,divorced,high.school,no,yes,no,cellular,aug,mon,384,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +51,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,single,professional.course,no,no,no,cellular,aug,mon,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,retired,married,basic.4y,no,no,no,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,aug,mon,237,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,retired,married,basic.4y,no,no,no,cellular,aug,mon,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,technician,single,high.school,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,no,no,yes,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,mon,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,mon,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,divorced,high.school,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,high.school,no,yes,no,cellular,aug,mon,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,single,high.school,no,no,no,cellular,aug,mon,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,mon,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,309,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,management,married,university.degree,no,yes,no,cellular,aug,mon,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,545,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +39,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,316,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,management,married,university.degree,no,no,no,cellular,aug,mon,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,married,university.degree,no,yes,no,cellular,aug,mon,204,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,yes,cellular,aug,mon,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,technician,married,professional.course,no,unknown,unknown,cellular,aug,mon,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,no,yes,no,cellular,aug,mon,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,mon,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,mon,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,mon,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,aug,mon,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,mon,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,no,yes,yes,cellular,aug,mon,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,no,yes,yes,cellular,aug,mon,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,single,professional.course,no,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,1070,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +36,technician,single,professional.course,no,no,no,cellular,aug,mon,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,mon,610,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +34,technician,married,professional.course,unknown,no,no,cellular,aug,mon,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,management,married,university.degree,unknown,no,no,cellular,aug,mon,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,unknown,yes,no,cellular,aug,mon,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,management,married,university.degree,unknown,yes,no,cellular,aug,mon,699,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,591,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,high.school,no,no,no,cellular,aug,mon,452,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,high.school,no,no,no,cellular,aug,mon,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,management,married,high.school,no,no,no,cellular,aug,mon,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,high.school,no,yes,yes,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,management,married,university.degree,no,yes,no,cellular,aug,mon,389,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,917,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +37,technician,married,professional.course,no,no,no,cellular,aug,mon,275,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,high.school,unknown,no,no,cellular,aug,mon,36,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,247,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,mon,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,104,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.6y,no,no,no,cellular,aug,mon,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,272,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,single,university.degree,no,no,no,cellular,aug,mon,1099,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,university.degree,no,no,yes,cellular,aug,mon,331,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,high.school,no,no,no,cellular,aug,mon,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,mon,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,admin.,married,university.degree,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,mon,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,management,married,university.degree,no,yes,no,cellular,aug,mon,230,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,married,high.school,no,yes,no,cellular,aug,mon,289,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,aug,mon,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,mon,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,services,married,basic.9y,no,no,no,cellular,aug,mon,744,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,aug,mon,608,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,married,high.school,no,yes,no,cellular,aug,mon,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,services,married,high.school,unknown,no,no,cellular,aug,mon,33,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,mon,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,management,married,high.school,no,yes,no,telephone,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,high.school,no,yes,no,cellular,aug,mon,566,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,single,professional.course,no,no,no,cellular,aug,mon,468,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,mon,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,high.school,no,yes,no,cellular,aug,mon,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,mon,27,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,single,university.degree,no,no,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,1141,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +50,technician,married,professional.course,unknown,no,no,cellular,aug,mon,378,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,single,high.school,unknown,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,management,married,university.degree,unknown,yes,no,cellular,aug,mon,734,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +56,retired,married,basic.4y,no,yes,no,cellular,aug,mon,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,133,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,aug,mon,262,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,mon,1238,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,382,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,unemployed,single,university.degree,no,yes,no,cellular,aug,mon,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.6y,no,no,no,cellular,aug,mon,383,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,280,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,technician,married,professional.course,no,yes,no,telephone,aug,mon,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,management,married,university.degree,no,no,no,cellular,aug,mon,76,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,high.school,no,no,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,university.degree,no,no,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,mon,187,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,mon,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,university.degree,no,no,yes,cellular,aug,mon,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,admin.,married,professional.course,no,no,no,cellular,aug,mon,381,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,445,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,high.school,unknown,no,no,cellular,aug,mon,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,mon,720,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +44,admin.,married,high.school,no,yes,yes,cellular,aug,mon,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,retired,married,professional.course,no,no,yes,cellular,aug,mon,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,unknown,unknown,cellular,aug,mon,139,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,aug,mon,549,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,single,high.school,unknown,yes,yes,cellular,aug,mon,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,aug,mon,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,aug,mon,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,mon,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,high.school,no,no,yes,cellular,aug,mon,429,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,university.degree,no,no,yes,cellular,aug,mon,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,aug,mon,154,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,aug,mon,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,221,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,blue-collar,married,high.school,unknown,yes,no,cellular,aug,mon,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,aug,mon,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,retired,married,basic.9y,no,no,no,cellular,aug,mon,248,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,240,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,university.degree,no,yes,no,cellular,aug,mon,385,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,housemaid,married,basic.6y,no,yes,no,cellular,aug,mon,249,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,single,high.school,unknown,yes,no,cellular,aug,mon,124,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,no,yes,cellular,aug,mon,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,mon,271,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,entrepreneur,married,university.degree,no,no,no,cellular,aug,mon,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,married,professional.course,no,yes,no,cellular,aug,mon,1144,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,no,no,no,cellular,aug,mon,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,university.degree,unknown,yes,yes,cellular,aug,mon,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,aug,mon,345,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,university.degree,no,no,no,cellular,aug,mon,101,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,aug,mon,304,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,entrepreneur,married,university.degree,unknown,yes,yes,cellular,aug,mon,38,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,aug,mon,663,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +38,technician,single,high.school,unknown,no,no,cellular,aug,mon,95,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.9y,no,no,yes,cellular,aug,mon,268,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,high.school,no,no,no,telephone,aug,mon,133,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,high.school,unknown,no,no,cellular,aug,mon,339,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,mon,106,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,mon,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,university.degree,no,no,no,cellular,aug,mon,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,mon,862,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,mon,236,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,single,professional.course,no,no,no,cellular,aug,mon,444,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,technician,married,professional.course,no,no,no,cellular,aug,mon,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,university.degree,unknown,no,no,cellular,aug,mon,418,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +30,management,married,university.degree,no,yes,no,cellular,aug,mon,277,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,divorced,professional.course,no,no,no,cellular,aug,mon,231,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,high.school,unknown,no,no,cellular,aug,mon,481,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,277,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,housemaid,married,high.school,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,mon,154,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,295,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,mon,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,housemaid,married,basic.9y,unknown,yes,no,cellular,aug,mon,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,self-employed,single,university.degree,no,no,no,cellular,aug,mon,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,1080,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +36,admin.,single,university.degree,unknown,yes,no,cellular,aug,mon,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,mon,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,high.school,no,yes,no,cellular,aug,mon,40,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,mon,179,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,1504,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,retired,married,professional.course,unknown,no,yes,cellular,aug,mon,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,no,unknown,unknown,cellular,aug,mon,320,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,self-employed,married,basic.9y,no,no,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,management,married,university.degree,no,yes,yes,cellular,aug,mon,342,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,566,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,mon,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,yes,yes,cellular,aug,mon,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,aug,mon,479,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +40,management,married,high.school,unknown,yes,no,cellular,aug,tue,236,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,blue-collar,married,professional.course,unknown,yes,yes,cellular,aug,tue,226,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,91,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,tue,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +43,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,aug,tue,509,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,tue,161,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,high.school,unknown,no,no,cellular,aug,tue,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,64,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,506,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +51,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,80,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,admin.,married,high.school,no,no,yes,cellular,aug,tue,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,professional.course,unknown,no,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,management,married,university.degree,no,yes,no,cellular,aug,tue,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,retired,married,university.degree,no,no,yes,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,university.degree,no,yes,no,cellular,aug,tue,614,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +58,retired,married,university.degree,no,yes,no,cellular,aug,tue,327,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,management,married,university.degree,no,yes,no,cellular,aug,tue,439,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,married,basic.6y,no,no,no,cellular,aug,tue,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,yes,no,cellular,aug,tue,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,housemaid,single,university.degree,no,yes,no,cellular,aug,tue,348,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,no,no,cellular,aug,tue,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,yes,yes,cellular,aug,tue,428,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,yes,yes,cellular,aug,tue,768,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +39,management,married,university.degree,no,unknown,unknown,cellular,aug,tue,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,336,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,tue,1134,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +38,technician,married,university.degree,no,yes,yes,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,services,married,professional.course,no,yes,yes,cellular,aug,tue,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,tue,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,aug,tue,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,technician,divorced,professional.course,no,yes,yes,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +56,retired,married,high.school,no,unknown,unknown,cellular,aug,tue,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,tue,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,tue,1282,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +47,technician,married,professional.course,no,no,no,cellular,aug,tue,364,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,tue,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,high.school,no,no,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,high.school,no,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,tue,96,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,high.school,no,unknown,unknown,cellular,aug,tue,234,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,high.school,no,yes,no,cellular,aug,tue,237,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,tue,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,services,married,university.degree,no,no,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,services,married,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,52,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,tue,815,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +52,management,married,university.degree,unknown,no,no,cellular,aug,tue,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,admin.,married,university.degree,no,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,technician,married,high.school,no,no,no,cellular,aug,tue,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,365,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,high.school,no,no,no,cellular,aug,tue,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,housemaid,single,professional.course,unknown,yes,yes,cellular,aug,tue,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,services,married,high.school,no,yes,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,services,married,high.school,no,no,no,cellular,aug,tue,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,services,married,high.school,no,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,29,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,867,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,single,professional.course,unknown,yes,no,cellular,aug,tue,971,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +40,admin.,married,university.degree,no,no,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,management,married,university.degree,no,yes,no,cellular,aug,tue,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,232,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,professional.course,no,yes,yes,cellular,aug,tue,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,admin.,married,university.degree,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,admin.,married,high.school,no,yes,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +59,technician,married,professional.course,no,no,yes,cellular,aug,tue,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,entrepreneur,married,basic.4y,unknown,no,no,cellular,aug,tue,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,tue,396,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +51,management,married,high.school,no,no,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,174,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,tue,603,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,technician,married,high.school,unknown,yes,no,cellular,aug,tue,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,married,high.school,no,no,no,cellular,aug,tue,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,single,high.school,unknown,no,yes,cellular,aug,tue,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,338,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,507,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +45,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,unemployed,single,university.degree,no,no,no,cellular,aug,tue,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,services,married,unknown,no,no,no,cellular,aug,tue,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,admin.,divorced,professional.course,no,no,yes,cellular,aug,tue,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,high.school,no,no,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,services,married,professional.course,no,yes,no,cellular,aug,tue,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,high.school,no,yes,no,cellular,aug,tue,603,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,240,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,tue,439,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +36,technician,single,professional.course,no,unknown,unknown,cellular,aug,tue,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,tue,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,single,university.degree,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,61,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +60,services,married,high.school,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,technician,divorced,professional.course,no,yes,yes,cellular,aug,tue,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,high.school,no,no,no,cellular,aug,tue,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,tue,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,tue,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,admin.,married,high.school,no,no,yes,cellular,aug,tue,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,services,married,high.school,unknown,yes,no,cellular,aug,tue,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,management,married,university.degree,no,no,no,cellular,aug,tue,231,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +40,technician,married,high.school,no,no,no,cellular,aug,tue,370,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,self-employed,married,university.degree,no,no,no,cellular,aug,tue,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +51,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,191,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,aug,tue,433,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,1181,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +48,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,aug,tue,1133,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +37,technician,married,high.school,unknown,yes,no,cellular,aug,tue,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,self-employed,married,university.degree,unknown,yes,no,cellular,aug,tue,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,536,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,high.school,no,no,no,cellular,aug,tue,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,single,high.school,unknown,no,no,cellular,aug,tue,104,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,management,married,university.degree,no,no,yes,cellular,aug,tue,297,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,yes,no,cellular,aug,tue,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,single,professional.course,no,yes,yes,cellular,aug,tue,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,married,university.degree,no,no,yes,cellular,aug,tue,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +50,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,admin.,married,university.degree,no,yes,no,telephone,aug,tue,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +43,technician,married,professional.course,unknown,no,no,cellular,aug,tue,926,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +35,unemployed,married,university.degree,no,no,no,cellular,aug,tue,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,university.degree,no,no,yes,cellular,aug,tue,226,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +37,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,355,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,yes,cellular,aug,tue,587,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +43,admin.,divorced,university.degree,unknown,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,139,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,self-employed,married,basic.4y,unknown,no,no,cellular,aug,tue,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,aug,tue,632,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,management,married,university.degree,no,no,no,cellular,aug,tue,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,self-employed,married,university.degree,no,no,no,cellular,aug,tue,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,management,married,university.degree,no,no,no,cellular,aug,tue,253,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,high.school,unknown,no,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,management,married,university.degree,no,yes,no,cellular,aug,tue,284,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,high.school,unknown,no,yes,cellular,aug,tue,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,management,married,university.degree,no,unknown,unknown,cellular,aug,tue,696,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +33,admin.,married,university.degree,no,no,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,aug,tue,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +42,technician,single,university.degree,no,yes,no,cellular,aug,tue,578,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +29,management,married,university.degree,no,yes,yes,cellular,aug,tue,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +59,retired,married,basic.9y,unknown,yes,no,cellular,aug,tue,464,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,134,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,645,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +46,services,married,university.degree,no,no,no,cellular,aug,tue,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,tue,473,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,304,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,high.school,no,yes,yes,cellular,aug,tue,559,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +32,technician,single,university.degree,no,no,no,cellular,aug,tue,264,12,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,management,married,basic.9y,no,yes,no,cellular,aug,tue,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,no,yes,cellular,aug,tue,1092,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +41,technician,married,professional.course,no,no,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,retired,divorced,professional.course,no,yes,yes,telephone,aug,tue,128,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,1344,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +41,technician,married,professional.course,no,yes,no,cellular,aug,tue,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,tue,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,services,single,university.degree,unknown,yes,no,cellular,aug,tue,1307,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +56,admin.,married,university.degree,no,yes,no,cellular,aug,tue,153,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,tue,1344,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +58,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,168,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,213,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,978,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,781,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,tue,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,145,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,42,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,services,married,basic.4y,no,yes,no,cellular,aug,tue,50,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,tue,432,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +40,management,married,university.degree,no,no,yes,cellular,aug,tue,454,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,tue,1613,1,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,141,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,439,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,technician,single,university.degree,no,no,no,cellular,aug,tue,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +53,management,married,university.degree,no,no,no,cellular,aug,tue,864,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,474,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,tue,216,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,admin.,single,university.degree,no,no,yes,cellular,aug,tue,459,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,tue,128,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,418,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,226,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,admin.,married,high.school,no,yes,no,cellular,aug,tue,252,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,134,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,housemaid,divorced,high.school,no,yes,no,cellular,aug,tue,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +39,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +52,services,married,basic.4y,no,yes,no,cellular,aug,tue,483,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,tue,409,7,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,tue,222,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,aug,tue,664,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +57,admin.,married,university.degree,no,no,no,cellular,aug,tue,612,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,housemaid,married,basic.4y,no,no,yes,cellular,aug,tue,129,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,tue,1735,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +54,admin.,married,university.degree,no,yes,no,cellular,aug,tue,243,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +56,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,178,8,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,aug,tue,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +44,management,married,basic.9y,no,yes,no,cellular,aug,tue,284,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,tue,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,aug,tue,228,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,940,10,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,460,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,796,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,yes +54,services,married,high.school,no,yes,no,cellular,aug,tue,136,5,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,465,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +47,admin.,divorced,high.school,no,no,no,cellular,aug,tue,204,6,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +32,admin.,married,high.school,no,yes,yes,cellular,aug,tue,711,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +54,services,married,high.school,no,no,no,cellular,aug,tue,321,4,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,tue,1476,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +35,technician,married,university.degree,no,no,yes,cellular,aug,tue,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,tue,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +46,services,married,basic.4y,unknown,no,no,cellular,aug,tue,507,3,999,0,nonexistent,1.4,93.444,-36.1,4.966,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,services,married,basic.4y,no,yes,no,telephone,aug,wed,767,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,professional.course,no,yes,no,cellular,aug,wed,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,married,university.degree,no,yes,yes,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,self-employed,married,basic.9y,no,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,536,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,wed,317,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,wed,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,management,married,basic.9y,no,yes,no,cellular,aug,wed,244,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,technician,married,professional.course,no,yes,no,cellular,aug,wed,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,housemaid,married,basic.6y,unknown,no,no,cellular,aug,wed,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,professional.course,no,no,yes,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,professional.course,no,no,yes,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1842,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +51,admin.,married,university.degree,unknown,unknown,unknown,cellular,aug,wed,332,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,unknown,no,no,telephone,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,high.school,no,no,no,cellular,aug,wed,303,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,high.school,unknown,yes,no,cellular,aug,wed,969,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +59,retired,married,university.degree,no,no,yes,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,management,married,university.degree,no,no,no,cellular,aug,wed,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,823,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +38,management,married,university.degree,no,no,no,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,high.school,no,no,no,cellular,aug,wed,703,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +43,admin.,married,university.degree,no,no,no,telephone,aug,wed,618,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +47,services,married,high.school,unknown,yes,no,cellular,aug,wed,370,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,services,single,university.degree,unknown,yes,no,cellular,aug,wed,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,married,university.degree,no,yes,no,cellular,aug,wed,225,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,married,university.degree,no,no,no,cellular,aug,wed,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,yes,cellular,aug,wed,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,university.degree,no,yes,no,cellular,aug,wed,455,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +51,admin.,single,university.degree,no,no,no,telephone,aug,wed,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,aug,wed,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,divorced,professional.course,no,no,no,cellular,aug,wed,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,management,married,university.degree,unknown,no,yes,cellular,aug,wed,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,287,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,professional.course,no,yes,yes,cellular,aug,wed,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,high.school,no,no,yes,cellular,aug,wed,258,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,185,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,aug,wed,458,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,services,married,basic.4y,no,no,no,cellular,aug,wed,211,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,services,married,basic.4y,no,yes,yes,cellular,aug,wed,900,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,334,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,entrepreneur,divorced,high.school,unknown,no,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,university.degree,no,yes,yes,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,professional.course,no,yes,yes,cellular,aug,wed,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,no,yes,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,846,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,334,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,unemployed,married,university.degree,unknown,no,yes,cellular,aug,wed,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,married,university.degree,no,no,no,cellular,aug,wed,233,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,unemployed,married,basic.4y,unknown,yes,no,cellular,aug,wed,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,university.degree,unknown,no,yes,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,university.degree,unknown,no,yes,cellular,aug,wed,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,management,married,university.degree,unknown,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,wed,283,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,admin.,single,university.degree,no,yes,no,cellular,aug,wed,104,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,aug,wed,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,high.school,no,yes,no,cellular,aug,wed,170,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,university.degree,unknown,unknown,unknown,cellular,aug,wed,690,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,self-employed,married,basic.6y,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,wed,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,wed,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,no,no,no,cellular,aug,wed,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,no,no,yes,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,married,university.degree,unknown,no,no,cellular,aug,wed,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,269,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,261,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,wed,409,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,325,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,married,university.degree,no,no,no,cellular,aug,wed,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,university.degree,no,no,no,cellular,aug,wed,182,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,403,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1149,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +39,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,university.degree,no,yes,no,telephone,aug,wed,827,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +40,management,married,high.school,no,no,yes,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,high.school,no,yes,no,cellular,aug,wed,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,management,married,high.school,no,no,no,cellular,aug,wed,271,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,aug,wed,169,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,wed,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,641,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +34,technician,single,university.degree,no,no,no,cellular,aug,wed,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,wed,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,wed,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,270,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,404,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +39,technician,married,professional.course,no,yes,yes,cellular,aug,wed,657,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +58,retired,married,basic.4y,no,no,no,cellular,aug,wed,180,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,technician,married,professional.course,no,yes,yes,cellular,aug,wed,203,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,management,married,university.degree,no,yes,no,cellular,aug,wed,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,admin.,married,university.degree,no,yes,no,cellular,aug,wed,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,services,married,basic.4y,no,yes,yes,cellular,aug,wed,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,retired,married,basic.9y,unknown,no,no,cellular,aug,wed,707,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,services,married,high.school,no,yes,no,cellular,aug,wed,737,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +55,technician,married,university.degree,unknown,yes,no,cellular,aug,wed,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,324,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,wed,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,married,university.degree,no,yes,no,cellular,aug,wed,328,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,university.degree,no,yes,yes,cellular,aug,wed,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,wed,376,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,management,married,basic.9y,no,yes,no,cellular,aug,wed,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,high.school,no,no,yes,cellular,aug,wed,871,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,technician,married,university.degree,no,yes,yes,cellular,aug,wed,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,high.school,no,yes,no,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,entrepreneur,married,unknown,no,yes,no,cellular,aug,wed,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,entrepreneur,married,unknown,no,no,no,cellular,aug,wed,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,high.school,no,no,no,cellular,aug,wed,838,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +34,entrepreneur,married,unknown,no,yes,yes,cellular,aug,wed,684,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,310,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,unemployed,married,basic.9y,unknown,no,no,cellular,aug,wed,98,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,self-employed,single,university.degree,no,no,no,telephone,aug,wed,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,15,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1038,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +52,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,559,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,professional.course,no,yes,no,cellular,aug,wed,136,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,professional.course,no,yes,yes,cellular,aug,wed,733,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,unknown,married,basic.6y,no,yes,no,cellular,aug,wed,713,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,unknown,high.school,no,yes,no,cellular,aug,wed,243,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,high.school,unknown,no,no,cellular,aug,wed,104,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,management,married,university.degree,no,no,no,cellular,aug,wed,517,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,housemaid,married,basic.6y,unknown,no,no,cellular,aug,wed,217,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,management,married,university.degree,no,yes,no,cellular,aug,wed,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,housemaid,single,university.degree,no,yes,no,cellular,aug,wed,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,technician,divorced,university.degree,no,yes,no,cellular,aug,wed,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,management,married,high.school,unknown,no,no,cellular,aug,wed,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,aug,wed,92,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,entrepreneur,married,professional.course,no,no,no,cellular,aug,wed,327,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,management,married,university.degree,no,no,yes,cellular,aug,wed,990,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +48,admin.,married,university.degree,unknown,yes,yes,cellular,aug,wed,523,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,self-employed,married,basic.9y,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,wed,152,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,unknown,university.degree,no,no,no,cellular,aug,wed,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,wed,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,unknown,university.degree,no,yes,no,cellular,aug,wed,529,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +55,housemaid,married,university.degree,no,no,no,cellular,aug,wed,363,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,wed,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,342,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,management,married,university.degree,no,yes,no,telephone,aug,wed,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +33,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,75,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,blue-collar,single,university.degree,no,yes,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,wed,1148,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +29,admin.,single,high.school,no,yes,no,cellular,aug,wed,257,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,single,university.degree,no,yes,no,cellular,aug,wed,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,wed,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,wed,212,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,wed,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,telephone,aug,wed,490,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,175,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,technician,married,university.degree,no,yes,no,cellular,aug,wed,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,management,married,university.degree,unknown,no,no,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,retired,married,university.degree,no,no,no,cellular,aug,wed,388,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,wed,418,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,wed,222,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,entrepreneur,married,professional.course,no,yes,no,cellular,aug,wed,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,202,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,retired,married,basic.9y,unknown,yes,no,cellular,aug,wed,394,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,management,married,high.school,unknown,yes,no,cellular,aug,wed,233,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,management,married,university.degree,unknown,no,no,cellular,aug,wed,338,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,107,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,wed,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,university.degree,unknown,yes,no,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,high.school,unknown,yes,no,cellular,aug,wed,399,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,274,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,150,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,75,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,181,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,413,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,high.school,no,no,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,management,married,university.degree,no,yes,no,cellular,aug,wed,399,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.6y,no,no,yes,cellular,aug,wed,48,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,single,university.degree,no,yes,yes,cellular,aug,wed,275,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,wed,449,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,wed,536,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,158,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,management,married,university.degree,no,no,no,cellular,aug,wed,113,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,single,university.degree,no,no,no,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,740,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,university.degree,no,no,no,cellular,aug,thu,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,aug,thu,178,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,no,yes,cellular,aug,thu,65,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,high.school,no,no,no,cellular,aug,thu,152,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,services,married,high.school,no,no,no,cellular,aug,thu,464,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,aug,thu,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,services,married,high.school,unknown,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,management,married,university.degree,no,yes,no,cellular,aug,thu,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,entrepreneur,married,basic.4y,unknown,no,no,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,thu,719,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,technician,married,university.degree,no,no,no,cellular,aug,thu,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,professional.course,unknown,yes,no,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,thu,373,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,professional.course,unknown,no,yes,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,professional.course,unknown,yes,yes,cellular,aug,thu,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,professional.course,unknown,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,unknown,divorced,university.degree,no,no,yes,cellular,aug,thu,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,thu,707,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,admin.,single,high.school,no,yes,no,cellular,aug,thu,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,thu,360,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +23,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,266,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,services,married,high.school,unknown,yes,no,cellular,aug,thu,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,thu,366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,thu,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,married,university.degree,no,no,yes,cellular,aug,thu,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,self-employed,married,basic.4y,unknown,unknown,unknown,cellular,aug,thu,169,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,services,married,high.school,no,yes,no,cellular,aug,thu,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,thu,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,thu,184,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,married,high.school,no,yes,no,cellular,aug,thu,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,technician,married,university.degree,no,yes,no,cellular,aug,thu,252,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,thu,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,unknown,no,yes,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,housemaid,married,high.school,unknown,yes,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,169,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,thu,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,blue-collar,married,basic.4y,no,unknown,unknown,cellular,aug,thu,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,married,high.school,no,yes,no,cellular,aug,thu,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,47,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,thu,293,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,housemaid,married,basic.4y,unknown,no,no,cellular,aug,thu,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,thu,260,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,divorced,high.school,no,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,10,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,273,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,university.degree,unknown,no,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,465,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,self-employed,married,university.degree,no,yes,yes,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,self-employed,married,basic.9y,unknown,yes,yes,cellular,aug,thu,593,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +50,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1217,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,telephone,aug,thu,313,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,thu,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,single,university.degree,no,yes,no,cellular,aug,thu,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,thu,297,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,university.degree,unknown,yes,no,cellular,aug,thu,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,812,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +32,admin.,single,university.degree,no,no,no,cellular,aug,thu,356,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,605,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,technician,divorced,university.degree,unknown,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,single,university.degree,no,yes,no,cellular,aug,thu,935,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,thu,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,basic.4y,no,yes,no,cellular,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,414,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,single,university.degree,no,yes,no,cellular,aug,thu,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,aug,thu,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,self-employed,married,university.degree,unknown,yes,no,cellular,aug,thu,148,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,services,married,basic.9y,unknown,yes,yes,cellular,aug,thu,110,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,thu,515,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,thu,214,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,457,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,single,university.degree,no,no,no,cellular,aug,thu,421,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,thu,374,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,423,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,503,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,single,high.school,no,no,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,management,married,university.degree,no,yes,no,cellular,aug,thu,294,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,thu,165,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,thu,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,51,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,thu,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,aug,thu,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,aug,thu,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,management,married,university.degree,no,no,no,cellular,aug,thu,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,self-employed,married,basic.9y,unknown,no,no,cellular,aug,thu,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,518,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +30,admin.,single,university.degree,unknown,no,no,cellular,aug,thu,272,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,high.school,no,no,no,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,thu,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,university.degree,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,yes,no,telephone,aug,thu,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,admin.,married,university.degree,no,no,no,cellular,aug,thu,87,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,thu,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,single,university.degree,no,no,no,cellular,aug,thu,505,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,technician,married,professional.course,no,yes,no,cellular,aug,thu,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,thu,511,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,services,married,high.school,unknown,yes,yes,telephone,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,thu,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,thu,221,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,280,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,basic.4y,no,yes,yes,cellular,aug,thu,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,divorced,university.degree,no,yes,yes,cellular,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,married,high.school,unknown,no,no,cellular,aug,thu,206,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,professional.course,no,no,yes,cellular,aug,thu,924,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,technician,married,high.school,no,yes,yes,telephone,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,no,no,telephone,aug,thu,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,services,married,high.school,no,yes,no,cellular,aug,thu,834,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +47,admin.,married,high.school,no,yes,yes,cellular,aug,thu,3322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,high.school,unknown,no,yes,cellular,aug,thu,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,housemaid,married,basic.6y,no,no,no,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,technician,married,high.school,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,professional.course,no,no,no,cellular,aug,thu,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,self-employed,married,basic.9y,unknown,no,no,cellular,aug,thu,1184,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,208,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,housemaid,married,basic.6y,no,yes,yes,telephone,aug,thu,698,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +49,technician,married,professional.course,no,yes,yes,cellular,aug,thu,11,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,technician,single,university.degree,unknown,yes,yes,cellular,aug,thu,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,aug,thu,134,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,management,married,university.degree,no,yes,no,cellular,aug,thu,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,technician,single,university.degree,unknown,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,high.school,unknown,no,no,cellular,aug,thu,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,high.school,unknown,yes,yes,cellular,aug,thu,1151,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +33,technician,married,professional.course,no,no,yes,cellular,aug,thu,189,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,professional.course,no,yes,yes,cellular,aug,thu,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,thu,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,university.degree,no,no,no,telephone,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,management,married,high.school,no,yes,no,cellular,aug,thu,448,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,admin.,married,university.degree,no,yes,no,telephone,aug,thu,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,thu,167,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,aug,thu,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,single,university.degree,no,yes,no,cellular,aug,thu,350,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,thu,449,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,blue-collar,married,basic.4y,no,yes,no,telephone,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,388,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,professional.course,unknown,no,no,cellular,aug,thu,112,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,217,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,337,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,yes,cellular,aug,thu,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,thu,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,divorced,professional.course,unknown,no,no,cellular,aug,thu,377,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,self-employed,married,basic.4y,unknown,yes,no,cellular,aug,thu,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,thu,168,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,thu,1231,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,management,married,university.degree,no,yes,no,cellular,aug,thu,789,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,636,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,married,professional.course,no,yes,yes,telephone,aug,thu,34,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,no,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,unknown,unknown,unknown,telephone,aug,thu,128,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,884,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +46,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,high.school,no,yes,no,cellular,aug,thu,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,thu,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,basic.9y,unknown,yes,yes,cellular,aug,thu,84,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,219,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,yes,cellular,aug,thu,38,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,thu,155,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,university.degree,unknown,no,no,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,unknown,yes,yes,telephone,aug,thu,31,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,high.school,unknown,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,divorced,university.degree,unknown,no,no,cellular,aug,thu,120,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,yes,no,telephone,aug,thu,365,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,high.school,no,yes,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,single,university.degree,no,no,yes,cellular,aug,thu,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,technician,married,professional.course,no,yes,no,cellular,aug,thu,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,138,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,yes,no,telephone,aug,thu,234,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,unknown,unknown,no,no,telephone,aug,thu,753,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +54,self-employed,married,high.school,no,yes,yes,cellular,aug,thu,904,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +54,technician,married,professional.course,no,no,no,cellular,aug,thu,478,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,high.school,no,no,no,cellular,aug,thu,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,unknown,unknown,yes,no,cellular,aug,thu,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,yes,no,telephone,aug,thu,226,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,unknown,unknown,no,yes,cellular,aug,thu,163,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,housemaid,divorced,professional.course,no,no,yes,cellular,aug,thu,306,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,self-employed,married,high.school,no,no,no,cellular,aug,thu,89,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,married,university.degree,no,yes,no,telephone,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,aug,thu,244,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,technician,married,professional.course,no,yes,yes,cellular,aug,thu,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,aug,thu,386,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,housemaid,married,professional.course,no,yes,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,self-employed,married,high.school,no,yes,no,cellular,aug,thu,136,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,thu,286,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,yes,no,telephone,aug,thu,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,86,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,thu,211,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,thu,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,entrepreneur,married,university.degree,unknown,no,yes,cellular,aug,thu,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,253,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,unknown,married,basic.9y,no,no,no,cellular,aug,thu,390,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,self-employed,married,high.school,no,yes,no,cellular,aug,thu,204,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,thu,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,professional.course,unknown,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,married,university.degree,no,unknown,unknown,cellular,aug,thu,1579,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +58,admin.,single,university.degree,no,no,no,cellular,aug,thu,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1871,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,mon,618,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +33,unemployed,divorced,professional.course,no,no,no,cellular,aug,mon,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,773,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +50,technician,married,university.degree,no,unknown,unknown,cellular,aug,mon,762,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +35,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,139,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,basic.6y,no,yes,no,cellular,aug,mon,671,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +31,management,married,university.degree,no,yes,no,cellular,aug,mon,181,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,mon,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,entrepreneur,married,university.degree,no,yes,no,cellular,aug,mon,59,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,mon,299,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,mon,92,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,mon,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,high.school,no,no,no,cellular,aug,mon,638,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +35,technician,married,professional.course,no,no,no,cellular,aug,mon,594,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +41,technician,married,professional.course,no,yes,no,cellular,aug,mon,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,services,married,unknown,unknown,no,no,cellular,aug,mon,458,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,mon,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,divorced,professional.course,no,no,no,cellular,aug,mon,197,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,mon,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,unknown,no,no,cellular,aug,mon,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,mon,251,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,basic.6y,no,no,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,aug,mon,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,housemaid,married,professional.course,no,yes,no,cellular,aug,mon,105,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,mon,108,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,married,basic.9y,no,yes,no,cellular,aug,mon,161,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,self-employed,married,basic.6y,unknown,no,no,cellular,aug,mon,233,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,aug,mon,882,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +48,services,married,high.school,no,no,no,cellular,aug,mon,115,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,mon,341,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,mon,145,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,high.school,no,no,no,cellular,aug,mon,26,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,aug,mon,151,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,313,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,mon,230,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,basic.6y,no,yes,yes,cellular,aug,mon,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,mon,393,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,high.school,unknown,yes,no,cellular,aug,mon,111,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,unknown,yes,yes,cellular,aug,mon,84,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,no,no,telephone,aug,mon,51,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,unknown,no,no,no,cellular,aug,mon,528,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +46,services,married,unknown,unknown,unknown,unknown,cellular,aug,mon,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,university.degree,no,no,no,cellular,aug,mon,70,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,mon,146,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,services,married,unknown,unknown,yes,no,cellular,aug,mon,151,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,mon,266,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,unemployed,married,university.degree,unknown,yes,no,cellular,aug,mon,452,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,347,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,mon,34,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,mon,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,admin.,single,high.school,no,yes,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,university.degree,no,no,yes,cellular,aug,mon,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,mon,121,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,mon,145,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,172,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,management,married,high.school,unknown,yes,no,telephone,aug,mon,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,high.school,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,mon,513,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,mon,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,mon,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,mon,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,entrepreneur,single,university.degree,no,no,no,cellular,aug,mon,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,unemployed,married,high.school,no,yes,no,cellular,aug,mon,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,mon,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,self-employed,married,high.school,unknown,no,no,cellular,aug,mon,507,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,mon,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,high.school,unknown,no,no,cellular,aug,mon,98,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,services,married,high.school,unknown,no,no,cellular,aug,mon,195,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,university.degree,no,no,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,mon,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,86,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,single,university.degree,no,yes,no,cellular,aug,mon,40,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,27,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,mon,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,mon,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,married,basic.4y,unknown,no,no,cellular,aug,mon,309,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +50,services,married,basic.9y,unknown,yes,no,cellular,aug,mon,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,university.degree,no,no,no,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,207,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,mon,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,university.degree,no,no,no,cellular,aug,mon,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,high.school,no,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,married,high.school,no,no,no,cellular,aug,mon,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,aug,mon,75,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,university.degree,unknown,yes,no,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,services,married,unknown,unknown,yes,no,cellular,aug,mon,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,498,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,yes,yes,cellular,aug,mon,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,96,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,111,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,professional.course,no,yes,yes,cellular,aug,mon,245,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,585,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,240,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,98,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,single,professional.course,unknown,yes,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,315,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,mon,147,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,technician,married,university.degree,no,yes,no,cellular,aug,mon,134,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,aug,mon,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,unknown,no,no,no,telephone,aug,mon,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,mon,431,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,mon,29,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,197,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,university.degree,no,yes,yes,cellular,aug,mon,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,mon,697,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +36,technician,married,professional.course,no,no,no,cellular,aug,mon,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,280,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,mon,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,no,telephone,aug,mon,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,management,married,university.degree,no,no,no,cellular,aug,mon,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,mon,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,services,married,basic.6y,unknown,no,no,telephone,aug,mon,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,married,high.school,no,yes,yes,cellular,aug,mon,36,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,unknown,no,no,telephone,aug,mon,29,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,professional.course,no,no,no,telephone,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,mon,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,no,no,telephone,aug,mon,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,mon,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,702,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,divorced,professional.course,no,yes,no,telephone,aug,mon,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,housemaid,single,professional.course,no,yes,yes,cellular,aug,mon,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,university.degree,no,no,yes,cellular,aug,mon,471,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,58,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,mon,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,102,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,management,married,university.degree,no,yes,yes,cellular,aug,mon,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,self-employed,married,high.school,unknown,yes,no,cellular,aug,mon,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,mon,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,yes,yes,cellular,aug,mon,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,aug,mon,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,mon,254,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,571,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,mon,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,professional.course,unknown,yes,yes,cellular,aug,mon,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,204,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,mon,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,mon,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,mon,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,781,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,unknown,yes,yes,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,mon,80,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,university.degree,no,no,no,telephone,aug,mon,280,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,956,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +48,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,346,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,high.school,no,yes,yes,telephone,aug,mon,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,high.school,no,no,no,cellular,aug,mon,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,unknown,no,no,cellular,aug,mon,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,unknown,no,yes,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,retired,divorced,professional.course,no,no,no,cellular,aug,mon,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,professional.course,no,no,no,cellular,aug,mon,271,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,professional.course,no,yes,yes,cellular,aug,mon,223,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,technician,married,professional.course,no,yes,yes,cellular,aug,mon,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,unknown,no,no,cellular,aug,mon,1126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,mon,514,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,mon,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,professional.course,unknown,no,no,cellular,aug,mon,392,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,divorced,professional.course,no,yes,no,cellular,aug,mon,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,divorced,professional.course,no,yes,no,cellular,aug,mon,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,self-employed,single,professional.course,no,yes,no,cellular,aug,mon,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,547,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,yes,yes,cellular,aug,mon,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,mon,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,mon,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,mon,22,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,mon,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,retired,divorced,professional.course,no,unknown,unknown,cellular,aug,mon,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,mon,984,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,services,married,basic.9y,unknown,yes,yes,cellular,aug,mon,256,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,mon,249,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,high.school,unknown,yes,no,cellular,aug,mon,48,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,mon,62,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,management,married,high.school,no,no,no,cellular,aug,mon,725,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,mon,384,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +41,self-employed,married,university.degree,no,yes,yes,cellular,aug,mon,377,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,single,university.degree,no,yes,no,cellular,aug,mon,417,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,mon,201,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,management,married,university.degree,unknown,yes,no,cellular,aug,mon,261,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,housemaid,married,university.degree,no,yes,no,cellular,aug,mon,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,mon,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,management,married,university.degree,no,yes,no,cellular,aug,mon,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,16,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,university.degree,no,no,no,cellular,aug,mon,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,unknown,unknown,cellular,aug,mon,202,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,149,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,no,yes,cellular,aug,mon,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,mon,1364,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,high.school,unknown,yes,yes,cellular,aug,mon,166,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,mon,286,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,213,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,high.school,unknown,yes,no,cellular,aug,mon,73,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,single,university.degree,unknown,no,yes,cellular,aug,mon,1559,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,married,high.school,no,yes,no,cellular,aug,mon,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +49,unknown,married,high.school,unknown,no,no,cellular,aug,mon,192,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,high.school,no,no,no,cellular,aug,mon,304,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,89,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,yes,yes,cellular,aug,mon,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,unknown,yes,yes,cellular,aug,mon,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,174,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,no,no,cellular,aug,mon,457,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,technician,married,university.degree,unknown,yes,yes,cellular,aug,mon,405,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,350,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,123,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,mon,395,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,312,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,services,married,basic.4y,unknown,yes,no,cellular,aug,mon,779,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,mon,92,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,374,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,high.school,unknown,yes,no,cellular,aug,mon,76,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,single,high.school,no,yes,no,cellular,aug,mon,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,professional.course,no,no,no,cellular,aug,mon,296,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,193,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,mon,87,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,mon,243,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,835,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,mon,724,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,159,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,high.school,unknown,no,no,cellular,aug,mon,445,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,mon,244,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,mon,212,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,aug,mon,119,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,university.degree,no,yes,yes,cellular,aug,mon,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,high.school,unknown,yes,no,cellular,aug,mon,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,mon,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,management,married,university.degree,unknown,yes,no,cellular,aug,mon,96,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,professional.course,unknown,no,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,self-employed,married,university.degree,unknown,yes,yes,cellular,aug,mon,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,729,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,yes,cellular,aug,mon,285,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,unknown,no,no,no,cellular,aug,mon,393,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,153,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,189,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,mon,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,mon,195,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,199,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,technician,married,high.school,no,no,no,cellular,aug,mon,298,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,university.degree,unknown,no,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,no,yes,yes,cellular,aug,mon,273,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,unknown,no,no,cellular,aug,mon,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,university.degree,unknown,yes,no,cellular,aug,mon,693,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,services,married,high.school,no,yes,no,telephone,aug,mon,575,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,99,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,tue,247,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +27,admin.,married,university.degree,no,no,no,cellular,aug,tue,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,tue,151,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,192,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,aug,tue,120,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,services,married,high.school,no,yes,no,cellular,aug,tue,607,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,141,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,116,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,management,married,university.degree,no,no,no,cellular,aug,tue,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,single,university.degree,no,no,no,cellular,aug,tue,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,single,university.degree,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,single,university.degree,no,yes,no,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,unknown,married,basic.4y,no,yes,no,cellular,aug,tue,645,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +44,blue-collar,married,basic.6y,no,no,yes,cellular,aug,tue,177,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,university.degree,no,yes,no,cellular,aug,tue,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,tue,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,entrepreneur,divorced,professional.course,unknown,no,no,cellular,aug,tue,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,tue,133,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,tue,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,tue,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,787,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,no,no,no,cellular,aug,tue,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,university.degree,no,no,yes,cellular,aug,tue,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,self-employed,married,professional.course,unknown,no,no,cellular,aug,tue,432,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,university.degree,no,no,no,cellular,aug,tue,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,222,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,no,no,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,tue,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,management,married,high.school,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,tue,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,361,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,telephone,aug,tue,223,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,technician,married,professional.course,unknown,no,no,cellular,aug,tue,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,high.school,no,no,no,cellular,aug,tue,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,self-employed,married,university.degree,no,no,no,cellular,aug,tue,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,management,married,high.school,no,yes,no,cellular,aug,tue,671,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,no,no,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,yes,yes,cellular,aug,tue,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,yes,no,cellular,aug,tue,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,yes,yes,cellular,aug,tue,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,self-employed,single,professional.course,no,unknown,unknown,cellular,aug,tue,151,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,tue,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,single,professional.course,no,yes,no,cellular,aug,tue,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,tue,344,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,tue,284,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,divorced,professional.course,no,no,yes,cellular,aug,tue,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,tue,298,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,tue,134,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,198,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,yes,yes,cellular,aug,tue,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,unknown,unknown,no,yes,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,management,married,university.degree,unknown,no,no,cellular,aug,tue,504,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,tue,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,management,single,university.degree,no,no,no,cellular,aug,tue,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,management,single,university.degree,no,no,yes,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,yes,no,cellular,aug,tue,1293,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +31,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,359,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,227,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,married,high.school,no,yes,no,cellular,aug,tue,129,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,125,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,323,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,unknown,married,basic.9y,unknown,no,no,cellular,aug,tue,234,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,tue,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,no,cellular,aug,tue,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,128,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,tue,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,tue,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,no,yes,cellular,aug,tue,501,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,tue,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,technician,married,professional.course,no,yes,no,cellular,aug,tue,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,tue,149,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,high.school,no,no,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,high.school,unknown,no,no,cellular,aug,tue,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,high.school,unknown,no,no,cellular,aug,tue,332,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,admin.,divorced,high.school,no,no,no,cellular,aug,tue,290,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,self-employed,single,university.degree,no,no,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,high.school,no,no,no,cellular,aug,tue,186,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,195,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,self-employed,married,high.school,no,no,no,cellular,aug,tue,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,no,no,cellular,aug,tue,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,aug,tue,145,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,145,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,tue,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,tue,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,married,university.degree,no,no,no,cellular,aug,tue,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,professional.course,no,no,no,telephone,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,160,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,tue,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,no,yes,no,cellular,aug,tue,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,married,university.degree,no,no,no,cellular,aug,tue,391,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,143,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,unknown,no,yes,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,admin.,married,basic.9y,no,yes,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,276,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,single,university.degree,unknown,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,452,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,high.school,no,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,high.school,no,yes,no,cellular,aug,tue,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,admin.,married,basic.4y,unknown,yes,no,cellular,aug,tue,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,single,university.degree,unknown,no,no,cellular,aug,tue,117,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,divorced,high.school,no,yes,yes,cellular,aug,tue,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,tue,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,tue,156,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,technician,married,high.school,unknown,no,no,cellular,aug,tue,679,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,high.school,no,no,no,cellular,aug,tue,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,409,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,176,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,basic.4y,no,yes,no,cellular,aug,tue,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,406,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,self-employed,married,university.degree,no,yes,yes,cellular,aug,tue,598,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,yes,cellular,aug,tue,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.6y,no,yes,yes,cellular,aug,tue,222,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,high.school,no,yes,no,cellular,aug,tue,183,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,high.school,unknown,no,no,cellular,aug,tue,188,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,275,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,21,17,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,high.school,no,yes,no,cellular,aug,tue,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,28,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,entrepreneur,divorced,professional.course,unknown,unknown,unknown,cellular,aug,tue,950,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +42,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,56,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,679,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,single,professional.course,no,yes,no,cellular,aug,tue,99,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,tue,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,no,yes,cellular,aug,tue,35,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,687,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,tue,224,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,university.degree,no,no,no,cellular,aug,tue,158,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,high.school,no,yes,no,cellular,aug,tue,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,admin.,married,university.degree,no,yes,no,cellular,aug,tue,208,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,unknown,married,unknown,unknown,unknown,unknown,cellular,aug,tue,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,married,high.school,no,yes,no,cellular,aug,tue,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,single,professional.course,no,yes,no,cellular,aug,tue,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,tue,469,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,146,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,tue,1241,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,no,yes,cellular,aug,tue,299,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,no,yes,cellular,aug,tue,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,aug,tue,166,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,yes,yes,cellular,aug,tue,131,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,university.degree,unknown,no,no,cellular,aug,tue,587,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,no,yes,no,cellular,aug,tue,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,274,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,high.school,unknown,yes,yes,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,high.school,unknown,no,yes,cellular,aug,tue,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,university.degree,no,yes,no,cellular,aug,tue,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,no,yes,cellular,aug,tue,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,basic.4y,no,yes,yes,cellular,aug,tue,220,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,aug,tue,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,professional.course,yes,no,no,cellular,aug,tue,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,professional.course,yes,yes,no,cellular,aug,tue,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,married,high.school,no,yes,yes,cellular,aug,tue,120,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,unemployed,single,professional.course,no,yes,yes,telephone,aug,tue,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,high.school,no,no,no,cellular,aug,tue,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,258,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,high.school,no,yes,no,cellular,aug,tue,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,tue,696,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,434,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,high.school,no,yes,no,cellular,aug,tue,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,high.school,no,yes,yes,cellular,aug,tue,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,tue,387,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,management,married,university.degree,no,yes,no,cellular,aug,tue,377,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,high.school,no,no,no,cellular,aug,tue,243,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,unemployed,married,university.degree,no,no,no,cellular,aug,tue,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,tue,281,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,management,married,university.degree,unknown,yes,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,unemployed,married,professional.course,unknown,yes,yes,cellular,aug,tue,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,unknown,married,high.school,unknown,no,yes,cellular,aug,tue,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,tue,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,528,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,admin.,married,basic.4y,unknown,yes,yes,cellular,aug,tue,292,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,tue,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,blue-collar,divorced,basic.9y,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,yes,yes,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,tue,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,tue,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,tue,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,tue,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,tue,551,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,98,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,management,married,university.degree,unknown,no,no,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,tue,386,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,self-employed,married,university.degree,no,no,no,cellular,aug,tue,135,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,unknown,no,no,cellular,aug,tue,349,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,tue,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,tue,288,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,no,yes,cellular,aug,tue,438,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,single,university.degree,no,no,yes,cellular,aug,tue,28,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,technician,married,high.school,unknown,no,no,cellular,aug,tue,280,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,married,high.school,no,no,no,cellular,aug,tue,15,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,no,yes,cellular,aug,tue,824,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,tue,451,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,blue-collar,married,unknown,no,no,no,cellular,aug,tue,194,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,tue,385,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,married,professional.course,no,no,no,cellular,aug,tue,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,management,married,university.degree,no,no,no,cellular,aug,tue,471,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,university.degree,no,yes,no,cellular,aug,tue,486,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,divorced,high.school,no,yes,yes,cellular,aug,tue,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,tue,53,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,basic.4y,no,no,no,cellular,aug,tue,933,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +29,management,single,university.degree,no,yes,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,aug,tue,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,328,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,management,married,high.school,no,yes,no,cellular,aug,tue,19,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,144,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,high.school,no,yes,no,cellular,aug,tue,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,1059,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,tue,149,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,tue,1032,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +32,technician,single,university.degree,no,yes,yes,cellular,aug,tue,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,tue,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,high.school,no,yes,yes,cellular,aug,tue,474,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,unemployed,single,university.degree,no,yes,yes,cellular,aug,tue,153,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,tue,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,tue,405,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,yes,cellular,aug,tue,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,294,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,basic.6y,no,no,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,basic.6y,no,yes,no,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,no,no,yes,cellular,aug,tue,729,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,unemployed,married,professional.course,no,no,no,telephone,aug,tue,18,12,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,yes,yes,cellular,aug,tue,285,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,tue,367,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,tue,86,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,services,married,university.degree,no,yes,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,220,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,services,married,university.degree,no,yes,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,technician,married,high.school,no,yes,no,cellular,aug,tue,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,tue,178,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,373,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,tue,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,aug,tue,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,unknown,no,yes,cellular,aug,tue,285,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,tue,302,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,tue,171,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,158,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,divorced,high.school,no,no,no,cellular,aug,tue,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,single,university.degree,no,no,no,cellular,aug,tue,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,unknown,no,no,cellular,aug,tue,61,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,management,married,university.degree,no,yes,no,cellular,aug,tue,61,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,tue,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,tue,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,services,married,high.school,no,yes,no,cellular,aug,tue,392,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,unknown,unknown,unknown,cellular,aug,tue,313,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,no,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,tue,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,unemployed,married,basic.4y,no,no,no,cellular,aug,tue,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,professional.course,no,no,no,cellular,aug,tue,97,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,retired,married,high.school,unknown,yes,yes,cellular,aug,tue,37,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,221,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,divorced,university.degree,unknown,no,no,telephone,aug,tue,105,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,329,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,basic.4y,no,no,no,cellular,aug,tue,268,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,tue,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,retired,married,basic.4y,unknown,no,no,cellular,aug,tue,332,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,services,married,high.school,unknown,no,no,cellular,aug,tue,205,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,398,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,tue,599,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,single,professional.course,unknown,no,yes,cellular,aug,tue,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,high.school,unknown,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,tue,290,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +56,retired,married,high.school,no,yes,no,cellular,aug,tue,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,238,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,services,married,high.school,no,no,no,cellular,aug,tue,249,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,no,yes,yes,cellular,aug,tue,629,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,unknown,no,yes,cellular,aug,tue,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,high.school,no,yes,no,cellular,aug,tue,231,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,tue,119,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,609,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,tue,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,single,professional.course,unknown,yes,no,cellular,aug,tue,57,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,tue,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,386,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,112,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,professional.course,no,no,no,cellular,aug,tue,706,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,173,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,divorced,unknown,no,no,no,cellular,aug,tue,228,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,divorced,university.degree,no,no,no,cellular,aug,tue,207,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,unknown,unknown,cellular,aug,tue,347,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.6y,no,no,no,cellular,aug,tue,256,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,married,university.degree,no,yes,no,cellular,aug,tue,85,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,no,yes,cellular,aug,tue,60,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,yes,cellular,aug,tue,207,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +57,services,married,high.school,no,no,no,cellular,aug,tue,187,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,166,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,152,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,tue,93,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,unknown,no,no,cellular,aug,tue,54,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,services,married,professional.course,no,no,no,cellular,aug,tue,836,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +31,services,divorced,high.school,no,yes,yes,cellular,aug,tue,242,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,university.degree,no,yes,yes,cellular,aug,tue,235,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,telephone,aug,tue,132,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,tue,561,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,tue,303,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,management,married,university.degree,no,yes,no,cellular,aug,tue,343,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,services,married,university.degree,no,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,retired,married,basic.4y,unknown,yes,yes,cellular,aug,tue,595,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,tue,1200,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,unknown,yes,no,cellular,aug,tue,695,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,tue,100,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,admin.,married,university.degree,unknown,yes,yes,cellular,aug,tue,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,blue-collar,married,basic.4y,no,unknown,unknown,telephone,aug,tue,480,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,46,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,wed,125,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,single,university.degree,unknown,yes,yes,cellular,aug,wed,131,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,wed,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,118,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,divorced,high.school,no,no,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,wed,80,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,83,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,150,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,wed,582,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,wed,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,divorced,high.school,unknown,no,no,cellular,aug,wed,190,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,retired,married,basic.9y,unknown,yes,yes,cellular,aug,wed,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,high.school,unknown,yes,no,cellular,aug,wed,143,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,admin.,married,university.degree,no,yes,no,cellular,aug,wed,264,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,wed,216,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,management,divorced,university.degree,no,no,no,cellular,aug,wed,649,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +33,admin.,single,university.degree,no,no,yes,cellular,aug,wed,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,wed,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,high.school,no,yes,no,cellular,aug,wed,30,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,management,married,university.degree,no,no,no,cellular,aug,wed,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,university.degree,no,yes,no,cellular,aug,wed,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,retired,married,university.degree,no,no,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,university.degree,no,no,no,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,admin.,single,university.degree,no,no,no,cellular,aug,wed,377,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,housemaid,married,university.degree,no,yes,yes,cellular,aug,wed,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,services,married,high.school,no,no,no,cellular,aug,wed,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,wed,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,services,married,high.school,unknown,no,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,unemployed,married,professional.course,no,no,yes,cellular,aug,wed,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,technician,married,professional.course,no,no,no,cellular,aug,wed,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,university.degree,no,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,wed,256,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,50,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,basic.4y,no,no,yes,cellular,aug,wed,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,high.school,no,yes,yes,cellular,aug,wed,18,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,single,university.degree,unknown,no,no,cellular,aug,wed,483,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,basic.4y,no,yes,no,cellular,aug,wed,212,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,64,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,329,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,no,yes,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,divorced,university.degree,unknown,no,no,cellular,aug,wed,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,wed,295,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,25,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,single,high.school,no,no,no,cellular,aug,wed,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,single,high.school,no,yes,no,cellular,aug,wed,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,wed,391,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,management,married,high.school,unknown,yes,no,cellular,aug,wed,228,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,no,yes,no,cellular,aug,wed,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,wed,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,wed,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,wed,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,wed,340,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,no,no,no,cellular,aug,wed,921,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +36,self-employed,divorced,professional.course,no,yes,no,cellular,aug,wed,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,no,yes,no,cellular,aug,wed,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,no,yes,no,cellular,aug,wed,84,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,no,no,no,cellular,aug,wed,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,management,married,university.degree,no,no,no,cellular,aug,wed,500,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,no,yes,no,cellular,aug,wed,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,wed,53,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,wed,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,72,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,467,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +36,technician,married,high.school,unknown,yes,no,cellular,aug,wed,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,entrepreneur,married,high.school,no,no,no,cellular,aug,wed,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,high.school,unknown,yes,no,cellular,aug,wed,231,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,entrepreneur,married,high.school,no,yes,no,cellular,aug,wed,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,wed,543,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +32,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,yes,cellular,aug,wed,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,management,married,high.school,unknown,no,no,cellular,aug,wed,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,entrepreneur,single,university.degree,no,yes,yes,cellular,aug,wed,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,self-employed,married,professional.course,unknown,yes,no,cellular,aug,wed,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,basic.9y,unknown,yes,no,cellular,aug,wed,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,428,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,193,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,high.school,unknown,yes,no,cellular,aug,wed,158,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,wed,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,basic.9y,no,yes,yes,cellular,aug,wed,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,basic.9y,no,no,no,cellular,aug,wed,351,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,admin.,married,university.degree,no,no,no,cellular,aug,wed,552,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,322,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,wed,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,1044,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +30,technician,single,professional.course,no,no,no,cellular,aug,wed,387,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,single,university.degree,no,no,yes,cellular,aug,wed,162,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,875,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,blue-collar,married,basic.4y,no,no,yes,cellular,aug,wed,414,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,married,university.degree,no,yes,no,cellular,aug,wed,552,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,wed,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,wed,263,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,wed,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,married,professional.course,unknown,no,no,cellular,aug,wed,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,professional.course,no,yes,no,cellular,aug,wed,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,360,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,no,no,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,wed,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,yes,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,138,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,204,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,yes,no,cellular,aug,wed,535,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,university.degree,unknown,yes,no,cellular,aug,wed,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,single,professional.course,no,yes,no,cellular,aug,wed,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,wed,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,services,married,professional.course,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,wed,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,359,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,single,university.degree,no,yes,no,cellular,aug,wed,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,277,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,aug,wed,588,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +60,retired,married,university.degree,no,no,no,cellular,aug,wed,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,high.school,no,no,no,cellular,aug,wed,184,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,237,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,wed,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,wed,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,25,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,blue-collar,single,high.school,no,no,no,cellular,aug,wed,211,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,233,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,services,divorced,high.school,unknown,no,no,cellular,aug,wed,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,services,married,high.school,unknown,yes,no,cellular,aug,wed,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,management,married,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,divorced,professional.course,unknown,yes,no,cellular,aug,wed,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,wed,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,763,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +36,technician,single,university.degree,no,unknown,unknown,cellular,aug,wed,889,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,aug,wed,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,aug,wed,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,single,university.degree,unknown,yes,no,cellular,aug,wed,413,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,wed,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,wed,472,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,352,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,management,married,high.school,no,no,no,cellular,aug,wed,171,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,high.school,no,yes,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,university.degree,unknown,no,no,cellular,aug,wed,212,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,no,yes,cellular,aug,wed,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,112,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,wed,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,married,university.degree,no,yes,no,cellular,aug,wed,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,high.school,no,yes,no,cellular,aug,wed,599,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,536,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +35,technician,single,professional.course,no,yes,no,cellular,aug,wed,75,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,single,professional.course,no,no,no,cellular,aug,wed,1740,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,513,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,technician,married,professional.course,no,yes,yes,cellular,aug,wed,744,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,wed,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,wed,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,university.degree,no,no,yes,cellular,aug,wed,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,aug,wed,194,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,married,university.degree,no,yes,yes,cellular,aug,wed,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,unknown,unknown,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,259,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,management,married,university.degree,no,yes,no,cellular,aug,wed,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,admin.,divorced,professional.course,no,no,no,cellular,aug,wed,329,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,management,married,university.degree,no,yes,no,cellular,aug,wed,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,management,married,university.degree,no,no,no,cellular,aug,wed,414,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,aug,wed,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,wed,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,housemaid,single,university.degree,no,no,yes,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,aug,wed,447,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,technician,married,professional.course,unknown,no,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,no,yes,cellular,aug,wed,15,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,basic.4y,no,yes,no,cellular,aug,wed,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,admin.,married,university.degree,no,yes,no,cellular,aug,wed,471,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,wed,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,wed,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,university.degree,no,yes,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,188,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1408,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +39,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,blue-collar,married,basic.9y,no,unknown,unknown,cellular,aug,wed,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,293,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,wed,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,wed,118,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,584,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,wed,718,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +35,technician,single,university.degree,no,no,yes,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,university.degree,no,no,yes,cellular,aug,wed,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,aug,wed,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,aug,wed,797,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,university.degree,no,yes,no,cellular,aug,wed,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,aug,wed,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,high.school,unknown,no,no,cellular,aug,wed,921,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,technician,single,university.degree,unknown,no,no,cellular,aug,wed,605,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,wed,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,high.school,no,no,no,cellular,aug,wed,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,no,yes,cellular,aug,wed,443,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,entrepreneur,married,basic.9y,unknown,yes,no,cellular,aug,wed,156,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,high.school,no,no,no,cellular,aug,wed,552,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,no,no,yes,cellular,aug,wed,280,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,243,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,wed,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,430,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,unknown,no,no,cellular,aug,wed,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,380,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,wed,327,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,wed,627,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +37,admin.,married,university.degree,no,yes,no,cellular,aug,wed,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,housemaid,divorced,basic.9y,no,yes,no,cellular,aug,wed,175,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,687,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,395,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,self-employed,married,university.degree,no,no,no,cellular,aug,wed,696,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,wed,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,self-employed,married,high.school,no,yes,no,cellular,aug,wed,304,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,technician,married,high.school,no,yes,no,cellular,aug,wed,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,services,married,high.school,no,yes,no,cellular,aug,wed,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,no,yes,cellular,aug,wed,291,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,no,no,cellular,aug,wed,420,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,management,married,university.degree,unknown,yes,yes,cellular,aug,wed,216,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,975,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,881,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,157,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,admin.,married,university.degree,no,no,yes,cellular,aug,wed,92,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,wed,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,blue-collar,married,professional.course,no,yes,no,cellular,aug,wed,252,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,unknown,no,no,cellular,aug,wed,93,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,unemployed,married,basic.9y,no,yes,no,cellular,aug,wed,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,university.degree,no,no,no,cellular,aug,wed,174,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,technician,divorced,professional.course,unknown,unknown,unknown,cellular,aug,wed,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,wed,89,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,admin.,married,university.degree,no,no,no,telephone,aug,wed,237,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,wed,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,no,no,cellular,aug,wed,896,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,aug,wed,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,high.school,no,yes,no,cellular,aug,wed,625,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,aug,wed,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,basic.9y,no,no,no,cellular,aug,wed,76,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,high.school,no,yes,yes,cellular,aug,wed,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,services,married,high.school,no,no,no,cellular,aug,wed,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,wed,559,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,wed,273,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,83,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,37,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,wed,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,50,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,basic.9y,unknown,yes,yes,cellular,aug,wed,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,209,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,services,married,high.school,no,yes,no,cellular,aug,wed,703,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +30,admin.,married,university.degree,no,no,no,cellular,aug,wed,345,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,single,university.degree,unknown,unknown,unknown,cellular,aug,wed,138,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,unknown,unknown,yes,no,cellular,aug,wed,341,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,wed,78,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,high.school,no,no,yes,cellular,aug,wed,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,self-employed,married,basic.9y,no,yes,no,telephone,aug,wed,41,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,134,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,single,university.degree,no,no,no,cellular,aug,wed,208,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,technician,married,high.school,no,no,yes,cellular,aug,wed,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,university.degree,no,no,no,cellular,aug,wed,66,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,married,professional.course,no,no,no,cellular,aug,wed,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,wed,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,housemaid,married,basic.4y,no,no,no,cellular,aug,wed,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,124,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,196,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,381,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,aug,wed,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,no,no,cellular,aug,wed,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,self-employed,married,professional.course,no,yes,no,cellular,aug,wed,181,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,221,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,housemaid,married,university.degree,no,yes,no,cellular,aug,wed,195,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,basic.9y,unknown,yes,no,cellular,aug,wed,226,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,university.degree,no,yes,yes,cellular,aug,wed,678,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,high.school,no,no,no,cellular,aug,wed,44,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,unknown,yes,no,cellular,aug,wed,46,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,basic.4y,unknown,no,yes,cellular,aug,wed,278,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,yes,yes,cellular,aug,wed,162,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,wed,225,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,wed,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,77,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,blue-collar,divorced,basic.4y,no,no,no,cellular,aug,wed,96,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,retired,married,professional.course,no,no,no,cellular,aug,wed,135,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,96,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,1464,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,unknown,yes,no,cellular,aug,wed,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,wed,320,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,no,yes,cellular,aug,thu,220,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,university.degree,no,yes,yes,cellular,aug,thu,462,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,high.school,no,yes,no,cellular,aug,thu,92,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,self-employed,married,university.degree,no,no,yes,cellular,aug,thu,432,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,thu,286,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,unknown,married,professional.course,unknown,no,yes,telephone,aug,thu,169,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,divorced,university.degree,no,no,no,cellular,aug,thu,182,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,no,no,no,cellular,aug,thu,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,444,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,no,yes,no,cellular,aug,thu,310,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,technician,married,professional.course,no,no,yes,cellular,aug,thu,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,high.school,unknown,no,no,cellular,aug,thu,189,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,high.school,unknown,no,yes,cellular,aug,thu,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,no,no,no,cellular,aug,thu,444,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,high.school,unknown,yes,no,cellular,aug,thu,199,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,self-employed,married,high.school,no,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,services,divorced,professional.course,no,no,yes,cellular,aug,thu,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,high.school,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,technician,married,professional.course,no,yes,yes,cellular,aug,thu,246,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,technician,single,high.school,unknown,yes,yes,cellular,aug,thu,971,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,thu,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,basic.6y,no,no,no,cellular,aug,thu,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,98,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,self-employed,married,basic.6y,no,no,no,cellular,aug,thu,218,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,thu,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,admin.,married,university.degree,no,no,no,cellular,aug,thu,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,services,married,basic.9y,no,no,no,cellular,aug,thu,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,unknown,no,no,no,cellular,aug,thu,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,admin.,married,university.degree,no,yes,no,cellular,aug,thu,238,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,no,yes,cellular,aug,thu,250,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,thu,396,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,technician,married,professional.course,unknown,no,no,cellular,aug,thu,351,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,self-employed,married,university.degree,no,no,no,cellular,aug,thu,273,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,university.degree,unknown,no,no,cellular,aug,thu,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,aug,thu,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,aug,thu,429,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,thu,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,divorced,university.degree,no,yes,yes,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,single,university.degree,no,yes,no,cellular,aug,thu,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,basic.9y,no,yes,no,cellular,aug,thu,676,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,professional.course,no,yes,yes,cellular,aug,thu,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,high.school,no,yes,no,cellular,aug,thu,1503,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +48,admin.,married,high.school,no,yes,no,cellular,aug,thu,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,professional.course,no,yes,no,cellular,aug,thu,384,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,admin.,single,university.degree,no,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,292,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,single,professional.course,no,no,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,aug,thu,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,unknown,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,unknown,yes,yes,cellular,aug,thu,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,management,married,university.degree,no,no,no,cellular,aug,thu,644,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +42,technician,married,university.degree,no,no,no,cellular,aug,thu,161,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,university.degree,no,yes,no,cellular,aug,thu,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,university.degree,no,no,yes,cellular,aug,thu,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,married,university.degree,no,yes,yes,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,unknown,no,no,cellular,aug,thu,776,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,thu,65,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,93,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,single,university.degree,no,no,no,cellular,aug,thu,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,223,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,services,married,high.school,no,no,no,cellular,aug,thu,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,housemaid,single,university.degree,no,yes,no,cellular,aug,thu,159,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,self-employed,married,basic.9y,no,unknown,unknown,cellular,aug,thu,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,divorced,university.degree,no,no,yes,cellular,aug,thu,376,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,thu,140,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,entrepreneur,married,university.degree,unknown,yes,yes,cellular,aug,thu,148,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,telephone,aug,thu,4199,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +30,technician,single,professional.course,no,no,no,cellular,aug,thu,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,588,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,151,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,high.school,no,no,no,cellular,aug,thu,913,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +48,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,thu,1111,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,basic.9y,no,unknown,unknown,cellular,aug,thu,282,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,thu,656,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,married,basic.4y,no,yes,no,cellular,aug,thu,265,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,thu,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,housemaid,married,professional.course,no,yes,yes,cellular,aug,thu,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,housemaid,divorced,professional.course,no,yes,no,cellular,aug,thu,321,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,management,married,university.degree,unknown,yes,yes,cellular,aug,thu,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,unemployed,married,basic.9y,no,yes,no,cellular,aug,thu,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,self-employed,married,university.degree,no,no,no,cellular,aug,thu,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,married,university.degree,no,no,no,cellular,aug,thu,335,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,self-employed,married,university.degree,no,no,no,cellular,aug,thu,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,self-employed,married,professional.course,no,no,no,cellular,aug,thu,90,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,244,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,high.school,unknown,yes,no,cellular,aug,thu,194,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,divorced,high.school,unknown,no,no,cellular,aug,thu,819,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +57,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,134,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,housemaid,married,university.degree,unknown,yes,no,cellular,aug,thu,297,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,housemaid,married,basic.9y,no,no,no,cellular,aug,thu,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,basic.4y,no,no,no,cellular,aug,thu,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,136,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,admin.,married,basic.9y,unknown,no,yes,cellular,aug,thu,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,management,married,university.degree,no,no,yes,cellular,aug,thu,166,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,single,university.degree,no,no,no,cellular,aug,thu,545,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,management,married,university.degree,unknown,no,yes,cellular,aug,thu,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,university.degree,no,no,yes,cellular,aug,thu,1505,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +51,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,high.school,no,yes,no,cellular,aug,thu,788,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +30,technician,single,high.school,no,yes,no,cellular,aug,thu,230,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,technician,married,professional.course,no,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,212,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,thu,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,no,yes,cellular,aug,thu,898,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,318,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,housemaid,married,basic.9y,unknown,no,no,cellular,aug,thu,180,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,thu,241,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,high.school,unknown,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,176,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,retired,married,basic.4y,unknown,no,no,cellular,aug,thu,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,thu,43,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,basic.9y,unknown,yes,no,cellular,aug,thu,122,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,12,15,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,thu,172,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,419,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,married,basic.4y,no,no,no,cellular,aug,thu,575,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,238,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,76,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,management,married,university.degree,no,yes,no,cellular,aug,thu,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,thu,156,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,unknown,university.degree,no,yes,no,cellular,aug,thu,89,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,188,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,housemaid,married,university.degree,no,no,no,cellular,aug,thu,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,high.school,no,yes,no,cellular,aug,thu,660,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,aug,thu,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,unknown,unknown,cellular,aug,thu,946,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +30,admin.,married,university.degree,no,unknown,unknown,cellular,aug,thu,55,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,admin.,unknown,university.degree,no,no,no,cellular,aug,thu,1532,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,435,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,283,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,202,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,technician,married,professional.course,no,no,no,cellular,aug,thu,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,thu,394,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,high.school,no,no,no,cellular,aug,thu,1026,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,thu,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,thu,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,admin.,married,high.school,unknown,no,no,cellular,aug,thu,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,unknown,no,yes,no,cellular,aug,thu,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,91,15,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,239,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,719,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,177,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,admin.,married,university.degree,unknown,yes,yes,cellular,aug,thu,381,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,high.school,unknown,unknown,unknown,cellular,aug,thu,381,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +56,self-employed,married,basic.9y,no,yes,no,cellular,aug,thu,793,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +44,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.6y,unknown,yes,yes,cellular,aug,thu,45,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,aug,thu,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,thu,144,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,technician,married,professional.course,no,yes,yes,cellular,aug,thu,870,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,thu,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,thu,87,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,housemaid,divorced,professional.course,no,no,no,cellular,aug,thu,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,thu,511,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,thu,500,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,aug,thu,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,362,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,high.school,unknown,yes,no,cellular,aug,thu,127,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,unknown,yes,no,cellular,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,thu,154,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,thu,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,professional.course,unknown,no,no,cellular,aug,thu,68,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,professional.course,unknown,no,yes,cellular,aug,thu,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,technician,single,professional.course,no,yes,no,cellular,aug,thu,396,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,blue-collar,married,basic.4y,no,no,yes,cellular,aug,thu,274,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,thu,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,150,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,high.school,unknown,yes,no,cellular,aug,thu,227,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,242,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,housemaid,married,basic.4y,no,no,no,cellular,aug,thu,200,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,360,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,thu,126,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,thu,224,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,basic.4y,unknown,yes,yes,cellular,aug,thu,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,256,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,686,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +54,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,415,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,management,married,university.degree,unknown,no,no,cellular,aug,thu,165,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,thu,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,thu,301,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,94,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,thu,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,services,married,high.school,unknown,no,no,cellular,aug,thu,42,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,high.school,no,no,no,cellular,aug,thu,294,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,764,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,services,married,basic.4y,unknown,no,no,cellular,aug,thu,93,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,aug,thu,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,thu,231,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,thu,1877,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +40,management,married,university.degree,no,yes,no,cellular,aug,thu,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,aug,thu,310,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,140,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,divorced,university.degree,no,yes,no,cellular,aug,thu,142,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,technician,married,high.school,no,yes,no,cellular,aug,thu,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,married,professional.course,no,yes,no,cellular,aug,thu,169,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,thu,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,aug,thu,314,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,unknown,yes,yes,cellular,aug,thu,189,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,thu,126,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,142,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,self-employed,single,university.degree,no,yes,no,cellular,aug,thu,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,368,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,299,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,196,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,thu,1117,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,yes +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,280,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,thu,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,300,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,services,married,professional.course,unknown,yes,no,cellular,aug,thu,160,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,management,married,university.degree,no,no,no,cellular,aug,thu,122,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,unknown,no,yes,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,379,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,divorced,high.school,no,no,no,cellular,aug,thu,494,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,163,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,unknown,no,yes,no,cellular,aug,thu,794,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,housemaid,married,university.degree,no,yes,no,cellular,aug,thu,46,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,unknown,no,no,telephone,aug,thu,331,14,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,thu,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,blue-collar,married,professional.course,no,yes,no,cellular,aug,thu,269,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +57,technician,married,university.degree,no,no,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +57,technician,married,university.degree,no,yes,no,cellular,aug,thu,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +57,retired,married,high.school,no,no,no,cellular,aug,fri,92,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,351,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,aug,fri,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,yes,yes,cellular,aug,fri,202,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,fri,242,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,fri,360,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,168,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,aug,fri,169,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,fri,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,152,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,203,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,high.school,no,no,no,cellular,aug,fri,136,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,fri,974,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,technician,single,professional.course,no,yes,no,cellular,aug,fri,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,technician,divorced,professional.course,unknown,yes,no,cellular,aug,fri,343,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,76,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,aug,fri,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,housemaid,married,unknown,unknown,yes,yes,cellular,aug,fri,93,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,retired,married,professional.course,no,yes,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,services,married,high.school,unknown,yes,yes,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,services,married,high.school,unknown,yes,no,cellular,aug,fri,154,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,586,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,university.degree,unknown,yes,no,cellular,aug,fri,1123,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +45,blue-collar,married,illiterate,no,yes,no,cellular,aug,fri,127,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,fri,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,57,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,167,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,491,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,admin.,married,high.school,no,yes,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,high.school,unknown,no,no,cellular,aug,fri,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,admin.,married,professional.course,no,yes,no,cellular,aug,fri,34,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,services,married,basic.9y,no,yes,yes,cellular,aug,fri,83,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,married,high.school,no,yes,no,cellular,aug,fri,306,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,single,professional.course,unknown,yes,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,fri,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,644,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,university.degree,unknown,no,yes,cellular,aug,fri,140,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,admin.,married,unknown,unknown,unknown,unknown,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,576,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,579,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +53,technician,married,professional.course,no,no,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,professional.course,no,yes,no,cellular,aug,fri,336,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +41,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,313,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,1241,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,unknown,no,yes,yes,cellular,aug,fri,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,136,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,fri,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,119,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,unknown,no,yes,no,cellular,aug,fri,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,unknown,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,unknown,no,no,no,cellular,aug,fri,739,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,self-employed,married,professional.course,no,yes,no,cellular,aug,fri,326,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,housemaid,married,unknown,no,yes,no,cellular,aug,fri,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,professional.course,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,unknown,no,no,no,cellular,aug,fri,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,227,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,professional.course,no,no,no,cellular,aug,fri,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,aug,fri,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,246,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,393,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,296,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.9y,no,no,yes,cellular,aug,fri,234,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,yes,no,cellular,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,305,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,aug,fri,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,aug,fri,254,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,520,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +56,admin.,married,unknown,no,yes,no,cellular,aug,fri,157,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,services,married,basic.4y,unknown,yes,no,cellular,aug,fri,119,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,192,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,unknown,no,no,no,cellular,aug,fri,229,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,self-employed,married,basic.9y,no,no,no,telephone,aug,fri,16,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,unknown,no,no,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,unemployed,married,high.school,unknown,no,no,cellular,aug,fri,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,fri,705,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,33,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,services,married,high.school,unknown,no,no,cellular,aug,fri,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,94,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,unknown,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,high.school,unknown,yes,yes,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,77,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,no,yes,cellular,aug,fri,944,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,self-employed,married,university.degree,no,yes,yes,cellular,aug,fri,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,492,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,213,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,yes,no,cellular,aug,fri,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,management,married,high.school,no,yes,no,cellular,aug,fri,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,unknown,no,no,no,cellular,aug,fri,83,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,unknown,no,no,yes,cellular,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,high.school,unknown,no,no,cellular,aug,fri,1258,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +51,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,fri,190,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,188,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,fri,82,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,unemployed,married,university.degree,no,no,no,cellular,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,unemployed,married,university.degree,no,yes,yes,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,services,married,high.school,unknown,no,no,cellular,aug,fri,362,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,services,married,high.school,unknown,yes,no,cellular,aug,fri,528,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,technician,single,professional.course,no,yes,yes,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,high.school,no,yes,no,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,blue-collar,married,basic.6y,no,yes,no,cellular,aug,fri,314,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,unknown,unknown,yes,yes,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,unknown,no,yes,yes,cellular,aug,fri,79,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,257,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,unknown,no,no,no,cellular,aug,fri,69,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,fri,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,self-employed,married,basic.9y,unknown,no,no,cellular,aug,fri,1329,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +49,blue-collar,married,basic.6y,unknown,no,no,cellular,aug,fri,66,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,fri,358,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,university.degree,no,yes,yes,cellular,aug,fri,73,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,fri,55,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,268,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,aug,fri,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,high.school,no,no,no,cellular,aug,fri,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,technician,married,professional.course,no,yes,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,telephone,aug,fri,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,fri,65,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,101,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,professional.course,no,yes,no,cellular,aug,fri,192,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,blue-collar,married,unknown,unknown,yes,no,cellular,aug,fri,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,unemployed,married,high.school,unknown,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,high.school,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,high.school,no,no,no,cellular,aug,fri,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,78,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,single,high.school,no,no,no,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,yes,cellular,aug,fri,197,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,technician,married,professional.course,unknown,no,no,cellular,aug,fri,46,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,278,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,yes,cellular,aug,fri,1197,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,fri,164,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,high.school,no,yes,no,cellular,aug,fri,171,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,no,no,cellular,aug,fri,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,unknown,no,no,no,cellular,aug,fri,220,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,basic.4y,unknown,yes,no,cellular,aug,fri,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,single,university.degree,no,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,single,university.degree,no,yes,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,high.school,no,yes,no,cellular,aug,fri,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,fri,205,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,565,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +38,technician,single,university.degree,no,yes,yes,cellular,aug,fri,572,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,divorced,professional.course,no,no,no,telephone,aug,fri,336,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,fri,232,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,fri,251,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,housemaid,married,unknown,no,yes,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,fri,243,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,fri,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,married,basic.4y,no,no,no,cellular,aug,fri,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,university.degree,unknown,no,no,cellular,aug,fri,217,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,services,married,high.school,no,no,no,cellular,aug,fri,149,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,no,no,no,cellular,aug,fri,128,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,unemployed,married,high.school,unknown,yes,no,cellular,aug,fri,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,742,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,200,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,fri,55,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,fri,604,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +30,technician,single,professional.course,no,yes,yes,cellular,aug,fri,22,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,services,married,high.school,no,no,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,137,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,fri,119,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,1809,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,fri,47,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,blue-collar,married,unknown,unknown,yes,yes,cellular,aug,fri,48,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,university.degree,no,no,no,cellular,aug,fri,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,single,university.degree,no,no,no,cellular,aug,fri,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,fri,243,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,services,married,high.school,unknown,yes,no,cellular,aug,fri,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,no,yes,cellular,aug,fri,187,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,services,married,basic.4y,unknown,yes,no,cellular,aug,fri,120,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,142,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,management,married,university.degree,unknown,yes,yes,cellular,aug,fri,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,self-employed,married,basic.9y,no,yes,no,cellular,aug,fri,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,27,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,yes,no,cellular,aug,fri,651,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,single,university.degree,no,no,no,cellular,aug,fri,71,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,unknown,no,no,no,cellular,aug,fri,233,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,fri,557,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,unemployed,married,university.degree,no,no,no,cellular,aug,fri,247,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,management,married,university.degree,unknown,no,no,telephone,aug,fri,208,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,fri,379,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,blue-collar,married,basic.4y,no,yes,no,telephone,aug,fri,295,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,single,university.degree,no,yes,no,cellular,aug,fri,212,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,university.degree,no,no,no,cellular,aug,fri,115,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,technician,married,professional.course,no,no,no,cellular,aug,fri,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,fri,238,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,yes,cellular,aug,fri,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,unknown,no,yes,no,cellular,aug,fri,251,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,374,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,services,married,basic.4y,unknown,no,no,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,professional.course,unknown,unknown,unknown,cellular,aug,fri,73,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,aug,fri,361,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,divorced,high.school,no,no,no,cellular,aug,fri,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,high.school,no,no,no,cellular,aug,fri,171,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,single,professional.course,no,no,yes,cellular,aug,fri,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,technician,married,professional.course,unknown,no,no,cellular,aug,fri,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,fri,209,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,fri,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,fri,152,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,fri,198,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,195,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,married,unknown,unknown,no,no,cellular,aug,fri,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,385,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,single,university.degree,no,unknown,unknown,cellular,aug,fri,371,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,divorced,high.school,no,unknown,unknown,cellular,aug,fri,50,15,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,714,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,admin.,married,high.school,no,yes,no,cellular,aug,fri,629,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,91,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,management,married,university.degree,no,no,yes,cellular,aug,fri,10,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,management,married,high.school,no,no,no,cellular,aug,fri,132,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,retired,married,basic.4y,unknown,yes,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,self-employed,married,basic.9y,no,yes,yes,cellular,aug,fri,1241,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,217,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,no,no,yes,cellular,aug,fri,219,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,yes,telephone,aug,fri,28,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,unknown,no,no,no,cellular,aug,fri,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,management,married,university.degree,no,yes,no,cellular,aug,fri,117,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,fri,607,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,538,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,aug,fri,337,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,management,married,university.degree,no,yes,no,cellular,aug,fri,527,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,admin.,married,university.degree,no,yes,no,cellular,aug,fri,73,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,unemployed,married,basic.9y,no,no,no,cellular,aug,fri,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,divorced,high.school,no,yes,no,cellular,aug,fri,291,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,management,married,university.degree,no,no,no,cellular,aug,fri,222,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,entrepreneur,married,high.school,no,no,no,cellular,aug,fri,277,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,self-employed,married,high.school,no,yes,no,cellular,aug,fri,175,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,309,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,97,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,management,married,university.degree,no,no,no,cellular,aug,fri,511,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,professional.course,no,no,yes,cellular,aug,fri,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,self-employed,married,basic.9y,no,no,yes,cellular,aug,fri,173,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,married,professional.course,no,no,yes,cellular,aug,fri,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,346,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,215,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,347,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,management,married,university.degree,no,unknown,unknown,cellular,aug,fri,154,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,housemaid,married,basic.6y,no,no,no,cellular,aug,fri,618,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,technician,divorced,professional.course,no,no,no,cellular,aug,fri,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,blue-collar,married,illiterate,no,no,no,cellular,aug,fri,460,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,married,high.school,no,yes,yes,cellular,aug,fri,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,fri,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,management,married,university.degree,no,no,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,divorced,high.school,no,no,no,cellular,aug,fri,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,661,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,fri,296,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,professional.course,no,no,yes,cellular,aug,fri,323,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,professional.course,no,yes,yes,cellular,aug,fri,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,single,professional.course,no,yes,yes,cellular,aug,fri,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,single,professional.course,no,no,yes,cellular,aug,fri,30,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,602,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,technician,divorced,professional.course,no,no,no,cellular,aug,fri,75,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,entrepreneur,married,high.school,no,no,no,cellular,aug,fri,332,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,314,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,fri,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,single,university.degree,no,yes,no,cellular,aug,fri,436,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,fri,186,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,fri,270,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,basic.4y,no,yes,yes,cellular,aug,fri,123,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,215,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,married,unknown,no,no,no,telephone,aug,fri,105,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,192,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,263,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,married,professional.course,no,yes,yes,cellular,aug,fri,143,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,professional.course,no,yes,yes,cellular,aug,fri,153,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,technician,married,university.degree,no,yes,yes,cellular,aug,fri,289,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,34,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,239,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,single,university.degree,no,no,yes,cellular,aug,fri,78,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,professional.course,no,no,no,cellular,aug,fri,309,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,353,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,management,married,university.degree,unknown,no,no,telephone,aug,fri,145,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,unknown,no,yes,yes,cellular,aug,fri,246,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,divorced,high.school,no,no,no,cellular,aug,fri,101,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,fri,222,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,fri,166,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,unemployed,married,professional.course,no,yes,yes,cellular,aug,fri,98,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,university.degree,no,no,yes,cellular,aug,fri,140,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,management,married,university.degree,no,no,no,cellular,aug,fri,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,services,married,unknown,no,no,no,cellular,aug,fri,547,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,self-employed,married,professional.course,no,no,no,cellular,aug,fri,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,unknown,no,no,cellular,aug,fri,120,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,fri,379,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,fri,182,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,housemaid,married,basic.4y,no,yes,no,cellular,aug,fri,195,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,177,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,self-employed,married,high.school,no,no,no,cellular,aug,fri,90,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,divorced,high.school,no,no,yes,cellular,aug,fri,263,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,398,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,management,married,high.school,no,no,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,single,professional.course,no,no,yes,cellular,aug,fri,82,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,160,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,no,yes,cellular,aug,fri,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,197,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,married,professional.course,no,unknown,unknown,telephone,aug,fri,9,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,single,university.degree,no,no,no,cellular,aug,fri,148,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,209,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,technician,married,professional.course,unknown,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,1366,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,fri,124,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,admin.,single,university.degree,no,no,no,cellular,aug,fri,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,professional.course,no,no,no,cellular,aug,fri,306,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,fri,268,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,services,married,high.school,no,no,no,cellular,aug,fri,155,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,fri,176,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,married,university.degree,no,yes,no,cellular,aug,fri,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,management,married,university.degree,no,no,yes,cellular,aug,fri,873,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +51,services,married,unknown,no,no,yes,cellular,aug,fri,135,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,housemaid,married,basic.6y,no,yes,no,cellular,aug,fri,208,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,divorced,high.school,no,yes,no,cellular,aug,fri,138,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,148,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,200,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,311,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,professional.course,no,yes,no,cellular,aug,fri,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,services,married,high.school,unknown,unknown,unknown,cellular,aug,mon,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,mon,139,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,626,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,aug,mon,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,no,yes,cellular,aug,mon,116,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,mon,162,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,109,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,mon,48,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,mon,540,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,mon,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,university.degree,no,no,no,cellular,aug,mon,342,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,management,married,university.degree,no,no,no,cellular,aug,mon,191,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,no,no,cellular,aug,mon,288,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,professional.course,no,yes,no,cellular,aug,mon,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,91,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,mon,196,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,single,university.degree,no,yes,no,cellular,aug,mon,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,115,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,self-employed,married,university.degree,unknown,no,no,cellular,aug,mon,102,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,no,yes,cellular,aug,mon,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,single,university.degree,no,yes,no,cellular,aug,mon,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,married,professional.course,no,yes,no,cellular,aug,mon,472,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,205,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,mon,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,yes,no,cellular,aug,mon,132,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,high.school,no,yes,yes,cellular,aug,mon,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,self-employed,married,university.degree,no,no,no,cellular,aug,mon,425,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,mon,50,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,363,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +29,admin.,single,university.degree,unknown,yes,no,cellular,aug,mon,129,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,divorced,university.degree,no,no,no,cellular,aug,mon,66,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,aug,mon,143,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,mon,145,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,university.degree,no,no,no,cellular,aug,mon,99,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,112,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,337,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,yes,no,cellular,aug,mon,961,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +32,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,87,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,divorced,professional.course,no,no,no,cellular,aug,mon,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,no,yes,cellular,aug,mon,463,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,yes,cellular,aug,mon,67,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,103,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,yes,no,cellular,aug,mon,234,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,divorced,university.degree,unknown,no,no,cellular,aug,mon,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,single,university.degree,no,no,yes,cellular,aug,mon,220,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,divorced,university.degree,unknown,no,yes,cellular,aug,mon,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,79,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,professional.course,unknown,no,no,cellular,aug,mon,48,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,no,no,cellular,aug,mon,83,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,self-employed,married,basic.9y,unknown,no,no,cellular,aug,mon,136,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,mon,417,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,divorced,university.degree,unknown,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,343,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,119,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,retired,married,unknown,no,yes,no,cellular,aug,mon,600,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +47,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,mon,149,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,married,university.degree,no,no,no,cellular,aug,mon,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,self-employed,married,university.degree,unknown,yes,no,cellular,aug,mon,932,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +60,blue-collar,married,unknown,no,no,no,cellular,aug,mon,93,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,blue-collar,married,unknown,no,no,no,cellular,aug,mon,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,mon,113,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,unemployed,married,university.degree,unknown,no,yes,cellular,aug,mon,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,retired,married,professional.course,no,yes,no,cellular,aug,mon,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,mon,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,high.school,unknown,no,no,cellular,aug,mon,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,mon,167,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,unknown,unknown,cellular,aug,mon,123,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,housemaid,married,unknown,no,no,no,cellular,aug,mon,106,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,professional.course,no,no,no,cellular,aug,mon,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,26,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,aug,mon,342,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,no,no,cellular,aug,mon,472,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +37,admin.,single,university.degree,no,yes,no,cellular,aug,mon,108,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,blue-collar,married,basic.6y,no,yes,no,cellular,aug,mon,62,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,married,university.degree,no,no,yes,telephone,aug,mon,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,unemployed,married,university.degree,no,yes,no,cellular,aug,mon,143,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,housemaid,married,unknown,no,yes,no,cellular,aug,mon,152,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,services,married,basic.9y,no,yes,no,cellular,aug,mon,104,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,mon,40,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,high.school,no,yes,no,telephone,aug,mon,176,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,272,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,mon,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,management,married,university.degree,no,yes,no,cellular,aug,mon,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,housemaid,married,basic.4y,unknown,no,no,cellular,aug,mon,463,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,343,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,university.degree,no,yes,yes,cellular,aug,mon,508,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,aug,mon,102,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,high.school,no,yes,no,cellular,aug,mon,1152,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +59,retired,married,unknown,no,no,no,cellular,aug,mon,284,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,management,married,university.degree,no,yes,no,cellular,aug,mon,14,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,mon,425,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,university.degree,no,no,no,cellular,aug,mon,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,yes,cellular,aug,mon,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,services,married,high.school,unknown,yes,yes,cellular,aug,mon,72,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,140,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,retired,married,high.school,unknown,no,no,cellular,aug,mon,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,divorced,professional.course,unknown,no,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,no,no,cellular,aug,mon,150,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,divorced,university.degree,no,yes,yes,cellular,aug,mon,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,mon,606,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +33,admin.,married,university.degree,no,no,no,cellular,aug,mon,177,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,technician,married,university.degree,no,no,no,cellular,aug,mon,250,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,132,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.9y,no,yes,no,cellular,aug,mon,93,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,mon,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,mon,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,services,married,high.school,no,yes,no,cellular,aug,mon,201,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,mon,324,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,university.degree,no,yes,yes,cellular,aug,mon,362,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,mon,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,self-employed,married,basic.9y,no,no,yes,cellular,aug,mon,140,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,single,university.degree,no,no,no,cellular,aug,mon,14,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,married,professional.course,no,yes,no,cellular,aug,mon,386,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,unknown,no,yes,no,cellular,aug,mon,476,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,42,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,366,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +31,admin.,married,university.degree,no,no,no,cellular,aug,mon,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,mon,23,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,technician,married,university.degree,no,no,no,cellular,aug,mon,228,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,112,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,high.school,unknown,yes,yes,cellular,aug,mon,115,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,management,married,university.degree,no,yes,yes,cellular,aug,mon,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,university.degree,no,yes,no,cellular,aug,mon,15,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,mon,728,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,divorced,university.degree,no,unknown,unknown,cellular,aug,mon,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.4y,unknown,yes,yes,cellular,aug,mon,262,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,services,married,high.school,no,no,no,cellular,aug,mon,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,9,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,entrepreneur,married,university.degree,no,no,no,cellular,aug,mon,99,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,11,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,mon,9,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,services,married,high.school,unknown,yes,yes,cellular,aug,mon,213,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,211,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,mon,422,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,self-employed,married,basic.9y,unknown,yes,no,cellular,aug,mon,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.9y,no,no,no,cellular,aug,mon,105,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,professional.course,no,yes,yes,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,married,university.degree,no,yes,no,cellular,aug,mon,111,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,unknown,unknown,yes,no,cellular,aug,mon,36,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,management,married,university.degree,no,no,no,cellular,aug,mon,169,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,divorced,high.school,no,no,no,cellular,aug,mon,205,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.4y,no,no,yes,cellular,aug,mon,734,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,484,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,mon,14,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,mon,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,mon,256,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,management,married,university.degree,no,yes,no,cellular,aug,mon,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,divorced,professional.course,no,yes,yes,cellular,aug,mon,692,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,296,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,housemaid,married,basic.4y,no,yes,no,cellular,aug,mon,232,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,151,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,management,married,university.degree,no,no,no,cellular,aug,mon,164,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,mon,198,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,454,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,married,university.degree,no,no,yes,cellular,aug,mon,114,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,blue-collar,married,basic.6y,no,yes,no,cellular,aug,mon,64,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,professional.course,unknown,yes,yes,cellular,aug,mon,84,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,no,no,cellular,aug,mon,203,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,self-employed,married,basic.9y,unknown,no,no,cellular,aug,mon,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,divorced,university.degree,no,no,no,cellular,aug,mon,731,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +46,admin.,married,university.degree,unknown,no,yes,cellular,aug,mon,184,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,mon,433,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,management,married,university.degree,no,no,no,cellular,aug,mon,361,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,mon,304,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,unknown,no,yes,no,cellular,aug,mon,101,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,admin.,divorced,university.degree,unknown,yes,yes,cellular,aug,mon,323,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,mon,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,mon,340,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,services,married,high.school,no,yes,no,cellular,aug,mon,54,15,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,high.school,no,yes,no,cellular,aug,mon,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,services,married,high.school,unknown,yes,yes,cellular,aug,mon,454,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,171,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,134,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,mon,265,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,unknown,no,yes,no,cellular,aug,mon,280,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,mon,62,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,services,married,high.school,unknown,yes,no,telephone,aug,mon,41,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,university.degree,no,yes,no,cellular,aug,mon,318,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,self-employed,married,university.degree,unknown,no,yes,cellular,aug,mon,131,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,365,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,married,high.school,unknown,yes,yes,cellular,aug,mon,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,mon,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,management,married,university.degree,no,no,no,cellular,aug,mon,105,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,99,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,197,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,mon,484,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,divorced,professional.course,unknown,no,no,cellular,aug,mon,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,services,married,professional.course,unknown,no,no,cellular,aug,mon,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,high.school,no,yes,no,cellular,aug,mon,630,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +31,technician,divorced,high.school,no,yes,no,cellular,aug,mon,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,141,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,married,professional.course,unknown,no,no,cellular,aug,mon,67,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.4y,no,no,no,cellular,aug,mon,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,management,married,university.degree,no,no,no,cellular,aug,mon,106,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,admin.,single,university.degree,no,yes,no,cellular,aug,mon,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,divorced,high.school,no,no,no,cellular,aug,mon,50,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,management,married,university.degree,no,no,no,cellular,aug,mon,163,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,mon,770,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,management,married,university.degree,no,no,no,cellular,aug,mon,313,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,348,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,mon,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,married,professional.course,unknown,yes,no,cellular,aug,mon,648,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,high.school,no,no,no,cellular,aug,mon,256,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,divorced,high.school,no,yes,yes,cellular,aug,mon,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,mon,335,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,retired,married,basic.9y,no,yes,no,cellular,aug,mon,342,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,single,university.degree,no,yes,no,cellular,aug,mon,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,university.degree,no,yes,no,cellular,aug,mon,159,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,124,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,aug,mon,378,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,single,professional.course,no,no,no,cellular,aug,mon,139,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,single,university.degree,unknown,yes,yes,cellular,aug,mon,170,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,unknown,married,unknown,unknown,no,no,cellular,aug,mon,51,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,no,yes,no,cellular,aug,mon,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,56,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,retired,married,basic.4y,unknown,yes,yes,cellular,aug,mon,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,divorced,professional.course,unknown,yes,no,cellular,aug,mon,714,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +54,blue-collar,married,basic.4y,no,yes,no,cellular,aug,mon,43,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,management,married,university.degree,no,no,yes,cellular,aug,mon,168,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,mon,36,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,mon,119,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,yes,cellular,aug,mon,153,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,unknown,no,no,cellular,aug,mon,431,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,high.school,unknown,yes,yes,cellular,aug,mon,127,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,high.school,no,yes,yes,cellular,aug,mon,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,mon,618,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,retired,married,professional.course,no,yes,no,cellular,aug,mon,202,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,married,university.degree,unknown,yes,no,cellular,aug,mon,392,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,technician,married,high.school,no,yes,no,cellular,aug,mon,226,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,144,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,aug,mon,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,121,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,390,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,no,no,cellular,aug,mon,75,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,admin.,single,university.degree,no,no,no,cellular,aug,mon,99,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,married,professional.course,no,no,yes,cellular,aug,mon,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,no,no,cellular,aug,mon,153,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,admin.,married,university.degree,unknown,yes,no,cellular,aug,mon,358,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,married,professional.course,no,yes,no,cellular,aug,mon,63,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,aug,mon,308,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,mon,163,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,professional.course,no,yes,no,cellular,aug,mon,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,mon,230,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,high.school,no,yes,yes,cellular,aug,mon,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,university.degree,no,no,no,cellular,aug,mon,98,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,married,high.school,no,yes,no,cellular,aug,mon,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,technician,married,professional.course,no,no,no,cellular,aug,mon,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,housemaid,married,basic.4y,unknown,yes,yes,cellular,aug,mon,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,aug,mon,1374,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +55,management,married,university.degree,no,no,no,cellular,aug,mon,372,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +47,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,104,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,retired,married,university.degree,no,yes,no,cellular,aug,tue,90,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,19,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,admin.,married,university.degree,no,no,no,cellular,aug,tue,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,admin.,single,university.degree,no,no,no,cellular,aug,tue,127,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,tue,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,admin.,single,university.degree,no,yes,no,cellular,aug,tue,179,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,basic.9y,no,yes,yes,cellular,aug,tue,160,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,retired,married,high.school,no,yes,no,cellular,aug,tue,106,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,management,married,university.degree,unknown,yes,no,cellular,aug,tue,66,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.4y,no,unknown,unknown,cellular,aug,tue,23,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,69,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,137,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,109,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,tue,435,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,services,married,high.school,unknown,yes,no,cellular,aug,tue,209,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,admin.,married,university.degree,no,no,no,cellular,aug,tue,958,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +54,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,yes,no,cellular,aug,tue,170,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,unknown,unknown,cellular,aug,tue,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,731,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +50,admin.,divorced,high.school,no,no,no,cellular,aug,tue,664,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +56,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,479,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,divorced,high.school,no,yes,no,cellular,aug,tue,254,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,427,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,housemaid,married,basic.4y,unknown,no,no,cellular,aug,tue,77,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,aug,tue,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,services,married,high.school,no,yes,no,cellular,aug,tue,49,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,aug,tue,102,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,62,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,109,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,management,married,university.degree,no,yes,no,cellular,aug,tue,0,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,retired,married,basic.9y,no,no,no,cellular,aug,tue,388,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +38,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,42,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,23,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,146,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,professional.course,no,no,no,cellular,aug,tue,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,housemaid,married,basic.4y,unknown,no,yes,cellular,aug,tue,235,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,technician,divorced,professional.course,no,no,no,cellular,aug,tue,94,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,high.school,unknown,no,no,cellular,aug,tue,135,15,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,tue,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +49,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,tue,276,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,159,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,yes,no,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,yes,no,cellular,aug,tue,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,aug,tue,102,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,single,university.degree,no,yes,no,cellular,aug,tue,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,high.school,no,no,no,cellular,aug,tue,106,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,108,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,admin.,married,university.degree,no,no,no,cellular,aug,tue,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,tue,92,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,tue,178,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,professional.course,unknown,no,no,cellular,aug,tue,169,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.4y,no,no,no,telephone,aug,tue,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,basic.9y,no,no,no,cellular,aug,tue,317,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,management,married,university.degree,unknown,no,no,cellular,aug,tue,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,management,married,university.degree,unknown,yes,no,cellular,aug,tue,196,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +34,technician,single,professional.course,no,yes,no,cellular,aug,tue,221,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,single,high.school,no,yes,yes,cellular,aug,tue,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,management,married,university.degree,unknown,yes,yes,cellular,aug,tue,634,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,professional.course,unknown,no,no,cellular,aug,tue,700,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,technician,divorced,high.school,no,no,no,cellular,aug,tue,67,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,self-employed,married,professional.course,no,no,no,cellular,aug,tue,80,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,tue,185,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,17,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,tue,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,no,yes,cellular,aug,tue,64,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,252,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,housemaid,married,basic.9y,no,yes,no,cellular,aug,tue,155,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,professional.course,no,yes,yes,cellular,aug,tue,14,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,management,married,university.degree,no,yes,no,cellular,aug,tue,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,748,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,university.degree,no,no,no,cellular,aug,tue,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,university.degree,no,no,no,cellular,aug,tue,181,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,housemaid,married,high.school,no,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,28,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,technician,divorced,university.degree,no,yes,no,cellular,aug,tue,610,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,divorced,professional.course,no,no,no,cellular,aug,tue,279,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,management,divorced,university.degree,no,yes,no,cellular,aug,tue,345,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,married,university.degree,no,no,no,cellular,aug,tue,191,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,admin.,married,university.degree,no,yes,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,18,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,married,university.degree,no,yes,no,cellular,aug,tue,541,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,tue,67,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,tue,137,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,yes,cellular,aug,tue,259,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,aug,tue,87,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,high.school,no,unknown,unknown,cellular,aug,tue,153,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,unknown,married,high.school,unknown,yes,no,cellular,aug,tue,142,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,tue,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,single,professional.course,no,yes,no,cellular,aug,tue,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,single,professional.course,no,unknown,unknown,cellular,aug,tue,123,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,single,professional.course,no,yes,no,cellular,aug,tue,239,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,technician,single,professional.course,no,no,no,cellular,aug,tue,358,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,286,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,312,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,management,married,university.degree,no,yes,no,cellular,aug,tue,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,417,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,management,married,university.degree,no,no,no,cellular,aug,tue,85,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,married,high.school,no,no,no,cellular,aug,tue,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,married,professional.course,no,no,no,cellular,aug,tue,392,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,admin.,married,university.degree,no,no,no,cellular,aug,tue,85,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,tue,24,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,admin.,married,university.degree,no,no,no,cellular,aug,tue,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,yes,no,telephone,aug,tue,66,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,yes,no,cellular,aug,tue,460,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,housemaid,married,basic.4y,no,yes,no,cellular,aug,tue,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,yes,no,cellular,aug,tue,189,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,married,high.school,no,no,no,cellular,aug,tue,73,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,technician,single,high.school,no,yes,no,cellular,aug,tue,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,retired,married,professional.course,no,no,no,cellular,aug,tue,139,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,admin.,single,high.school,no,yes,no,cellular,aug,tue,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,unemployed,divorced,high.school,no,yes,yes,cellular,aug,tue,99,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,yes,no,cellular,aug,tue,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,technician,married,professional.course,unknown,no,no,telephone,aug,tue,15,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,married,high.school,no,no,no,cellular,aug,tue,173,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,tue,176,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,260,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,self-employed,married,basic.9y,no,no,no,cellular,aug,tue,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,tue,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,university.degree,no,yes,no,cellular,aug,tue,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,university.degree,no,no,no,cellular,aug,tue,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,tue,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,technician,married,university.degree,no,unknown,unknown,cellular,aug,tue,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,130,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,tue,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,yes,no,cellular,aug,tue,484,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,tue,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,married,university.degree,no,yes,no,cellular,aug,tue,174,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,divorced,university.degree,no,yes,no,cellular,aug,tue,249,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,240,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,384,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,professional.course,no,yes,no,cellular,aug,tue,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +30,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,210,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,married,high.school,no,no,no,cellular,aug,tue,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,tue,211,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,436,1,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,retired,married,basic.9y,no,no,no,cellular,aug,tue,22,27,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,management,married,university.degree,no,yes,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,194,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,married,university.degree,no,no,no,cellular,aug,tue,124,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +39,technician,divorced,professional.course,unknown,yes,no,cellular,aug,tue,41,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,31,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,management,married,university.degree,no,no,no,cellular,aug,tue,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,married,university.degree,no,no,yes,cellular,aug,tue,301,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,retired,married,basic.9y,no,yes,yes,cellular,aug,tue,1223,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +35,technician,married,university.degree,no,yes,no,cellular,aug,tue,12,12,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,services,married,basic.4y,unknown,yes,no,cellular,aug,tue,1000,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +35,technician,married,professional.course,no,yes,no,cellular,aug,tue,333,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,admin.,married,university.degree,no,no,no,cellular,aug,tue,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,university.degree,no,no,no,cellular,aug,tue,241,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,technician,married,professional.course,unknown,no,no,cellular,aug,tue,471,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,married,university.degree,no,yes,no,cellular,aug,tue,55,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,technician,single,professional.course,no,yes,no,cellular,aug,tue,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,520,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,unknown,married,unknown,unknown,yes,no,cellular,aug,tue,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,unemployed,divorced,high.school,no,no,no,cellular,aug,tue,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,self-employed,married,university.degree,no,no,no,cellular,aug,tue,320,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,36,19,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,aug,tue,234,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,divorced,high.school,no,unknown,unknown,cellular,aug,tue,301,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,tue,75,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,high.school,no,no,no,cellular,aug,tue,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +32,technician,single,high.school,no,no,no,cellular,aug,tue,162,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,housemaid,married,unknown,unknown,yes,no,cellular,aug,tue,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +41,unemployed,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,271,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +40,technician,single,high.school,no,yes,no,cellular,aug,tue,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,services,married,high.school,unknown,no,no,cellular,aug,tue,10,13,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,blue-collar,married,basic.4y,no,no,no,telephone,aug,tue,39,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,unknown,married,unknown,unknown,no,no,cellular,aug,tue,12,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,aug,tue,30,14,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,tue,59,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +50,housemaid,married,unknown,no,no,no,cellular,aug,tue,287,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,blue-collar,married,basic.6y,no,yes,no,cellular,aug,tue,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +35,admin.,single,university.degree,no,yes,no,cellular,aug,tue,63,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,admin.,married,university.degree,no,yes,no,cellular,aug,tue,358,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +54,admin.,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +60,technician,married,university.degree,no,yes,no,cellular,aug,tue,11,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,technician,single,university.degree,unknown,no,no,cellular,aug,tue,532,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,tue,175,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,tue,157,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,tue,112,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,divorced,university.degree,no,no,yes,cellular,aug,tue,264,19,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,172,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,entrepreneur,married,high.school,no,yes,no,cellular,aug,tue,435,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,84,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,653,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,professional.course,no,no,no,cellular,aug,tue,205,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,110,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,high.school,no,no,no,cellular,aug,tue,100,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,management,married,university.degree,no,yes,no,cellular,aug,tue,133,8,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,technician,single,university.degree,no,no,no,cellular,aug,tue,277,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,entrepreneur,married,high.school,no,yes,yes,cellular,aug,tue,303,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,technician,married,high.school,no,yes,yes,cellular,aug,tue,263,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,aug,tue,265,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +53,unknown,married,basic.4y,unknown,no,no,cellular,aug,tue,107,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,tue,77,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,management,married,university.degree,no,no,yes,cellular,aug,tue,130,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,services,married,high.school,no,no,no,cellular,aug,tue,377,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,155,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +52,blue-collar,married,high.school,no,yes,no,cellular,aug,tue,454,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,university.degree,unknown,yes,yes,cellular,aug,tue,61,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,services,married,high.school,no,yes,no,cellular,aug,tue,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,technician,single,professional.course,no,yes,yes,cellular,aug,tue,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,management,married,university.degree,no,yes,yes,cellular,aug,tue,384,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +31,management,married,university.degree,no,yes,no,cellular,aug,tue,57,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,209,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,technician,married,high.school,no,no,no,cellular,aug,tue,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,tue,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,tue,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,tue,168,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +45,services,married,basic.6y,unknown,no,no,cellular,aug,tue,98,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,tue,366,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +29,services,married,professional.course,unknown,yes,no,cellular,aug,tue,2089,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +54,admin.,married,high.school,no,no,no,cellular,aug,tue,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,married,professional.course,no,no,no,cellular,aug,tue,369,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,admin.,married,university.degree,unknown,yes,no,cellular,aug,tue,125,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +37,blue-collar,single,professional.course,no,no,no,cellular,aug,tue,109,11,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +48,admin.,divorced,university.degree,unknown,no,no,cellular,aug,tue,58,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,tue,35,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,retired,married,basic.4y,no,no,no,cellular,aug,tue,556,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,yes +47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,100,3,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +51,services,married,high.school,unknown,no,yes,cellular,aug,tue,20,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +42,self-employed,single,university.degree,no,yes,no,cellular,aug,tue,133,6,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +57,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,240,4,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,aug,tue,59,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +46,admin.,married,university.degree,unknown,no,no,cellular,aug,tue,515,9,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,tue,130,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +55,blue-collar,married,basic.9y,no,no,no,telephone,aug,tue,361,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +36,technician,married,university.degree,no,no,no,cellular,aug,tue,99,5,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,blue-collar,divorced,basic.6y,unknown,no,no,cellular,aug,tue,272,7,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +58,housemaid,married,professional.course,no,yes,no,cellular,aug,tue,98,10,999,0,nonexistent,1.4,93.444,-36.1,4.965,5228.1,no +47,technician,married,professional.course,no,yes,no,cellular,aug,wed,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,management,married,university.degree,no,yes,no,cellular,aug,wed,52,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,divorced,professional.course,no,no,no,cellular,aug,wed,157,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,wed,609,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +37,blue-collar,single,professional.course,no,no,no,cellular,aug,wed,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,wed,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,87,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,high.school,no,yes,no,cellular,aug,wed,128,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,university.degree,no,yes,no,cellular,aug,wed,581,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +52,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,20,24,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,18,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,married,basic.9y,no,yes,yes,cellular,aug,wed,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,wed,154,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,wed,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,technician,married,professional.course,no,no,no,cellular,aug,wed,146,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,wed,185,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,high.school,no,no,no,cellular,aug,wed,1033,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +37,blue-collar,single,professional.course,no,yes,no,cellular,aug,wed,503,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,technician,married,professional.course,no,yes,no,cellular,aug,wed,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,admin.,divorced,professional.course,unknown,yes,no,cellular,aug,wed,87,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,no,no,cellular,aug,wed,105,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,57,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,124,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,unknown,married,unknown,unknown,no,no,cellular,aug,wed,52,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,single,high.school,no,yes,no,cellular,aug,wed,219,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,281,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,entrepreneur,married,high.school,no,no,no,cellular,aug,wed,57,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,university.degree,no,no,no,cellular,aug,wed,97,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,155,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,wed,84,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,technician,married,high.school,no,yes,no,cellular,aug,wed,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,management,married,university.degree,no,yes,no,cellular,aug,wed,130,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,technician,married,professional.course,no,yes,yes,cellular,aug,wed,136,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,admin.,married,university.degree,unknown,no,no,telephone,aug,wed,39,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,married,high.school,no,yes,no,cellular,aug,wed,360,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,aug,wed,153,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,professional.course,no,yes,no,cellular,aug,wed,156,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,retired,married,professional.course,no,no,no,cellular,aug,wed,199,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,unknown,married,basic.4y,unknown,yes,no,cellular,aug,wed,23,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,management,married,university.degree,no,yes,no,cellular,aug,wed,181,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,wed,39,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,147,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,admin.,single,university.degree,no,no,no,cellular,aug,wed,113,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,wed,519,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +57,retired,married,high.school,unknown,yes,yes,cellular,aug,wed,223,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,243,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,yes,cellular,aug,wed,203,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,divorced,university.degree,unknown,no,no,cellular,aug,wed,191,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,technician,single,professional.course,no,yes,no,cellular,aug,wed,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,116,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,87,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,professional.course,no,yes,no,cellular,aug,wed,114,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,wed,219,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,married,university.degree,no,yes,no,cellular,aug,wed,512,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +44,technician,married,professional.course,no,yes,yes,cellular,aug,wed,236,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,130,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,retired,married,professional.course,no,no,no,cellular,aug,wed,111,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,professional.course,unknown,no,no,cellular,aug,wed,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,professional.course,no,no,no,cellular,aug,wed,85,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,69,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,basic.4y,unknown,yes,no,cellular,aug,wed,78,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,wed,134,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,services,married,high.school,no,yes,no,cellular,aug,wed,63,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,married,high.school,no,yes,yes,cellular,aug,wed,352,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,university.degree,no,yes,no,cellular,aug,wed,127,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,254,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,admin.,married,basic.9y,no,no,yes,cellular,aug,wed,100,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,single,high.school,no,yes,no,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,no,no,cellular,aug,wed,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,217,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,wed,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,121,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,125,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,wed,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,management,married,university.degree,no,yes,no,telephone,aug,wed,220,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,single,high.school,no,yes,no,telephone,aug,wed,9,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,high.school,no,yes,no,cellular,aug,wed,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,single,university.degree,no,yes,no,cellular,aug,wed,763,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +31,management,married,university.degree,no,no,no,cellular,aug,wed,129,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,technician,married,professional.course,no,no,no,cellular,aug,wed,976,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +51,technician,married,high.school,no,yes,no,cellular,aug,wed,549,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,wed,342,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,single,university.degree,no,yes,no,cellular,aug,wed,79,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,wed,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,119,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,technician,married,university.degree,no,no,no,cellular,aug,wed,15,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,308,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,professional.course,no,yes,no,cellular,aug,wed,103,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,blue-collar,married,high.school,no,no,no,cellular,aug,wed,312,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +60,retired,married,high.school,no,unknown,unknown,cellular,aug,wed,590,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,129,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,high.school,no,no,no,cellular,aug,wed,28,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,basic.4y,no,no,no,cellular,aug,wed,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,blue-collar,married,basic.4y,unknown,no,no,cellular,aug,wed,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,blue-collar,married,unknown,no,yes,no,cellular,aug,wed,94,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,professional.course,no,no,no,cellular,aug,wed,508,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,telephone,aug,wed,29,21,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,married,university.degree,no,yes,no,cellular,aug,wed,116,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,247,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,66,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,wed,335,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,38,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,married,professional.course,no,unknown,unknown,cellular,aug,wed,89,16,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,1129,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +54,technician,married,professional.course,no,yes,no,cellular,aug,wed,14,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,unknown,married,basic.4y,unknown,no,no,cellular,aug,wed,49,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,married,professional.course,no,no,no,telephone,aug,wed,645,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +47,admin.,married,university.degree,no,yes,no,cellular,aug,wed,176,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,self-employed,married,university.degree,no,yes,no,cellular,aug,wed,15,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,housemaid,married,basic.4y,no,no,yes,cellular,aug,wed,10,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,married,high.school,no,no,no,cellular,aug,wed,114,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,management,married,university.degree,no,no,no,cellular,aug,wed,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,retired,married,professional.course,no,yes,no,telephone,aug,wed,96,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,511,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,technician,divorced,university.degree,no,yes,yes,cellular,aug,wed,86,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,516,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,wed,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,professional.course,unknown,yes,yes,cellular,aug,wed,94,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,divorced,high.school,no,yes,no,cellular,aug,wed,125,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,aug,wed,125,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,12,14,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,wed,212,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,wed,178,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +48,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,wed,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,admin.,married,high.school,no,yes,yes,cellular,aug,wed,19,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,professional.course,no,no,yes,cellular,aug,wed,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,aug,wed,122,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,27,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,aug,wed,60,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,wed,34,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,management,married,university.degree,no,no,no,cellular,aug,wed,561,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,120,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,technician,single,high.school,no,no,no,cellular,aug,wed,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,wed,214,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,wed,523,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +37,technician,married,university.degree,no,no,no,cellular,aug,wed,107,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,wed,160,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,divorced,professional.course,no,no,no,cellular,aug,wed,16,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,no,yes,no,cellular,aug,wed,184,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,divorced,university.degree,unknown,no,no,cellular,aug,wed,168,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,76,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,120,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,university.degree,no,yes,no,cellular,aug,wed,138,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +52,technician,divorced,professional.course,no,no,no,cellular,aug,wed,79,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,technician,married,professional.course,no,yes,no,cellular,aug,wed,78,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,technician,divorced,professional.course,unknown,no,no,cellular,aug,wed,36,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,university.degree,unknown,yes,no,cellular,aug,wed,117,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,unknown,married,unknown,no,yes,yes,cellular,aug,wed,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +42,management,married,university.degree,no,yes,yes,cellular,aug,wed,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,wed,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,11,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,professional.course,unknown,no,no,cellular,aug,wed,18,15,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,wed,157,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,186,11,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,admin.,married,high.school,no,no,no,cellular,aug,wed,569,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,admin.,married,basic.9y,unknown,yes,no,cellular,aug,wed,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,admin.,married,basic.9y,unknown,no,no,cellular,aug,wed,19,17,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,wed,218,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,43,13,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,admin.,married,professional.course,no,no,no,cellular,aug,wed,37,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,no,no,no,cellular,aug,wed,1642,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,yes +44,technician,married,professional.course,no,no,no,cellular,aug,wed,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,wed,202,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,316,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,wed,26,10,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,services,married,basic.9y,unknown,yes,no,cellular,aug,wed,59,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,management,married,university.degree,no,yes,no,cellular,aug,wed,118,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,wed,72,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,self-employed,married,basic.4y,no,no,no,cellular,aug,wed,106,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,self-employed,married,basic.4y,no,no,no,cellular,aug,wed,263,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,married,high.school,unknown,yes,no,cellular,aug,wed,93,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,admin.,married,high.school,no,no,no,cellular,aug,wed,231,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,wed,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +37,technician,married,university.degree,no,no,no,cellular,aug,wed,141,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +32,unemployed,married,university.degree,no,yes,no,cellular,aug,wed,97,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +58,housemaid,married,basic.9y,no,no,no,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,unemployed,married,basic.9y,unknown,no,yes,cellular,aug,wed,88,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,divorced,professional.course,no,yes,yes,cellular,aug,wed,22,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,aug,wed,101,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,technician,married,professional.course,no,no,no,cellular,aug,wed,78,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,divorced,high.school,no,yes,no,cellular,aug,wed,293,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +56,retired,married,basic.6y,unknown,yes,no,cellular,aug,wed,39,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,high.school,no,yes,no,cellular,aug,wed,67,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +45,admin.,single,university.degree,no,yes,no,cellular,aug,wed,25,12,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,145,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,divorced,professional.course,no,no,no,cellular,aug,wed,167,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,aug,wed,126,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,admin.,single,university.degree,no,no,no,cellular,aug,wed,267,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,wed,23,17,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,unknown,married,unknown,no,no,yes,cellular,aug,wed,111,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,no,yes,no,cellular,aug,wed,206,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,unemployed,married,university.degree,no,no,no,cellular,aug,wed,95,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +47,technician,married,university.degree,no,yes,no,cellular,aug,wed,345,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,no,yes,cellular,aug,wed,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +36,management,married,university.degree,no,no,no,cellular,aug,wed,46,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,no,no,cellular,aug,wed,154,7,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,wed,85,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +35,admin.,single,university.degree,no,no,yes,cellular,aug,wed,448,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +50,management,married,professional.course,unknown,no,no,cellular,aug,wed,165,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,wed,53,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,admin.,married,university.degree,no,no,no,telephone,aug,wed,296,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,wed,202,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +49,unemployed,married,basic.4y,no,yes,no,cellular,aug,wed,155,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +54,housemaid,married,basic.4y,unknown,no,no,telephone,aug,wed,23,6,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,aug,wed,70,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,wed,787,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +44,technician,married,professional.course,no,yes,no,cellular,aug,wed,27,9,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,admin.,single,university.degree,no,no,no,cellular,aug,wed,183,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,wed,115,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,wed,62,4,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +40,technician,single,university.degree,no,yes,no,telephone,aug,wed,554,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +53,technician,married,professional.course,unknown,yes,yes,cellular,aug,wed,276,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +39,technician,married,professional.course,unknown,yes,no,cellular,aug,wed,145,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,wed,112,8,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +43,admin.,divorced,university.degree,no,yes,yes,cellular,aug,wed,95,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +55,admin.,married,high.school,no,yes,yes,cellular,aug,wed,61,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +46,admin.,married,high.school,no,no,no,cellular,aug,wed,63,3,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +57,admin.,married,university.degree,unknown,no,no,cellular,aug,wed,104,5,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,wed,118,2,999,0,nonexistent,1.4,93.444,-36.1,4.964,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,thu,34,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,technician,divorced,high.school,no,no,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,university.degree,unknown,no,yes,cellular,aug,thu,149,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,583,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +51,technician,married,professional.course,no,yes,no,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,55,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,university.degree,no,yes,yes,cellular,aug,thu,73,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,thu,131,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,self-employed,single,university.degree,no,yes,yes,cellular,aug,thu,118,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,81,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,66,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,thu,52,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,technician,married,professional.course,no,yes,no,cellular,aug,thu,236,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,technician,married,university.degree,no,yes,no,cellular,aug,thu,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,technician,single,professional.course,no,yes,no,cellular,aug,thu,94,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,technician,married,professional.course,no,no,no,cellular,aug,thu,211,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,thu,536,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +56,self-employed,married,high.school,no,yes,no,cellular,aug,thu,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,144,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,single,university.degree,no,yes,no,cellular,aug,thu,85,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,university.degree,unknown,no,no,cellular,aug,thu,74,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,thu,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,thu,192,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,management,married,university.degree,no,yes,no,cellular,aug,thu,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,116,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,university.degree,no,no,no,cellular,aug,thu,110,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,148,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,thu,67,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,university.degree,no,no,no,cellular,aug,thu,146,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,thu,979,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +33,services,married,professional.course,no,yes,no,cellular,aug,thu,51,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,admin.,single,university.degree,no,no,no,cellular,aug,thu,101,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,107,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,65,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,professional.course,unknown,no,no,cellular,aug,thu,78,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,technician,married,professional.course,no,yes,no,cellular,aug,thu,965,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +32,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,85,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,26,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,13,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +51,technician,married,professional.course,no,yes,no,cellular,aug,thu,47,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,technician,married,university.degree,unknown,yes,yes,cellular,aug,thu,30,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,technician,married,university.degree,no,no,no,cellular,aug,thu,38,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,thu,137,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,thu,84,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,single,university.degree,no,yes,no,cellular,aug,thu,94,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,admin.,married,high.school,no,yes,no,cellular,aug,thu,91,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +55,technician,married,high.school,no,no,yes,cellular,aug,thu,71,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,university.degree,no,yes,no,cellular,aug,thu,210,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,thu,121,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,96,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +52,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,82,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,technician,divorced,professional.course,no,yes,yes,cellular,aug,thu,100,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,technician,married,university.degree,no,unknown,unknown,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,thu,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,unknown,unknown,no,no,cellular,aug,thu,54,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,management,married,university.degree,no,yes,no,cellular,aug,thu,108,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,84,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +42,management,married,university.degree,no,yes,no,cellular,aug,thu,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,university.degree,unknown,yes,no,cellular,aug,thu,198,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,admin.,married,university.degree,no,no,no,cellular,aug,thu,262,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,unemployed,married,basic.9y,unknown,no,no,cellular,aug,thu,74,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,thu,23,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,109,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,125,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,12,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,thu,19,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,87,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,thu,17,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,professional.course,no,yes,no,cellular,aug,thu,56,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,technician,married,professional.course,no,no,no,cellular,aug,thu,80,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,single,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,75,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,technician,married,professional.course,no,no,no,cellular,aug,thu,81,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,admin.,divorced,high.school,no,no,no,cellular,aug,thu,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,94,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,professional.course,no,yes,no,cellular,aug,thu,147,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,unknown,married,unknown,no,no,no,cellular,aug,thu,79,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,university.degree,no,yes,yes,cellular,aug,thu,126,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,services,married,professional.course,no,yes,yes,cellular,aug,thu,331,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,technician,married,university.degree,no,yes,no,cellular,aug,thu,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,technician,divorced,university.degree,unknown,no,no,cellular,aug,thu,16,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,admin.,single,university.degree,no,yes,no,cellular,aug,thu,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,single,university.degree,no,yes,no,cellular,aug,thu,271,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,86,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,unemployed,married,basic.9y,unknown,yes,no,telephone,aug,thu,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,admin.,married,high.school,no,unknown,unknown,cellular,aug,thu,180,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +58,housemaid,married,basic.9y,no,no,no,cellular,aug,thu,54,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +56,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,technician,married,professional.course,no,no,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,married,university.degree,no,no,no,cellular,aug,thu,716,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +57,management,married,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,admin.,single,university.degree,no,no,yes,cellular,aug,thu,14,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,married,university.degree,no,no,no,cellular,aug,thu,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,services,married,basic.9y,no,no,no,cellular,aug,thu,110,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +47,admin.,married,high.school,no,yes,yes,cellular,aug,thu,59,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,192,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +58,self-employed,married,basic.6y,unknown,yes,no,cellular,aug,thu,157,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,535,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +41,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,15,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,married,university.degree,unknown,no,yes,cellular,aug,thu,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,thu,452,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +52,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,205,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,technician,single,professional.course,unknown,yes,no,cellular,aug,thu,302,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,technician,married,university.degree,no,yes,no,cellular,aug,thu,99,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,151,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,56,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +49,admin.,married,university.degree,unknown,no,no,cellular,aug,thu,54,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,married,high.school,no,yes,no,cellular,aug,thu,81,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,married,university.degree,unknown,no,no,cellular,aug,thu,88,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,122,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,married,university.degree,no,yes,yes,cellular,aug,thu,180,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,82,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,49,22,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,management,single,university.degree,no,yes,no,cellular,aug,thu,82,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,71,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +54,management,married,university.degree,no,yes,yes,cellular,aug,thu,121,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,married,university.degree,no,no,no,cellular,aug,thu,66,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,70,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,unknown,unknown,yes,yes,cellular,aug,thu,105,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,thu,12,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +47,technician,married,university.degree,no,yes,no,cellular,aug,thu,13,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,retired,divorced,university.degree,unknown,no,no,cellular,aug,thu,327,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,unknown,married,unknown,no,yes,no,cellular,aug,thu,44,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,professional.course,no,yes,no,cellular,aug,thu,183,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,admin.,married,high.school,no,yes,no,cellular,aug,thu,82,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,unemployed,married,university.degree,no,no,no,cellular,aug,thu,72,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,services,married,basic.9y,unknown,no,no,cellular,aug,thu,70,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,housemaid,married,basic.9y,no,yes,no,cellular,aug,thu,20,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,technician,married,university.degree,unknown,no,no,cellular,aug,thu,23,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,117,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,thu,28,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,admin.,married,university.degree,no,yes,no,cellular,aug,thu,203,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,thu,51,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,22,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,university.degree,no,yes,no,cellular,aug,thu,31,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,admin.,married,high.school,no,no,no,cellular,aug,thu,16,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +42,housemaid,married,university.degree,no,yes,yes,cellular,aug,thu,2372,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +39,admin.,married,university.degree,no,yes,no,cellular,aug,thu,86,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,management,married,university.degree,no,no,yes,cellular,aug,thu,308,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +46,technician,divorced,professional.course,no,no,no,cellular,aug,thu,93,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +57,management,married,university.degree,no,yes,no,cellular,aug,thu,203,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,68,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,thu,19,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,98,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,technician,single,university.degree,no,yes,no,cellular,aug,thu,9,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +54,management,married,university.degree,no,no,no,cellular,aug,thu,11,21,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +58,self-employed,married,basic.6y,unknown,yes,no,cellular,aug,thu,79,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +47,admin.,married,high.school,unknown,no,no,cellular,aug,thu,144,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,self-employed,married,basic.6y,no,yes,no,telephone,aug,thu,85,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,1126,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +58,retired,married,university.degree,unknown,no,no,cellular,aug,thu,17,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,professional.course,no,yes,no,cellular,aug,thu,16,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,admin.,single,university.degree,no,yes,no,cellular,aug,thu,276,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,no,no,telephone,aug,thu,146,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,admin.,single,university.degree,no,no,no,cellular,aug,thu,183,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +58,retired,married,university.degree,unknown,no,no,cellular,aug,thu,156,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,thu,1037,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +47,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,507,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,admin.,married,basic.9y,unknown,yes,yes,cellular,aug,thu,18,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,unknown,married,unknown,no,yes,no,cellular,aug,thu,27,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,thu,17,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,admin.,married,university.degree,no,yes,yes,telephone,aug,thu,19,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,thu,12,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,thu,32,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +42,housemaid,married,university.degree,no,unknown,unknown,telephone,aug,thu,12,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,unknown,unknown,no,no,cellular,aug,thu,7,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +42,management,married,university.degree,no,yes,no,cellular,aug,thu,715,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,management,married,university.degree,no,no,no,cellular,aug,thu,56,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,single,university.degree,no,yes,yes,cellular,aug,thu,195,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,admin.,married,high.school,no,yes,yes,cellular,aug,thu,95,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,single,university.degree,no,no,no,cellular,aug,thu,83,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,thu,66,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,technician,married,university.degree,no,no,no,cellular,aug,thu,8,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,46,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,thu,25,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,management,married,university.degree,no,yes,no,cellular,aug,thu,26,15,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,technician,single,university.degree,no,yes,no,cellular,aug,thu,958,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,married,university.degree,unknown,yes,no,cellular,aug,thu,88,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,20,20,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,yes,telephone,aug,thu,50,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,married,university.degree,no,no,no,cellular,aug,thu,45,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,thu,18,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,technician,divorced,high.school,unknown,yes,no,cellular,aug,thu,248,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,49,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,services,married,professional.course,no,yes,no,cellular,aug,thu,16,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,thu,258,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,13,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,married,university.degree,unknown,no,no,cellular,aug,thu,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,thu,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,23,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,married,university.degree,no,yes,no,cellular,aug,thu,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +55,unknown,married,unknown,unknown,yes,no,cellular,aug,thu,16,16,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,158,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +56,blue-collar,married,high.school,no,yes,no,cellular,aug,thu,69,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,university.degree,no,yes,no,cellular,aug,thu,77,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,services,married,professional.course,no,yes,yes,cellular,aug,thu,65,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,technician,divorced,professional.course,no,no,no,cellular,aug,thu,76,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +52,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,31,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,97,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,married,professional.course,no,no,no,cellular,aug,thu,140,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,self-employed,married,university.degree,no,no,no,cellular,aug,thu,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +60,admin.,married,basic.9y,no,no,no,cellular,aug,thu,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,289,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,management,married,university.degree,no,yes,no,cellular,aug,thu,77,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,thu,68,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,technician,married,university.degree,no,no,no,cellular,aug,thu,42,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,142,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,12,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,thu,402,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,thu,13,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,single,high.school,no,yes,no,cellular,aug,thu,77,12,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,management,married,university.degree,no,no,no,cellular,aug,thu,88,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,thu,50,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,thu,54,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,technician,married,professional.course,no,no,no,cellular,aug,thu,66,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,self-employed,married,high.school,no,yes,no,cellular,aug,thu,29,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +60,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,259,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,single,university.degree,no,no,no,cellular,aug,thu,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,thu,74,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,aug,thu,158,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,technician,married,professional.course,no,yes,yes,cellular,aug,thu,22,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,44,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,services,married,university.degree,no,yes,no,cellular,aug,thu,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,technician,married,professional.course,unknown,yes,no,cellular,aug,thu,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,management,married,university.degree,unknown,yes,no,cellular,aug,thu,172,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,admin.,single,university.degree,no,yes,no,telephone,aug,thu,46,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,140,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,59,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,single,university.degree,no,no,no,cellular,aug,thu,26,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,thu,77,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,married,university.degree,no,yes,no,cellular,aug,thu,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,103,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,blue-collar,married,unknown,unknown,yes,no,cellular,aug,thu,68,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +49,services,divorced,high.school,no,yes,no,cellular,aug,thu,99,17,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,270,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,technician,divorced,professional.course,no,no,yes,cellular,aug,thu,74,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,technician,married,university.degree,no,no,no,cellular,aug,thu,214,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +59,admin.,married,high.school,unknown,yes,no,cellular,aug,thu,147,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +44,admin.,married,university.degree,no,yes,no,cellular,aug,thu,460,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,114,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,95,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,aug,thu,602,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,thu,13,23,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,management,married,university.degree,no,no,no,cellular,aug,thu,9,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,high.school,no,no,no,cellular,aug,thu,52,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,technician,married,professional.course,no,yes,no,cellular,aug,thu,142,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,unemployed,single,university.degree,no,no,no,cellular,aug,thu,126,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +51,blue-collar,married,professional.course,no,no,yes,cellular,aug,thu,17,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,admin.,married,basic.9y,no,yes,no,cellular,aug,thu,15,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +55,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,thu,21,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,thu,8,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +53,self-employed,married,university.degree,no,yes,yes,telephone,aug,thu,48,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +55,unknown,married,unknown,unknown,yes,no,cellular,aug,thu,60,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,technician,married,professional.course,no,yes,no,telephone,aug,thu,51,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,single,university.degree,no,yes,no,cellular,aug,thu,70,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,admin.,married,basic.9y,no,no,no,cellular,aug,thu,23,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,technician,single,professional.course,unknown,no,no,cellular,aug,thu,199,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,divorced,high.school,no,no,no,cellular,aug,thu,12,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,single,university.degree,no,yes,yes,telephone,aug,thu,37,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +39,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,48,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,management,single,university.degree,no,no,no,cellular,aug,thu,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,management,single,university.degree,no,yes,no,cellular,aug,thu,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,18,14,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,thu,189,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,admin.,married,university.degree,no,no,no,cellular,aug,thu,36,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +60,retired,married,high.school,no,no,no,cellular,aug,thu,56,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,aug,thu,62,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,services,married,professional.course,no,no,no,telephone,aug,thu,64,18,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,thu,39,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,services,married,professional.course,no,yes,yes,cellular,aug,thu,133,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +49,services,married,basic.9y,no,yes,no,cellular,aug,thu,32,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +49,housemaid,married,basic.4y,unknown,yes,no,cellular,aug,thu,310,5,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +51,admin.,divorced,university.degree,unknown,yes,no,cellular,aug,thu,24,7,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,services,married,professional.course,no,yes,no,cellular,aug,thu,125,4,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,thu,1109,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,yes +53,self-employed,married,university.degree,no,yes,no,telephone,aug,thu,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,thu,76,11,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,thu,24,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +38,technician,divorced,professional.course,no,no,no,cellular,aug,thu,7,8,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +32,management,single,university.degree,no,yes,no,cellular,aug,thu,260,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,married,high.school,no,yes,yes,cellular,aug,thu,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +45,admin.,married,university.degree,no,no,no,telephone,aug,thu,58,3,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +43,admin.,married,university.degree,no,yes,no,cellular,aug,thu,433,10,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +40,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +35,technician,married,high.school,no,no,no,cellular,aug,thu,787,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,unemployed,single,university.degree,no,yes,yes,cellular,aug,thu,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +33,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,89,2,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +37,technician,single,professional.course,no,no,no,cellular,aug,thu,19,13,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,thu,15,9,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,thu,55,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +31,technician,married,professional.course,no,yes,no,cellular,aug,thu,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +58,admin.,divorced,university.degree,no,yes,no,telephone,aug,thu,688,6,999,0,nonexistent,1.4,93.444,-36.1,4.962,5228.1,no +50,management,married,university.degree,no,no,no,cellular,aug,fri,160,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,management,married,university.degree,no,yes,no,cellular,aug,fri,193,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,207,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,yes,no,cellular,aug,fri,106,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,80,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,admin.,married,basic.9y,unknown,yes,no,cellular,aug,fri,42,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,university.degree,no,yes,yes,cellular,aug,fri,65,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,yes,no,cellular,aug,fri,45,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,entrepreneur,married,basic.4y,unknown,yes,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,fri,92,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,fri,47,13,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,university.degree,no,no,no,cellular,aug,fri,59,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,married,university.degree,no,no,yes,cellular,aug,fri,24,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,56,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,single,university.degree,no,yes,no,cellular,aug,fri,105,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,self-employed,married,university.degree,no,no,no,cellular,aug,fri,144,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.6y,no,no,no,cellular,aug,fri,85,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,telephone,aug,fri,57,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,no,no,cellular,aug,fri,71,16,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,82,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,fri,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,university.degree,no,no,no,cellular,aug,fri,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,management,divorced,university.degree,no,no,no,telephone,aug,fri,247,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,married,professional.course,no,yes,no,cellular,aug,fri,119,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,88,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,technician,married,high.school,unknown,no,no,cellular,aug,fri,114,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,single,professional.course,no,yes,no,cellular,aug,fri,50,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,73,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,62,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,high.school,no,unknown,unknown,cellular,aug,fri,171,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,fri,24,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,21,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,technician,married,professional.course,no,no,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,services,married,professional.course,no,unknown,unknown,cellular,aug,fri,133,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,married,university.degree,no,yes,no,cellular,aug,fri,183,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,university.degree,no,no,no,cellular,aug,fri,25,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,professional.course,no,yes,yes,cellular,aug,fri,83,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,no,yes,no,cellular,aug,fri,41,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,no,yes,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,basic.6y,unknown,no,no,cellular,aug,fri,164,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,blue-collar,married,professional.course,no,no,no,cellular,aug,fri,150,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,divorced,professional.course,no,yes,yes,cellular,aug,fri,90,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,university.degree,no,yes,no,cellular,aug,fri,643,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,basic.6y,unknown,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,153,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,40,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,admin.,married,university.degree,unknown,no,yes,cellular,aug,fri,80,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,488,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,214,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,technician,married,professional.course,no,yes,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +36,admin.,single,university.degree,no,no,yes,cellular,aug,fri,69,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,yes,no,cellular,aug,fri,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,fri,108,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,no,no,cellular,aug,fri,135,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,management,married,university.degree,unknown,yes,no,cellular,aug,fri,339,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,professional.course,no,no,no,cellular,aug,fri,462,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,97,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,university.degree,no,yes,no,cellular,aug,fri,28,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,services,married,high.school,no,yes,no,cellular,aug,fri,179,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,109,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,no,yes,no,cellular,aug,fri,139,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,yes,no,telephone,aug,fri,103,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,unknown,married,unknown,unknown,no,no,cellular,aug,fri,105,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,admin.,single,university.degree,no,yes,no,cellular,aug,fri,213,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,blue-collar,married,basic.9y,no,no,yes,cellular,aug,fri,112,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,divorced,high.school,no,yes,no,cellular,aug,fri,255,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,technician,married,professional.course,unknown,no,yes,cellular,aug,fri,225,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,high.school,no,yes,no,cellular,aug,fri,131,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,no,yes,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,management,married,university.degree,no,no,no,cellular,aug,fri,159,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,fri,103,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,divorced,high.school,no,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,no,yes,cellular,aug,fri,81,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,admin.,married,university.degree,no,no,no,cellular,aug,fri,94,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,113,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,high.school,no,yes,no,cellular,aug,fri,35,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,retired,married,basic.9y,no,yes,no,cellular,aug,fri,96,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,yes,no,cellular,aug,fri,345,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,professional.course,no,no,no,cellular,aug,fri,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,79,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,yes,yes,cellular,aug,fri,128,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,no,no,cellular,aug,fri,204,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,unknown,yes,no,cellular,aug,fri,156,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,married,university.degree,no,no,no,cellular,aug,fri,67,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,admin.,married,high.school,no,yes,no,cellular,aug,fri,91,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,married,university.degree,no,yes,no,cellular,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,no,no,no,cellular,aug,fri,245,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,no,no,cellular,aug,fri,71,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,married,university.degree,no,unknown,unknown,cellular,aug,fri,235,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,divorced,university.degree,no,unknown,unknown,cellular,aug,fri,136,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,divorced,university.degree,no,no,no,cellular,aug,fri,63,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,married,professional.course,no,yes,no,cellular,aug,fri,122,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,137,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,no,telephone,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,fri,141,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,aug,fri,107,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,divorced,university.degree,no,no,yes,cellular,aug,fri,180,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +46,technician,married,unknown,no,yes,no,cellular,aug,fri,70,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,96,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,high.school,unknown,yes,no,cellular,aug,fri,398,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,technician,married,high.school,no,yes,no,cellular,aug,fri,60,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,high.school,no,yes,no,cellular,aug,fri,130,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,unknown,yes,no,cellular,aug,fri,256,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,yes,yes,cellular,aug,fri,264,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,services,married,high.school,no,yes,no,cellular,aug,fri,95,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,professional.course,no,yes,no,cellular,aug,fri,307,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,high.school,no,no,yes,cellular,aug,fri,210,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,77,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,housemaid,married,basic.4y,no,yes,no,telephone,aug,fri,116,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,management,married,university.degree,no,yes,yes,cellular,aug,fri,186,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +37,admin.,married,university.degree,no,no,no,telephone,aug,fri,115,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,married,high.school,unknown,no,no,cellular,aug,fri,93,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,services,married,unknown,no,no,no,telephone,aug,fri,104,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,technician,single,high.school,no,yes,no,cellular,aug,fri,85,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,telephone,aug,fri,59,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,married,university.degree,unknown,no,no,cellular,aug,fri,1028,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,186,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,management,married,university.degree,no,no,no,cellular,aug,fri,299,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,161,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,married,university.degree,unknown,yes,no,cellular,aug,fri,207,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,no,yes,no,cellular,aug,fri,91,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,no,no,cellular,aug,fri,133,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +54,services,married,high.school,no,yes,no,cellular,aug,fri,111,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,single,university.degree,unknown,yes,no,cellular,aug,fri,239,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,38,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,165,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,19,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,single,professional.course,no,yes,no,cellular,aug,fri,436,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,basic.9y,no,unknown,unknown,cellular,aug,fri,49,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,64,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,511,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,961,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,76,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,management,married,university.degree,no,no,no,cellular,aug,fri,124,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,technician,married,high.school,no,no,no,cellular,aug,fri,66,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,54,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,divorced,professional.course,unknown,yes,no,cellular,aug,fri,29,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,cellular,aug,fri,56,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,709,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,technician,single,professional.course,no,yes,no,cellular,aug,fri,95,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +43,technician,married,high.school,no,yes,no,telephone,aug,fri,251,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,398,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,47,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,fri,173,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,69,14,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,77,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,university.degree,no,yes,no,cellular,aug,fri,300,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,blue-collar,married,basic.4y,no,no,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,self-employed,married,university.degree,no,no,no,cellular,aug,fri,39,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,self-employed,married,university.degree,no,no,no,cellular,aug,fri,81,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +40,admin.,divorced,professional.course,no,yes,no,telephone,aug,fri,18,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,single,university.degree,no,no,no,telephone,aug,fri,36,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,admin.,married,basic.9y,no,no,no,cellular,aug,fri,24,11,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,single,university.degree,unknown,no,yes,cellular,aug,fri,70,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +49,blue-collar,married,basic.4y,unknown,yes,no,cellular,aug,fri,21,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,92,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,basic.4y,no,yes,no,telephone,aug,fri,162,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,technician,married,university.degree,unknown,unknown,unknown,cellular,aug,fri,116,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,basic.4y,no,yes,no,cellular,aug,fri,94,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,technician,married,professional.course,no,yes,no,telephone,aug,fri,58,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,admin.,married,university.degree,no,yes,no,cellular,aug,fri,76,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,technician,single,high.school,no,yes,no,cellular,aug,fri,90,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,no,no,cellular,aug,fri,14,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,high.school,no,yes,no,telephone,aug,fri,129,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,management,single,university.degree,no,no,no,cellular,aug,fri,157,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,single,university.degree,no,yes,no,telephone,aug,fri,145,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,divorced,professional.course,unknown,yes,yes,cellular,aug,fri,161,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,services,married,high.school,unknown,no,no,cellular,aug,fri,88,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,122,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,high.school,no,no,no,cellular,aug,fri,133,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,married,high.school,no,unknown,unknown,cellular,aug,fri,61,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,unknown,married,unknown,unknown,yes,no,cellular,aug,fri,10,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,493,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +47,admin.,married,university.degree,no,no,no,cellular,aug,fri,451,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,divorced,university.degree,unknown,no,no,telephone,aug,fri,86,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +34,technician,married,university.degree,no,yes,no,cellular,aug,fri,168,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,technician,married,professional.course,no,no,yes,cellular,aug,fri,370,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,management,married,university.degree,no,yes,no,cellular,aug,fri,93,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +30,admin.,divorced,university.degree,no,yes,yes,cellular,aug,fri,201,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,admin.,divorced,university.degree,unknown,no,no,cellular,aug,fri,59,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,85,8,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,301,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,admin.,married,basic.9y,no,yes,no,cellular,aug,fri,60,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,admin.,married,university.degree,no,no,no,cellular,aug,fri,27,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,admin.,married,university.degree,no,yes,no,telephone,aug,fri,20,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,management,married,university.degree,no,yes,yes,telephone,aug,fri,81,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +53,management,married,university.degree,no,no,no,telephone,aug,fri,74,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,unemployed,married,university.degree,no,yes,no,cellular,aug,fri,53,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,single,university.degree,no,no,no,cellular,aug,fri,35,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +35,technician,divorced,high.school,unknown,yes,no,telephone,aug,fri,117,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +50,admin.,married,basic.9y,no,no,no,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,admin.,married,university.degree,no,yes,no,telephone,aug,fri,43,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +38,technician,divorced,professional.course,no,yes,no,cellular,aug,fri,73,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,no,no,cellular,aug,fri,106,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,no,no,telephone,aug,fri,120,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,no,no,telephone,aug,fri,51,1,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,669,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,no,no,yes,cellular,aug,fri,46,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +33,admin.,married,university.degree,no,no,no,cellular,aug,fri,127,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +39,housemaid,married,basic.4y,unknown,yes,no,telephone,aug,fri,158,4,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,no,no,no,cellular,aug,fri,17,10,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,basic.4y,no,yes,no,cellular,aug,fri,68,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +45,technician,married,professional.course,no,yes,yes,cellular,aug,fri,215,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,yes,no,telephone,aug,fri,63,9,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +31,technician,single,professional.course,unknown,yes,yes,cellular,aug,fri,27,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,unknown,no,yes,yes,cellular,aug,fri,117,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +51,self-employed,married,high.school,no,yes,no,cellular,aug,fri,8,6,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +41,admin.,married,university.degree,no,yes,no,cellular,aug,fri,6,5,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +60,admin.,married,university.degree,no,no,no,cellular,aug,fri,515,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +59,retired,married,unknown,no,no,yes,cellular,aug,fri,88,2,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +58,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,89,3,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +55,technician,married,professional.course,no,yes,no,telephone,aug,fri,77,7,999,0,nonexistent,1.4,93.444,-36.1,4.963,5228.1,no +44,admin.,married,high.school,no,yes,no,telephone,oct,fri,159,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no +42,admin.,married,high.school,no,yes,yes,telephone,oct,fri,103,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes +39,blue-collar,married,basic.9y,no,no,no,telephone,oct,fri,270,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes +56,unknown,married,unknown,no,no,no,telephone,oct,fri,235,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes +30,entrepreneur,married,university.degree,no,no,no,telephone,oct,fri,223,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes +43,technician,single,professional.course,no,no,no,telephone,oct,fri,147,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no +27,self-employed,single,university.degree,no,no,no,telephone,oct,fri,24,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no +46,admin.,divorced,high.school,no,yes,no,telephone,oct,fri,3253,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,no +42,self-employed,married,basic.4y,no,no,no,telephone,oct,fri,478,1,999,0,nonexistent,-0.1,93.798,-40.4,5.045,5195.8,yes +52,technician,married,professional.course,no,yes,yes,telephone,oct,mon,164,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no +35,management,married,university.degree,no,yes,no,telephone,oct,mon,309,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no +35,entrepreneur,married,university.degree,no,yes,yes,telephone,oct,mon,2429,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no +48,admin.,married,high.school,no,no,no,telephone,oct,mon,312,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes +41,technician,divorced,professional.course,no,unknown,unknown,telephone,oct,mon,73,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,no +30,admin.,single,university.degree,no,yes,yes,telephone,oct,mon,718,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes +39,technician,divorced,university.degree,no,no,yes,telephone,oct,mon,2016,1,999,0,nonexistent,-0.1,93.798,-40.4,5,5195.8,yes +38,blue-collar,single,unknown,no,yes,no,telephone,oct,tue,39,1,999,1,failure,-0.1,93.798,-40.4,4.968,5195.8,no +44,admin.,divorced,high.school,no,yes,no,telephone,oct,tue,294,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes +59,admin.,married,university.degree,no,no,no,telephone,oct,tue,85,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes +33,housemaid,married,high.school,no,no,no,telephone,oct,tue,37,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes +32,admin.,married,high.school,no,no,no,telephone,oct,tue,101,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes +59,blue-collar,married,professional.course,no,no,no,telephone,oct,tue,19,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no +40,services,married,high.school,no,yes,no,telephone,oct,tue,144,1,999,1,failure,-0.1,93.798,-40.4,4.968,5195.8,yes +35,blue-collar,married,basic.9y,no,yes,no,telephone,oct,tue,4,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no +56,blue-collar,married,unknown,no,yes,no,telephone,oct,tue,54,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no +27,student,single,high.school,no,no,no,telephone,oct,tue,187,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,yes +41,admin.,single,high.school,no,no,no,telephone,oct,tue,49,1,999,0,nonexistent,-0.1,93.798,-40.4,4.968,5195.8,no +30,technician,single,university.degree,no,no,no,telephone,oct,wed,676,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes +36,technician,married,high.school,no,no,no,telephone,oct,wed,157,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes +56,technician,married,professional.course,no,no,no,telephone,oct,wed,73,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,no +43,self-employed,married,high.school,no,yes,no,telephone,oct,wed,181,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes +48,admin.,married,university.degree,no,no,no,telephone,oct,wed,98,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes +37,admin.,single,high.school,no,yes,no,telephone,oct,wed,313,1,999,0,nonexistent,-0.1,93.798,-40.4,4.936,5195.8,yes +36,services,married,high.school,no,yes,no,telephone,oct,thu,41,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,no +25,services,single,high.school,no,yes,no,telephone,oct,thu,301,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,yes +39,technician,married,professional.course,no,no,no,telephone,oct,thu,171,1,999,0,nonexistent,-0.1,93.798,-40.4,4.921,5195.8,yes +39,blue-collar,married,basic.9y,no,yes,no,telephone,oct,fri,112,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,yes +58,retired,married,university.degree,no,yes,no,telephone,oct,fri,12,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,no +38,admin.,married,high.school,no,yes,no,telephone,oct,fri,97,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,yes +26,entrepreneur,married,basic.9y,no,yes,no,telephone,oct,fri,5,1,999,0,nonexistent,-0.1,93.798,-40.4,4.918,5195.8,no +46,admin.,divorced,university.degree,no,no,no,telephone,oct,mon,376,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes +29,technician,single,professional.course,no,yes,no,telephone,oct,mon,150,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes +32,admin.,married,university.degree,no,no,yes,telephone,oct,mon,27,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no +31,admin.,married,university.degree,no,yes,no,telephone,oct,mon,131,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes +49,admin.,single,university.degree,no,yes,no,telephone,oct,mon,51,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no +26,admin.,single,university.degree,no,yes,no,telephone,oct,mon,251,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,yes +27,blue-collar,single,professional.course,no,yes,no,telephone,oct,mon,3284,1,999,0,nonexistent,-0.1,93.798,-40.4,4.912,5195.8,no +31,admin.,single,university.degree,no,yes,no,telephone,oct,tue,125,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +43,blue-collar,married,basic.9y,no,no,no,telephone,oct,tue,10,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,no +45,technician,divorced,high.school,no,yes,no,telephone,oct,tue,141,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +31,blue-collar,married,basic.6y,no,yes,no,telephone,oct,tue,154,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +34,admin.,single,university.degree,no,no,no,telephone,oct,tue,135,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +27,admin.,single,university.degree,no,no,no,telephone,oct,tue,540,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +33,entrepreneur,married,university.degree,no,yes,no,telephone,oct,tue,454,1,999,0,nonexistent,-0.1,93.798,-40.4,4.86,5195.8,yes +33,technician,married,professional.course,no,yes,no,telephone,oct,wed,171,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes +49,blue-collar,married,basic.6y,no,no,no,telephone,oct,wed,11,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,no +30,admin.,married,university.degree,no,no,no,telephone,oct,wed,313,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes +33,admin.,married,university.degree,no,no,no,telephone,oct,wed,167,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,no +34,blue-collar,single,high.school,no,yes,no,telephone,oct,wed,266,1,999,0,nonexistent,-0.1,93.798,-40.4,4.827,5195.8,yes +36,self-employed,single,university.degree,no,yes,no,telephone,oct,thu,248,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes +56,technician,married,high.school,no,no,no,telephone,oct,thu,234,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes +31,technician,single,university.degree,no,no,no,telephone,oct,thu,154,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes +34,blue-collar,divorced,high.school,no,yes,no,telephone,oct,thu,160,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,yes +58,admin.,divorced,high.school,no,no,no,telephone,oct,thu,81,1,999,0,nonexistent,-0.1,93.798,-40.4,4.794,5195.8,no +38,entrepreneur,married,basic.4y,no,no,no,telephone,oct,fri,227,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,yes +42,management,married,university.degree,no,no,no,telephone,oct,fri,615,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,yes +33,admin.,married,university.degree,no,no,no,cellular,oct,fri,18,1,999,0,nonexistent,-0.1,93.798,-40.4,4.76,5195.8,no +31,admin.,married,university.degree,no,yes,no,telephone,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.733,5195.8,no +33,admin.,married,university.degree,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.733,5195.8,no +30,admin.,married,university.degree,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no +25,admin.,single,university.degree,no,no,yes,telephone,nov,tue,5,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no +32,technician,married,professional.course,no,yes,no,telephone,nov,tue,399,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes +32,management,married,university.degree,no,yes,yes,telephone,nov,tue,15,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no +57,retired,divorced,university.degree,no,yes,no,telephone,nov,tue,21,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no +48,admin.,married,high.school,no,yes,no,telephone,nov,tue,217,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,no +30,blue-collar,married,basic.9y,no,no,no,telephone,nov,tue,465,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes +50,entrepreneur,married,university.degree,no,no,no,telephone,nov,tue,209,1,999,0,nonexistent,-0.1,93.2,-42,4.7,5195.8,yes +30,technician,married,professional.course,no,yes,no,telephone,nov,wed,6,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no +45,unknown,married,unknown,no,no,no,telephone,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes +36,admin.,married,university.degree,no,yes,no,telephone,nov,wed,449,1,999,1,failure,-0.1,93.2,-42,4.663,5195.8,no +57,admin.,divorced,university.degree,no,no,no,telephone,nov,wed,5,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no +25,management,married,university.degree,no,yes,no,telephone,nov,wed,268,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes +39,management,married,university.degree,no,yes,no,telephone,nov,wed,204,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes +27,self-employed,married,professional.course,no,no,no,telephone,nov,wed,669,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,yes +33,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no +47,admin.,married,university.degree,no,no,yes,telephone,nov,wed,23,1,999,0,nonexistent,-0.1,93.2,-42,4.663,5195.8,no +41,admin.,single,high.school,no,yes,no,telephone,nov,thu,234,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,yes +30,admin.,married,high.school,no,yes,no,telephone,nov,thu,26,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,no +29,technician,married,university.degree,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,yes +32,admin.,married,university.degree,no,no,no,telephone,nov,thu,132,1,999,0,nonexistent,-0.1,93.2,-42,4.592,5195.8,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,nov,fri,115,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,yes +29,admin.,married,basic.9y,no,yes,no,telephone,nov,fri,453,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,yes +43,retired,married,high.school,no,yes,no,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.474,5195.8,no +32,admin.,single,university.degree,no,no,no,telephone,nov,mon,1239,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no +33,technician,single,professional.course,no,yes,no,telephone,nov,mon,4918,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no +27,student,single,university.degree,no,yes,no,telephone,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no +24,management,single,university.degree,no,no,yes,telephone,nov,mon,107,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no +47,student,single,unknown,no,unknown,unknown,telephone,nov,mon,145,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,yes +46,technician,married,professional.course,no,no,no,telephone,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,no +58,retired,divorced,basic.9y,no,yes,no,telephone,nov,mon,248,1,999,0,nonexistent,-0.1,93.2,-42,4.406,5195.8,yes +47,management,divorced,university.degree,no,no,no,telephone,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no +43,services,married,basic.6y,no,no,no,telephone,nov,tue,133,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no +57,admin.,divorced,university.degree,no,no,no,telephone,nov,tue,119,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,no +32,unemployed,married,professional.course,no,yes,no,telephone,nov,tue,486,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,yes +33,services,married,high.school,no,no,no,telephone,nov,tue,158,1,999,0,nonexistent,-0.1,93.2,-42,4.343,5195.8,yes +36,admin.,married,high.school,no,yes,no,telephone,nov,wed,114,1,999,1,failure,-0.1,93.2,-42,4.286,5195.8,yes +58,management,divorced,university.degree,no,no,no,telephone,nov,wed,139,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,yes +53,technician,divorced,professional.course,no,yes,no,cellular,nov,wed,320,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no +37,housemaid,married,university.degree,no,yes,no,telephone,nov,wed,129,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no +48,admin.,married,high.school,no,no,no,telephone,nov,wed,24,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no +46,blue-collar,married,professional.course,no,yes,no,telephone,nov,wed,238,1,999,0,nonexistent,-0.1,93.2,-42,4.286,5195.8,no +37,admin.,married,university.degree,no,yes,no,telephone,nov,wed,119,1,6,1,success,-0.1,93.2,-42,4.286,5195.8,no +33,admin.,single,university.degree,no,no,no,telephone,nov,thu,109,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +18,student,single,high.school,no,no,no,telephone,nov,thu,75,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +33,self-employed,single,university.degree,no,no,no,telephone,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +27,student,single,professional.course,no,no,no,telephone,nov,thu,72,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +29,self-employed,married,university.degree,no,yes,no,telephone,nov,thu,86,1,999,1,failure,-0.1,93.2,-42,4.245,5195.8,no +50,admin.,single,basic.9y,no,unknown,unknown,telephone,nov,thu,45,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +42,admin.,married,professional.course,no,yes,no,telephone,nov,thu,90,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,yes +40,blue-collar,married,basic.9y,no,unknown,unknown,telephone,nov,thu,160,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,yes +39,admin.,single,high.school,no,no,no,telephone,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.245,5195.8,no +37,admin.,divorced,university.degree,no,no,yes,cellular,nov,fri,132,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes +35,technician,single,professional.course,no,yes,no,telephone,nov,fri,160,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes +35,management,married,university.degree,no,yes,no,telephone,nov,fri,24,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,no +34,management,married,university.degree,no,no,no,telephone,nov,fri,179,1,999,0,nonexistent,-0.1,93.2,-42,4.223,5195.8,yes +57,management,married,university.degree,no,yes,no,telephone,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,technician,single,unknown,no,no,no,telephone,nov,mon,101,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,divorced,professional.course,no,no,no,cellular,nov,mon,200,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,unknown,no,no,cellular,nov,mon,212,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +56,services,married,high.school,no,no,no,telephone,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +56,services,married,high.school,no,no,no,cellular,nov,mon,156,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,married,high.school,no,no,no,cellular,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,technician,divorced,university.degree,no,no,no,cellular,nov,mon,215,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,self-employed,married,university.degree,no,no,no,telephone,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,management,married,university.degree,no,yes,yes,cellular,nov,mon,128,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,self-employed,divorced,high.school,no,yes,no,cellular,nov,mon,82,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,single,high.school,no,no,no,cellular,nov,mon,303,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +48,services,married,unknown,no,no,no,cellular,nov,mon,51,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,mon,221,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,management,single,university.degree,no,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,management,married,university.degree,no,yes,no,cellular,nov,mon,130,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +51,technician,married,unknown,no,no,no,cellular,nov,mon,324,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,single,high.school,no,yes,no,cellular,nov,mon,139,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,management,married,high.school,no,yes,no,cellular,nov,mon,669,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,admin.,married,university.degree,no,yes,yes,cellular,nov,mon,161,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +49,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,108,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,163,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,retired,married,university.degree,no,no,no,cellular,nov,mon,147,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,services,married,high.school,no,yes,no,cellular,nov,mon,252,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,management,married,university.degree,no,yes,no,cellular,nov,mon,375,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,mon,121,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,married,university.degree,no,no,no,telephone,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,technician,divorced,high.school,no,yes,no,cellular,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,single,university.degree,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,mon,176,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,retired,single,basic.9y,no,no,no,cellular,nov,mon,115,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,technician,married,professional.course,no,no,no,cellular,nov,mon,550,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,75,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,divorced,high.school,no,no,yes,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,divorced,high.school,no,yes,yes,cellular,nov,mon,68,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,divorced,high.school,no,no,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,divorced,high.school,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,professional.course,no,yes,no,cellular,nov,mon,61,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,professional.course,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,no,no,no,cellular,nov,mon,134,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +46,management,married,university.degree,no,yes,no,cellular,nov,mon,123,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,married,high.school,no,no,no,cellular,nov,mon,297,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,married,high.school,no,yes,no,cellular,nov,mon,353,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,146,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,admin.,married,university.degree,no,no,yes,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,management,divorced,university.degree,no,yes,no,cellular,nov,mon,210,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.6y,unknown,no,yes,cellular,nov,mon,120,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,married,university.degree,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,management,married,university.degree,no,no,no,cellular,nov,mon,595,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,unemployed,married,basic.4y,no,yes,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,services,married,high.school,no,no,no,cellular,nov,mon,118,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,technician,married,professional.course,no,no,no,cellular,nov,mon,78,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,admin.,married,basic.4y,no,yes,no,cellular,nov,mon,74,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,unknown,yes,no,cellular,nov,mon,219,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,management,married,university.degree,no,no,no,cellular,nov,mon,93,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,387,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,management,married,university.degree,no,yes,no,cellular,nov,mon,178,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,433,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,self-employed,married,university.degree,no,no,no,cellular,nov,mon,223,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,university.degree,no,no,no,cellular,nov,mon,178,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,services,married,basic.4y,no,no,no,cellular,nov,mon,75,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,services,married,basic.4y,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,mon,396,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +47,services,divorced,high.school,no,yes,no,cellular,nov,mon,334,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,unknown,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,236,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,admin.,single,university.degree,unknown,no,no,cellular,nov,mon,142,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,management,married,high.school,no,yes,no,cellular,nov,mon,231,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,44,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,unknown,no,yes,no,cellular,nov,mon,376,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,self-employed,married,university.degree,no,no,no,cellular,nov,mon,85,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,management,married,basic.6y,no,no,no,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,admin.,single,university.degree,unknown,yes,no,cellular,nov,mon,389,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,unemployed,married,university.degree,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,management,married,university.degree,no,no,no,cellular,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,unemployed,married,university.degree,no,unknown,unknown,cellular,nov,mon,126,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,blue-collar,married,high.school,no,no,yes,cellular,nov,mon,65,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,admin.,married,basic.9y,no,no,no,cellular,nov,mon,265,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,management,married,university.degree,no,yes,no,cellular,nov,mon,49,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,mon,219,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,management,married,university.degree,no,yes,no,cellular,nov,mon,155,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +55,management,married,university.degree,no,yes,yes,cellular,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,self-employed,divorced,university.degree,no,no,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1077,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +49,blue-collar,divorced,high.school,no,no,no,telephone,nov,mon,192,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1303,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +48,blue-collar,divorced,professional.course,no,no,no,cellular,nov,mon,564,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +52,management,divorced,university.degree,unknown,no,no,cellular,nov,mon,79,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,288,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,basic.9y,no,no,no,cellular,nov,mon,99,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,management,single,basic.9y,no,no,yes,telephone,nov,mon,33,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,management,single,basic.9y,no,yes,no,cellular,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,214,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,121,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,services,married,high.school,no,no,no,cellular,nov,mon,40,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,divorced,university.degree,no,no,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,admin.,single,university.degree,no,no,no,cellular,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,364,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,63,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,self-employed,single,university.degree,no,no,yes,telephone,nov,mon,378,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,151,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,entrepreneur,married,university.degree,no,no,no,telephone,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,479,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,single,professional.course,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,technician,single,professional.course,no,unknown,unknown,cellular,nov,mon,108,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,services,married,university.degree,no,yes,no,cellular,nov,mon,135,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,unknown,single,basic.9y,no,yes,no,telephone,nov,mon,302,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,services,divorced,high.school,no,yes,yes,cellular,nov,mon,90,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,38,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,77,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,self-employed,married,university.degree,no,no,no,telephone,nov,mon,81,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,127,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,management,married,unknown,no,no,no,cellular,nov,mon,114,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,university.degree,no,no,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,technician,married,professional.course,no,yes,yes,cellular,nov,mon,79,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,basic.9y,no,no,no,cellular,nov,mon,238,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,university.degree,no,no,no,cellular,nov,mon,179,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,retired,married,professional.course,no,yes,yes,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,mon,84,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,309,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,housemaid,married,basic.9y,no,yes,no,cellular,nov,mon,130,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,technician,married,high.school,no,yes,no,cellular,nov,mon,38,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,retired,married,basic.4y,no,unknown,unknown,telephone,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,single,university.degree,no,no,no,cellular,nov,mon,110,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,technician,married,high.school,no,yes,no,telephone,nov,mon,206,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,160,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,housemaid,married,university.degree,no,no,no,cellular,nov,mon,176,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,housemaid,married,university.degree,no,yes,no,telephone,nov,mon,85,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,unemployed,married,professional.course,no,yes,no,cellular,nov,mon,483,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,292,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,services,single,high.school,unknown,no,no,cellular,nov,mon,68,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.6y,unknown,yes,no,telephone,nov,mon,105,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,107,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,management,married,university.degree,no,yes,no,cellular,nov,mon,112,1,4,1,success,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,70,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,high.school,no,yes,no,cellular,nov,mon,58,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,97,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,retired,married,professional.course,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,high.school,no,no,no,cellular,nov,mon,150,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,high.school,no,yes,no,cellular,nov,mon,149,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,housemaid,married,basic.9y,no,yes,yes,cellular,nov,mon,112,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,retired,married,basic.4y,unknown,no,no,telephone,nov,mon,40,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,admin.,married,university.degree,no,no,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,technician,married,professional.course,no,yes,no,cellular,nov,mon,259,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,119,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,married,university.degree,unknown,no,no,telephone,nov,mon,16,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,high.school,no,yes,no,cellular,nov,mon,527,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,unknown,yes,no,cellular,nov,mon,94,1,4,1,success,-0.1,93.2,-42,4.191,5195.8,no +30,services,single,high.school,no,no,no,cellular,nov,mon,88,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,no,yes,no,cellular,nov,mon,140,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,no,yes,no,cellular,nov,mon,149,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,no,yes,no,telephone,nov,mon,76,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,admin.,single,university.degree,no,yes,no,telephone,nov,mon,124,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,unemployed,married,university.degree,no,no,no,cellular,nov,mon,90,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +51,management,married,basic.4y,no,no,no,cellular,nov,mon,96,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,109,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,591,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,admin.,married,basic.9y,unknown,yes,no,cellular,nov,mon,508,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +38,management,married,university.degree,no,yes,no,telephone,nov,mon,99,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,entrepreneur,married,university.degree,no,yes,no,telephone,nov,mon,118,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,professional.course,no,no,yes,cellular,nov,mon,80,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +49,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,technician,married,high.school,no,no,no,cellular,nov,mon,93,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,technician,single,professional.course,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,545,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,admin.,single,university.degree,no,yes,no,cellular,nov,mon,434,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +51,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,346,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,entrepreneur,married,high.school,no,yes,no,telephone,nov,mon,164,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,mon,407,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,professional.course,no,yes,no,cellular,nov,mon,61,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +48,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,191,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,professional.course,no,yes,no,cellular,nov,mon,110,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +54,services,married,high.school,no,yes,no,telephone,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,412,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,services,married,high.school,no,no,no,cellular,nov,mon,193,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,unemployed,married,basic.9y,no,yes,no,telephone,nov,mon,180,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,management,married,university.degree,no,yes,no,cellular,nov,mon,1070,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,management,married,university.degree,no,yes,no,cellular,nov,mon,349,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,services,divorced,high.school,no,yes,no,cellular,nov,mon,266,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,management,married,basic.4y,no,no,no,cellular,nov,mon,330,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,management,married,university.degree,no,no,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,132,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,self-employed,divorced,university.degree,no,yes,no,cellular,nov,mon,125,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,basic.9y,no,yes,no,telephone,nov,mon,435,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,unknown,yes,no,telephone,nov,mon,1606,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,management,married,university.degree,no,yes,no,cellular,nov,mon,216,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,unemployed,married,basic.4y,no,yes,no,cellular,nov,mon,59,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,single,university.degree,no,no,yes,cellular,nov,mon,214,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,professional.course,no,yes,no,cellular,nov,mon,78,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,technician,married,university.degree,no,yes,no,telephone,nov,mon,275,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,279,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,professional.course,no,no,yes,cellular,nov,mon,173,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,mon,89,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,215,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +47,management,married,basic.9y,no,no,no,telephone,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,890,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,161,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +47,management,married,basic.9y,no,no,no,cellular,nov,mon,97,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,services,divorced,high.school,no,yes,no,cellular,nov,mon,581,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,management,married,basic.6y,no,no,no,cellular,nov,mon,116,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,unemployed,married,university.degree,no,yes,no,telephone,nov,mon,155,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,technician,single,professional.course,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,married,high.school,no,no,yes,cellular,nov,mon,41,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,married,high.school,no,yes,no,telephone,nov,mon,104,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,technician,married,professional.course,unknown,yes,no,telephone,nov,mon,27,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,divorced,university.degree,no,no,no,cellular,nov,mon,578,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,534,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +56,management,married,university.degree,no,no,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,self-employed,married,basic.9y,no,yes,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,self-employed,married,basic.9y,no,yes,no,cellular,nov,mon,169,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,management,married,university.degree,no,yes,yes,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,unknown,no,no,no,cellular,nov,mon,66,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,mon,310,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,university.degree,no,no,no,cellular,nov,mon,150,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,retired,married,high.school,no,no,no,cellular,nov,mon,34,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,retired,married,high.school,no,yes,no,cellular,nov,mon,49,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,blue-collar,married,basic.9y,no,no,yes,cellular,nov,mon,213,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,services,single,high.school,no,no,no,cellular,nov,mon,104,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,married,university.degree,no,yes,no,cellular,nov,mon,386,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,entrepreneur,married,basic.4y,no,yes,no,telephone,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,mon,138,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,112,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,80,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,entrepreneur,single,basic.9y,no,yes,no,cellular,nov,mon,42,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +56,management,married,professional.course,no,no,no,cellular,nov,mon,74,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,married,high.school,no,no,no,cellular,nov,mon,148,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,services,divorced,high.school,no,yes,yes,cellular,nov,mon,164,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,67,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,entrepreneur,married,basic.9y,no,unknown,unknown,telephone,nov,mon,147,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,technician,married,professional.course,no,yes,no,cellular,nov,mon,190,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,technician,married,professional.course,no,yes,no,cellular,nov,mon,294,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,services,divorced,high.school,no,yes,no,cellular,nov,mon,86,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,services,divorced,high.school,no,yes,yes,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,management,married,unknown,no,no,no,telephone,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,services,married,basic.6y,unknown,yes,no,cellular,nov,mon,372,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,divorced,high.school,no,no,no,cellular,nov,mon,49,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,mon,68,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,basic.9y,no,no,no,cellular,nov,mon,94,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,high.school,no,no,no,cellular,nov,mon,103,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,unknown,no,yes,yes,cellular,nov,mon,60,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,257,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,divorced,university.degree,no,yes,no,cellular,nov,mon,89,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,divorced,high.school,no,no,yes,cellular,nov,mon,190,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,married,high.school,no,no,no,cellular,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,entrepreneur,married,basic.4y,no,no,no,cellular,nov,mon,104,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,high.school,no,no,no,cellular,nov,mon,651,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes +52,management,married,university.degree,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,married,university.degree,unknown,yes,yes,cellular,nov,mon,205,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,blue-collar,single,basic.4y,no,yes,no,cellular,nov,mon,42,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,management,married,university.degree,no,yes,yes,cellular,nov,mon,98,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,unknown,no,no,no,cellular,nov,mon,55,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,186,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +33,technician,single,university.degree,no,no,no,cellular,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,121,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,249,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,336,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,management,married,basic.9y,no,yes,no,cellular,nov,mon,73,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,unemployed,married,high.school,no,no,no,cellular,nov,mon,55,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,unknown,no,no,no,cellular,nov,mon,657,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,married,professional.course,no,yes,no,cellular,nov,mon,345,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,university.degree,no,yes,no,cellular,nov,mon,65,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,management,married,university.degree,no,no,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,77,1,3,1,success,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,102,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,mon,137,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +34,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,2462,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +30,services,single,high.school,no,no,no,cellular,nov,mon,213,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,mon,696,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +50,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1449,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,nov,mon,188,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,391,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,technician,married,university.degree,no,unknown,unknown,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,management,divorced,university.degree,no,unknown,unknown,telephone,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,160,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,married,professional.course,no,no,no,cellular,nov,mon,407,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,self-employed,single,university.degree,no,no,no,cellular,nov,mon,406,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,admin.,divorced,professional.course,no,no,no,cellular,nov,mon,104,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,admin.,single,high.school,no,no,no,cellular,nov,mon,560,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,divorced,high.school,unknown,yes,no,cellular,nov,mon,168,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,basic.9y,no,yes,yes,cellular,nov,mon,167,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,entrepreneur,married,high.school,no,no,no,cellular,nov,mon,623,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,mon,102,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,mon,71,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,mon,264,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,technician,married,professional.course,no,yes,no,cellular,nov,mon,199,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,management,married,university.degree,no,no,no,cellular,nov,mon,96,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,admin.,divorced,high.school,no,no,no,cellular,nov,mon,529,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,admin.,married,high.school,no,no,no,cellular,nov,mon,64,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,no,yes,yes,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,no,no,no,cellular,nov,mon,141,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,94,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,mon,499,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,professional.course,no,no,no,cellular,nov,mon,64,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,107,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +56,management,married,university.degree,no,yes,no,cellular,nov,mon,76,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,admin.,single,basic.9y,no,yes,no,cellular,nov,mon,1081,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,technician,married,professional.course,no,no,no,cellular,nov,mon,251,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,101,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,no,no,no,cellular,nov,mon,504,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,111,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,no,yes,yes,telephone,nov,mon,215,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,nov,mon,622,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,325,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,services,married,high.school,no,no,yes,cellular,nov,mon,181,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,services,married,high.school,no,no,no,cellular,nov,mon,166,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +34,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,105,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,54,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,admin.,married,university.degree,no,yes,no,cellular,nov,mon,89,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,retired,married,high.school,no,yes,no,cellular,nov,mon,240,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,admin.,single,high.school,no,yes,no,cellular,nov,mon,92,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,single,high.school,no,yes,no,cellular,nov,mon,124,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,single,high.school,no,yes,no,cellular,nov,mon,86,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,55,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,admin.,married,university.degree,no,no,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,technician,married,university.degree,no,yes,no,cellular,nov,mon,105,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,entrepreneur,married,high.school,no,yes,no,cellular,nov,mon,63,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,management,divorced,university.degree,no,yes,no,cellular,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,single,high.school,unknown,no,yes,telephone,nov,mon,14,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,admin.,married,high.school,no,yes,no,cellular,nov,mon,287,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,single,professional.course,no,yes,no,cellular,nov,mon,253,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,single,high.school,unknown,yes,no,cellular,nov,mon,158,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,admin.,married,university.degree,no,no,no,cellular,nov,mon,142,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,high.school,no,yes,no,cellular,nov,mon,131,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,174,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +54,retired,divorced,professional.course,no,no,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,209,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,technician,married,university.degree,no,yes,no,cellular,nov,mon,352,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,no,no,cellular,nov,mon,62,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.6y,no,no,no,cellular,nov,mon,128,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,120,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,high.school,unknown,no,no,cellular,nov,mon,119,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,professional.course,no,yes,no,cellular,nov,mon,240,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,375,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,mon,984,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +37,management,divorced,unknown,no,no,yes,cellular,nov,mon,74,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +36,blue-collar,married,basic.9y,no,no,yes,cellular,nov,mon,131,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,117,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,university.degree,unknown,yes,yes,cellular,nov,mon,947,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +44,services,divorced,high.school,no,yes,no,cellular,nov,mon,101,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,services,divorced,high.school,unknown,yes,no,cellular,nov,mon,90,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,management,married,university.degree,no,yes,no,cellular,nov,mon,114,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,mon,318,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,76,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,technician,married,professional.course,no,no,no,cellular,nov,mon,168,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,married,high.school,no,no,no,cellular,nov,mon,348,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,admin.,divorced,university.degree,unknown,no,no,cellular,nov,mon,213,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,200,2,4,1,success,-0.1,93.2,-42,4.191,5195.8,no +47,management,married,university.degree,no,no,no,cellular,nov,mon,135,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,mon,44,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,technician,single,professional.course,no,yes,no,cellular,nov,mon,165,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,technician,married,professional.course,no,yes,no,cellular,nov,mon,70,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,unemployed,divorced,high.school,no,no,no,cellular,nov,mon,166,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,married,high.school,no,yes,no,telephone,nov,mon,943,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +42,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,mon,191,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,134,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,admin.,married,high.school,no,yes,yes,cellular,nov,mon,58,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +55,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,277,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,admin.,married,high.school,no,yes,no,cellular,nov,mon,155,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,mon,183,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,unemployed,married,basic.9y,no,yes,no,cellular,nov,mon,554,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,218,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,services,married,basic.4y,unknown,yes,no,cellular,nov,mon,218,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,51,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,single,university.degree,no,yes,yes,cellular,nov,mon,182,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,self-employed,married,university.degree,unknown,no,no,cellular,nov,mon,96,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,entrepreneur,single,university.degree,unknown,yes,no,cellular,nov,mon,472,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,married,high.school,no,no,no,cellular,nov,mon,540,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +48,management,married,unknown,no,yes,yes,cellular,nov,mon,323,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,unemployed,married,professional.course,no,yes,no,cellular,nov,mon,187,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,high.school,unknown,no,no,cellular,nov,mon,76,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,admin.,married,university.degree,no,yes,no,cellular,nov,mon,139,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +46,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,581,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,married,high.school,no,yes,no,cellular,nov,mon,268,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,management,married,university.degree,no,yes,no,cellular,nov,mon,37,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,housemaid,married,university.degree,no,no,no,cellular,nov,mon,53,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,technician,single,university.degree,no,no,no,cellular,nov,mon,396,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +47,management,divorced,university.degree,no,yes,no,cellular,nov,mon,131,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,management,married,university.degree,no,no,no,cellular,nov,mon,369,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,services,married,basic.4y,no,no,no,cellular,nov,mon,161,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,services,married,basic.4y,no,yes,yes,cellular,nov,mon,111,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,78,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,admin.,single,high.school,no,no,no,cellular,nov,mon,184,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,management,divorced,university.degree,no,no,no,cellular,nov,mon,136,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,technician,single,high.school,no,no,no,cellular,nov,mon,44,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +30,admin.,divorced,university.degree,no,no,no,telephone,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,self-employed,single,professional.course,no,yes,no,cellular,nov,mon,128,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,university.degree,no,no,no,cellular,nov,mon,146,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +29,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,127,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,management,married,high.school,no,no,yes,cellular,nov,mon,256,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,unemployed,married,university.degree,unknown,yes,no,cellular,nov,mon,74,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,services,divorced,high.school,unknown,no,no,cellular,nov,mon,190,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,retired,married,basic.4y,unknown,yes,no,cellular,nov,mon,57,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,admin.,married,high.school,no,yes,no,cellular,nov,mon,58,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,self-employed,single,high.school,no,yes,no,cellular,nov,mon,223,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +46,entrepreneur,married,university.degree,no,unknown,unknown,cellular,nov,mon,254,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,50,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +35,technician,married,professional.course,no,yes,no,cellular,nov,mon,115,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.4y,no,no,yes,cellular,nov,mon,143,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,services,divorced,high.school,unknown,yes,no,cellular,nov,mon,734,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,62,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,basic.9y,no,yes,no,cellular,nov,mon,171,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,technician,married,unknown,unknown,no,no,cellular,nov,mon,159,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,married,high.school,no,yes,yes,cellular,nov,mon,56,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,married,high.school,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,married,university.degree,no,yes,no,telephone,nov,mon,69,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +54,housemaid,single,basic.9y,unknown,no,no,cellular,nov,mon,158,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,married,university.degree,no,yes,yes,cellular,nov,mon,60,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +56,services,married,high.school,no,yes,no,cellular,nov,mon,578,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,admin.,married,high.school,no,yes,no,cellular,nov,mon,355,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,332,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,admin.,married,high.school,no,no,no,cellular,nov,mon,113,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,admin.,married,high.school,unknown,yes,no,cellular,nov,mon,147,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,technician,married,professional.course,no,yes,no,cellular,nov,mon,52,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,technician,married,professional.course,no,no,no,telephone,nov,mon,106,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,management,married,university.degree,no,yes,yes,cellular,nov,mon,789,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +55,admin.,married,high.school,unknown,no,no,cellular,nov,mon,73,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +32,management,single,university.degree,no,yes,yes,cellular,nov,mon,66,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,116,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,technician,married,professional.course,no,yes,yes,cellular,nov,mon,501,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,179,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +55,services,married,high.school,no,yes,no,cellular,nov,mon,40,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,technician,single,basic.9y,unknown,yes,yes,cellular,nov,mon,99,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,technician,single,basic.9y,unknown,yes,yes,cellular,nov,mon,180,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,310,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,services,married,professional.course,no,no,no,cellular,nov,mon,148,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,mon,88,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,technician,married,university.degree,no,yes,no,cellular,nov,mon,158,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,65,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,divorced,university.degree,no,yes,no,cellular,nov,mon,199,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,48,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,711,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,self-employed,married,basic.9y,unknown,no,no,cellular,nov,mon,48,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,mon,747,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,mon,690,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,services,married,high.school,no,yes,no,cellular,nov,mon,48,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,divorced,high.school,no,no,yes,cellular,nov,mon,159,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,nov,mon,563,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,mon,431,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,housemaid,married,university.degree,no,no,no,cellular,nov,mon,90,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,single,university.degree,no,yes,no,cellular,nov,mon,109,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,basic.9y,no,no,no,cellular,nov,mon,295,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,196,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,self-employed,married,basic.9y,unknown,no,yes,cellular,nov,mon,836,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,94,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +46,technician,married,high.school,no,yes,no,cellular,nov,mon,171,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +39,management,single,basic.9y,no,yes,no,cellular,nov,mon,590,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,136,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,entrepreneur,married,basic.6y,unknown,yes,no,cellular,nov,mon,788,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +46,technician,married,high.school,no,yes,no,cellular,nov,mon,569,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,divorced,high.school,no,yes,no,cellular,nov,mon,70,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,divorced,high.school,no,yes,no,telephone,nov,mon,124,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +38,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,555,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,retired,divorced,professional.course,no,yes,no,cellular,nov,mon,231,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,no,no,cellular,nov,mon,226,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,married,university.degree,no,yes,yes,cellular,nov,mon,173,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,admin.,single,high.school,no,yes,no,cellular,nov,mon,333,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,entrepreneur,married,high.school,no,yes,no,cellular,nov,mon,131,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,admin.,divorced,high.school,no,no,no,cellular,nov,mon,92,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,technician,single,university.degree,no,yes,yes,cellular,nov,mon,118,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,self-employed,married,university.degree,no,no,no,cellular,nov,mon,224,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,services,single,basic.9y,no,yes,no,cellular,nov,mon,283,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,mon,326,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,admin.,single,high.school,unknown,unknown,unknown,cellular,nov,mon,421,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,services,single,high.school,unknown,yes,no,cellular,nov,mon,130,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,divorced,high.school,no,unknown,unknown,cellular,nov,mon,295,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +34,entrepreneur,single,university.degree,no,yes,no,cellular,nov,mon,113,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,101,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +49,management,married,high.school,unknown,yes,no,cellular,nov,mon,79,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,technician,married,basic.6y,no,yes,no,telephone,nov,mon,60,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,694,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,mon,78,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +44,entrepreneur,married,professional.course,no,yes,no,telephone,nov,mon,291,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,technician,married,basic.9y,no,yes,no,telephone,nov,mon,55,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,admin.,divorced,university.degree,no,yes,no,telephone,nov,mon,609,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,1121,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,unemployed,married,high.school,no,yes,no,cellular,nov,mon,564,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,admin.,married,high.school,no,yes,no,telephone,nov,mon,673,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,married,basic.9y,no,no,no,cellular,nov,mon,1091,2,5,1,success,-0.1,93.2,-42,4.191,5195.8,yes +34,services,single,high.school,no,no,no,telephone,nov,mon,62,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +33,technician,single,university.degree,no,no,no,cellular,nov,mon,98,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,blue-collar,single,university.degree,no,no,no,cellular,nov,mon,242,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,services,married,professional.course,no,yes,yes,cellular,nov,mon,148,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +38,admin.,married,basic.6y,no,no,yes,telephone,nov,mon,204,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,124,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,technician,single,professional.course,no,no,no,cellular,nov,mon,85,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,housemaid,married,high.school,unknown,no,no,cellular,nov,mon,165,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,entrepreneur,married,basic.4y,no,no,no,cellular,nov,mon,148,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,services,married,high.school,no,yes,no,cellular,nov,mon,193,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,nov,mon,309,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +53,blue-collar,married,professional.course,no,yes,no,cellular,nov,mon,242,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,services,married,high.school,no,yes,yes,cellular,nov,mon,170,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,130,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,151,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +38,management,married,university.degree,no,no,no,cellular,nov,mon,221,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,mon,117,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,mon,116,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,178,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,mon,228,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,divorced,high.school,no,yes,no,cellular,nov,mon,488,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,university.degree,no,yes,no,telephone,nov,mon,49,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,professional.course,no,yes,no,cellular,nov,mon,142,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,mon,63,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,mon,69,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,management,married,university.degree,no,yes,yes,cellular,nov,mon,176,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,admin.,single,university.degree,no,no,no,cellular,nov,mon,507,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,admin.,married,university.degree,no,yes,no,telephone,nov,mon,1735,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,admin.,married,university.degree,no,yes,yes,telephone,nov,mon,340,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +42,technician,married,professional.course,no,yes,yes,cellular,nov,mon,126,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +57,retired,married,university.degree,no,yes,yes,cellular,nov,mon,1132,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +38,admin.,single,basic.9y,no,yes,yes,cellular,nov,mon,501,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,technician,single,professional.course,no,yes,no,cellular,nov,mon,286,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,divorced,university.degree,no,yes,no,telephone,nov,mon,110,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +55,technician,single,professional.course,no,no,no,cellular,nov,mon,99,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,technician,married,high.school,no,no,no,cellular,nov,mon,198,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,mon,184,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +49,management,married,university.degree,no,yes,yes,cellular,nov,mon,308,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,technician,married,professional.course,no,yes,no,cellular,nov,mon,156,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +34,management,divorced,university.degree,no,no,no,cellular,nov,mon,212,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,mon,35,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,admin.,married,university.degree,unknown,no,no,cellular,nov,mon,725,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,married,university.degree,no,no,no,telephone,nov,mon,127,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,management,married,high.school,no,yes,yes,cellular,nov,mon,70,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,married,high.school,no,yes,yes,cellular,nov,mon,330,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,housemaid,married,basic.9y,no,yes,yes,cellular,nov,mon,272,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,mon,397,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,admin.,married,university.degree,no,no,no,cellular,nov,mon,222,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,mon,333,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,entrepreneur,single,university.degree,unknown,yes,no,cellular,nov,mon,77,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,blue-collar,married,professional.course,no,yes,yes,cellular,nov,mon,212,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,student,single,unknown,no,no,no,cellular,nov,mon,288,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,retired,married,university.degree,no,yes,yes,telephone,nov,mon,215,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,management,married,university.degree,unknown,yes,no,cellular,nov,mon,536,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,57,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,mon,145,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,113,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +31,services,divorced,high.school,no,no,no,telephone,nov,mon,107,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,services,married,high.school,no,no,no,cellular,nov,mon,86,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,management,married,high.school,no,yes,no,telephone,nov,mon,188,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,85,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,595,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,high.school,no,yes,no,cellular,nov,mon,140,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,mon,681,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +36,entrepreneur,married,high.school,no,yes,yes,cellular,nov,mon,139,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,mon,61,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,technician,married,university.degree,no,no,no,cellular,nov,mon,149,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,44,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +35,blue-collar,married,high.school,unknown,yes,no,cellular,nov,mon,273,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +52,admin.,married,basic.4y,no,yes,yes,cellular,nov,mon,102,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,blue-collar,married,basic.6y,no,yes,no,telephone,nov,mon,99,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +46,services,married,high.school,no,yes,no,cellular,nov,mon,966,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +39,services,married,high.school,no,yes,yes,cellular,nov,mon,49,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.9y,no,yes,no,telephone,nov,mon,132,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,admin.,married,university.degree,no,no,no,cellular,nov,mon,329,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,married,university.degree,no,no,no,telephone,nov,mon,22,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,admin.,married,professional.course,no,no,no,cellular,nov,mon,200,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +53,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,179,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,mon,93,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,68,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,1210,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes +44,admin.,married,professional.course,no,no,no,cellular,nov,mon,353,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,mon,107,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +53,entrepreneur,divorced,university.degree,no,no,no,telephone,nov,mon,247,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +45,blue-collar,divorced,basic.9y,unknown,no,no,cellular,nov,mon,220,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,mon,211,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +35,admin.,married,unknown,no,yes,no,cellular,nov,mon,960,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +44,admin.,married,professional.course,no,yes,no,telephone,nov,mon,762,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +57,technician,divorced,professional.course,no,yes,no,cellular,nov,mon,181,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +43,admin.,married,university.degree,no,yes,no,cellular,nov,mon,414,2,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,unemployed,married,basic.9y,unknown,yes,no,cellular,nov,mon,150,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,services,divorced,high.school,unknown,yes,yes,cellular,nov,mon,652,2,999,1,failure,-0.1,93.2,-42,4.191,5195.8,yes +45,admin.,married,basic.9y,no,yes,no,cellular,nov,mon,446,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,services,married,basic.9y,unknown,yes,no,cellular,nov,mon,209,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,basic.9y,unknown,no,no,telephone,nov,mon,210,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +48,services,married,basic.9y,unknown,yes,no,cellular,nov,mon,301,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +30,services,married,basic.9y,unknown,no,no,cellular,nov,mon,415,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +41,management,married,basic.6y,unknown,yes,no,cellular,nov,mon,264,4,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,self-employed,married,university.degree,unknown,no,no,cellular,nov,mon,81,4,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +51,self-employed,married,basic.4y,no,no,no,cellular,nov,mon,189,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +52,management,married,university.degree,no,yes,yes,cellular,nov,mon,172,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,blue-collar,divorced,basic.9y,no,yes,yes,cellular,nov,mon,151,3,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +45,self-employed,married,university.degree,no,yes,no,cellular,nov,mon,487,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +32,entrepreneur,married,university.degree,no,yes,yes,telephone,nov,mon,249,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,mon,215,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,108,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,mon,17,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +41,admin.,married,university.degree,no,no,no,cellular,nov,mon,295,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,entrepreneur,married,basic.9y,unknown,yes,yes,telephone,nov,mon,292,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,mon,454,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,yes +50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,92,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +51,retired,divorced,basic.4y,no,yes,yes,cellular,nov,mon,94,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +31,management,single,university.degree,no,no,no,cellular,nov,mon,104,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +58,retired,married,professional.course,no,no,no,cellular,nov,mon,318,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +50,entrepreneur,married,university.degree,no,no,no,cellular,nov,mon,408,1,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +43,unemployed,married,basic.9y,unknown,yes,yes,cellular,nov,mon,252,3,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +33,technician,single,university.degree,no,no,no,telephone,nov,mon,293,5,999,1,failure,-0.1,93.2,-42,4.191,5195.8,no +37,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,mon,1012,1,999,0,nonexistent,-0.1,93.2,-42,4.191,5195.8,no +42,unemployed,married,high.school,no,yes,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,technician,married,professional.course,no,no,yes,cellular,nov,tue,166,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,admin.,married,high.school,no,no,no,cellular,nov,tue,127,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +55,admin.,married,professional.course,unknown,yes,yes,telephone,nov,tue,514,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +56,technician,married,professional.course,unknown,unknown,unknown,cellular,nov,tue,44,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,admin.,married,high.school,no,no,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,management,married,university.degree,no,yes,yes,cellular,nov,tue,41,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,university.degree,no,no,no,cellular,nov,tue,143,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,technician,married,professional.course,no,no,no,telephone,nov,tue,189,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,41,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,technician,divorced,professional.course,unknown,no,no,cellular,nov,tue,143,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,150,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,services,single,professional.course,no,yes,no,cellular,nov,tue,41,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,tue,237,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,professional.course,no,no,no,cellular,nov,tue,42,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,professional.course,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,technician,divorced,professional.course,no,no,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,blue-collar,single,basic.6y,no,yes,no,cellular,nov,tue,204,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,admin.,divorced,basic.6y,no,no,no,cellular,nov,tue,295,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,tue,88,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,retired,married,basic.4y,no,no,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,technician,married,university.degree,no,unknown,unknown,cellular,nov,tue,104,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,technician,married,university.degree,no,unknown,unknown,cellular,nov,tue,102,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,64,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,services,divorced,high.school,no,yes,no,cellular,nov,tue,233,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,unemployed,married,high.school,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,self-employed,married,basic.9y,no,yes,no,cellular,nov,tue,139,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,unemployed,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,self-employed,married,basic.9y,no,no,no,cellular,nov,tue,55,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,yes,no,cellular,nov,tue,283,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,326,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,465,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,single,university.degree,no,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,single,university.degree,no,yes,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,services,married,university.degree,no,yes,no,cellular,nov,tue,140,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,entrepreneur,single,basic.9y,no,no,no,cellular,nov,tue,386,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,blue-collar,single,high.school,no,yes,yes,telephone,nov,tue,228,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,management,married,university.degree,no,yes,no,cellular,nov,tue,57,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,130,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,management,married,university.degree,no,yes,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,management,married,university.degree,no,yes,no,cellular,nov,tue,176,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,79,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,technician,married,professional.course,no,yes,no,cellular,nov,tue,1978,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +36,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,101,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,admin.,married,high.school,unknown,yes,no,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,professional.course,no,yes,yes,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,professional.course,no,no,yes,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,professional.course,no,unknown,unknown,cellular,nov,tue,138,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,technician,married,basic.9y,no,yes,no,cellular,nov,tue,54,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,tue,1122,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes +34,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,164,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,high.school,no,no,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,high.school,no,no,no,cellular,nov,tue,72,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,854,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,114,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,management,married,university.degree,no,yes,no,cellular,nov,tue,116,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,high.school,no,yes,no,cellular,nov,tue,105,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,technician,married,professional.course,no,no,no,cellular,nov,tue,348,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,divorced,university.degree,unknown,no,no,cellular,nov,tue,365,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,technician,single,professional.course,no,yes,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,290,1,5,1,success,-0.1,93.2,-42,4.153,5195.8,no +36,self-employed,single,basic.9y,no,no,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,self-employed,married,basic.9y,unknown,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,high.school,no,no,no,cellular,nov,tue,39,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,self-employed,married,basic.4y,no,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,tue,36,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,high.school,no,no,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,tue,333,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,single,high.school,no,yes,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,184,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,high.school,no,no,yes,cellular,nov,tue,271,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,tue,224,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,technician,married,unknown,no,no,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,tue,55,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,technician,married,unknown,no,no,no,cellular,nov,tue,82,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,high.school,no,yes,yes,telephone,nov,tue,52,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,tue,341,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,yes,no,telephone,nov,tue,47,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,55,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,unemployed,single,basic.6y,unknown,yes,no,cellular,nov,tue,51,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,71,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,unemployed,single,basic.6y,unknown,yes,no,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,tue,62,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,divorced,high.school,no,yes,no,cellular,nov,tue,46,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,housemaid,divorced,professional.course,no,yes,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,111,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +56,self-employed,divorced,high.school,no,no,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,42,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,295,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,admin.,married,high.school,no,yes,no,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,technician,single,professional.course,no,no,yes,cellular,nov,tue,76,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,divorced,high.school,no,yes,no,cellular,nov,tue,194,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,214,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,divorced,university.degree,no,yes,no,telephone,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,self-employed,divorced,university.degree,no,yes,no,cellular,nov,tue,278,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,university.degree,no,no,no,cellular,nov,tue,188,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,154,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,technician,married,professional.course,no,yes,no,telephone,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,blue-collar,single,basic.9y,no,no,no,cellular,nov,tue,58,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,84,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,145,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,management,married,high.school,no,yes,no,cellular,nov,tue,75,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,181,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,213,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,services,married,basic.6y,no,unknown,unknown,cellular,nov,tue,340,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,management,married,university.degree,no,yes,yes,cellular,nov,tue,353,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,university.degree,no,no,no,cellular,nov,tue,104,2,1,1,success,-0.1,93.2,-42,4.153,5195.8,no +37,management,divorced,high.school,no,yes,no,cellular,nov,tue,1268,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,tue,47,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,housemaid,divorced,basic.9y,no,yes,no,cellular,nov,tue,59,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,108,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,divorced,high.school,no,no,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,married,high.school,no,yes,no,cellular,nov,tue,273,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,high.school,unknown,yes,no,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,88,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,50,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,tue,636,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,management,single,university.degree,no,yes,no,cellular,nov,tue,466,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,housemaid,married,university.degree,unknown,no,no,cellular,nov,tue,110,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,entrepreneur,divorced,basic.6y,no,yes,no,cellular,nov,tue,132,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,unemployed,married,high.school,yes,no,no,cellular,nov,tue,111,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,135,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,management,married,basic.4y,no,no,no,cellular,nov,tue,276,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,basic.9y,no,yes,yes,cellular,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,single,high.school,unknown,no,no,telephone,nov,tue,274,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,tue,71,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,79,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,management,married,university.degree,no,yes,yes,cellular,nov,tue,196,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,blue-collar,single,basic.4y,no,yes,no,cellular,nov,tue,175,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,married,unknown,unknown,no,no,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,services,married,high.school,no,yes,no,cellular,nov,tue,71,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,single,high.school,unknown,no,no,cellular,nov,tue,714,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +52,management,married,university.degree,no,yes,no,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,technician,married,professional.course,no,yes,no,cellular,nov,tue,149,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,technician,single,professional.course,no,yes,no,cellular,nov,tue,635,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,single,high.school,no,yes,yes,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,single,university.degree,unknown,yes,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,tue,280,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,married,high.school,no,yes,no,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,married,basic.9y,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,850,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,management,married,university.degree,no,unknown,unknown,cellular,nov,tue,486,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +47,housemaid,divorced,professional.course,no,no,yes,cellular,nov,tue,253,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +37,blue-collar,married,high.school,no,no,no,cellular,nov,tue,118,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,entrepreneur,married,professional.course,unknown,no,no,cellular,nov,tue,132,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,high.school,no,no,no,cellular,nov,tue,141,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,169,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,services,married,high.school,no,yes,no,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,blue-collar,divorced,basic.6y,no,no,no,cellular,nov,tue,200,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,122,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,single,university.degree,no,no,no,cellular,nov,tue,148,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,51,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,132,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,180,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,technician,single,professional.course,no,no,yes,cellular,nov,tue,835,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +36,unemployed,married,basic.6y,no,yes,no,cellular,nov,tue,144,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,services,married,high.school,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,services,married,high.school,no,yes,no,cellular,nov,tue,129,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,54,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,technician,married,professional.course,no,yes,no,cellular,nov,tue,613,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,150,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,basic.6y,unknown,yes,no,telephone,nov,tue,162,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,admin.,single,basic.9y,no,yes,no,cellular,nov,tue,296,1,6,1,success,-0.1,93.2,-42,4.153,5195.8,no +40,services,married,high.school,no,yes,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,unemployed,married,high.school,no,no,yes,cellular,nov,tue,155,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,unemployed,married,high.school,no,no,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,entrepreneur,single,university.degree,no,yes,no,cellular,nov,tue,435,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,266,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +37,blue-collar,divorced,basic.6y,no,yes,yes,cellular,nov,tue,963,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +52,technician,married,high.school,no,yes,no,cellular,nov,tue,385,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,divorced,unknown,no,yes,no,telephone,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,257,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,99,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,single,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,divorced,unknown,no,no,no,cellular,nov,tue,154,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,technician,married,professional.course,no,yes,no,cellular,nov,tue,130,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,technician,single,high.school,no,yes,no,cellular,nov,tue,127,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,divorced,unknown,no,no,no,cellular,nov,tue,596,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +40,management,married,university.degree,no,no,no,cellular,nov,tue,131,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,unemployed,married,high.school,no,yes,yes,cellular,nov,tue,924,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +52,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,183,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,management,married,university.degree,no,yes,no,cellular,nov,tue,37,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +49,management,married,university.degree,no,no,no,cellular,nov,tue,188,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,yes,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,management,married,university.degree,no,yes,no,cellular,nov,tue,197,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,464,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,453,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +39,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,242,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +54,entrepreneur,married,professional.course,no,yes,yes,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,married,high.school,no,yes,no,cellular,nov,tue,62,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,married,high.school,no,no,no,cellular,nov,tue,91,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +52,management,married,university.degree,unknown,yes,no,cellular,nov,tue,419,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +31,management,single,university.degree,no,no,no,cellular,nov,tue,82,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,128,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,married,basic.9y,no,no,no,cellular,nov,tue,638,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,technician,single,university.degree,no,no,no,cellular,nov,tue,113,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,78,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,blue-collar,married,basic.9y,no,no,yes,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,250,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,technician,divorced,professional.course,no,no,no,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,retired,married,professional.course,no,unknown,unknown,cellular,nov,tue,193,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,34,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,admin.,divorced,high.school,no,no,no,cellular,nov,tue,352,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,services,divorced,high.school,no,no,no,cellular,nov,tue,119,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,university.degree,no,yes,no,cellular,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,single,university.degree,no,no,no,cellular,nov,tue,93,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,tue,305,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,technician,married,professional.course,no,yes,no,telephone,nov,tue,205,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,122,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,student,single,high.school,no,yes,yes,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,17,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,yes,no,cellular,nov,tue,103,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,blue-collar,divorced,basic.6y,no,yes,no,telephone,nov,tue,272,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,retired,married,high.school,no,yes,no,cellular,nov,tue,145,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,technician,married,professional.course,no,no,no,cellular,nov,tue,233,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +54,retired,married,high.school,no,no,no,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,336,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,services,married,basic.6y,no,no,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,married,basic.9y,no,no,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,self-employed,married,university.degree,no,no,no,telephone,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,high.school,no,yes,no,cellular,nov,tue,50,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,services,married,high.school,no,no,no,cellular,nov,tue,48,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +38,blue-collar,married,professional.course,no,yes,no,telephone,nov,tue,15,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,basic.6y,no,yes,no,cellular,nov,tue,122,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,505,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,admin.,married,high.school,no,yes,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,125,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +55,admin.,married,high.school,no,yes,no,cellular,nov,tue,191,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,technician,married,professional.course,no,yes,no,cellular,nov,tue,75,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,management,married,university.degree,no,yes,yes,cellular,nov,tue,609,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes +54,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,1855,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +35,management,married,high.school,no,yes,no,telephone,nov,tue,159,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,admin.,married,basic.9y,no,yes,no,cellular,nov,tue,204,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,technician,married,university.degree,no,yes,no,cellular,nov,tue,82,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +50,management,married,basic.4y,no,yes,no,cellular,nov,tue,389,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +46,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,162,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,entrepreneur,divorced,basic.4y,no,no,no,cellular,nov,tue,152,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,management,married,high.school,no,yes,no,cellular,nov,tue,417,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,technician,married,university.degree,no,yes,no,cellular,nov,tue,208,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,management,single,university.degree,no,no,no,telephone,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,59,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,technician,married,university.degree,no,no,no,cellular,nov,tue,346,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,35,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,entrepreneur,married,basic.9y,no,no,no,telephone,nov,tue,2,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,220,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,technician,single,university.degree,no,no,no,cellular,nov,tue,77,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,management,married,basic.6y,no,yes,no,cellular,nov,tue,97,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,high.school,no,no,yes,cellular,nov,tue,118,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +46,technician,married,basic.9y,no,no,no,cellular,nov,tue,530,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,management,married,university.degree,no,yes,no,cellular,nov,tue,118,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,69,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,high.school,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,management,single,high.school,no,yes,no,cellular,nov,tue,52,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +46,technician,married,basic.9y,no,yes,no,cellular,nov,tue,226,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +53,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,172,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,services,married,high.school,no,yes,no,cellular,nov,tue,78,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,admin.,single,high.school,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,technician,divorced,high.school,no,no,no,cellular,nov,tue,70,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,technician,married,professional.course,no,yes,no,telephone,nov,tue,103,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,entrepreneur,single,university.degree,no,no,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,technician,married,professional.course,no,yes,no,cellular,nov,tue,110,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,married,high.school,no,yes,no,cellular,nov,tue,92,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,technician,single,high.school,no,no,yes,cellular,nov,tue,206,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,admin.,divorced,high.school,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,48,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,married,university.degree,no,no,no,cellular,nov,tue,131,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,technician,married,high.school,no,yes,no,cellular,nov,tue,79,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,349,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,management,single,high.school,no,no,yes,cellular,nov,tue,322,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,management,married,university.degree,no,yes,no,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,services,single,high.school,no,no,no,cellular,nov,tue,105,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,high.school,no,no,no,cellular,nov,tue,328,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +38,admin.,married,high.school,no,yes,no,cellular,nov,tue,67,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,technician,married,university.degree,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,tue,224,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,management,single,high.school,no,no,no,cellular,nov,tue,74,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,109,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,technician,single,professional.course,no,yes,yes,cellular,nov,tue,89,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,admin.,married,professional.course,no,yes,no,cellular,nov,tue,124,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +33,technician,single,basic.9y,no,no,no,telephone,nov,tue,117,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,services,divorced,professional.course,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,retired,married,professional.course,no,yes,no,cellular,nov,tue,191,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,single,high.school,unknown,yes,no,cellular,nov,tue,215,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,services,divorced,professional.course,no,no,no,cellular,nov,tue,68,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,technician,married,high.school,no,no,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,technician,married,high.school,no,no,yes,cellular,nov,tue,67,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,self-employed,married,basic.9y,no,yes,no,telephone,nov,tue,37,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,technician,married,professional.course,no,no,no,cellular,nov,tue,267,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,management,single,university.degree,no,no,yes,cellular,nov,tue,73,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,management,married,university.degree,no,no,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,management,married,university.degree,no,yes,yes,cellular,nov,tue,60,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,tue,232,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,single,high.school,no,no,no,cellular,nov,tue,143,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +52,services,married,high.school,no,yes,no,telephone,nov,tue,251,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,retired,married,university.degree,no,yes,no,cellular,nov,tue,90,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,technician,single,high.school,no,no,no,cellular,nov,tue,155,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,65,1,4,1,success,-0.1,93.2,-42,4.153,5195.8,no +32,unemployed,married,university.degree,no,no,no,cellular,nov,tue,329,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,admin.,single,unknown,unknown,no,no,cellular,nov,tue,74,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,retired,married,basic.4y,no,no,no,cellular,nov,tue,130,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,tue,398,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,single,university.degree,no,no,no,telephone,nov,tue,18,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,tue,708,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,services,married,high.school,no,yes,no,cellular,nov,tue,655,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,single,university.degree,no,no,no,cellular,nov,tue,100,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +56,technician,married,professional.course,unknown,no,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,no,no,cellular,nov,tue,126,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,management,married,high.school,no,yes,yes,cellular,nov,tue,140,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,admin.,married,professional.course,no,yes,yes,cellular,nov,tue,140,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,unemployed,single,university.degree,no,yes,yes,cellular,nov,tue,98,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,high.school,no,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,management,married,university.degree,no,no,no,cellular,nov,tue,756,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,services,married,high.school,no,no,no,cellular,nov,tue,51,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +50,management,single,university.degree,no,yes,no,cellular,nov,tue,600,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,entrepreneur,married,high.school,no,yes,no,cellular,nov,tue,120,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,services,married,high.school,no,no,no,cellular,nov,tue,102,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,self-employed,married,basic.6y,unknown,yes,no,cellular,nov,tue,32,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +45,management,married,university.degree,no,no,no,cellular,nov,tue,69,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,retired,divorced,basic.9y,unknown,no,no,telephone,nov,tue,114,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +54,management,married,university.degree,no,no,no,cellular,nov,tue,53,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,services,married,basic.9y,no,no,no,cellular,nov,tue,281,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,retired,divorced,basic.9y,unknown,no,no,cellular,nov,tue,198,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,retired,divorced,basic.9y,unknown,yes,no,cellular,nov,tue,201,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,retired,divorced,basic.9y,unknown,no,no,cellular,nov,tue,378,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,management,married,university.degree,no,no,no,cellular,nov,tue,339,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,professional.course,no,yes,no,cellular,nov,tue,201,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,tue,134,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,admin.,single,high.school,no,yes,no,cellular,nov,tue,133,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,unemployed,married,high.school,no,no,no,cellular,nov,tue,79,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,tue,61,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,married,high.school,no,no,no,telephone,nov,tue,46,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,yes,no,telephone,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,technician,married,university.degree,no,yes,no,cellular,nov,tue,63,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,admin.,single,university.degree,no,yes,no,cellular,nov,tue,95,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,tue,182,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,professional.course,no,no,no,cellular,nov,tue,257,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,admin.,married,university.degree,no,no,no,cellular,nov,tue,71,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,entrepreneur,single,university.degree,no,yes,no,cellular,nov,tue,295,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,tue,67,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +45,management,married,university.degree,no,no,no,cellular,nov,tue,401,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,tue,103,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,self-employed,married,basic.4y,no,unknown,unknown,cellular,nov,tue,121,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,single,high.school,unknown,yes,no,cellular,nov,tue,68,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,tue,63,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,services,divorced,high.school,no,no,yes,cellular,nov,tue,98,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,271,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,tue,435,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,tue,368,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,single,university.degree,no,no,no,cellular,nov,tue,152,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,no,no,cellular,nov,tue,107,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,yes,no,cellular,nov,tue,97,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,self-employed,married,basic.4y,no,yes,no,cellular,nov,tue,475,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,yes,no,cellular,nov,tue,164,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,unknown,unknown,cellular,nov,tue,125,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,tue,83,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,management,married,professional.course,no,no,no,cellular,nov,tue,68,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,services,divorced,high.school,no,no,no,telephone,nov,tue,236,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,technician,married,basic.9y,no,no,no,cellular,nov,tue,142,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,married,high.school,no,no,no,cellular,nov,tue,157,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +36,services,divorced,high.school,no,no,no,cellular,nov,tue,87,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,tue,261,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,self-employed,married,university.degree,no,no,no,cellular,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,single,university.degree,no,yes,no,cellular,nov,tue,123,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,60,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,services,married,university.degree,no,no,no,cellular,nov,tue,190,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,university.degree,no,no,no,cellular,nov,tue,51,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,blue-collar,single,high.school,unknown,no,no,cellular,nov,tue,588,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,self-employed,single,high.school,no,no,no,cellular,nov,tue,52,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,entrepreneur,married,basic.4y,no,no,yes,cellular,nov,tue,164,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,professional.course,no,no,no,cellular,nov,tue,63,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,technician,single,university.degree,no,no,no,cellular,nov,tue,131,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,married,university.degree,unknown,yes,no,cellular,nov,tue,331,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,unemployed,married,basic.9y,no,yes,no,cellular,nov,tue,127,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,entrepreneur,married,basic.9y,no,no,no,cellular,nov,tue,432,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,management,married,university.degree,no,yes,no,cellular,nov,tue,94,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,76,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,admin.,married,university.degree,no,no,no,cellular,nov,tue,475,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,348,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,tue,309,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,tue,112,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,management,married,university.degree,no,no,no,cellular,nov,tue,66,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,self-employed,married,professional.course,no,yes,no,cellular,nov,tue,91,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +54,self-employed,married,basic.9y,no,no,yes,cellular,nov,tue,72,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,entrepreneur,married,university.degree,no,no,no,cellular,nov,tue,73,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,services,divorced,basic.6y,no,yes,no,cellular,nov,tue,199,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,technician,single,professional.course,no,no,no,cellular,nov,tue,165,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +49,admin.,married,university.degree,no,no,no,cellular,nov,tue,163,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +45,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,124,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,technician,divorced,professional.course,no,yes,yes,cellular,nov,tue,178,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,124,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,services,married,basic.9y,no,no,no,cellular,nov,tue,93,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,services,married,professional.course,no,yes,yes,cellular,nov,tue,265,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,blue-collar,married,high.school,no,yes,no,cellular,nov,tue,77,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,management,married,university.degree,no,no,no,cellular,nov,tue,96,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,high.school,no,no,yes,cellular,nov,tue,140,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,admin.,divorced,basic.9y,no,no,no,cellular,nov,tue,179,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,management,married,university.degree,no,yes,no,telephone,nov,tue,155,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,384,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,technician,married,professional.course,no,no,no,cellular,nov,tue,98,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,technician,married,university.degree,no,no,no,cellular,nov,tue,90,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,services,married,high.school,no,no,no,cellular,nov,tue,110,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,tue,62,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,120,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,154,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +37,services,married,high.school,no,yes,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,technician,married,professional.course,no,unknown,unknown,cellular,nov,tue,319,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +46,technician,divorced,basic.4y,unknown,yes,no,cellular,nov,tue,262,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,services,single,professional.course,unknown,yes,no,cellular,nov,tue,114,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,unemployed,married,basic.6y,no,no,no,cellular,nov,tue,177,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,admin.,married,high.school,unknown,yes,yes,cellular,nov,tue,65,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,82,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +57,blue-collar,married,professional.course,no,no,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,blue-collar,married,basic.6y,no,yes,yes,telephone,nov,tue,137,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,110,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,married,unknown,unknown,no,yes,cellular,nov,tue,63,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,technician,single,professional.course,no,no,no,cellular,nov,tue,125,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,40,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,blue-collar,married,basic.6y,no,no,yes,cellular,nov,tue,97,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,technician,single,professional.course,no,yes,yes,cellular,nov,tue,69,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,123,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,188,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,172,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,admin.,married,university.degree,unknown,yes,no,telephone,nov,tue,82,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,management,married,university.degree,no,no,no,cellular,nov,tue,114,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,self-employed,married,university.degree,no,yes,yes,cellular,nov,tue,55,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,management,married,university.degree,no,yes,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,single,university.degree,no,yes,no,cellular,nov,tue,120,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +50,management,married,high.school,no,yes,yes,cellular,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,250,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,technician,married,professional.course,no,no,no,cellular,nov,tue,45,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,251,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,blue-collar,married,basic.4y,no,yes,yes,telephone,nov,tue,234,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,services,married,basic.9y,no,yes,no,cellular,nov,tue,219,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,management,married,university.degree,no,yes,yes,cellular,nov,tue,240,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,tue,32,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,tue,94,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,no,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,entrepreneur,married,university.degree,unknown,yes,yes,cellular,nov,tue,157,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,self-employed,single,professional.course,unknown,yes,no,telephone,nov,tue,126,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,blue-collar,married,professional.course,unknown,no,no,cellular,nov,tue,214,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,management,single,university.degree,no,yes,yes,cellular,nov,tue,79,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,nov,tue,107,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,399,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,231,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,unemployed,married,professional.course,no,no,no,telephone,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,597,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,admin.,single,high.school,no,unknown,unknown,cellular,nov,tue,229,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,self-employed,married,basic.4y,no,yes,yes,cellular,nov,tue,464,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +42,technician,married,basic.6y,no,no,no,cellular,nov,tue,166,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +58,housemaid,married,basic.4y,unknown,no,no,cellular,nov,tue,91,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,196,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,management,married,university.degree,no,yes,yes,telephone,nov,tue,71,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,146,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,tue,123,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,student,single,university.degree,no,yes,no,cellular,nov,tue,203,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,technician,married,basic.9y,no,yes,no,telephone,nov,tue,102,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,86,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,married,high.school,no,no,no,cellular,nov,tue,87,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,management,divorced,professional.course,no,no,no,cellular,nov,tue,75,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,management,married,university.degree,no,yes,no,cellular,nov,tue,313,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,management,married,university.degree,no,yes,no,cellular,nov,tue,244,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,divorced,university.degree,no,yes,yes,cellular,nov,tue,355,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,services,divorced,high.school,no,yes,no,cellular,nov,tue,74,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,single,university.degree,no,yes,no,cellular,nov,tue,145,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,no,no,cellular,nov,tue,141,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,management,married,university.degree,no,yes,no,cellular,nov,tue,51,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,admin.,married,university.degree,no,no,yes,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,married,high.school,no,no,no,cellular,nov,tue,464,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,married,high.school,no,yes,no,cellular,nov,tue,125,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,single,basic.9y,no,yes,no,cellular,nov,tue,67,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +36,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,79,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,management,married,university.degree,no,no,no,cellular,nov,tue,72,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +55,management,married,university.degree,no,yes,no,telephone,nov,tue,47,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,tue,722,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,technician,married,university.degree,no,no,yes,cellular,nov,tue,1437,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +50,management,single,university.degree,no,no,no,cellular,nov,tue,175,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,tue,133,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,technician,married,professional.course,no,yes,no,cellular,nov,tue,163,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,self-employed,married,professional.course,unknown,yes,no,cellular,nov,tue,273,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,147,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,married,university.degree,no,yes,no,cellular,nov,tue,170,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +46,unemployed,married,high.school,unknown,yes,no,cellular,nov,tue,81,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,727,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,admin.,divorced,university.degree,no,no,yes,cellular,nov,tue,96,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,services,single,basic.9y,no,no,no,cellular,nov,tue,187,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,unemployed,single,university.degree,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,management,married,university.degree,no,no,no,cellular,nov,tue,633,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,admin.,divorced,professional.course,no,yes,no,telephone,nov,tue,55,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,technician,married,high.school,no,no,no,cellular,nov,tue,231,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,management,married,university.degree,no,yes,no,cellular,nov,tue,715,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,technician,married,professional.course,no,yes,no,cellular,nov,tue,135,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,entrepreneur,married,basic.4y,no,unknown,unknown,telephone,nov,tue,67,7,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,tue,113,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,technician,single,professional.course,no,yes,no,cellular,nov,tue,116,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,unemployed,single,professional.course,no,no,no,cellular,nov,tue,191,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,married,basic.4y,no,no,no,cellular,nov,tue,103,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,married,high.school,no,no,no,cellular,nov,tue,255,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +41,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,tue,190,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,married,high.school,no,no,no,cellular,nov,tue,204,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,self-employed,married,basic.4y,no,no,no,cellular,nov,tue,354,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +33,technician,single,basic.9y,no,no,no,cellular,nov,tue,61,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,entrepreneur,married,university.degree,no,yes,no,cellular,nov,tue,148,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,housemaid,married,basic.4y,no,no,no,cellular,nov,tue,878,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,married,university.degree,no,no,no,cellular,nov,tue,138,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,management,married,university.degree,no,no,yes,cellular,nov,tue,89,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,self-employed,divorced,university.degree,no,no,no,cellular,nov,tue,271,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,technician,single,university.degree,no,no,no,cellular,nov,tue,171,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,management,married,high.school,no,no,no,cellular,nov,tue,361,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,management,married,university.degree,no,no,no,cellular,nov,tue,244,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,services,married,basic.9y,no,no,no,cellular,nov,tue,218,2,4,1,success,-0.1,93.2,-42,4.153,5195.8,no +44,services,married,high.school,unknown,no,no,cellular,nov,tue,43,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,management,married,university.degree,no,no,no,cellular,nov,tue,658,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,136,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,married,basic.4y,unknown,yes,no,cellular,nov,tue,127,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,technician,married,professional.course,no,yes,no,cellular,nov,tue,54,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,technician,married,professional.course,no,no,no,cellular,nov,tue,154,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +37,management,single,university.degree,no,yes,no,cellular,nov,tue,242,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,university.degree,no,yes,no,cellular,nov,tue,275,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,admin.,married,university.degree,no,yes,no,telephone,nov,tue,217,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,tue,84,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,technician,single,university.degree,no,no,no,cellular,nov,tue,110,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,technician,married,university.degree,no,no,no,cellular,nov,tue,373,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,admin.,divorced,high.school,no,no,no,cellular,nov,tue,115,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,technician,single,university.degree,no,no,no,cellular,nov,tue,259,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,services,single,high.school,no,no,no,cellular,nov,tue,202,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,286,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,admin.,married,university.degree,no,no,yes,cellular,nov,tue,98,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,married,high.school,no,yes,no,cellular,nov,tue,97,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,technician,single,professional.course,unknown,yes,no,cellular,nov,tue,68,2,4,1,success,-0.1,93.2,-42,4.153,5195.8,no +29,unemployed,married,professional.course,no,yes,no,cellular,nov,tue,170,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,management,single,university.degree,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,management,single,professional.course,no,yes,no,cellular,nov,tue,400,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,unemployed,divorced,professional.course,no,no,no,cellular,nov,tue,282,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,self-employed,married,high.school,unknown,yes,no,cellular,nov,tue,126,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,tue,241,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,tue,267,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,self-employed,married,professional.course,no,no,no,cellular,nov,tue,1788,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +56,retired,divorced,university.degree,no,yes,no,cellular,nov,tue,972,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.4y,no,no,no,telephone,nov,tue,194,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,blue-collar,married,basic.4y,no,yes,no,cellular,nov,tue,87,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,entrepreneur,married,high.school,no,no,no,cellular,nov,tue,143,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,372,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,single,university.degree,no,yes,yes,cellular,nov,tue,86,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,technician,single,professional.course,no,yes,no,cellular,nov,tue,58,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,single,university.degree,unknown,yes,yes,cellular,nov,tue,119,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,management,single,high.school,no,no,yes,cellular,nov,tue,117,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,management,married,basic.9y,no,unknown,unknown,cellular,nov,tue,373,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +49,entrepreneur,married,high.school,no,no,no,telephone,nov,tue,177,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,housemaid,divorced,basic.4y,no,no,no,cellular,nov,tue,84,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,housemaid,married,basic.4y,no,yes,no,telephone,nov,tue,150,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +36,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,tue,171,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,single,professional.course,no,yes,no,cellular,nov,tue,131,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,self-employed,married,university.degree,no,no,no,cellular,nov,tue,115,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,tue,283,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,retired,married,high.school,unknown,yes,no,cellular,nov,tue,121,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,admin.,married,university.degree,no,yes,no,telephone,nov,tue,174,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,238,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,61,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,blue-collar,single,high.school,no,yes,no,cellular,nov,tue,139,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +54,technician,married,university.degree,no,no,no,cellular,nov,tue,810,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,tue,586,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,services,married,high.school,unknown,no,no,cellular,nov,tue,80,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,no,no,telephone,nov,tue,296,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,management,married,university.degree,no,no,yes,cellular,nov,tue,218,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,management,married,basic.9y,no,yes,no,cellular,nov,tue,390,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,admin.,married,professional.course,no,yes,no,cellular,nov,tue,271,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,management,married,university.degree,no,no,no,telephone,nov,tue,195,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,entrepreneur,married,basic.4y,no,no,no,cellular,nov,tue,173,7,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,self-employed,single,basic.4y,no,yes,no,cellular,nov,tue,100,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +38,admin.,married,high.school,no,yes,no,cellular,nov,tue,192,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,tue,185,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,management,married,university.degree,no,yes,yes,cellular,nov,tue,411,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,entrepreneur,single,basic.9y,no,yes,no,cellular,nov,tue,108,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,tue,163,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +45,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,tue,167,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +47,admin.,married,university.degree,no,no,no,cellular,nov,tue,1014,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +57,retired,married,high.school,no,no,no,cellular,nov,tue,486,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,admin.,married,university.degree,no,no,no,cellular,nov,tue,140,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.9y,no,no,yes,cellular,nov,tue,160,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +38,technician,single,basic.9y,no,yes,no,cellular,nov,tue,425,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,technician,married,basic.6y,unknown,yes,no,cellular,nov,tue,353,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,management,married,university.degree,no,yes,yes,cellular,nov,tue,84,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,married,university.degree,no,no,yes,telephone,nov,tue,79,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +29,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,920,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,893,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,management,single,university.degree,no,yes,no,cellular,nov,tue,240,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +40,technician,married,professional.course,no,yes,no,telephone,nov,tue,33,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,tue,77,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.6y,no,yes,no,cellular,nov,tue,203,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,tue,364,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,management,married,high.school,unknown,no,no,cellular,nov,tue,825,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,management,married,university.degree,unknown,yes,no,cellular,nov,tue,233,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +40,admin.,divorced,basic.9y,no,yes,no,cellular,nov,tue,394,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +51,admin.,married,basic.9y,no,no,yes,cellular,nov,tue,515,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +52,technician,married,professional.course,no,yes,yes,telephone,nov,tue,285,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,services,married,high.school,no,yes,no,cellular,nov,tue,65,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,services,divorced,basic.9y,no,yes,yes,cellular,nov,tue,62,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,services,married,high.school,no,no,no,cellular,nov,tue,200,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,technician,divorced,professional.course,no,no,no,cellular,nov,tue,55,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,blue-collar,married,basic.4y,unknown,yes,yes,telephone,nov,tue,249,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +31,technician,married,university.degree,no,yes,no,cellular,nov,tue,39,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +30,services,married,high.school,no,yes,no,cellular,nov,tue,493,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,married,university.degree,no,no,no,telephone,nov,tue,40,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +50,admin.,married,university.degree,no,no,no,cellular,nov,tue,99,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,741,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes +50,admin.,married,university.degree,no,no,yes,cellular,nov,tue,189,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,self-employed,single,high.school,no,yes,no,cellular,nov,tue,581,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,technician,single,unknown,no,yes,no,telephone,nov,tue,115,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,nov,tue,154,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,technician,married,professional.course,no,yes,no,cellular,nov,tue,166,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +41,admin.,single,university.degree,no,yes,no,cellular,nov,tue,105,5,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +33,housemaid,married,high.school,no,no,no,cellular,nov,tue,188,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,self-employed,divorced,professional.course,no,yes,no,cellular,nov,tue,491,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,single,university.degree,no,yes,no,telephone,nov,tue,263,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,blue-collar,married,basic.9y,no,no,no,cellular,nov,tue,64,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +35,blue-collar,married,professional.course,no,yes,no,cellular,nov,tue,139,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +53,services,divorced,university.degree,no,yes,yes,cellular,nov,tue,105,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,80,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,180,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,158,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +35,admin.,single,university.degree,no,no,no,cellular,nov,tue,898,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,111,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,tue,246,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,unemployed,married,basic.9y,unknown,no,no,cellular,nov,tue,149,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,technician,divorced,professional.course,no,yes,no,cellular,nov,tue,83,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,247,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +43,housemaid,single,basic.9y,no,no,no,cellular,nov,tue,173,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +48,technician,single,university.degree,no,yes,yes,cellular,nov,tue,193,4,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +48,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,141,2,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,unemployed,married,basic.9y,unknown,yes,no,cellular,nov,tue,467,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +31,self-employed,single,university.degree,no,yes,no,telephone,nov,tue,176,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,married,basic.9y,no,no,no,cellular,nov,tue,106,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,married,basic.9y,no,yes,no,cellular,nov,tue,66,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +39,unemployed,married,basic.9y,unknown,no,yes,cellular,nov,tue,530,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +34,technician,married,basic.9y,no,no,no,cellular,nov,tue,110,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,admin.,married,high.school,no,no,no,cellular,nov,tue,201,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +29,unemployed,divorced,university.degree,no,yes,no,telephone,nov,tue,366,3,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +43,admin.,married,high.school,no,yes,no,telephone,nov,tue,82,6,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +44,management,married,basic.9y,no,yes,no,cellular,nov,tue,129,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,tue,136,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +34,technician,single,high.school,no,yes,no,telephone,nov,tue,251,4,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,admin.,married,high.school,no,no,no,cellular,nov,tue,203,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +45,services,married,high.school,unknown,no,no,cellular,nov,tue,75,5,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,entrepreneur,married,university.degree,no,no,no,cellular,nov,tue,543,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,yes +36,technician,single,professional.course,no,yes,no,telephone,nov,tue,34,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,technician,single,high.school,no,yes,no,telephone,nov,tue,1476,3,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,single,professional.course,no,yes,no,cellular,nov,tue,216,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,252,2,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +33,admin.,single,high.school,no,no,no,cellular,nov,tue,436,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +42,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,tue,288,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +56,blue-collar,single,basic.4y,unknown,no,yes,cellular,nov,tue,307,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,yes,no,telephone,nov,tue,164,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,no,no,cellular,nov,tue,91,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +30,technician,married,professional.course,no,no,no,cellular,nov,tue,679,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +37,technician,married,professional.course,no,yes,no,cellular,nov,tue,400,1,999,0,nonexistent,-0.1,93.2,-42,4.153,5195.8,no +36,technician,single,professional.course,no,yes,no,cellular,nov,tue,1132,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,yes +37,technician,married,professional.course,no,no,no,cellular,nov,tue,372,1,999,1,failure,-0.1,93.2,-42,4.153,5195.8,no +56,management,divorced,university.degree,no,no,no,cellular,nov,wed,90,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,77,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,entrepreneur,single,basic.9y,no,no,yes,cellular,nov,wed,139,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,divorced,high.school,no,no,no,telephone,nov,wed,59,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,167,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,professional.course,no,no,no,cellular,nov,wed,427,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,single,university.degree,no,no,no,cellular,nov,wed,187,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,308,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,blue-collar,married,basic.4y,no,yes,no,telephone,nov,wed,178,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +43,self-employed,married,basic.4y,no,no,yes,cellular,nov,wed,206,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,single,university.degree,no,no,no,cellular,nov,wed,308,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,basic.6y,no,yes,yes,cellular,nov,wed,56,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,wed,209,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,management,single,university.degree,no,yes,no,telephone,nov,wed,103,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,wed,98,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,180,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,divorced,university.degree,unknown,yes,no,cellular,nov,wed,697,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,84,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,no,yes,cellular,nov,wed,113,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +41,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,135,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,wed,157,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,yes,yes,cellular,nov,wed,299,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,divorced,high.school,no,yes,no,cellular,nov,wed,100,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,high.school,no,yes,yes,cellular,nov,wed,819,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +34,admin.,single,high.school,no,no,no,cellular,nov,wed,347,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,single,high.school,no,no,no,cellular,nov,wed,511,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +32,blue-collar,single,high.school,no,yes,yes,cellular,nov,wed,126,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,self-employed,married,basic.6y,unknown,yes,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,single,high.school,no,no,no,cellular,nov,wed,740,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,management,divorced,university.degree,no,no,no,cellular,nov,wed,364,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no +30,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,706,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +48,blue-collar,single,basic.9y,no,yes,no,cellular,nov,wed,43,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,high.school,no,no,yes,cellular,nov,wed,375,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,admin.,divorced,high.school,no,unknown,unknown,cellular,nov,wed,370,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,single,high.school,no,yes,yes,cellular,nov,wed,125,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,242,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,147,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,112,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +46,admin.,divorced,university.degree,no,yes,yes,cellular,nov,wed,184,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,self-employed,married,basic.4y,unknown,no,no,cellular,nov,wed,159,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,self-employed,married,university.degree,unknown,no,no,cellular,nov,wed,199,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,management,married,university.degree,no,no,no,cellular,nov,wed,140,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +58,retired,married,professional.course,no,no,no,cellular,nov,wed,189,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,management,married,university.degree,no,no,no,cellular,nov,wed,192,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,services,single,high.school,no,no,no,cellular,nov,wed,305,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,housemaid,married,basic.6y,no,no,no,cellular,nov,wed,167,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,professional.course,no,no,no,cellular,nov,wed,207,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,104,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,30,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,housemaid,single,basic.4y,unknown,unknown,unknown,cellular,nov,wed,316,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,133,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +58,retired,married,professional.course,no,no,no,cellular,nov,wed,577,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,single,university.degree,no,yes,no,cellular,nov,wed,305,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,204,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,self-employed,married,university.degree,no,no,no,cellular,nov,wed,210,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,126,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,divorced,high.school,no,yes,no,telephone,nov,wed,137,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,professional.course,no,yes,no,cellular,nov,wed,530,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,wed,400,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,single,professional.course,no,no,no,cellular,nov,wed,295,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,technician,married,university.degree,no,no,no,cellular,nov,wed,221,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,158,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,single,university.degree,no,yes,no,cellular,nov,wed,58,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,technician,married,professional.course,no,no,no,cellular,nov,wed,193,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,management,single,university.degree,no,no,no,cellular,nov,wed,187,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,management,divorced,high.school,no,no,no,cellular,nov,wed,499,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,technician,single,unknown,no,no,no,cellular,nov,wed,313,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,married,high.school,no,yes,no,telephone,nov,wed,125,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,services,single,high.school,no,yes,yes,cellular,nov,wed,277,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,unemployed,divorced,high.school,no,no,no,cellular,nov,wed,194,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,university.degree,no,yes,no,cellular,nov,wed,210,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,technician,married,professional.course,no,no,no,telephone,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,unemployed,single,professional.course,no,yes,no,cellular,nov,wed,192,1,0,1,success,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,wed,162,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,management,married,university.degree,no,yes,no,cellular,nov,wed,140,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,divorced,basic.9y,no,yes,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,self-employed,married,high.school,no,no,no,cellular,nov,wed,67,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,unemployed,divorced,high.school,no,yes,no,cellular,nov,wed,351,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,no,no,cellular,nov,wed,143,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,self-employed,single,university.degree,no,no,yes,cellular,nov,wed,197,1,3,1,success,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,wed,82,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,admin.,single,university.degree,no,yes,no,cellular,nov,wed,369,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,130,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,114,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,112,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,technician,divorced,professional.course,unknown,yes,yes,cellular,nov,wed,136,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,entrepreneur,married,high.school,no,no,no,cellular,nov,wed,289,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,university.degree,no,yes,no,cellular,nov,wed,36,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,university.degree,no,no,no,cellular,nov,wed,145,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,589,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +58,management,divorced,university.degree,no,yes,no,cellular,nov,wed,168,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,management,single,university.degree,no,no,no,cellular,nov,wed,493,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,wed,265,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,905,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +58,management,divorced,university.degree,no,no,no,cellular,nov,wed,418,1,5,1,success,-0.1,93.2,-42,4.12,5195.8,yes +43,admin.,married,university.degree,no,no,no,cellular,nov,wed,97,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,wed,682,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,244,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,housemaid,divorced,basic.9y,unknown,yes,no,cellular,nov,wed,107,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,housemaid,married,high.school,no,no,no,cellular,nov,wed,355,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,technician,single,professional.course,no,yes,yes,telephone,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,services,divorced,high.school,no,yes,no,cellular,nov,wed,296,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,professional.course,no,yes,yes,cellular,nov,wed,1554,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,820,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +34,technician,married,university.degree,no,yes,no,cellular,nov,wed,686,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +45,technician,married,university.degree,no,yes,no,cellular,nov,wed,278,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,professional.course,unknown,no,no,cellular,nov,wed,291,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,admin.,married,high.school,no,no,no,cellular,nov,wed,286,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,technician,single,basic.9y,no,no,yes,cellular,nov,wed,224,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,professional.course,no,no,no,cellular,nov,wed,215,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,married,high.school,no,yes,yes,cellular,nov,wed,155,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,single,high.school,no,yes,yes,cellular,nov,wed,236,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,divorced,high.school,no,yes,no,cellular,nov,wed,110,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +45,technician,married,university.degree,no,yes,no,cellular,nov,wed,770,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,basic.4y,no,no,yes,cellular,nov,wed,441,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,management,divorced,university.degree,no,no,no,cellular,nov,wed,77,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,management,married,professional.course,unknown,yes,no,cellular,nov,wed,58,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,139,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,technician,single,basic.9y,no,yes,no,cellular,nov,wed,648,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,902,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,high.school,no,no,yes,cellular,nov,wed,470,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,106,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,no,telephone,nov,wed,72,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,288,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,single,professional.course,no,yes,no,cellular,nov,wed,140,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,61,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,wed,202,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,married,professional.course,unknown,yes,no,cellular,nov,wed,37,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,wed,64,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,single,high.school,no,yes,no,cellular,nov,wed,109,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,entrepreneur,married,basic.9y,no,yes,no,cellular,nov,wed,336,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,925,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,239,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,university.degree,no,yes,no,cellular,nov,wed,473,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,divorced,high.school,no,no,no,cellular,nov,wed,424,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,married,university.degree,no,no,no,cellular,nov,wed,298,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,high.school,no,no,no,cellular,nov,wed,183,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,university.degree,no,no,no,cellular,nov,wed,808,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,862,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +29,housemaid,single,high.school,no,no,no,cellular,nov,wed,786,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +49,technician,married,professional.course,no,yes,no,cellular,nov,wed,298,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,high.school,no,no,no,cellular,nov,wed,436,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,single,university.degree,no,yes,no,cellular,nov,wed,225,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,university.degree,no,yes,no,cellular,nov,wed,86,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,723,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,wed,104,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,housemaid,single,high.school,no,yes,no,cellular,nov,wed,993,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +47,services,married,high.school,no,yes,no,cellular,nov,wed,311,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,married,university.degree,no,no,no,cellular,nov,wed,122,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,university.degree,no,no,no,cellular,nov,wed,85,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,814,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +30,technician,married,university.degree,no,yes,no,cellular,nov,wed,154,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,single,basic.4y,unknown,no,no,cellular,nov,wed,584,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +54,housemaid,married,basic.9y,no,yes,yes,cellular,nov,wed,133,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,management,married,basic.9y,no,yes,no,cellular,nov,wed,103,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +59,housemaid,single,professional.course,no,no,no,cellular,nov,wed,69,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,technician,single,professional.course,no,unknown,unknown,cellular,nov,wed,401,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,single,high.school,no,no,no,cellular,nov,wed,578,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.4y,no,no,yes,cellular,nov,wed,217,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,self-employed,divorced,university.degree,no,yes,no,cellular,nov,wed,177,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,management,married,high.school,no,yes,no,cellular,nov,wed,182,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,entrepreneur,married,professional.course,no,yes,no,cellular,nov,wed,203,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,entrepreneur,married,basic.4y,unknown,yes,no,telephone,nov,wed,53,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,technician,single,high.school,no,yes,no,cellular,nov,wed,375,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,157,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,wed,630,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,university.degree,no,no,no,cellular,nov,wed,223,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,single,high.school,no,no,no,cellular,nov,wed,361,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,single,university.degree,no,no,no,telephone,nov,wed,125,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,services,married,high.school,no,no,no,cellular,nov,wed,426,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,married,university.degree,no,yes,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,185,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +49,management,married,high.school,no,no,no,cellular,nov,wed,582,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,services,divorced,high.school,no,no,no,cellular,nov,wed,466,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,single,high.school,no,yes,no,cellular,nov,wed,222,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,management,married,university.degree,no,yes,yes,cellular,nov,wed,1084,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes +32,services,married,high.school,no,no,no,cellular,nov,wed,44,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,services,married,basic.9y,no,no,no,cellular,nov,wed,76,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,student,married,university.degree,no,no,no,cellular,nov,wed,154,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +48,management,married,university.degree,unknown,no,no,cellular,nov,wed,51,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,management,married,basic.4y,no,no,no,cellular,nov,wed,164,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,basic.6y,no,yes,yes,cellular,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,227,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,single,university.degree,no,yes,no,telephone,nov,wed,111,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +47,unemployed,married,professional.course,no,no,no,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,wed,442,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,wed,226,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,256,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,single,high.school,no,yes,no,cellular,nov,wed,210,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,unemployed,married,university.degree,no,yes,no,cellular,nov,wed,233,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,unemployed,married,professional.course,no,yes,no,cellular,nov,wed,211,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,130,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,unemployed,married,professional.course,no,yes,no,cellular,nov,wed,248,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,single,university.degree,no,yes,no,cellular,nov,wed,52,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,services,divorced,high.school,unknown,yes,yes,cellular,nov,wed,457,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,single,university.degree,no,yes,no,cellular,nov,wed,249,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,419,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,single,basic.9y,no,no,yes,telephone,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,blue-collar,single,unknown,no,yes,no,cellular,nov,wed,198,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,202,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,206,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,management,single,university.degree,no,no,no,cellular,nov,wed,201,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,unemployed,married,professional.course,no,no,no,cellular,nov,wed,144,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,services,divorced,basic.9y,no,no,no,cellular,nov,wed,137,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,unknown,no,no,telephone,nov,wed,100,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,services,single,high.school,no,no,no,cellular,nov,wed,75,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,single,basic.4y,no,no,no,cellular,nov,wed,140,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,services,divorced,high.school,no,no,no,cellular,nov,wed,1015,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,489,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +31,technician,married,professional.course,no,no,no,cellular,nov,wed,212,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,219,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,wed,20,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,wed,75,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,wed,94,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,264,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,high.school,no,yes,no,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,technician,married,professional.course,no,yes,yes,cellular,nov,wed,46,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,single,high.school,no,no,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,94,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,married,high.school,no,no,no,cellular,nov,wed,79,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,wed,79,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,wed,66,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,university.degree,unknown,no,no,cellular,nov,wed,698,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,university.degree,unknown,yes,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,married,high.school,no,yes,no,cellular,nov,wed,694,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +45,management,married,basic.9y,no,yes,no,cellular,nov,wed,363,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,wed,242,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,housemaid,married,unknown,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,wed,52,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +28,self-employed,married,university.degree,no,yes,no,telephone,nov,wed,20,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,university.degree,unknown,yes,no,cellular,nov,wed,337,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +58,management,divorced,high.school,no,yes,no,cellular,nov,wed,308,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,married,university.degree,no,no,no,telephone,nov,wed,274,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,professional.course,no,no,no,cellular,nov,wed,84,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,single,high.school,no,no,no,cellular,nov,wed,631,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,single,high.school,no,no,no,cellular,nov,wed,244,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,services,married,university.degree,no,yes,no,cellular,nov,wed,86,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,admin.,married,university.degree,no,no,no,cellular,nov,wed,123,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,management,married,basic.9y,no,yes,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,186,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,high.school,no,yes,no,cellular,nov,wed,352,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,management,single,professional.course,no,yes,no,cellular,nov,wed,39,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,325,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,self-employed,divorced,university.degree,no,yes,no,cellular,nov,wed,670,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +48,admin.,single,basic.4y,unknown,no,no,cellular,nov,wed,340,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,145,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,100,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +42,admin.,single,university.degree,no,no,no,cellular,nov,wed,72,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,high.school,no,yes,no,telephone,nov,wed,53,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,190,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,technician,married,university.degree,no,no,no,cellular,nov,wed,200,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,basic.9y,no,yes,yes,cellular,nov,wed,47,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,entrepreneur,married,professional.course,no,yes,no,cellular,nov,wed,388,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,wed,498,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,services,single,high.school,no,yes,no,cellular,nov,wed,149,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,management,single,university.degree,no,yes,no,cellular,nov,wed,171,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,high.school,no,no,yes,cellular,nov,wed,561,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +33,entrepreneur,married,basic.9y,unknown,no,no,cellular,nov,wed,636,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,357,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,married,high.school,no,no,no,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,149,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,admin.,single,high.school,no,no,no,cellular,nov,wed,1011,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes +29,services,single,high.school,no,yes,no,cellular,nov,wed,402,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,154,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,retired,single,university.degree,no,yes,no,cellular,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,married,basic.9y,no,no,no,telephone,nov,wed,66,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,professional.course,no,yes,yes,cellular,nov,wed,87,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,housemaid,married,high.school,unknown,no,no,cellular,nov,wed,289,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,661,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,95,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,services,married,university.degree,no,no,no,cellular,nov,wed,270,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,142,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,married,high.school,no,yes,no,cellular,nov,wed,74,1,5,1,success,-0.1,93.2,-42,4.12,5195.8,no +44,admin.,single,university.degree,no,no,no,cellular,nov,wed,60,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,technician,married,university.degree,no,no,no,cellular,nov,wed,258,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +32,services,married,high.school,no,no,yes,cellular,nov,wed,222,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,admin.,single,university.degree,no,yes,no,cellular,nov,wed,132,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,self-employed,married,professional.course,no,yes,no,cellular,nov,wed,103,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +46,management,divorced,high.school,no,yes,yes,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,admin.,married,university.degree,no,yes,no,cellular,nov,wed,93,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,40,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,single,high.school,no,no,no,cellular,nov,wed,292,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,654,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +41,admin.,married,university.degree,no,yes,no,cellular,nov,wed,58,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,management,single,university.degree,no,yes,no,cellular,nov,wed,424,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +54,technician,married,basic.9y,no,no,no,cellular,nov,wed,198,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,single,professional.course,no,yes,yes,cellular,nov,wed,51,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,911,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +41,admin.,married,university.degree,no,no,no,cellular,nov,wed,392,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,married,basic.9y,no,yes,yes,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,998,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +32,technician,married,university.degree,no,yes,no,cellular,nov,wed,405,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,divorced,high.school,no,yes,yes,cellular,nov,wed,291,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,137,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,admin.,married,high.school,no,yes,no,cellular,nov,wed,90,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,self-employed,married,basic.9y,no,no,no,cellular,nov,wed,46,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,single,high.school,no,unknown,unknown,cellular,nov,wed,77,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,management,single,university.degree,no,no,no,cellular,nov,wed,802,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +40,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,1057,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +36,admin.,married,university.degree,no,no,no,cellular,nov,wed,64,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,87,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,management,married,university.degree,no,yes,no,cellular,nov,wed,196,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,161,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,wed,96,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,retired,married,basic.9y,no,no,no,cellular,nov,wed,75,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,housemaid,divorced,basic.9y,no,no,no,cellular,nov,wed,60,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,housemaid,divorced,basic.9y,no,yes,no,cellular,nov,wed,69,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,unemployed,married,basic.9y,no,yes,no,telephone,nov,wed,41,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,unemployed,married,basic.4y,unknown,yes,no,cellular,nov,wed,98,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +40,management,married,professional.course,no,yes,no,cellular,nov,wed,162,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +58,retired,married,basic.9y,no,yes,no,cellular,nov,wed,341,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,professional.course,no,no,no,cellular,nov,wed,332,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,self-employed,married,university.degree,no,no,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,management,divorced,university.degree,no,no,yes,cellular,nov,wed,187,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +40,technician,single,university.degree,no,no,no,cellular,nov,wed,281,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,services,married,high.school,no,no,no,cellular,nov,wed,37,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +32,student,single,university.degree,no,no,no,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,141,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,student,single,university.degree,no,yes,no,cellular,nov,wed,135,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,274,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,basic.9y,no,no,no,cellular,nov,wed,169,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,205,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,83,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,113,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,114,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,high.school,no,yes,no,telephone,nov,wed,60,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,nov,wed,128,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,technician,married,high.school,no,no,no,cellular,nov,wed,187,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +52,self-employed,married,university.degree,no,no,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,blue-collar,married,basic.6y,unknown,yes,yes,cellular,nov,wed,182,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,management,married,unknown,no,yes,no,cellular,nov,wed,248,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +51,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,entrepreneur,married,unknown,no,yes,no,cellular,nov,wed,149,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,152,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,services,married,high.school,no,no,no,cellular,nov,wed,133,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,basic.9y,unknown,yes,yes,cellular,nov,wed,131,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,technician,married,professional.course,no,no,no,cellular,nov,wed,68,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,management,married,university.degree,no,yes,no,cellular,nov,wed,50,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,married,unknown,no,yes,yes,telephone,nov,wed,265,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,565,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,405,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,technician,single,professional.course,no,yes,no,cellular,nov,wed,134,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,self-employed,unknown,basic.6y,no,no,no,cellular,nov,wed,968,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,services,married,high.school,unknown,yes,no,cellular,nov,wed,82,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,416,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,married,basic.9y,no,yes,no,cellular,nov,wed,17,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +52,technician,single,basic.4y,unknown,yes,no,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,technician,married,professional.course,no,no,no,cellular,nov,wed,201,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,wed,374,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +58,management,married,university.degree,no,yes,no,cellular,nov,wed,581,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,single,high.school,no,yes,no,cellular,nov,wed,105,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +55,technician,married,basic.9y,no,no,no,cellular,nov,wed,1548,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,management,divorced,university.degree,no,yes,no,cellular,nov,wed,150,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +52,admin.,married,high.school,no,yes,no,cellular,nov,wed,210,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,entrepreneur,single,university.degree,no,no,no,cellular,nov,wed,131,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,admin.,single,university.degree,no,no,no,cellular,nov,wed,97,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,124,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,wed,742,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,management,married,university.degree,no,yes,no,cellular,nov,wed,151,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,360,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,96,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,basic.4y,unknown,no,no,cellular,nov,wed,57,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,blue-collar,married,professional.course,unknown,yes,no,cellular,nov,wed,85,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,89,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,basic.4y,unknown,yes,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,married,high.school,no,yes,yes,cellular,nov,wed,69,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,self-employed,single,university.degree,no,yes,no,cellular,nov,wed,414,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,married,high.school,no,yes,no,cellular,nov,wed,323,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,university.degree,no,yes,no,cellular,nov,wed,168,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,no,yes,no,cellular,nov,wed,111,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,no,yes,no,cellular,nov,wed,227,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,management,married,university.degree,no,no,no,cellular,nov,wed,72,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,single,high.school,no,yes,yes,cellular,nov,wed,76,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,448,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,basic.4y,unknown,no,no,cellular,nov,wed,755,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,single,university.degree,no,yes,no,cellular,nov,wed,514,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,professional.course,no,yes,no,cellular,nov,wed,482,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,divorced,high.school,no,no,no,telephone,nov,wed,50,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,high.school,no,no,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,single,high.school,no,no,no,cellular,nov,wed,77,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,85,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,wed,638,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,basic.9y,no,no,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,wed,779,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,basic.9y,no,no,no,cellular,nov,wed,198,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,services,married,high.school,no,no,no,cellular,nov,wed,190,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,management,married,university.degree,no,no,no,cellular,nov,wed,363,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,services,single,high.school,no,no,no,cellular,nov,wed,155,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +45,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,wed,130,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,married,university.degree,no,yes,no,cellular,nov,wed,19,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,basic.9y,no,no,no,telephone,nov,wed,319,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,services,single,high.school,no,yes,no,cellular,nov,wed,116,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,professional.course,no,yes,no,cellular,nov,wed,1283,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,management,single,university.degree,no,yes,yes,cellular,nov,wed,293,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,professional.course,no,yes,no,cellular,nov,wed,622,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +32,entrepreneur,married,basic.4y,no,yes,no,telephone,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,single,high.school,no,no,no,cellular,nov,wed,148,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,wed,111,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,retired,married,university.degree,unknown,no,no,cellular,nov,wed,172,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +32,services,married,professional.course,no,yes,no,cellular,nov,wed,186,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,single,basic.6y,no,yes,no,cellular,nov,wed,164,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,220,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,single,basic.6y,no,no,no,cellular,nov,wed,296,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,single,university.degree,no,no,no,cellular,nov,wed,267,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,technician,married,professional.course,no,yes,no,cellular,nov,wed,231,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,services,single,high.school,no,yes,no,cellular,nov,wed,178,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,basic.4y,no,yes,no,cellular,nov,wed,547,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,professional.course,no,no,no,cellular,nov,wed,161,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,59,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,wed,121,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,professional.course,no,no,no,cellular,nov,wed,477,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,384,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,admin.,single,high.school,no,yes,no,cellular,nov,wed,149,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,wed,59,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,basic.4y,no,no,yes,cellular,nov,wed,125,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,522,1,6,1,success,-0.1,93.2,-42,4.12,5195.8,yes +31,blue-collar,single,high.school,no,no,no,telephone,nov,wed,201,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,no,no,cellular,nov,wed,230,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,technician,single,professional.course,no,yes,no,cellular,nov,wed,180,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,technician,divorced,professional.course,no,no,yes,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,unknown,divorced,basic.4y,no,no,no,cellular,nov,wed,73,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,management,married,university.degree,no,no,yes,cellular,nov,wed,391,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,divorced,high.school,no,no,no,cellular,nov,wed,131,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,university.degree,no,yes,no,cellular,nov,wed,174,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,147,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,single,high.school,no,no,no,cellular,nov,wed,265,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,admin.,divorced,high.school,no,no,no,cellular,nov,wed,67,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,housemaid,divorced,high.school,no,no,no,cellular,nov,wed,136,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,self-employed,single,basic.4y,no,no,no,cellular,nov,wed,174,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +47,unemployed,married,high.school,unknown,no,no,cellular,nov,wed,101,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,299,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,392,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,780,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,159,2,4,1,success,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,married,university.degree,unknown,yes,no,cellular,nov,wed,562,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,127,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,wed,418,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,management,divorced,university.degree,no,yes,no,cellular,nov,wed,259,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,management,divorced,university.degree,no,no,no,cellular,nov,wed,295,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,yes,yes,cellular,nov,wed,138,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,married,university.degree,no,yes,no,cellular,nov,wed,124,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,wed,146,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,no,no,cellular,nov,wed,145,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,management,married,university.degree,no,yes,no,cellular,nov,wed,57,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,management,married,basic.9y,no,no,no,cellular,nov,wed,69,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,unemployed,divorced,high.school,no,yes,no,cellular,nov,wed,166,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,82,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,277,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,no,no,no,cellular,nov,wed,194,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,management,married,university.degree,no,no,no,cellular,nov,wed,138,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +43,admin.,divorced,university.degree,no,no,no,cellular,nov,wed,1502,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +34,management,single,high.school,no,yes,no,cellular,nov,wed,175,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,married,university.degree,no,no,no,cellular,nov,wed,117,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,unknown,no,no,cellular,nov,wed,1049,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +48,services,divorced,basic.4y,no,no,no,cellular,nov,wed,134,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,high.school,no,no,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,187,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,technician,single,professional.course,no,yes,no,cellular,nov,wed,107,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,married,university.degree,no,yes,no,cellular,nov,wed,40,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,wed,161,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,entrepreneur,divorced,basic.9y,no,yes,no,cellular,nov,wed,71,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,services,married,basic.6y,no,yes,no,cellular,nov,wed,772,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,wed,128,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,single,high.school,no,yes,no,cellular,nov,wed,195,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,entrepreneur,divorced,basic.9y,no,no,no,cellular,nov,wed,353,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,wed,25,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,175,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +49,blue-collar,divorced,basic.6y,no,no,no,cellular,nov,wed,55,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,wed,137,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,631,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +56,management,married,university.degree,no,no,no,cellular,nov,wed,98,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,technician,married,basic.9y,no,no,yes,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,married,high.school,no,yes,no,cellular,nov,wed,131,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,management,married,high.school,no,no,no,telephone,nov,wed,47,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,management,married,university.degree,no,no,no,cellular,nov,wed,140,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,management,married,university.degree,no,yes,no,cellular,nov,wed,286,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,married,university.degree,no,no,no,cellular,nov,wed,690,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,services,married,high.school,no,yes,no,telephone,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,wed,93,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +42,services,married,professional.course,no,yes,yes,cellular,nov,wed,120,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,married,high.school,no,yes,no,cellular,nov,wed,570,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,wed,456,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,university.degree,no,no,yes,cellular,nov,wed,49,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +41,admin.,married,university.degree,no,yes,no,cellular,nov,wed,54,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,160,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,admin.,married,university.degree,no,yes,yes,telephone,nov,wed,385,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,single,university.degree,no,yes,no,cellular,nov,wed,250,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,entrepreneur,married,high.school,no,yes,no,cellular,nov,wed,164,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,university.degree,no,no,yes,cellular,nov,wed,234,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,technician,divorced,basic.9y,no,yes,yes,cellular,nov,wed,177,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,admin.,single,university.degree,no,yes,no,cellular,nov,wed,50,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,457,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,single,university.degree,no,no,no,telephone,nov,wed,623,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +42,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,wed,20,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,technician,married,high.school,no,no,no,cellular,nov,wed,1206,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,entrepreneur,married,unknown,no,yes,no,cellular,nov,wed,21,10,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,559,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,married,basic.9y,no,no,no,cellular,nov,wed,205,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,1065,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,blue-collar,single,basic.6y,no,yes,no,telephone,nov,wed,401,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,management,divorced,university.degree,no,yes,no,cellular,nov,wed,50,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,technician,married,basic.9y,no,no,yes,cellular,nov,wed,113,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,1028,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +34,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,213,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,wed,340,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,entrepreneur,married,basic.6y,no,no,no,cellular,nov,wed,90,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,wed,286,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,technician,divorced,university.degree,no,yes,no,cellular,nov,wed,342,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +58,management,married,university.degree,no,yes,no,cellular,nov,wed,394,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,management,married,basic.4y,no,yes,no,cellular,nov,wed,63,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,73,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,214,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,housemaid,married,basic.6y,unknown,no,no,cellular,nov,wed,76,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,337,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +30,blue-collar,single,basic.9y,no,no,no,cellular,nov,wed,88,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,high.school,no,yes,no,cellular,nov,wed,96,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,married,university.degree,no,yes,no,cellular,nov,wed,171,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,wed,418,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,wed,434,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,wed,54,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,management,married,high.school,no,yes,no,cellular,nov,wed,86,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,wed,1265,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +56,management,married,university.degree,no,yes,yes,cellular,nov,wed,104,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,services,single,high.school,no,yes,no,cellular,nov,wed,485,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,251,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,single,basic.6y,no,yes,no,cellular,nov,wed,328,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,married,university.degree,unknown,no,no,cellular,nov,wed,108,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,88,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,professional.course,no,no,no,cellular,nov,wed,220,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,118,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,single,basic.6y,no,no,no,cellular,nov,wed,520,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,management,married,university.degree,no,no,no,cellular,nov,wed,139,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,501,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,408,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,unemployed,married,basic.9y,no,no,no,cellular,nov,wed,292,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,95,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,wed,77,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,basic.9y,no,yes,yes,cellular,nov,wed,62,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,359,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,unemployed,married,basic.9y,no,yes,no,cellular,nov,wed,640,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,basic.9y,no,no,no,cellular,nov,wed,178,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,basic.9y,no,yes,no,cellular,nov,wed,112,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +57,management,married,university.degree,no,yes,no,cellular,nov,wed,589,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +35,technician,single,basic.9y,no,no,no,telephone,nov,wed,433,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,wed,122,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,services,divorced,basic.6y,unknown,no,no,cellular,nov,wed,254,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,technician,married,university.degree,no,yes,no,cellular,nov,wed,236,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,wed,60,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,admin.,married,professional.course,no,yes,no,cellular,nov,wed,216,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,self-employed,married,university.degree,no,yes,no,cellular,nov,wed,70,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,management,single,university.degree,no,no,yes,cellular,nov,wed,541,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,self-employed,single,university.degree,no,yes,no,cellular,nov,wed,199,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,entrepreneur,single,basic.9y,no,no,no,cellular,nov,wed,191,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,services,single,basic.9y,no,yes,yes,cellular,nov,wed,300,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,housemaid,married,basic.9y,no,no,no,cellular,nov,wed,362,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,married,high.school,no,no,no,cellular,nov,wed,1061,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +33,self-employed,married,university.degree,no,yes,yes,cellular,nov,wed,208,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,management,married,university.degree,no,yes,yes,telephone,nov,wed,377,3,0,2,success,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,professional.course,no,no,no,cellular,nov,wed,54,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,admin.,married,university.degree,no,yes,no,cellular,nov,wed,157,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,47,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,625,1,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,services,single,high.school,no,yes,no,telephone,nov,wed,88,1,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +51,unemployed,divorced,university.degree,unknown,yes,no,cellular,nov,wed,120,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,services,married,high.school,no,no,no,cellular,nov,wed,89,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,married,professional.course,no,no,no,cellular,nov,wed,616,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,wed,56,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,self-employed,single,university.degree,no,no,no,cellular,nov,wed,238,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,entrepreneur,married,high.school,no,yes,yes,cellular,nov,wed,112,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,admin.,married,university.degree,no,no,no,cellular,nov,wed,748,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,184,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,entrepreneur,married,university.degree,no,no,no,telephone,nov,wed,202,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,wed,273,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,married,university.degree,no,yes,no,cellular,nov,wed,223,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,management,married,university.degree,no,no,no,cellular,nov,wed,382,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,278,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,technician,married,basic.9y,no,no,no,cellular,nov,wed,294,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,management,married,university.degree,no,yes,no,cellular,nov,wed,783,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +31,admin.,married,basic.9y,no,yes,no,cellular,nov,wed,1662,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,single,university.degree,no,no,no,cellular,nov,wed,79,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,yes,no,cellular,nov,wed,115,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,single,university.degree,no,yes,no,cellular,nov,wed,101,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +55,management,married,professional.course,no,yes,no,cellular,nov,wed,223,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,management,married,university.degree,unknown,yes,no,cellular,nov,wed,126,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,management,married,university.degree,no,no,yes,cellular,nov,wed,73,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +32,management,single,university.degree,no,no,no,cellular,nov,wed,163,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,299,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,professional.course,no,yes,no,cellular,nov,wed,107,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,admin.,married,university.degree,no,yes,no,cellular,nov,wed,70,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,admin.,divorced,basic.9y,no,unknown,unknown,cellular,nov,wed,258,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,entrepreneur,single,university.degree,no,no,no,cellular,nov,wed,1120,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +46,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,223,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,married,university.degree,no,yes,yes,cellular,nov,wed,184,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,no,no,cellular,nov,wed,523,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,high.school,no,yes,no,cellular,nov,wed,77,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,252,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +40,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,104,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,unknown,yes,no,cellular,nov,wed,433,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,management,married,high.school,unknown,no,no,cellular,nov,wed,178,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,services,single,high.school,no,no,no,cellular,nov,wed,174,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,technician,married,basic.9y,no,yes,no,cellular,nov,wed,354,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,married,high.school,no,no,no,cellular,nov,wed,231,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,technician,single,professional.course,no,no,no,cellular,nov,wed,757,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +35,management,married,university.degree,no,yes,no,cellular,nov,wed,130,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,management,married,university.degree,no,yes,no,cellular,nov,wed,111,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,admin.,married,high.school,no,yes,no,cellular,nov,wed,130,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,374,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,divorced,basic.6y,no,yes,no,telephone,nov,wed,95,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,entrepreneur,married,basic.9y,no,no,yes,cellular,nov,wed,680,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,yes +46,management,divorced,high.school,no,yes,no,cellular,nov,wed,191,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,married,high.school,no,yes,no,cellular,nov,wed,193,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,technician,single,professional.course,no,yes,no,cellular,nov,wed,1468,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +39,blue-collar,married,basic.6y,unknown,no,yes,cellular,nov,wed,188,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,technician,married,university.degree,no,no,no,cellular,nov,wed,221,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,59,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,married,high.school,no,yes,yes,cellular,nov,wed,314,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,admin.,married,high.school,unknown,yes,no,cellular,nov,wed,246,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,single,high.school,no,yes,no,cellular,nov,wed,154,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,nov,wed,432,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,services,married,high.school,no,yes,yes,cellular,nov,wed,584,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,140,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,divorced,high.school,no,no,yes,cellular,nov,wed,709,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +44,services,married,high.school,no,no,no,cellular,nov,wed,635,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +48,housemaid,single,high.school,unknown,yes,no,cellular,nov,wed,449,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,management,married,university.degree,no,no,no,cellular,nov,wed,108,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +40,admin.,single,high.school,no,no,no,cellular,nov,wed,53,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,married,university.degree,no,unknown,unknown,cellular,nov,wed,151,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,management,divorced,university.degree,no,no,no,cellular,nov,wed,287,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,management,married,university.degree,no,no,no,cellular,nov,wed,266,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,housemaid,divorced,university.degree,no,no,no,cellular,nov,wed,105,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,divorced,high.school,no,yes,no,cellular,nov,wed,225,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,wed,154,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,blue-collar,married,basic.6y,no,unknown,unknown,cellular,nov,wed,172,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,management,married,basic.6y,no,no,no,cellular,nov,wed,221,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,admin.,married,university.degree,no,yes,no,cellular,nov,wed,209,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,management,married,high.school,no,no,no,cellular,nov,wed,356,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +49,admin.,single,basic.9y,no,yes,yes,cellular,nov,wed,259,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,technician,married,university.degree,no,no,no,telephone,nov,wed,91,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,services,married,high.school,no,yes,yes,cellular,nov,wed,729,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,divorced,high.school,no,no,no,cellular,nov,wed,744,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,services,divorced,high.school,no,yes,no,cellular,nov,wed,222,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,married,university.degree,no,no,no,cellular,nov,wed,406,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,services,married,high.school,no,yes,no,cellular,nov,wed,307,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,housemaid,married,basic.6y,no,yes,no,cellular,nov,wed,1337,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +35,blue-collar,married,basic.9y,no,yes,no,telephone,nov,wed,178,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,entrepreneur,married,unknown,no,no,no,cellular,nov,wed,304,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,wed,1307,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +50,admin.,married,high.school,no,no,no,cellular,nov,wed,93,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +49,technician,divorced,basic.9y,no,no,no,cellular,nov,wed,225,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,technician,single,high.school,no,no,no,cellular,nov,wed,515,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,blue-collar,married,basic.6y,no,no,no,cellular,nov,wed,312,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,technician,divorced,high.school,no,yes,yes,cellular,nov,wed,243,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,wed,117,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,admin.,single,high.school,no,yes,no,telephone,nov,wed,207,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +44,entrepreneur,married,university.degree,no,no,yes,cellular,nov,wed,67,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,services,married,high.school,no,no,no,cellular,nov,wed,581,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,676,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,blue-collar,married,basic.6y,unknown,no,no,cellular,nov,wed,300,5,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +37,management,married,university.degree,no,no,yes,cellular,nov,wed,611,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,services,single,university.degree,no,yes,no,telephone,nov,wed,52,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,management,married,high.school,unknown,no,no,cellular,nov,wed,275,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,blue-collar,married,basic.6y,no,no,yes,cellular,nov,wed,188,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +56,management,married,university.degree,no,yes,no,cellular,nov,wed,130,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,technician,married,high.school,no,yes,no,telephone,nov,wed,46,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,wed,143,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,blue-collar,married,basic.6y,no,yes,yes,telephone,nov,wed,214,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no +52,entrepreneur,married,university.degree,unknown,yes,yes,telephone,nov,wed,248,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,technician,married,professional.course,no,yes,no,telephone,nov,wed,159,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +37,management,married,university.degree,no,no,yes,cellular,nov,wed,307,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,services,married,university.degree,no,yes,no,cellular,nov,wed,37,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,193,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,unemployed,single,unknown,no,yes,no,cellular,nov,wed,1271,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,yes +30,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,167,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +47,housemaid,divorced,basic.4y,unknown,yes,yes,telephone,nov,wed,475,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,single,basic.9y,no,no,yes,telephone,nov,wed,590,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,technician,married,professional.course,no,yes,yes,telephone,nov,wed,196,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +34,management,married,high.school,no,yes,no,cellular,nov,wed,228,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,admin.,divorced,basic.9y,no,yes,no,cellular,nov,wed,575,9,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,entrepreneur,married,basic.4y,no,yes,yes,cellular,nov,wed,322,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,wed,546,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,admin.,divorced,professional.course,no,no,yes,cellular,nov,wed,1435,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +50,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,332,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,management,married,university.degree,no,yes,no,cellular,nov,wed,214,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +41,management,married,university.degree,no,yes,yes,cellular,nov,wed,501,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +55,technician,married,high.school,unknown,yes,no,cellular,nov,wed,285,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,wed,320,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,entrepreneur,married,university.degree,no,no,no,telephone,nov,wed,723,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +51,entrepreneur,divorced,university.degree,no,yes,no,telephone,nov,wed,89,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,technician,single,university.degree,unknown,no,no,cellular,nov,wed,193,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,nov,wed,284,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,unknown,no,no,cellular,nov,wed,135,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +39,housemaid,divorced,high.school,no,no,no,cellular,nov,wed,214,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,wed,162,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,services,married,high.school,unknown,no,no,cellular,nov,wed,303,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,nov,wed,575,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +40,blue-collar,single,basic.9y,no,unknown,unknown,cellular,nov,wed,245,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,management,married,basic.4y,no,yes,no,cellular,nov,wed,64,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,services,single,high.school,no,yes,no,cellular,nov,wed,146,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,no,yes,cellular,nov,wed,281,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,technician,single,professional.course,no,yes,yes,cellular,nov,wed,182,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,admin.,married,high.school,no,no,no,cellular,nov,wed,291,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +54,management,married,basic.6y,no,yes,no,cellular,nov,wed,616,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,186,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,unemployed,married,basic.9y,no,yes,no,cellular,nov,wed,248,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,wed,380,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,services,married,basic.6y,no,no,no,cellular,nov,wed,314,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +30,unemployed,single,professional.course,no,no,no,cellular,nov,wed,206,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,entrepreneur,married,professional.course,no,yes,no,telephone,nov,wed,519,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,blue-collar,married,basic.4y,no,no,no,cellular,nov,wed,209,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,185,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,single,basic.4y,no,no,no,cellular,nov,wed,335,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,high.school,no,no,no,cellular,nov,wed,131,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,wed,71,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +52,technician,married,basic.9y,no,yes,yes,cellular,nov,wed,323,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,self-employed,married,university.degree,unknown,yes,no,cellular,nov,wed,70,4,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,no,no,no,cellular,nov,wed,62,3,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +31,admin.,married,university.degree,no,no,no,cellular,nov,wed,596,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,admin.,married,university.degree,no,yes,no,cellular,nov,wed,517,2,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,single,high.school,no,yes,no,cellular,nov,wed,208,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,wed,145,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +48,management,married,university.degree,unknown,no,no,cellular,nov,wed,52,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,technician,married,professional.course,no,yes,yes,cellular,nov,wed,11,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,wed,206,5,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,wed,107,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +33,admin.,married,university.degree,no,yes,yes,cellular,nov,wed,54,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,management,married,basic.4y,no,yes,no,cellular,nov,wed,107,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,wed,102,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +34,management,single,high.school,no,yes,yes,cellular,nov,wed,201,2,6,1,success,-0.1,93.2,-42,4.12,5195.8,no +37,admin.,single,university.degree,no,yes,yes,cellular,nov,wed,844,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +35,housemaid,single,basic.4y,unknown,yes,no,cellular,nov,wed,66,2,3,1,success,-0.1,93.2,-42,4.12,5195.8,no +45,entrepreneur,married,university.degree,unknown,yes,no,telephone,nov,wed,278,7,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,wed,1311,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +38,admin.,single,university.degree,no,yes,no,cellular,nov,wed,255,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +30,services,married,high.school,no,yes,no,cellular,nov,wed,599,4,999,1,failure,-0.1,93.2,-42,4.12,5195.8,no +38,services,married,unknown,no,yes,no,cellular,nov,wed,339,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +31,entrepreneur,married,basic.9y,no,no,no,cellular,nov,wed,558,3,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,nov,wed,800,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,high.school,no,no,no,cellular,nov,wed,854,2,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +53,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,wed,635,6,999,0,nonexistent,-0.1,93.2,-42,4.12,5195.8,no +29,blue-collar,married,high.school,no,yes,no,telephone,nov,thu,72,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,technician,married,university.degree,no,yes,no,telephone,nov,thu,14,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,291,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,single,basic.6y,no,yes,no,cellular,nov,thu,82,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,self-employed,single,professional.course,no,yes,no,cellular,nov,thu,97,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,thu,130,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,management,single,university.degree,no,yes,no,telephone,nov,thu,88,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,married,basic.4y,no,yes,no,telephone,nov,thu,132,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,no,no,telephone,nov,thu,36,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,technician,married,basic.9y,no,yes,no,cellular,nov,thu,348,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,services,married,professional.course,no,no,no,cellular,nov,thu,161,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,technician,divorced,professional.course,no,no,no,cellular,nov,thu,77,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,unemployed,married,basic.4y,unknown,no,no,cellular,nov,thu,143,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,admin.,divorced,professional.course,no,no,no,cellular,nov,thu,80,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +35,technician,married,professional.course,no,no,no,cellular,nov,thu,366,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,298,2,5,1,success,-0.1,93.2,-42,4.076,5195.8,no +53,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,64,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,technician,married,professional.course,no,yes,no,cellular,nov,thu,51,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,75,2,4,1,success,-0.1,93.2,-42,4.076,5195.8,no +53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,69,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,37,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,married,unknown,no,yes,no,cellular,nov,thu,632,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,48,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,basic.9y,no,yes,no,cellular,nov,thu,57,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,services,single,unknown,no,yes,no,cellular,nov,thu,164,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,single,professional.course,no,no,no,cellular,nov,thu,48,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,professional.course,no,yes,yes,cellular,nov,thu,42,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,married,unknown,no,no,no,cellular,nov,thu,171,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,unemployed,married,high.school,no,yes,yes,cellular,nov,thu,91,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,university.degree,no,no,no,cellular,nov,thu,78,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,admin.,married,high.school,no,unknown,unknown,cellular,nov,thu,518,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,nov,thu,73,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,no,no,telephone,nov,thu,105,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,340,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,379,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,technician,married,professional.course,no,no,no,telephone,nov,thu,114,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,services,divorced,basic.6y,no,no,no,cellular,nov,thu,667,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,unemployed,divorced,university.degree,no,no,no,cellular,nov,thu,286,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +42,self-employed,married,high.school,unknown,yes,no,cellular,nov,thu,77,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,unknown,professional.course,no,yes,no,cellular,nov,thu,125,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +52,management,married,university.degree,no,no,no,telephone,nov,thu,21,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,management,married,university.degree,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,married,university.degree,no,yes,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,married,university.degree,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,unemployed,single,university.degree,no,yes,no,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,married,professional.course,no,no,no,cellular,nov,thu,179,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +46,management,married,university.degree,no,yes,no,cellular,nov,thu,466,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,834,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,self-employed,divorced,basic.9y,no,yes,no,cellular,nov,thu,26,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,459,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,113,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,997,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,technician,single,university.degree,no,no,no,cellular,nov,thu,284,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,married,university.degree,no,no,no,telephone,nov,thu,281,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,services,single,basic.6y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,admin.,married,basic.9y,no,no,no,cellular,nov,thu,209,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,retired,married,high.school,no,yes,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,divorced,high.school,no,yes,no,cellular,nov,thu,149,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,services,single,basic.6y,no,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,191,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,services,single,basic.6y,no,no,no,cellular,nov,thu,373,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,services,single,high.school,no,yes,no,cellular,nov,thu,100,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,technician,married,high.school,no,no,yes,telephone,nov,thu,66,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,392,2,3,1,success,-0.1,93.2,-42,4.076,5195.8,no +58,retired,married,high.school,no,no,no,cellular,nov,thu,477,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,291,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,276,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +47,technician,married,professional.course,no,no,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,housemaid,married,basic.9y,no,no,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,entrepreneur,married,high.school,unknown,no,no,cellular,nov,thu,68,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +58,management,married,unknown,no,no,no,cellular,nov,thu,142,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,high.school,no,no,yes,cellular,nov,thu,49,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,251,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,137,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,high.school,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,single,professional.course,no,yes,no,telephone,nov,thu,25,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,high.school,no,yes,no,cellular,nov,thu,220,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,single,basic.9y,no,no,no,cellular,nov,thu,174,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,370,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,high.school,no,yes,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,entrepreneur,divorced,university.degree,no,yes,yes,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,single,university.degree,no,yes,yes,cellular,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,admin.,married,unknown,no,yes,yes,cellular,nov,thu,254,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,admin.,married,university.degree,no,no,no,cellular,nov,thu,358,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,student,single,high.school,no,yes,no,cellular,nov,thu,670,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +32,admin.,married,professional.course,no,unknown,unknown,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,428,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,married,unknown,no,no,no,cellular,nov,thu,366,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,services,married,high.school,no,no,no,cellular,nov,thu,81,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,married,professional.course,no,yes,no,cellular,nov,thu,322,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,university.degree,no,no,no,cellular,nov,thu,46,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,university.degree,no,yes,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,high.school,no,no,no,cellular,nov,thu,732,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +29,housemaid,married,high.school,no,yes,no,cellular,nov,thu,408,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,self-employed,divorced,basic.9y,unknown,unknown,unknown,cellular,nov,thu,125,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,thu,76,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,management,married,university.degree,no,no,no,cellular,nov,thu,110,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,415,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,166,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,self-employed,divorced,basic.9y,unknown,no,no,cellular,nov,thu,486,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,married,university.degree,no,yes,no,cellular,nov,thu,245,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,463,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,high.school,no,no,yes,telephone,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,thu,364,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,199,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,married,university.degree,no,yes,no,telephone,nov,thu,145,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,110,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,university.degree,no,no,yes,cellular,nov,thu,52,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,34,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,admin.,married,university.degree,no,no,yes,cellular,nov,thu,232,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,single,high.school,unknown,yes,no,cellular,nov,thu,530,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,505,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,thu,140,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,management,married,university.degree,no,yes,yes,cellular,nov,thu,884,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,entrepreneur,married,university.degree,unknown,no,no,cellular,nov,thu,301,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,divorced,high.school,no,yes,yes,cellular,nov,thu,319,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,blue-collar,single,high.school,no,no,no,cellular,nov,thu,71,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,405,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,university.degree,no,yes,no,cellular,nov,thu,93,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,blue-collar,single,basic.6y,unknown,yes,no,cellular,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,thu,231,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,yes,no,telephone,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,management,single,university.degree,no,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,531,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +30,admin.,single,basic.9y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +38,entrepreneur,married,basic.9y,no,no,no,cellular,nov,thu,166,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,high.school,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,married,university.degree,no,no,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,divorced,university.degree,no,yes,no,telephone,nov,thu,59,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,married,university.degree,no,no,yes,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +40,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,628,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +43,management,married,university.degree,no,no,no,cellular,nov,thu,1192,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,101,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,married,professional.course,no,yes,no,cellular,nov,thu,370,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,entrepreneur,married,university.degree,unknown,yes,no,cellular,nov,thu,76,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,103,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +50,entrepreneur,married,basic.4y,unknown,yes,no,cellular,nov,thu,217,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,566,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +33,services,married,high.school,no,yes,yes,cellular,nov,thu,422,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,high.school,no,yes,no,cellular,nov,thu,23,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,45,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,university.degree,no,unknown,unknown,cellular,nov,thu,48,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,admin.,married,university.degree,no,yes,no,cellular,nov,thu,20,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,unemployed,divorced,high.school,no,unknown,unknown,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,housemaid,married,high.school,no,no,no,cellular,nov,thu,99,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,173,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,single,university.degree,no,yes,no,telephone,nov,thu,47,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,single,university.degree,no,no,yes,cellular,nov,thu,67,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +50,blue-collar,married,professional.course,unknown,no,no,cellular,nov,thu,283,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +32,entrepreneur,single,university.degree,no,no,yes,cellular,nov,thu,126,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,unemployed,married,basic.6y,no,yes,no,cellular,nov,thu,46,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,1058,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,single,university.degree,no,no,no,cellular,nov,thu,485,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,technician,single,university.degree,no,no,no,cellular,nov,thu,454,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +44,management,married,university.degree,no,yes,no,cellular,nov,thu,176,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,management,married,university.degree,no,no,no,cellular,nov,thu,277,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,single,university.degree,no,yes,yes,cellular,nov,thu,74,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,thu,137,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,entrepreneur,married,basic.9y,no,no,no,cellular,nov,thu,158,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,retired,married,professional.course,no,no,no,cellular,nov,thu,234,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,management,married,unknown,no,yes,no,cellular,nov,thu,121,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,married,high.school,no,no,no,cellular,nov,thu,523,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,high.school,no,yes,no,telephone,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,1816,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,management,married,university.degree,no,no,no,cellular,nov,thu,203,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,unknown,yes,no,cellular,nov,thu,73,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,unemployed,married,high.school,no,yes,no,cellular,nov,thu,728,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +30,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,157,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,unknown,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,thu,63,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,management,married,professional.course,no,no,no,cellular,nov,thu,993,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,technician,single,professional.course,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,management,married,university.degree,no,no,no,cellular,nov,thu,146,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,services,single,high.school,no,no,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,professional.course,no,no,no,cellular,nov,thu,112,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,married,university.degree,no,yes,no,cellular,nov,thu,333,2,3,1,success,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,professional.course,no,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,professional.course,no,yes,no,telephone,nov,thu,172,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,34,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +37,unemployed,married,professional.course,no,yes,no,cellular,nov,thu,318,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,married,professional.course,no,yes,no,cellular,nov,thu,1040,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,no,no,cellular,nov,thu,103,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,management,single,professional.course,no,yes,no,cellular,nov,thu,8,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,professional.course,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,25,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,retired,married,high.school,no,no,yes,cellular,nov,thu,26,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,management,single,university.degree,no,no,no,cellular,nov,thu,549,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +29,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,management,married,university.degree,no,yes,no,cellular,nov,thu,67,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,high.school,no,yes,no,cellular,nov,thu,167,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +50,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,59,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,unemployed,single,high.school,no,yes,no,cellular,nov,thu,73,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +57,technician,married,professional.course,no,yes,no,cellular,nov,thu,302,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,management,single,high.school,no,yes,no,cellular,nov,thu,541,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,technician,married,university.degree,no,yes,no,cellular,nov,thu,92,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,admin.,married,basic.9y,no,yes,no,cellular,nov,thu,85,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,services,single,high.school,no,yes,no,cellular,nov,thu,128,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,278,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,management,married,university.degree,no,no,no,cellular,nov,thu,316,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,admin.,married,university.degree,no,no,no,cellular,nov,thu,278,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,478,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +52,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,202,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,171,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +33,self-employed,divorced,university.degree,no,no,no,telephone,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,basic.9y,no,yes,no,cellular,nov,thu,755,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +38,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,thu,252,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,53,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,technician,married,basic.6y,no,yes,no,cellular,nov,thu,223,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,university.degree,no,no,yes,cellular,nov,thu,57,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,technician,married,university.degree,no,yes,no,cellular,nov,thu,91,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,single,university.degree,no,unknown,unknown,cellular,nov,thu,26,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +42,management,married,high.school,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,high.school,no,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,228,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,148,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +57,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,199,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,married,university.degree,no,no,no,cellular,nov,thu,1031,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,married,university.degree,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,technician,married,university.degree,no,yes,no,cellular,nov,thu,82,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,technician,married,university.degree,no,no,no,cellular,nov,thu,204,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,professional.course,unknown,no,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,self-employed,divorced,university.degree,no,unknown,unknown,cellular,nov,thu,173,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,admin.,married,high.school,no,unknown,unknown,cellular,nov,thu,309,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,management,married,high.school,unknown,yes,no,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,500,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,70,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,university.degree,no,no,no,cellular,nov,thu,18,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,technician,married,university.degree,no,no,no,cellular,nov,thu,174,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,entrepreneur,single,high.school,no,no,no,cellular,nov,thu,189,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,admin.,single,university.degree,no,yes,no,cellular,nov,thu,222,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,management,divorced,high.school,unknown,no,no,cellular,nov,thu,520,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,entrepreneur,single,high.school,no,no,no,cellular,nov,thu,290,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,single,university.degree,no,yes,no,cellular,nov,thu,22,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,technician,married,professional.course,no,no,no,telephone,nov,thu,35,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,157,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,365,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,married,professional.course,no,yes,no,telephone,nov,thu,106,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,244,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,divorced,high.school,no,no,no,cellular,nov,thu,290,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,high.school,no,yes,no,cellular,nov,thu,48,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,management,married,university.degree,no,yes,no,cellular,nov,thu,302,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,single,university.degree,no,yes,no,cellular,nov,thu,88,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,admin.,single,university.degree,no,yes,no,cellular,nov,thu,95,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,994,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +43,technician,married,university.degree,no,no,yes,cellular,nov,thu,113,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,management,married,high.school,unknown,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,married,professional.course,no,no,no,cellular,nov,thu,70,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +46,management,married,unknown,no,yes,no,cellular,nov,thu,1503,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +58,technician,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,professional.course,no,no,no,cellular,nov,thu,96,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,nov,thu,308,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,no,no,telephone,nov,thu,29,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,entrepreneur,divorced,high.school,no,yes,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,professional.course,no,yes,yes,cellular,nov,thu,94,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,basic.9y,no,no,no,telephone,nov,thu,26,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,professional.course,no,yes,no,cellular,nov,thu,78,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,single,university.degree,no,yes,yes,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,technician,married,professional.course,no,no,no,cellular,nov,thu,321,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,basic.9y,no,yes,no,cellular,nov,thu,220,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,77,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,technician,married,professional.course,no,no,no,cellular,nov,thu,81,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +39,unemployed,divorced,high.school,no,no,no,cellular,nov,thu,19,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,thu,83,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,thu,40,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,services,married,high.school,no,yes,no,cellular,nov,thu,640,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,871,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +35,student,married,basic.9y,no,yes,no,cellular,nov,thu,371,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,88,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,73,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,technician,married,professional.course,no,yes,no,cellular,nov,thu,329,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +48,admin.,married,university.degree,no,yes,no,cellular,nov,thu,111,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,757,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,high.school,no,no,no,cellular,nov,thu,62,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,high.school,no,no,no,cellular,nov,thu,149,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,164,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,housemaid,divorced,high.school,no,yes,no,cellular,nov,thu,67,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,high.school,no,yes,yes,cellular,nov,thu,232,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,self-employed,single,university.degree,no,no,no,cellular,nov,thu,385,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,thu,301,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,69,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,university.degree,no,no,no,cellular,nov,thu,183,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +59,retired,married,professional.course,no,no,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +59,retired,married,professional.course,no,no,no,cellular,nov,thu,117,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,89,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,yes,yes,cellular,nov,thu,49,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,self-employed,married,professional.course,no,no,no,cellular,nov,thu,24,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +56,technician,married,university.degree,no,no,no,cellular,nov,thu,162,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,no,no,cellular,nov,thu,1256,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,no,no,cellular,nov,thu,244,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,thu,82,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,self-employed,married,university.degree,no,no,no,telephone,nov,thu,39,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,entrepreneur,married,unknown,unknown,yes,no,cellular,nov,thu,23,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,management,married,university.degree,no,no,no,cellular,nov,thu,133,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,45,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +51,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,no,yes,cellular,nov,thu,116,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,services,divorced,high.school,no,no,no,cellular,nov,thu,410,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,45,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,married,university.degree,no,no,no,telephone,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,services,married,basic.4y,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,basic.9y,unknown,unknown,unknown,cellular,nov,thu,93,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,blue-collar,single,basic.4y,no,yes,yes,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,86,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,technician,married,professional.course,no,yes,no,cellular,nov,thu,180,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,775,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,university.degree,no,yes,no,telephone,nov,thu,207,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,married,university.degree,no,no,no,cellular,nov,thu,89,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,management,married,university.degree,no,yes,yes,cellular,nov,thu,283,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,self-employed,unknown,university.degree,no,no,no,cellular,nov,thu,221,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,107,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,entrepreneur,single,university.degree,no,yes,no,cellular,nov,thu,531,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +36,admin.,married,high.school,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,85,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +52,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,200,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,543,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,admin.,single,university.degree,no,yes,yes,telephone,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,married,high.school,no,no,no,cellular,nov,thu,227,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,admin.,single,high.school,no,yes,no,telephone,nov,thu,119,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,services,divorced,high.school,no,no,no,cellular,nov,thu,71,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +46,management,single,university.degree,no,yes,yes,cellular,nov,thu,292,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,single,university.degree,no,no,no,cellular,nov,thu,69,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,120,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,university.degree,no,yes,no,cellular,nov,thu,857,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +50,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,160,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,352,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,322,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,153,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +55,retired,divorced,basic.9y,no,no,no,cellular,nov,thu,178,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,management,married,university.degree,no,no,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,blue-collar,married,basic.9y,no,no,no,telephone,nov,thu,281,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,basic.9y,no,no,no,telephone,nov,thu,96,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,62,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,admin.,married,university.degree,no,no,no,cellular,nov,thu,240,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,high.school,unknown,yes,yes,cellular,nov,thu,129,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,single,professional.course,no,yes,no,cellular,nov,thu,931,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +30,management,single,university.degree,no,no,no,cellular,nov,thu,197,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,entrepreneur,married,high.school,unknown,no,yes,cellular,nov,thu,274,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,high.school,no,no,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,married,unknown,no,yes,yes,cellular,nov,thu,597,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,married,basic.9y,no,no,yes,cellular,nov,thu,200,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,technician,married,university.degree,no,yes,yes,cellular,nov,thu,42,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,self-employed,single,university.degree,no,no,no,cellular,nov,thu,88,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,entrepreneur,married,high.school,no,yes,no,cellular,nov,thu,356,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,593,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +58,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,308,1,6,1,success,-0.1,93.2,-42,4.076,5195.8,no +41,services,married,university.degree,no,yes,no,cellular,nov,thu,283,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,unemployed,unknown,basic.9y,no,yes,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,unemployed,single,university.degree,no,yes,yes,cellular,nov,thu,69,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,thu,142,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,technician,divorced,university.degree,no,yes,no,telephone,nov,thu,30,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,thu,71,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,married,high.school,no,yes,no,cellular,nov,thu,59,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,management,divorced,university.degree,no,yes,no,cellular,nov,thu,487,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,divorced,high.school,no,no,no,cellular,nov,thu,418,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,yes,no,cellular,nov,thu,287,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,technician,married,professional.course,no,no,no,cellular,nov,thu,147,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,services,married,high.school,no,yes,no,cellular,nov,thu,282,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,thu,70,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,entrepreneur,divorced,basic.9y,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,services,married,high.school,unknown,yes,no,cellular,nov,thu,83,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +40,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,22,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,admin.,married,university.degree,no,yes,no,cellular,nov,thu,554,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,282,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,454,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,95,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,services,married,basic.6y,no,no,no,cellular,nov,thu,324,7,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,management,married,university.degree,no,yes,no,cellular,nov,thu,120,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,divorced,university.degree,no,yes,no,cellular,nov,thu,256,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,admin.,married,university.degree,no,yes,no,cellular,nov,thu,197,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,104,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +50,retired,divorced,high.school,no,yes,no,cellular,nov,thu,691,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +40,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,377,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,housemaid,single,basic.9y,no,no,no,cellular,nov,thu,128,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,124,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,blue-collar,single,basic.4y,unknown,yes,no,cellular,nov,thu,269,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,services,divorced,high.school,no,no,no,cellular,nov,thu,329,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,141,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,admin.,married,high.school,no,yes,no,cellular,nov,thu,50,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,technician,married,professional.course,no,yes,no,cellular,nov,thu,161,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,university.degree,no,yes,yes,cellular,nov,thu,224,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,retired,married,university.degree,no,yes,no,telephone,nov,thu,188,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,395,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,divorced,university.degree,no,yes,yes,cellular,nov,thu,1258,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +30,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,145,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,677,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +37,management,married,university.degree,no,yes,no,cellular,nov,thu,252,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,blue-collar,married,professional.course,no,yes,no,cellular,nov,thu,475,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,high.school,no,no,no,cellular,nov,thu,363,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,high.school,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,self-employed,married,university.degree,unknown,yes,yes,cellular,nov,thu,1490,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +41,services,single,high.school,unknown,yes,no,cellular,nov,thu,125,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,self-employed,married,high.school,no,yes,no,cellular,nov,thu,305,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,self-employed,divorced,university.degree,no,yes,no,cellular,nov,thu,743,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +44,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,62,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,81,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,89,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +52,self-employed,single,professional.course,no,no,yes,cellular,nov,thu,139,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,452,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,technician,married,high.school,no,yes,no,telephone,nov,thu,75,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,management,married,university.degree,no,yes,no,cellular,nov,thu,661,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,unemployed,married,high.school,no,yes,no,cellular,nov,thu,562,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +30,services,married,high.school,no,yes,no,cellular,nov,thu,174,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,high.school,no,yes,no,cellular,nov,thu,278,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,married,high.school,no,no,no,cellular,nov,thu,184,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +53,self-employed,divorced,professional.course,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,high.school,no,no,no,cellular,nov,thu,184,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,technician,married,professional.course,no,yes,no,cellular,nov,thu,123,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +57,admin.,divorced,university.degree,no,yes,yes,cellular,nov,thu,1154,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,359,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,60,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,249,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,admin.,married,basic.9y,no,no,no,cellular,nov,thu,164,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,admin.,divorced,high.school,no,no,yes,cellular,nov,thu,64,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,244,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,unemployed,single,professional.course,no,yes,no,cellular,nov,thu,70,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,technician,divorced,professional.course,no,yes,yes,cellular,nov,thu,705,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,96,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,unknown,no,yes,cellular,nov,thu,178,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,unemployed,single,professional.course,no,no,no,cellular,nov,thu,250,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,211,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,74,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,retired,married,basic.9y,no,yes,no,cellular,nov,thu,259,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,housemaid,married,basic.9y,no,yes,no,cellular,nov,thu,339,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,195,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +41,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,168,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,96,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,admin.,single,high.school,no,yes,no,cellular,nov,thu,1035,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,736,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +34,technician,married,professional.course,no,no,no,cellular,nov,thu,144,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,basic.6y,no,yes,no,telephone,nov,thu,51,8,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,111,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,308,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,services,married,unknown,no,yes,no,cellular,nov,thu,153,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,professional.course,no,no,no,cellular,nov,thu,214,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,188,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,unemployed,married,basic.9y,no,yes,no,cellular,nov,thu,352,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,married,high.school,unknown,yes,no,cellular,nov,thu,255,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,unemployed,single,basic.9y,no,yes,no,cellular,nov,thu,118,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,university.degree,no,yes,no,cellular,nov,thu,597,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,190,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +39,blue-collar,married,high.school,no,yes,no,cellular,nov,thu,193,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,professional.course,unknown,yes,yes,cellular,nov,thu,895,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,unemployed,married,university.degree,no,no,no,cellular,nov,thu,125,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,113,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,management,divorced,university.degree,no,yes,no,cellular,nov,thu,10,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,technician,divorced,high.school,no,yes,no,cellular,nov,thu,94,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,unemployed,single,university.degree,no,yes,no,cellular,nov,thu,176,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,277,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,thu,53,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,married,university.degree,no,yes,no,cellular,nov,thu,888,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +33,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,129,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,services,single,high.school,no,no,no,cellular,nov,thu,105,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,197,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,admin.,single,university.degree,no,yes,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,75,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,unemployed,married,high.school,no,unknown,unknown,cellular,nov,thu,72,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,technician,married,university.degree,no,no,yes,cellular,nov,thu,382,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,admin.,married,university.degree,no,unknown,unknown,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,management,divorced,high.school,no,no,no,cellular,nov,thu,486,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,student,single,university.degree,no,no,no,cellular,nov,thu,151,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,124,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,housemaid,divorced,basic.4y,no,no,no,cellular,nov,thu,80,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,professional.course,unknown,yes,no,cellular,nov,thu,239,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,223,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,management,divorced,university.degree,no,no,no,cellular,nov,thu,370,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +56,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,thu,212,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,no,no,cellular,nov,thu,151,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,management,single,university.degree,no,no,no,cellular,nov,thu,500,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,136,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,1166,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,retired,married,basic.4y,no,yes,yes,cellular,nov,thu,258,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,admin.,married,high.school,no,yes,no,cellular,nov,thu,790,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,75,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,72,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,604,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,no,no,cellular,nov,thu,154,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,131,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,733,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,488,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +34,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,266,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,married,basic.9y,no,yes,no,cellular,nov,thu,130,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,divorced,basic.9y,no,yes,no,telephone,nov,thu,1025,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +33,services,divorced,high.school,no,no,yes,cellular,nov,thu,98,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,technician,married,unknown,no,yes,no,cellular,nov,thu,68,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,married,basic.9y,no,no,no,cellular,nov,thu,143,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,high.school,no,yes,yes,cellular,nov,thu,559,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,management,divorced,university.degree,no,yes,no,cellular,nov,thu,350,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,293,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,138,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,105,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,thu,195,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,services,single,university.degree,unknown,yes,no,cellular,nov,thu,689,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,housemaid,married,unknown,no,yes,no,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,services,married,basic.6y,no,no,no,cellular,nov,thu,215,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,311,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,technician,single,unknown,unknown,no,no,cellular,nov,thu,63,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,633,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,unknown,no,yes,no,cellular,nov,thu,305,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,191,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,239,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,married,high.school,no,yes,no,cellular,nov,thu,125,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,technician,married,professional.course,no,yes,no,cellular,nov,thu,63,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,single,basic.6y,no,no,no,cellular,nov,thu,219,7,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,university.degree,no,no,no,telephone,nov,thu,65,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,single,university.degree,no,no,no,telephone,nov,thu,61,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,blue-collar,married,basic.6y,no,no,no,cellular,nov,thu,123,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,technician,single,university.degree,unknown,yes,yes,cellular,nov,thu,92,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,unemployed,divorced,basic.4y,unknown,no,no,cellular,nov,thu,462,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,high.school,no,yes,no,cellular,nov,thu,141,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,technician,married,professional.course,no,no,no,cellular,nov,thu,51,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.9y,unknown,no,no,cellular,nov,thu,425,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,management,married,university.degree,no,yes,no,cellular,nov,thu,149,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,blue-collar,married,professional.course,no,yes,no,telephone,nov,thu,547,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,self-employed,single,high.school,no,yes,yes,cellular,nov,thu,337,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,management,married,unknown,no,yes,no,cellular,nov,thu,165,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,technician,married,professional.course,no,yes,yes,cellular,nov,thu,47,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,services,married,high.school,no,no,no,telephone,nov,thu,35,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,student,divorced,university.degree,no,yes,no,cellular,nov,thu,48,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,management,married,university.degree,no,yes,yes,cellular,nov,thu,109,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,self-employed,single,professional.course,no,yes,no,cellular,nov,thu,361,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,67,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,107,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,high.school,no,yes,yes,cellular,nov,thu,435,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,no,no,cellular,nov,thu,140,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,single,high.school,no,yes,no,cellular,nov,thu,294,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,management,married,university.degree,no,yes,no,cellular,nov,thu,205,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,high.school,no,no,no,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,no,no,cellular,nov,thu,427,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,175,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,self-employed,divorced,university.degree,no,no,no,cellular,nov,thu,380,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,divorced,basic.9y,no,yes,yes,cellular,nov,thu,215,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,blue-collar,married,basic.9y,no,yes,yes,telephone,nov,thu,98,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,entrepreneur,married,professional.course,no,yes,yes,cellular,nov,thu,267,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,university.degree,no,yes,yes,cellular,nov,thu,51,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,single,professional.course,no,yes,no,cellular,nov,thu,207,5,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +49,unemployed,unknown,high.school,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,20,8,6,1,success,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,no,no,no,cellular,nov,thu,186,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,blue-collar,divorced,basic.4y,unknown,no,no,cellular,nov,thu,14,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,unemployed,married,high.school,no,yes,no,cellular,nov,thu,120,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,319,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,high.school,no,no,no,cellular,nov,thu,52,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,technician,divorced,university.degree,no,yes,no,cellular,nov,thu,154,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,267,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,self-employed,married,illiterate,no,yes,no,cellular,nov,thu,113,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +55,management,divorced,university.degree,no,yes,no,cellular,nov,thu,159,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,professional.course,unknown,no,no,cellular,nov,thu,128,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +51,admin.,divorced,university.degree,no,yes,yes,cellular,nov,thu,249,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,professional.course,no,yes,no,cellular,nov,thu,195,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,technician,single,professional.course,no,yes,no,cellular,nov,thu,16,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,admin.,divorced,high.school,no,no,no,cellular,nov,thu,330,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,nov,thu,25,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,340,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,158,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +35,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,192,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,768,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +40,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,thu,426,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,260,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,management,married,unknown,no,no,no,cellular,nov,thu,352,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +57,management,divorced,university.degree,unknown,yes,yes,cellular,nov,thu,114,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,539,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,management,married,unknown,no,yes,yes,cellular,nov,thu,758,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +54,housemaid,divorced,university.degree,no,yes,yes,cellular,nov,thu,653,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,technician,single,unknown,unknown,yes,no,cellular,nov,thu,276,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,230,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,340,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,thu,9,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,admin.,single,high.school,no,yes,yes,cellular,nov,thu,44,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,basic.9y,no,yes,yes,cellular,nov,thu,142,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,55,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,admin.,married,basic.9y,no,no,no,cellular,nov,thu,315,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,basic.9y,no,yes,no,cellular,nov,thu,326,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,thu,240,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,basic.9y,no,no,no,cellular,nov,thu,517,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,unknown,no,yes,no,cellular,nov,thu,150,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,single,basic.9y,unknown,yes,no,cellular,nov,thu,972,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,73,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,77,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,university.degree,no,no,no,cellular,nov,thu,279,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,unemployed,married,basic.4y,unknown,yes,no,cellular,nov,thu,166,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,self-employed,married,university.degree,no,no,no,cellular,nov,thu,40,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,entrepreneur,single,basic.4y,no,yes,no,cellular,nov,thu,93,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,technician,single,professional.course,no,yes,no,cellular,nov,thu,102,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,professional.course,no,yes,no,cellular,nov,thu,144,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,thu,265,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +53,admin.,divorced,high.school,no,yes,no,cellular,nov,thu,115,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +53,self-employed,single,university.degree,no,no,yes,cellular,nov,thu,61,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +46,entrepreneur,divorced,basic.9y,no,yes,no,cellular,nov,thu,201,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,services,married,basic.4y,no,no,no,cellular,nov,thu,106,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,technician,married,high.school,no,yes,no,telephone,nov,thu,37,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,technician,married,university.degree,no,no,yes,cellular,nov,thu,418,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,106,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +33,unemployed,single,university.degree,no,no,no,cellular,nov,thu,187,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,self-employed,married,university.degree,no,yes,no,cellular,nov,thu,101,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,management,married,professional.course,no,yes,no,cellular,nov,thu,619,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,self-employed,single,university.degree,no,yes,no,telephone,nov,thu,93,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,professional.course,no,yes,no,cellular,nov,thu,127,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +38,services,married,basic.6y,no,yes,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +44,self-employed,married,basic.9y,no,yes,no,cellular,nov,thu,104,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +39,services,single,university.degree,unknown,yes,no,cellular,nov,thu,43,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,services,married,basic.4y,unknown,no,no,cellular,nov,thu,813,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,unemployed,married,high.school,no,no,no,cellular,nov,thu,808,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,blue-collar,married,professional.course,no,no,no,cellular,nov,thu,600,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,professional.course,no,no,no,cellular,nov,thu,627,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,management,married,basic.9y,no,no,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,university.degree,no,no,yes,cellular,nov,thu,399,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,high.school,no,yes,no,cellular,nov,thu,87,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,911,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,352,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,20,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,technician,married,professional.course,no,no,no,cellular,nov,thu,108,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,single,university.degree,no,yes,no,cellular,nov,thu,262,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,university.degree,no,no,no,cellular,nov,thu,196,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,43,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,128,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,blue-collar,single,basic.4y,no,yes,yes,cellular,nov,thu,104,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,services,married,high.school,no,yes,no,cellular,nov,thu,111,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,technician,single,professional.course,no,yes,no,cellular,nov,thu,61,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,services,married,high.school,unknown,no,no,cellular,nov,thu,130,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,divorced,university.degree,no,yes,no,telephone,nov,thu,119,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,entrepreneur,married,professional.course,no,unknown,unknown,cellular,nov,thu,165,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,telephone,nov,thu,105,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,high.school,no,no,no,cellular,nov,thu,133,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,management,married,university.degree,no,yes,no,cellular,nov,thu,179,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,206,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +46,technician,divorced,professional.course,no,yes,no,cellular,nov,thu,240,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,198,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,129,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +57,management,married,professional.course,unknown,yes,no,cellular,nov,thu,224,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +43,technician,single,professional.course,unknown,unknown,unknown,cellular,nov,thu,157,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,married,university.degree,no,yes,no,cellular,nov,thu,182,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,unknown,yes,no,cellular,nov,thu,386,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,single,university.degree,no,no,no,cellular,nov,thu,642,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,thu,434,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,single,basic.9y,no,yes,no,cellular,nov,thu,163,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,214,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +35,technician,married,university.degree,no,no,no,cellular,nov,thu,1145,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,services,single,high.school,no,no,no,cellular,nov,thu,148,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,self-employed,married,professional.course,no,yes,no,cellular,nov,thu,329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,221,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,management,married,university.degree,no,yes,yes,cellular,nov,thu,339,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,135,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,divorced,high.school,no,yes,no,cellular,nov,thu,41,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,married,professional.course,no,no,no,telephone,nov,thu,159,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,nov,thu,470,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,no,yes,no,cellular,nov,thu,75,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,thu,155,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,147,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,management,divorced,basic.6y,no,yes,no,cellular,nov,thu,167,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,management,divorced,basic.6y,no,no,no,cellular,nov,thu,268,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +22,blue-collar,single,basic.4y,no,yes,no,telephone,nov,thu,16,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,married,university.degree,no,no,no,cellular,nov,thu,533,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,single,university.degree,no,no,yes,cellular,nov,thu,264,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,university.degree,no,no,yes,cellular,nov,thu,303,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,thu,91,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,225,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +39,management,married,university.degree,no,yes,yes,cellular,nov,thu,90,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +52,services,married,basic.6y,no,yes,no,cellular,nov,thu,283,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,208,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,management,single,unknown,no,yes,yes,cellular,nov,thu,207,1,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,high.school,no,no,no,cellular,nov,thu,56,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,university.degree,no,no,no,cellular,nov,thu,319,1,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +50,entrepreneur,married,university.degree,no,yes,no,cellular,nov,thu,57,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,thu,150,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +56,services,married,high.school,no,no,no,telephone,nov,thu,871,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +34,technician,single,university.degree,no,yes,no,cellular,nov,thu,354,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,management,single,basic.9y,no,yes,no,cellular,nov,thu,165,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,thu,88,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,retired,married,university.degree,no,unknown,unknown,cellular,nov,thu,279,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,single,high.school,no,no,no,cellular,nov,thu,180,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,thu,156,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,1532,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +36,admin.,married,unknown,unknown,yes,no,cellular,nov,thu,235,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,management,married,unknown,no,yes,no,cellular,nov,thu,884,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,thu,218,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +49,entrepreneur,married,high.school,unknown,yes,no,cellular,nov,thu,611,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,university.degree,no,no,no,cellular,nov,thu,248,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,technician,married,professional.course,no,no,no,cellular,nov,thu,75,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,986,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +57,admin.,divorced,university.degree,no,yes,no,cellular,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,315,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,thu,399,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,no,no,cellular,nov,thu,117,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,self-employed,married,basic.9y,no,yes,yes,cellular,nov,thu,151,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,513,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,technician,single,university.degree,no,yes,yes,cellular,nov,thu,281,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,self-employed,married,basic.9y,no,yes,no,cellular,nov,thu,317,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,services,married,high.school,no,yes,no,cellular,nov,thu,116,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +47,admin.,married,high.school,no,no,no,cellular,nov,thu,115,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,303,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,thu,97,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,blue-collar,divorced,basic.6y,no,yes,no,cellular,nov,thu,104,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +54,management,married,university.degree,no,yes,no,cellular,nov,thu,68,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,admin.,married,unknown,no,yes,yes,cellular,nov,thu,591,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,blue-collar,married,professional.course,no,yes,yes,cellular,nov,thu,136,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,divorced,high.school,no,yes,no,cellular,nov,thu,251,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,blue-collar,married,unknown,unknown,yes,no,cellular,nov,thu,355,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,231,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,251,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,thu,341,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,no,yes,cellular,nov,thu,106,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,married,high.school,no,no,no,cellular,nov,thu,361,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +37,unemployed,single,university.degree,no,no,no,cellular,nov,thu,212,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,management,divorced,university.degree,no,no,no,cellular,nov,thu,131,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,60,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,management,single,university.degree,no,no,yes,cellular,nov,thu,378,8,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,married,high.school,unknown,yes,no,cellular,nov,thu,441,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,no,yes,yes,cellular,nov,thu,282,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,technician,single,university.degree,no,no,yes,telephone,nov,thu,197,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,married,professional.course,no,no,yes,cellular,nov,thu,217,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,single,university.degree,no,no,yes,cellular,nov,thu,250,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +42,technician,married,university.degree,no,no,no,telephone,nov,thu,172,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,thu,210,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,management,single,high.school,no,no,no,cellular,nov,thu,952,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +39,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,332,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,services,married,high.school,unknown,no,no,cellular,nov,thu,117,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,technician,married,basic.6y,no,yes,yes,cellular,nov,thu,194,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,married,basic.4y,no,yes,no,cellular,nov,thu,233,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +35,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,197,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,493,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,yes +30,technician,single,university.degree,no,no,no,cellular,nov,thu,168,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,technician,married,high.school,no,yes,no,cellular,nov,thu,688,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,admin.,single,high.school,no,yes,no,cellular,nov,thu,205,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,blue-collar,married,basic.6y,no,yes,no,telephone,nov,thu,713,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,management,single,university.degree,no,no,no,cellular,nov,thu,2420,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +52,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,176,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,management,divorced,high.school,no,yes,no,telephone,nov,thu,215,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,yes,yes,cellular,nov,thu,90,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,nov,thu,292,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,single,high.school,no,no,no,cellular,nov,thu,232,2,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +49,management,divorced,basic.6y,no,no,no,telephone,nov,thu,88,6,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,admin.,divorced,university.degree,no,unknown,unknown,cellular,nov,thu,257,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,admin.,married,high.school,no,no,no,cellular,nov,thu,1598,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +35,admin.,single,university.degree,no,no,no,cellular,nov,thu,295,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +31,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,693,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +55,admin.,married,basic.9y,no,yes,yes,cellular,nov,thu,430,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,unemployed,married,basic.9y,no,no,no,telephone,nov,thu,134,9,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +54,entrepreneur,divorced,university.degree,no,yes,yes,telephone,nov,thu,761,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,admin.,divorced,university.degree,no,no,no,telephone,nov,thu,233,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +52,admin.,married,university.degree,no,yes,no,cellular,nov,thu,134,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,services,married,basic.6y,no,no,no,cellular,nov,thu,290,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +59,blue-collar,married,basic.9y,no,yes,no,cellular,nov,thu,370,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,services,single,professional.course,no,yes,no,cellular,nov,thu,766,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,279,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,thu,298,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +29,self-employed,married,university.degree,no,no,no,cellular,nov,thu,157,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,324,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +48,entrepreneur,divorced,university.degree,no,yes,no,cellular,nov,thu,537,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,single,university.degree,no,yes,no,cellular,nov,thu,182,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,management,single,university.degree,no,no,no,telephone,nov,thu,96,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,services,married,basic.9y,unknown,yes,no,cellular,nov,thu,90,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,technician,single,university.degree,no,no,no,cellular,nov,thu,59,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,blue-collar,single,basic.4y,no,yes,no,cellular,nov,thu,222,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +58,admin.,divorced,university.degree,no,no,no,cellular,nov,thu,178,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +41,services,single,basic.9y,no,no,no,cellular,nov,thu,146,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,thu,769,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,unemployed,married,unknown,no,yes,no,cellular,nov,thu,216,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +43,unemployed,single,unknown,no,yes,no,cellular,nov,thu,87,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,management,married,university.degree,no,no,no,cellular,nov,thu,192,2,6,1,success,-0.1,93.2,-42,4.076,5195.8,no +40,entrepreneur,unknown,high.school,no,yes,yes,cellular,nov,thu,825,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +30,services,married,high.school,no,yes,no,telephone,nov,thu,156,7,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +50,unemployed,unknown,basic.9y,no,no,no,telephone,nov,thu,278,6,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +34,technician,married,high.school,no,yes,yes,cellular,nov,thu,1329,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +37,unemployed,single,university.degree,no,yes,no,telephone,nov,thu,76,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +51,self-employed,married,university.degree,no,yes,yes,cellular,nov,thu,310,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +36,admin.,divorced,university.degree,no,no,yes,cellular,nov,thu,56,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,single,high.school,no,yes,no,cellular,nov,thu,1059,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +36,admin.,single,high.school,no,no,no,cellular,nov,thu,40,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,technician,divorced,university.degree,no,yes,no,cellular,nov,thu,104,4,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,basic.6y,no,no,no,cellular,nov,thu,843,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +46,blue-collar,single,basic.4y,no,no,no,cellular,nov,thu,185,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,admin.,single,high.school,no,yes,yes,cellular,nov,thu,1476,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,services,married,basic.9y,no,no,no,cellular,nov,thu,476,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,no,no,cellular,nov,thu,139,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,services,married,high.school,no,no,no,cellular,nov,thu,283,5,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +32,admin.,married,university.degree,no,no,no,cellular,nov,thu,165,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +38,blue-collar,married,basic.9y,no,no,no,cellular,nov,thu,738,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +45,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,265,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,admin.,married,university.degree,no,yes,no,telephone,nov,thu,442,4,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +42,management,married,high.school,no,yes,yes,cellular,nov,thu,164,3,999,1,failure,-0.1,93.2,-42,4.076,5195.8,no +36,services,single,high.school,no,yes,no,cellular,nov,thu,422,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +34,self-employed,single,basic.9y,no,no,no,cellular,nov,thu,91,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +33,admin.,married,university.degree,no,no,no,cellular,nov,thu,489,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +39,blue-collar,married,basic.6y,no,yes,no,cellular,nov,thu,391,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +31,entrepreneur,single,university.degree,no,no,no,cellular,nov,thu,1855,3,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,no +30,blue-collar,married,high.school,no,yes,yes,cellular,nov,thu,2453,2,999,0,nonexistent,-0.1,93.2,-42,4.076,5195.8,yes +42,technician,married,professional.course,no,no,no,cellular,nov,fri,21,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,management,married,university.degree,no,no,no,cellular,nov,fri,83,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,single,high.school,no,yes,no,cellular,nov,fri,86,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +42,technician,single,professional.course,no,yes,no,cellular,nov,fri,91,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,services,married,high.school,unknown,yes,no,cellular,nov,fri,254,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,149,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,blue-collar,single,professional.course,no,no,no,cellular,nov,fri,249,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,technician,married,university.degree,no,no,no,cellular,nov,fri,10,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,university.degree,no,yes,no,cellular,nov,fri,358,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,management,married,basic.6y,no,yes,yes,cellular,nov,fri,81,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,yes,no,cellular,nov,fri,6,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,retired,divorced,university.degree,no,no,yes,cellular,nov,fri,138,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,275,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,312,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,university.degree,no,yes,yes,cellular,nov,fri,69,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,37,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,technician,married,professional.course,unknown,yes,no,cellular,nov,fri,266,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,divorced,professional.course,no,no,no,cellular,nov,fri,159,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,admin.,single,high.school,no,yes,yes,cellular,nov,fri,116,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,management,divorced,university.degree,no,yes,no,cellular,nov,fri,21,11,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,no,yes,no,cellular,nov,fri,358,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,basic.4y,no,yes,no,telephone,nov,fri,144,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,married,university.degree,no,yes,no,telephone,nov,fri,41,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,technician,single,university.degree,no,no,no,cellular,nov,fri,124,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +43,services,single,high.school,unknown,no,no,cellular,nov,fri,298,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,technician,single,unknown,no,no,no,cellular,nov,fri,86,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,admin.,divorced,basic.9y,no,no,no,cellular,nov,fri,271,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,blue-collar,single,basic.9y,unknown,yes,no,cellular,nov,fri,299,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,single,university.degree,no,yes,no,cellular,nov,fri,152,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,university.degree,no,yes,no,cellular,nov,fri,322,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,technician,single,university.degree,no,no,no,telephone,nov,fri,336,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,high.school,no,yes,no,cellular,nov,fri,441,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,married,university.degree,no,yes,no,cellular,nov,fri,149,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,unknown,unknown,cellular,nov,fri,675,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,management,married,university.degree,no,yes,no,cellular,nov,fri,118,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,single,university.degree,no,no,no,cellular,nov,fri,85,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +49,management,married,university.degree,no,no,no,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,professional.course,no,yes,no,cellular,nov,fri,239,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,married,high.school,no,yes,no,cellular,nov,fri,267,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,225,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,54,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,blue-collar,married,university.degree,unknown,no,no,cellular,nov,fri,108,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,services,married,high.school,unknown,no,no,cellular,nov,fri,66,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,married,university.degree,no,yes,no,cellular,nov,fri,108,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,blue-collar,divorced,professional.course,no,yes,yes,cellular,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,1221,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,admin.,divorced,basic.9y,no,no,no,cellular,nov,fri,71,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,self-employed,married,university.degree,no,yes,yes,cellular,nov,fri,729,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +57,management,married,university.degree,no,no,no,cellular,nov,fri,289,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,married,professional.course,no,no,no,cellular,nov,fri,127,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +49,management,married,university.degree,no,yes,no,cellular,nov,fri,846,1,3,1,success,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,215,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,housemaid,married,basic.4y,no,yes,yes,cellular,nov,fri,75,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,248,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,management,married,university.degree,no,no,yes,cellular,nov,fri,591,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +43,admin.,single,university.degree,no,yes,no,cellular,nov,fri,163,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,high.school,no,yes,no,cellular,nov,fri,337,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,technician,divorced,basic.9y,no,no,no,cellular,nov,fri,179,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,yes,cellular,nov,fri,111,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,fri,63,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,558,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +36,admin.,married,university.degree,no,no,no,cellular,nov,fri,569,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,university.degree,no,yes,no,cellular,nov,fri,153,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,self-employed,married,university.degree,unknown,no,no,cellular,nov,fri,46,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,divorced,high.school,no,no,no,cellular,nov,fri,208,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,22,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,student,single,professional.course,no,yes,yes,cellular,nov,fri,261,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,married,professional.course,unknown,no,no,cellular,nov,fri,120,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,unknown,unknown,cellular,nov,fri,253,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,services,single,high.school,no,yes,no,cellular,nov,fri,43,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,321,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,management,single,university.degree,unknown,yes,yes,cellular,nov,fri,46,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,services,single,high.school,no,yes,no,cellular,nov,fri,104,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +37,services,married,high.school,no,yes,no,cellular,nov,fri,63,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,technician,married,university.degree,no,yes,no,telephone,nov,fri,81,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,423,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +55,technician,married,professional.course,no,no,no,cellular,nov,fri,113,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,technician,married,professional.course,no,yes,no,cellular,nov,fri,71,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,married,professional.course,no,no,no,cellular,nov,fri,348,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,services,single,high.school,unknown,no,no,cellular,nov,fri,62,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,blue-collar,married,basic.6y,no,no,no,cellular,nov,fri,588,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,528,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +34,admin.,married,university.degree,no,no,no,cellular,nov,fri,467,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +29,technician,single,professional.course,no,no,no,cellular,nov,fri,530,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +45,technician,married,professional.course,no,yes,no,cellular,nov,fri,76,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,services,single,high.school,no,no,no,cellular,nov,fri,648,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +36,technician,single,unknown,no,no,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,fri,258,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,professional.course,no,no,no,cellular,nov,fri,73,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,567,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,services,single,university.degree,no,yes,no,cellular,nov,fri,13,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,management,married,university.degree,no,yes,no,cellular,nov,fri,470,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,entrepreneur,married,basic.6y,no,yes,no,telephone,nov,fri,228,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,management,married,university.degree,no,yes,yes,cellular,nov,fri,22,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,professional.course,no,yes,yes,cellular,nov,fri,91,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,technician,married,basic.4y,no,yes,no,cellular,nov,fri,345,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,single,professional.course,no,no,no,telephone,nov,fri,346,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +47,management,married,university.degree,no,no,no,cellular,nov,fri,107,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,technician,single,professional.course,no,yes,no,cellular,nov,fri,86,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,technician,single,university.degree,no,yes,yes,cellular,nov,fri,710,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +58,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,110,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,single,university.degree,no,yes,no,cellular,nov,fri,530,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +39,admin.,single,unknown,no,no,no,cellular,nov,fri,73,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,529,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +37,technician,divorced,high.school,no,no,no,cellular,nov,fri,635,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +36,technician,single,unknown,no,yes,no,cellular,nov,fri,254,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,self-employed,married,basic.9y,unknown,yes,no,cellular,nov,fri,106,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,management,single,high.school,no,no,no,cellular,nov,fri,40,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,195,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,management,divorced,university.degree,no,yes,no,cellular,nov,fri,183,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +39,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,195,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,admin.,married,high.school,no,yes,no,cellular,nov,fri,585,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,university.degree,no,no,no,cellular,nov,fri,501,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,fri,222,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,university.degree,unknown,yes,no,cellular,nov,fri,131,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,services,married,basic.6y,no,yes,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,yes,yes,cellular,nov,fri,215,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,university.degree,no,yes,no,cellular,nov,fri,30,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,fri,53,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,263,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,professional.course,no,no,yes,cellular,nov,fri,344,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,technician,married,basic.9y,unknown,no,no,cellular,nov,fri,174,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,fri,103,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +44,services,married,high.school,unknown,yes,no,cellular,nov,fri,46,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,blue-collar,married,basic.4y,unknown,no,yes,cellular,nov,fri,105,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,high.school,no,yes,yes,cellular,nov,fri,206,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,fri,132,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,no,cellular,nov,fri,175,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,married,high.school,no,yes,no,cellular,nov,fri,140,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,admin.,married,high.school,no,no,no,cellular,nov,fri,148,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,66,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,university.degree,unknown,yes,no,cellular,nov,fri,32,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,management,single,high.school,no,yes,no,cellular,nov,fri,149,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,entrepreneur,married,high.school,no,yes,no,cellular,nov,fri,1166,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,no,cellular,nov,fri,161,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,fri,262,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,blue-collar,single,basic.4y,no,no,no,cellular,nov,fri,60,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,fri,106,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,unemployed,married,university.degree,no,yes,yes,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,nov,fri,1055,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,married,university.degree,no,yes,no,cellular,nov,fri,181,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,fri,218,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,entrepreneur,married,high.school,no,no,yes,cellular,nov,fri,429,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,technician,single,university.degree,no,yes,no,cellular,nov,fri,327,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,216,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,technician,single,university.degree,no,yes,no,cellular,nov,fri,201,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,married,university.degree,no,no,no,cellular,nov,fri,221,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,yes,cellular,nov,fri,957,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +38,blue-collar,single,basic.6y,no,yes,yes,cellular,nov,fri,202,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,161,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,basic.9y,no,no,no,cellular,nov,fri,705,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +51,technician,married,high.school,no,yes,no,cellular,nov,fri,167,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,admin.,married,unknown,no,yes,no,telephone,nov,fri,29,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,self-employed,married,university.degree,no,no,no,cellular,nov,fri,89,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,services,married,high.school,no,yes,no,cellular,nov,fri,306,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,management,divorced,professional.course,no,yes,no,cellular,nov,fri,56,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,796,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +36,services,married,basic.6y,unknown,no,no,cellular,nov,fri,1022,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,189,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,154,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,no,no,cellular,nov,fri,89,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,management,single,university.degree,no,yes,no,cellular,nov,fri,79,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,admin.,single,university.degree,unknown,no,yes,cellular,nov,fri,143,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,fri,169,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,unemployed,married,basic.4y,no,yes,no,cellular,nov,fri,80,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,technician,married,basic.9y,no,yes,no,cellular,nov,fri,44,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,management,married,basic.6y,no,no,no,cellular,nov,fri,133,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,divorced,university.degree,no,yes,no,telephone,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,nov,fri,586,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,189,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,technician,single,basic.9y,no,yes,no,telephone,nov,fri,218,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,no,yes,no,cellular,nov,fri,235,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,housemaid,married,basic.4y,no,yes,no,cellular,nov,fri,105,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,divorced,professional.course,no,yes,no,cellular,nov,fri,849,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +50,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,5,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,271,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,fri,893,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +36,entrepreneur,divorced,high.school,no,yes,no,cellular,nov,fri,230,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,blue-collar,married,basic.6y,no,no,no,cellular,nov,fri,68,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,74,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,basic.4y,no,yes,yes,cellular,nov,fri,115,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,entrepreneur,single,basic.4y,no,no,no,cellular,nov,fri,100,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,technician,married,high.school,unknown,yes,no,cellular,nov,fri,326,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.9y,no,yes,no,cellular,nov,fri,1182,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,housemaid,married,high.school,no,no,no,cellular,nov,fri,144,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,189,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +39,self-employed,single,high.school,no,yes,no,cellular,nov,fri,169,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,services,single,high.school,unknown,yes,no,cellular,nov,fri,670,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,57,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +44,services,married,high.school,unknown,yes,no,telephone,nov,fri,76,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,technician,married,professional.course,no,yes,no,cellular,nov,fri,42,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,admin.,married,university.degree,no,yes,no,cellular,nov,fri,81,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,199,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,basic.4y,no,no,no,cellular,nov,fri,184,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,retired,married,basic.4y,no,no,no,cellular,nov,fri,18,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,nov,fri,451,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,retired,married,university.degree,no,no,no,cellular,nov,fri,51,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,university.degree,unknown,yes,yes,cellular,nov,fri,63,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,admin.,married,university.degree,no,yes,no,cellular,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,44,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,single,professional.course,no,yes,yes,telephone,nov,fri,54,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,management,married,university.degree,no,yes,no,cellular,nov,fri,13,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,no,cellular,nov,fri,401,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,high.school,no,yes,yes,cellular,nov,fri,484,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,technician,single,university.degree,no,no,no,cellular,nov,fri,64,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,526,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,high.school,no,no,yes,cellular,nov,fri,105,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,no,no,cellular,nov,fri,128,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,unemployed,married,university.degree,no,no,no,cellular,nov,fri,115,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,basic.4y,no,no,yes,cellular,nov,fri,573,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,management,married,basic.9y,no,yes,no,cellular,nov,fri,996,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,married,university.degree,no,no,no,cellular,nov,fri,206,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,married,university.degree,no,yes,yes,cellular,nov,fri,135,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,yes,no,telephone,nov,fri,36,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,no,no,cellular,nov,fri,1480,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +52,services,married,basic.9y,unknown,yes,no,cellular,nov,fri,160,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,services,single,university.degree,unknown,unknown,unknown,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,divorced,university.degree,no,no,no,telephone,nov,fri,425,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,management,married,university.degree,no,yes,no,telephone,nov,fri,288,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,technician,single,university.degree,no,yes,yes,cellular,nov,fri,244,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,technician,married,basic.4y,no,no,no,cellular,nov,fri,378,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +55,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,252,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,married,university.degree,no,yes,yes,cellular,nov,fri,283,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +49,self-employed,married,university.degree,unknown,yes,no,cellular,nov,fri,110,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,management,married,university.degree,no,yes,no,telephone,nov,fri,109,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,high.school,no,yes,no,cellular,nov,fri,162,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,married,high.school,no,yes,no,cellular,nov,fri,144,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,single,university.degree,no,no,no,telephone,nov,fri,49,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,university.degree,no,no,no,cellular,nov,fri,70,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +40,admin.,married,university.degree,no,no,no,cellular,nov,fri,71,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,technician,divorced,university.degree,no,no,no,cellular,nov,fri,316,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +31,admin.,single,high.school,no,yes,no,cellular,nov,fri,306,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,blue-collar,single,basic.9y,no,yes,yes,cellular,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,entrepreneur,married,university.degree,no,yes,yes,cellular,nov,fri,221,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,technician,single,university.degree,no,yes,yes,cellular,nov,fri,44,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,management,divorced,university.degree,no,no,no,cellular,nov,fri,202,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,blue-collar,married,basic.4y,unknown,yes,yes,cellular,nov,fri,98,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,services,married,high.school,no,yes,no,cellular,nov,fri,552,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +37,management,married,university.degree,no,yes,no,telephone,nov,fri,97,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,unemployed,married,university.degree,no,yes,no,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,89,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +29,services,single,high.school,no,yes,no,cellular,nov,fri,171,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,university.degree,no,no,no,cellular,nov,fri,744,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,unemployed,married,university.degree,no,yes,yes,cellular,nov,fri,79,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,university.degree,no,no,no,cellular,nov,fri,850,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +48,admin.,married,university.degree,no,no,no,cellular,nov,fri,233,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,divorced,university.degree,no,yes,no,telephone,nov,fri,70,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,divorced,university.degree,no,unknown,unknown,telephone,nov,fri,162,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,yes,no,cellular,nov,fri,38,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,management,married,university.degree,no,no,no,cellular,nov,fri,8,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,entrepreneur,married,professional.course,no,no,no,cellular,nov,fri,18,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,services,married,high.school,unknown,yes,no,cellular,nov,fri,72,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,164,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,technician,divorced,university.degree,unknown,no,no,cellular,nov,fri,123,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,university.degree,no,yes,no,cellular,nov,fri,100,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,self-employed,married,university.degree,no,no,no,cellular,nov,fri,18,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,high.school,no,no,no,cellular,nov,fri,165,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +54,retired,divorced,university.degree,no,no,no,cellular,nov,fri,296,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,unknown,no,yes,yes,cellular,nov,fri,196,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,self-employed,single,university.degree,no,yes,yes,cellular,nov,fri,203,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,yes,no,telephone,nov,fri,55,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,fri,186,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,single,university.degree,no,unknown,unknown,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,retired,married,high.school,no,no,no,cellular,nov,fri,532,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,management,married,university.degree,no,no,yes,cellular,nov,fri,79,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,technician,married,basic.9y,no,yes,yes,cellular,nov,fri,197,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,entrepreneur,single,basic.9y,no,no,no,cellular,nov,fri,84,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,35,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,26,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,technician,married,basic.9y,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,no,no,cellular,nov,fri,100,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,admin.,married,high.school,no,yes,no,cellular,nov,fri,164,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,high.school,unknown,yes,no,cellular,nov,fri,183,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,technician,single,professional.course,no,yes,no,cellular,nov,fri,67,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,180,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,married,high.school,no,yes,no,telephone,nov,fri,182,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,technician,married,high.school,no,no,no,cellular,nov,fri,749,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,450,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,married,professional.course,unknown,no,no,telephone,nov,fri,28,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,housemaid,married,basic.4y,no,yes,no,cellular,nov,fri,66,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,fri,119,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,no,no,no,cellular,nov,fri,135,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,university.degree,no,no,yes,cellular,nov,fri,902,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +41,housemaid,married,high.school,no,yes,no,telephone,nov,fri,1074,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +37,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,661,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,self-employed,divorced,professional.course,no,yes,no,cellular,nov,fri,492,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,admin.,married,unknown,unknown,no,no,cellular,nov,fri,142,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,admin.,single,university.degree,no,yes,no,telephone,nov,fri,43,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,housemaid,married,high.school,no,no,no,cellular,nov,fri,28,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,82,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,63,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,fri,264,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +49,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,118,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,no,no,cellular,nov,fri,124,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,high.school,no,no,no,cellular,nov,fri,218,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,student,single,professional.course,no,no,no,telephone,nov,fri,232,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,190,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,technician,married,basic.9y,no,no,no,cellular,nov,fri,10,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,fri,456,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,176,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,312,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,45,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,124,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,single,professional.course,no,yes,no,cellular,nov,fri,42,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,189,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,self-employed,married,university.degree,unknown,unknown,unknown,cellular,nov,fri,31,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,126,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,services,single,basic.9y,unknown,yes,no,cellular,nov,fri,232,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,11,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,unemployed,divorced,high.school,unknown,yes,no,cellular,nov,fri,109,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,64,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,28,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,technician,married,professional.course,no,yes,yes,cellular,nov,fri,148,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,management,married,university.degree,no,yes,no,cellular,nov,fri,104,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,yes,yes,cellular,nov,fri,65,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,980,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +39,admin.,single,high.school,no,unknown,unknown,cellular,nov,fri,206,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,technician,married,high.school,unknown,yes,no,cellular,nov,fri,82,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,45,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,services,married,high.school,no,yes,no,telephone,nov,fri,62,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,services,married,professional.course,no,no,no,cellular,nov,fri,10,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,admin.,single,university.degree,unknown,yes,no,cellular,nov,fri,16,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,102,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,298,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,technician,married,university.degree,no,no,no,cellular,nov,fri,52,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +38,blue-collar,married,basic.6y,unknown,yes,yes,cellular,nov,fri,213,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,226,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,blue-collar,divorced,basic.4y,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,224,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,management,married,university.degree,no,no,no,cellular,nov,fri,207,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,services,divorced,unknown,no,yes,no,cellular,nov,fri,163,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,24,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,university.degree,no,no,no,cellular,nov,fri,103,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,services,single,high.school,no,yes,no,cellular,nov,fri,219,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,fri,152,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,fri,171,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,married,high.school,no,no,yes,cellular,nov,fri,94,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,services,married,high.school,no,no,yes,cellular,nov,fri,104,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,management,married,basic.9y,no,yes,yes,cellular,nov,fri,62,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,university.degree,no,no,yes,cellular,nov,fri,220,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,yes,cellular,nov,fri,50,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,yes,cellular,nov,fri,112,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,services,single,high.school,unknown,no,yes,cellular,nov,fri,53,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,services,married,basic.4y,unknown,yes,yes,cellular,nov,fri,119,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,management,married,professional.course,no,yes,no,cellular,nov,fri,381,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,technician,single,professional.course,no,yes,no,cellular,nov,fri,226,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,management,divorced,university.degree,no,no,no,cellular,nov,fri,157,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,university.degree,no,yes,no,cellular,nov,fri,673,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,technician,single,professional.course,no,yes,no,cellular,nov,fri,347,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,unemployed,married,professional.course,no,yes,no,cellular,nov,fri,58,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,85,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,224,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,127,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,unemployed,divorced,university.degree,no,no,no,cellular,nov,fri,366,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,no,no,cellular,nov,fri,162,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,services,married,high.school,no,yes,no,cellular,nov,fri,197,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,technician,divorced,high.school,no,yes,no,cellular,nov,fri,47,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,311,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,married,professional.course,no,yes,no,cellular,nov,fri,98,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,549,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +36,admin.,married,basic.6y,no,yes,no,cellular,nov,fri,72,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,married,professional.course,no,no,no,cellular,nov,fri,182,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +36,admin.,married,basic.6y,no,yes,yes,cellular,nov,fri,183,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,management,married,university.degree,no,no,no,cellular,nov,fri,158,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,no,yes,cellular,nov,fri,48,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,housemaid,married,basic.4y,unknown,no,no,telephone,nov,fri,270,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,high.school,no,yes,yes,cellular,nov,fri,57,5,6,1,success,-0.1,93.2,-42,4.021,5195.8,no +55,retired,single,university.degree,unknown,no,no,cellular,nov,fri,1199,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,blue-collar,married,basic.6y,no,yes,yes,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,fri,380,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,admin.,married,university.degree,unknown,yes,no,telephone,nov,fri,366,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,married,university.degree,no,yes,no,cellular,nov,fri,78,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,technician,married,professional.course,no,no,yes,cellular,nov,fri,161,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,technician,married,basic.4y,unknown,no,no,cellular,nov,fri,362,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,university.degree,no,no,no,cellular,nov,fri,455,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,management,divorced,professional.course,no,no,no,cellular,nov,fri,83,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,fri,184,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,technician,married,basic.4y,no,no,yes,cellular,nov,fri,295,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,551,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,services,married,basic.6y,no,no,no,cellular,nov,fri,101,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,admin.,single,high.school,no,yes,no,cellular,nov,fri,294,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,divorced,high.school,no,no,no,cellular,nov,fri,13,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,management,married,university.degree,no,no,no,cellular,nov,fri,51,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,student,single,unknown,no,yes,no,cellular,nov,fri,353,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,fri,93,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,technician,married,unknown,no,no,no,cellular,nov,fri,138,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,48,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,technician,divorced,high.school,no,no,no,cellular,nov,fri,50,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,single,university.degree,no,yes,no,cellular,nov,fri,718,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,admin.,married,unknown,no,no,no,cellular,nov,fri,288,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,management,single,university.degree,no,unknown,unknown,telephone,nov,fri,114,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,no,no,cellular,nov,fri,161,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,blue-collar,married,basic.9y,unknown,no,yes,cellular,nov,fri,150,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,services,divorced,high.school,unknown,yes,no,cellular,nov,fri,120,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,technician,single,high.school,no,yes,no,cellular,nov,fri,41,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +41,self-employed,married,professional.course,unknown,yes,no,cellular,nov,fri,1571,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +44,blue-collar,married,basic.6y,no,no,yes,cellular,nov,fri,240,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,self-employed,married,university.degree,unknown,yes,yes,cellular,nov,fri,198,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,technician,divorced,university.degree,no,yes,no,cellular,nov,fri,75,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,fri,108,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,self-employed,married,professional.course,no,yes,no,telephone,nov,fri,47,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,married,university.degree,no,yes,yes,cellular,nov,fri,536,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +39,technician,married,high.school,no,yes,no,cellular,nov,fri,408,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,services,single,high.school,no,yes,no,cellular,nov,fri,290,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,229,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,yes,no,telephone,nov,fri,148,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,management,divorced,university.degree,no,no,no,cellular,nov,fri,185,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,blue-collar,divorced,high.school,no,no,no,telephone,nov,fri,68,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,fri,54,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,self-employed,single,university.degree,no,no,no,cellular,nov,fri,906,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,no,no,cellular,nov,fri,186,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,technician,married,university.degree,no,yes,no,cellular,nov,fri,124,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,retired,married,basic.4y,no,yes,no,cellular,nov,fri,481,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +53,management,married,university.degree,no,yes,no,cellular,nov,fri,319,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,high.school,no,no,no,cellular,nov,fri,157,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,yes,no,cellular,nov,fri,106,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,services,married,unknown,no,yes,no,cellular,nov,fri,56,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,management,married,basic.9y,no,yes,no,telephone,nov,fri,94,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,self-employed,single,professional.course,no,no,no,cellular,nov,fri,123,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,married,university.degree,no,yes,no,cellular,nov,fri,12,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,75,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,no,yes,cellular,nov,fri,408,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,unemployed,married,high.school,unknown,no,no,cellular,nov,fri,671,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,basic.9y,no,yes,yes,cellular,nov,fri,664,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +59,self-employed,married,professional.course,unknown,no,no,cellular,nov,fri,383,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +38,technician,single,professional.course,no,yes,no,cellular,nov,fri,119,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,technician,single,professional.course,no,yes,yes,cellular,nov,fri,159,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,student,married,high.school,no,no,no,cellular,nov,fri,297,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,technician,single,high.school,no,no,no,cellular,nov,fri,61,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,technician,single,professional.course,no,no,no,cellular,nov,fri,142,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,technician,married,professional.course,unknown,yes,no,cellular,nov,fri,222,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,single,university.degree,no,no,no,telephone,nov,fri,34,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,management,married,high.school,no,no,no,cellular,nov,fri,79,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,admin.,single,unknown,no,no,no,cellular,nov,fri,188,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,high.school,no,yes,no,cellular,nov,fri,7,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,university.degree,no,no,no,telephone,nov,fri,186,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,technician,married,university.degree,no,yes,no,cellular,nov,fri,105,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,blue-collar,married,basic.9y,unknown,yes,no,telephone,nov,fri,126,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,admin.,single,high.school,no,yes,yes,telephone,nov,fri,661,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,entrepreneur,married,university.degree,no,yes,no,telephone,nov,fri,45,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,blue-collar,married,high.school,no,yes,yes,cellular,nov,fri,14,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,single,university.degree,unknown,no,no,cellular,nov,fri,224,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,blue-collar,married,unknown,no,no,no,telephone,nov,fri,20,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,management,single,university.degree,no,yes,no,cellular,nov,fri,155,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,technician,married,professional.course,no,no,no,cellular,nov,fri,78,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,high.school,no,no,no,cellular,nov,fri,10,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,self-employed,married,professional.course,no,yes,no,telephone,nov,fri,379,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,unknown,unknown,yes,no,cellular,nov,fri,57,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,single,university.degree,no,no,yes,cellular,nov,fri,21,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,admin.,married,university.degree,no,yes,no,cellular,nov,fri,85,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,management,married,university.degree,no,yes,yes,cellular,nov,fri,106,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,admin.,married,high.school,no,yes,no,cellular,nov,fri,50,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,757,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,unknown,unknown,yes,no,cellular,nov,fri,624,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,single,high.school,no,yes,no,cellular,nov,fri,103,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,570,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,married,high.school,no,yes,no,cellular,nov,fri,139,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,technician,married,professional.course,no,no,no,cellular,nov,fri,157,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,management,married,university.degree,no,yes,no,cellular,nov,fri,579,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +40,student,single,high.school,no,no,no,cellular,nov,fri,328,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,unemployed,divorced,basic.4y,no,no,no,cellular,nov,fri,366,3,3,1,success,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,yes,no,cellular,nov,fri,1555,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +39,admin.,single,unknown,no,no,no,cellular,nov,fri,504,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,yes +39,housemaid,married,basic.9y,no,yes,no,cellular,nov,fri,150,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,entrepreneur,married,university.degree,no,unknown,unknown,cellular,nov,fri,146,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,divorced,university.degree,unknown,no,no,cellular,nov,fri,69,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,single,university.degree,no,no,no,cellular,nov,fri,139,6,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,technician,married,professional.course,no,yes,no,cellular,nov,fri,51,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,university.degree,no,yes,yes,cellular,nov,fri,175,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,retired,married,university.degree,no,no,no,cellular,nov,fri,128,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,technician,married,professional.course,no,yes,no,cellular,nov,fri,11,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,married,professional.course,no,yes,no,cellular,nov,fri,82,5,5,1,success,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,33,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,technician,married,professional.course,no,yes,yes,cellular,nov,fri,52,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,management,married,university.degree,no,yes,no,cellular,nov,fri,289,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,technician,married,university.degree,no,no,yes,cellular,nov,fri,43,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,101,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,professional.course,no,no,no,cellular,nov,fri,402,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,divorced,university.degree,no,no,yes,cellular,nov,fri,59,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,retired,single,university.degree,no,yes,no,cellular,nov,fri,39,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,management,divorced,university.degree,no,no,no,cellular,nov,fri,57,8,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,technician,divorced,professional.course,no,unknown,unknown,cellular,nov,fri,87,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,management,divorced,university.degree,unknown,no,no,cellular,nov,fri,89,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,fri,608,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,430,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,management,married,basic.4y,no,no,no,cellular,nov,fri,240,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,technician,single,professional.course,no,yes,no,cellular,nov,fri,173,1,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,management,married,university.degree,no,no,no,cellular,nov,fri,137,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,technician,married,professional.course,no,yes,yes,cellular,nov,fri,379,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,management,married,university.degree,no,no,no,cellular,nov,fri,1036,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,technician,divorced,professional.course,no,no,no,cellular,nov,fri,675,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +40,management,single,university.degree,no,no,no,cellular,nov,fri,139,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,divorced,high.school,no,no,yes,cellular,nov,fri,377,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,technician,single,professional.course,no,no,no,cellular,nov,fri,394,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,single,university.degree,no,no,no,cellular,nov,fri,70,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,technician,single,professional.course,unknown,no,no,cellular,nov,fri,519,1,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,61,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,management,married,high.school,no,no,no,cellular,nov,fri,163,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,university.degree,no,no,no,cellular,nov,fri,302,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,married,high.school,no,yes,no,cellular,nov,fri,41,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,self-employed,married,university.degree,no,no,no,telephone,nov,fri,39,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,single,university.degree,no,no,no,cellular,nov,fri,360,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,unemployed,single,university.degree,no,yes,no,cellular,nov,fri,230,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,divorced,basic.9y,no,yes,no,cellular,nov,fri,155,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,technician,single,high.school,no,yes,no,cellular,nov,fri,32,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,entrepreneur,divorced,high.school,no,no,no,telephone,nov,fri,61,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +34,technician,married,professional.course,no,yes,no,cellular,nov,fri,251,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,management,married,university.degree,unknown,yes,yes,cellular,nov,fri,22,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,services,married,unknown,no,no,no,cellular,nov,fri,58,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,technician,married,professional.course,no,no,no,cellular,nov,fri,38,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,housemaid,married,basic.4y,no,no,no,cellular,nov,fri,165,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,unemployed,married,professional.course,unknown,yes,yes,telephone,nov,fri,83,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,11,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,technician,married,professional.course,no,no,yes,cellular,nov,fri,98,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,blue-collar,married,unknown,no,yes,no,cellular,nov,fri,663,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +53,admin.,divorced,high.school,no,yes,yes,telephone,nov,fri,544,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,technician,married,university.degree,unknown,yes,no,cellular,nov,fri,39,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,blue-collar,married,basic.4y,no,no,no,cellular,nov,fri,122,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,technician,married,professional.course,no,yes,yes,cellular,nov,fri,695,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,high.school,no,yes,no,cellular,nov,fri,369,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,entrepreneur,married,university.degree,no,no,no,cellular,nov,fri,88,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,basic.9y,no,yes,no,telephone,nov,fri,64,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,services,single,high.school,unknown,yes,no,cellular,nov,fri,216,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,admin.,single,high.school,no,yes,no,cellular,nov,fri,90,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,management,single,university.degree,no,yes,yes,cellular,nov,fri,164,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,fri,147,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,retired,married,high.school,no,no,no,cellular,nov,fri,268,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,self-employed,married,university.degree,no,no,no,cellular,nov,fri,169,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,student,single,university.degree,no,no,no,cellular,nov,fri,585,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +49,admin.,married,high.school,no,yes,no,cellular,nov,fri,36,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,management,married,university.degree,no,yes,no,cellular,nov,fri,129,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,management,married,university.degree,no,yes,no,cellular,nov,fri,33,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,888,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,admin.,married,university.degree,no,no,no,cellular,nov,fri,808,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +43,technician,married,professional.course,no,no,no,cellular,nov,fri,14,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,housemaid,married,high.school,no,no,yes,cellular,nov,fri,305,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,technician,single,professional.course,no,yes,no,cellular,nov,fri,18,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,blue-collar,married,basic.9y,unknown,yes,yes,cellular,nov,fri,134,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,no,no,no,cellular,nov,fri,77,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,services,single,high.school,unknown,no,no,cellular,nov,fri,107,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,admin.,married,basic.4y,no,yes,no,cellular,nov,fri,382,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +59,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,140,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,services,married,basic.4y,unknown,yes,no,cellular,nov,fri,39,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,13,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,1032,10,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,high.school,no,no,yes,cellular,nov,fri,64,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,fri,634,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,yes,no,cellular,nov,fri,138,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,management,married,high.school,no,yes,yes,cellular,nov,fri,225,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,services,divorced,high.school,no,yes,no,cellular,nov,fri,855,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,fri,258,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +46,technician,married,professional.course,no,yes,yes,cellular,nov,fri,484,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,technician,married,professional.course,no,yes,no,cellular,nov,fri,229,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,technician,married,university.degree,no,yes,no,cellular,nov,fri,330,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,41,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,1222,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +53,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,395,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,management,divorced,university.degree,no,yes,no,telephone,nov,fri,39,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,admin.,divorced,high.school,no,no,no,cellular,nov,fri,639,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,retired,married,high.school,no,yes,no,cellular,nov,fri,711,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,single,high.school,no,no,no,telephone,nov,fri,178,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,management,single,university.degree,unknown,no,no,cellular,nov,fri,534,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +37,unemployed,single,university.degree,no,no,yes,cellular,nov,fri,104,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,blue-collar,married,professional.course,no,no,yes,cellular,nov,fri,432,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,services,single,high.school,no,yes,no,cellular,nov,fri,1195,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,168,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,single,university.degree,no,no,no,cellular,nov,fri,229,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,unemployed,married,basic.9y,no,yes,yes,cellular,nov,fri,322,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,admin.,married,university.degree,no,no,no,cellular,nov,fri,127,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,university.degree,no,yes,no,cellular,nov,fri,59,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +59,technician,single,professional.course,no,yes,no,cellular,nov,fri,246,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,high.school,no,yes,no,cellular,nov,fri,140,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,technician,married,professional.course,unknown,no,no,cellular,nov,fri,210,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,admin.,married,high.school,no,no,no,cellular,nov,fri,11,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,208,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,358,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,services,married,unknown,no,no,no,cellular,nov,fri,64,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,married,professional.course,no,no,no,cellular,nov,fri,407,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,single,university.degree,no,no,no,cellular,nov,fri,903,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +53,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,fri,205,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,fri,66,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,admin.,divorced,high.school,no,yes,no,cellular,nov,fri,127,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,admin.,single,university.degree,no,no,no,cellular,nov,fri,331,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,yes +30,technician,single,university.degree,no,no,no,cellular,nov,fri,307,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,admin.,single,university.degree,no,no,no,cellular,nov,fri,27,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +56,retired,married,basic.4y,no,no,no,cellular,nov,fri,163,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +32,entrepreneur,single,high.school,unknown,yes,yes,cellular,nov,fri,64,6,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,unemployed,single,high.school,no,yes,no,telephone,nov,fri,136,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,technician,married,professional.course,no,yes,no,cellular,nov,fri,95,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,basic.4y,no,no,no,cellular,nov,fri,505,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,blue-collar,married,university.degree,no,no,no,cellular,nov,fri,170,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,technician,single,university.degree,no,yes,yes,cellular,nov,fri,1162,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,unemployed,divorced,professional.course,no,yes,no,telephone,nov,fri,122,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,72,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +57,technician,married,professional.course,no,yes,no,cellular,nov,fri,294,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,housemaid,married,university.degree,unknown,yes,no,cellular,nov,fri,82,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,nov,fri,15,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,blue-collar,single,university.degree,no,yes,no,cellular,nov,fri,7,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,admin.,married,university.degree,no,yes,no,cellular,nov,fri,21,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +29,admin.,single,university.degree,no,yes,no,cellular,nov,fri,118,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +47,admin.,married,high.school,no,no,no,cellular,nov,fri,21,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +30,self-employed,single,university.degree,no,no,no,telephone,nov,fri,345,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,96,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +52,unemployed,married,university.degree,no,yes,no,cellular,nov,fri,211,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,fri,73,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,6,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,entrepreneur,divorced,university.degree,no,no,no,cellular,nov,fri,110,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,divorced,professional.course,no,yes,no,cellular,nov,fri,321,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,nov,fri,170,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,56,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +53,unemployed,single,basic.9y,no,no,no,cellular,nov,fri,125,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,technician,married,professional.course,unknown,no,no,cellular,nov,fri,281,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +29,self-employed,single,university.degree,no,yes,no,cellular,nov,fri,328,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,management,married,university.degree,no,no,yes,telephone,nov,fri,13,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,management,married,university.degree,no,no,yes,cellular,nov,fri,296,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,self-employed,married,university.degree,no,yes,no,cellular,nov,fri,48,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +30,unemployed,married,professional.course,no,yes,no,telephone,nov,fri,77,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,married,high.school,no,yes,no,cellular,nov,fri,8,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,admin.,married,university.degree,no,no,no,cellular,nov,fri,182,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,12,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +40,services,single,high.school,unknown,no,no,cellular,nov,fri,8,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,married,professional.course,unknown,no,no,cellular,nov,fri,158,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,married,high.school,no,yes,no,cellular,nov,fri,9,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +46,admin.,divorced,university.degree,no,no,no,telephone,nov,fri,11,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +43,technician,married,university.degree,no,no,no,cellular,nov,fri,24,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,technician,married,university.degree,no,yes,no,cellular,nov,fri,175,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +54,self-employed,married,university.degree,unknown,no,no,cellular,nov,fri,9,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +29,blue-collar,single,basic.6y,no,no,no,telephone,nov,fri,69,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,self-employed,divorced,professional.course,no,no,no,cellular,nov,fri,37,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +33,admin.,single,professional.course,no,yes,no,telephone,nov,fri,240,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,fri,11,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +52,services,divorced,basic.4y,unknown,yes,yes,cellular,nov,fri,23,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,entrepreneur,married,university.degree,no,yes,no,cellular,nov,fri,13,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +58,retired,married,professional.course,unknown,yes,yes,cellular,nov,fri,22,4,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +40,management,married,university.degree,no,no,no,cellular,nov,fri,234,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +31,technician,single,university.degree,no,yes,yes,telephone,nov,fri,30,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +35,self-employed,married,university.degree,no,no,no,cellular,nov,fri,8,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +45,technician,single,university.degree,no,no,no,cellular,nov,fri,80,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,unemployed,single,basic.4y,no,no,no,cellular,nov,fri,12,8,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +31,admin.,single,university.degree,no,no,no,cellular,nov,fri,85,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,services,single,basic.9y,no,yes,no,cellular,nov,fri,143,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +36,self-employed,married,basic.9y,no,yes,yes,cellular,nov,fri,14,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +44,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,48,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,12,10,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +47,technician,married,high.school,unknown,yes,no,cellular,nov,fri,29,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,nov,fri,168,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,retired,single,university.degree,no,no,no,cellular,nov,fri,51,5,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +56,services,single,high.school,no,yes,yes,cellular,nov,fri,12,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,single,university.degree,no,yes,yes,cellular,nov,fri,33,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,admin.,single,university.degree,unknown,yes,yes,cellular,nov,fri,53,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +50,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,72,3,1,2,success,-0.1,93.2,-42,4.021,5195.8,no +39,admin.,single,unknown,no,yes,no,cellular,nov,fri,79,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,management,married,university.degree,no,yes,yes,cellular,nov,fri,1067,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +42,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,10,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,unknown,no,no,cellular,nov,fri,71,9,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +49,blue-collar,married,basic.9y,no,no,no,cellular,nov,fri,273,5,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +51,blue-collar,married,high.school,no,no,no,cellular,nov,fri,11,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,management,married,basic.9y,no,no,no,cellular,nov,fri,189,2,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +48,admin.,married,university.degree,no,no,no,cellular,nov,fri,61,7,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +39,management,married,university.degree,no,yes,no,telephone,nov,fri,10,7,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +40,technician,married,university.degree,no,yes,no,telephone,nov,fri,10,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +55,management,married,university.degree,unknown,yes,no,cellular,nov,fri,280,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +39,self-employed,married,professional.course,no,no,no,telephone,nov,fri,47,4,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +37,admin.,married,unknown,no,no,no,cellular,nov,fri,34,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +41,technician,married,university.degree,no,yes,yes,cellular,nov,fri,38,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +32,admin.,married,high.school,no,no,no,cellular,nov,fri,219,2,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +34,admin.,married,university.degree,no,no,no,telephone,nov,fri,205,3,999,1,failure,-0.1,93.2,-42,4.021,5195.8,no +41,blue-collar,single,basic.9y,unknown,no,no,cellular,nov,fri,643,3,999,0,nonexistent,-0.1,93.2,-42,4.021,5195.8,no +38,technician,married,professional.course,no,yes,yes,telephone,nov,wed,49,1,999,0,nonexistent,-0.1,93.2,-42,3.901,5195.8,no +32,unemployed,single,high.school,no,no,yes,telephone,nov,thu,114,1,999,0,nonexistent,-0.1,93.2,-42,3.879,5195.8,no +46,entrepreneur,single,professional.course,no,yes,no,telephone,nov,thu,8,1,999,0,nonexistent,-0.1,93.2,-42,3.879,5195.8,no +27,admin.,single,high.school,no,yes,no,telephone,nov,fri,24,1,999,0,nonexistent,-0.1,93.2,-42,3.853,5195.8,no +31,admin.,single,high.school,no,yes,no,telephone,dec,mon,36,1,999,0,nonexistent,-0.2,92.756,-45.9,3.816,5176.3,no +39,housemaid,married,basic.4y,no,yes,no,telephone,dec,wed,11,1,999,1,failure,-0.2,92.756,-45.9,3.743,5176.3,no +41,technician,divorced,professional.course,no,no,yes,cellular,dec,thu,18,1,999,0,nonexistent,-0.2,92.756,-45.9,3.669,5176.3,no +37,admin.,married,high.school,no,yes,no,telephone,dec,fri,12,1,999,0,nonexistent,-0.2,92.756,-45.9,3.563,5176.3,no +48,admin.,married,high.school,no,yes,yes,telephone,dec,fri,291,1,999,0,nonexistent,-0.2,92.756,-45.9,3.563,5176.3,no +51,blue-collar,married,basic.4y,no,yes,yes,telephone,dec,mon,170,1,999,0,nonexistent,-0.2,92.756,-45.9,3.488,5176.3,no +39,technician,married,professional.course,no,yes,no,telephone,dec,tue,183,1,999,0,nonexistent,-0.2,92.756,-45.9,3.428,5176.3,no +36,blue-collar,married,high.school,no,yes,no,cellular,dec,thu,234,1,999,0,nonexistent,-0.2,92.756,-45.9,3.329,5176.3,no +55,unemployed,divorced,professional.course,no,no,no,telephone,dec,fri,136,1,999,0,nonexistent,-0.2,92.756,-45.9,3.282,5176.3,no +44,blue-collar,married,basic.4y,no,yes,yes,telephone,dec,mon,119,1,999,0,nonexistent,-0.2,92.756,-45.9,3.053,5176.3,yes +26,student,single,basic.9y,no,yes,no,cellular,mar,mon,712,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +38,admin.,single,university.degree,no,yes,no,cellular,mar,mon,111,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +26,student,single,basic.9y,no,no,no,cellular,mar,mon,42,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,student,single,basic.9y,no,yes,no,telephone,mar,mon,169,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +30,management,married,university.degree,no,yes,no,telephone,mar,mon,213,7,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,student,single,basic.9y,no,yes,yes,cellular,mar,mon,78,4,999,1,failure,-1.8,92.843,-50,1.811,5099.1,no +28,technician,single,university.degree,no,yes,no,cellular,mar,mon,76,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,mar,mon,378,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +30,management,married,university.degree,no,no,no,cellular,mar,mon,116,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +48,admin.,married,basic.6y,no,no,no,telephone,mar,mon,139,5,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,154,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +28,technician,single,university.degree,no,no,no,cellular,mar,mon,142,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,mar,mon,145,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,mar,mon,69,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +44,blue-collar,single,professional.course,no,no,no,cellular,mar,mon,239,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +28,technician,single,university.degree,no,yes,yes,cellular,mar,mon,54,1,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +30,management,married,university.degree,no,yes,no,cellular,mar,mon,170,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,175,5,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +28,technician,single,university.degree,no,yes,no,cellular,mar,mon,120,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +26,student,single,basic.9y,no,yes,no,cellular,mar,mon,59,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +28,technician,single,university.degree,no,no,no,cellular,mar,mon,56,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,student,single,basic.9y,no,yes,no,cellular,mar,mon,1447,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +26,admin.,married,university.degree,no,yes,no,cellular,mar,mon,76,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +70,retired,divorced,basic.4y,no,yes,no,cellular,mar,mon,187,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +28,technician,single,university.degree,no,yes,no,cellular,mar,mon,131,12,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +61,admin.,married,university.degree,no,yes,no,cellular,mar,mon,136,6,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +26,student,single,basic.9y,no,no,yes,cellular,mar,mon,889,4,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +48,admin.,married,basic.6y,no,yes,no,telephone,mar,mon,382,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +26,student,single,basic.9y,no,yes,no,cellular,mar,mon,294,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,yes +30,management,married,university.degree,no,no,no,telephone,mar,mon,88,3,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +31,admin.,single,university.degree,no,no,yes,telephone,mar,mon,39,2,999,0,nonexistent,-1.8,92.843,-50,1.811,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,mar,tue,143,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +42,entrepreneur,married,basic.9y,no,unknown,unknown,cellular,mar,tue,133,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no +66,technician,married,professional.course,no,yes,no,cellular,mar,tue,83,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +26,unknown,single,basic.9y,no,no,no,cellular,mar,tue,212,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no +34,management,married,university.degree,no,no,no,cellular,mar,tue,499,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +35,admin.,married,high.school,no,yes,no,cellular,mar,tue,350,3,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +34,management,married,university.degree,no,yes,no,cellular,mar,tue,225,5,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no +24,services,single,unknown,no,no,no,cellular,mar,tue,103,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,no +28,student,single,basic.9y,no,yes,no,cellular,mar,tue,320,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +28,student,single,basic.9y,no,yes,no,cellular,mar,tue,156,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +36,admin.,married,high.school,no,no,no,cellular,mar,tue,168,1,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +43,blue-collar,married,basic.9y,no,no,no,cellular,mar,tue,180,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +24,services,single,unknown,no,yes,no,cellular,mar,tue,305,13,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +28,student,single,basic.9y,no,yes,no,cellular,mar,tue,96,2,999,0,nonexistent,-1.8,92.843,-50,1.799,5099.1,yes +32,technician,married,professional.course,no,no,yes,telephone,mar,wed,92,5,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,no +41,services,married,high.school,no,no,no,cellular,mar,wed,377,6,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,yes +41,services,married,high.school,no,no,no,cellular,mar,wed,396,2,999,0,nonexistent,-1.8,92.843,-50,1.778,5099.1,yes +23,admin.,single,university.degree,no,unknown,unknown,cellular,mar,thu,308,2,999,1,failure,-1.8,92.843,-50,1.757,5099.1,yes +38,technician,married,professional.course,no,no,no,cellular,mar,thu,66,3,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,mar,thu,92,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +44,management,married,basic.6y,no,yes,no,cellular,mar,thu,61,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,yes,yes,cellular,mar,thu,63,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +33,admin.,divorced,high.school,no,yes,no,cellular,mar,thu,86,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +23,admin.,single,university.degree,no,yes,no,cellular,mar,thu,64,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +44,management,married,basic.6y,no,yes,yes,cellular,mar,thu,218,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +33,management,married,university.degree,no,yes,no,telephone,mar,thu,181,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +44,management,married,basic.6y,no,yes,no,cellular,mar,thu,53,3,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,yes,no,cellular,mar,thu,182,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +23,admin.,single,university.degree,no,yes,no,cellular,mar,thu,90,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +33,admin.,divorced,high.school,no,no,no,cellular,mar,thu,41,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,no,yes,cellular,mar,thu,137,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +38,technician,married,professional.course,no,no,no,cellular,mar,thu,119,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,mar,thu,106,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +38,technician,married,professional.course,no,no,yes,cellular,mar,thu,196,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,yes +32,admin.,married,high.school,no,no,no,cellular,mar,thu,115,2,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,mar,thu,84,1,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +76,retired,married,university.degree,no,no,yes,cellular,mar,thu,167,9,999,0,nonexistent,-1.8,92.843,-50,1.757,5099.1,no +38,technician,married,professional.course,no,no,yes,cellular,mar,fri,195,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,no,no,cellular,mar,fri,229,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,yes,no,cellular,mar,fri,227,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,yes,yes,cellular,mar,fri,136,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,no +38,technician,married,professional.course,no,yes,no,cellular,mar,fri,119,5,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,no +38,technician,married,professional.course,no,yes,no,cellular,mar,fri,166,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +38,technician,married,professional.course,no,yes,no,cellular,mar,fri,363,2,10,1,success,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,yes,no,cellular,mar,fri,266,1,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,yes,yes,cellular,mar,fri,544,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +34,technician,single,professional.course,no,no,no,cellular,mar,fri,301,3,999,0,nonexistent,-1.8,92.843,-50,1.726,5099.1,yes +38,technician,married,professional.course,no,yes,no,cellular,mar,fri,207,2,7,1,success,-1.8,92.843,-50,1.726,5099.1,yes +32,management,single,university.degree,no,yes,no,cellular,mar,mon,116,1,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,yes +41,technician,single,professional.course,no,yes,no,cellular,mar,mon,101,1,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no +37,admin.,single,university.degree,no,yes,yes,cellular,mar,mon,161,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no +55,technician,single,professional.course,no,yes,yes,cellular,mar,mon,217,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,yes +32,management,single,university.degree,no,yes,no,cellular,mar,mon,78,2,999,1,failure,-1.8,92.843,-50,1.703,5099.1,no +67,retired,single,university.degree,no,yes,yes,cellular,mar,mon,70,22,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,mar,mon,75,2,999,0,nonexistent,-1.8,92.843,-50,1.703,5099.1,no +32,management,single,university.degree,no,no,no,cellular,mar,mon,93,2,999,1,failure,-1.8,92.843,-50,1.703,5099.1,no +32,management,single,university.degree,no,yes,yes,cellular,mar,tue,97,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +38,technician,married,university.degree,no,no,no,cellular,mar,tue,350,2,999,2,failure,-1.8,92.843,-50,1.687,5099.1,yes +32,management,single,university.degree,no,yes,no,cellular,mar,tue,164,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +73,retired,married,university.degree,no,yes,no,cellular,mar,tue,179,1,999,1,failure,-1.8,92.843,-50,1.687,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,mar,tue,106,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +31,blue-collar,single,high.school,no,yes,no,cellular,mar,tue,272,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +33,technician,married,university.degree,no,yes,no,cellular,mar,tue,56,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,mar,tue,71,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +39,admin.,single,high.school,no,yes,no,cellular,mar,tue,100,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,mar,tue,119,5,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +38,technician,married,university.degree,no,yes,no,cellular,mar,tue,122,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +38,technician,married,university.degree,no,no,no,cellular,mar,tue,59,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +39,admin.,single,high.school,no,yes,no,cellular,mar,tue,395,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +38,technician,married,university.degree,no,no,no,cellular,mar,tue,261,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +38,technician,married,university.degree,no,yes,yes,cellular,mar,tue,113,1,999,1,failure,-1.8,92.843,-50,1.687,5099.1,no +18,student,single,high.school,no,yes,yes,cellular,mar,tue,103,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,mar,tue,59,1,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +39,blue-collar,single,basic.4y,no,yes,no,telephone,mar,tue,137,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +37,admin.,married,university.degree,no,yes,yes,cellular,mar,tue,159,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +30,student,single,basic.4y,no,yes,yes,cellular,mar,tue,70,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,mar,tue,427,3,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,yes +32,management,single,university.degree,no,yes,no,telephone,mar,tue,230,2,999,0,nonexistent,-1.8,92.843,-50,1.687,5099.1,no +29,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,60,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,48,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,74,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,266,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +29,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,95,4,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +29,self-employed,married,university.degree,no,yes,yes,cellular,mar,wed,231,1,999,1,failure,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,796,5,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,101,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +29,self-employed,married,university.degree,no,no,no,cellular,mar,wed,197,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,96,6,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +60,retired,married,professional.course,no,yes,no,cellular,mar,wed,74,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,126,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,323,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,85,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,101,7,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,103,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,yes,cellular,mar,wed,82,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,no +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,188,3,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,203,2,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +88,retired,divorced,basic.4y,no,yes,no,cellular,mar,wed,101,1,999,0,nonexistent,-1.8,92.843,-50,1.663,5099.1,yes +33,admin.,married,university.degree,no,no,no,cellular,mar,thu,56,2,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,mar,thu,71,3,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no +27,student,single,high.school,no,yes,no,cellular,mar,thu,80,4,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes +26,management,single,university.degree,no,yes,no,cellular,mar,thu,119,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes +66,retired,married,basic.4y,no,yes,no,cellular,mar,thu,156,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes +29,technician,married,professional.course,no,no,no,cellular,mar,thu,186,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes +26,management,single,university.degree,no,no,no,cellular,mar,thu,139,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,yes +95,retired,divorced,basic.6y,no,no,no,cellular,mar,thu,85,1,999,0,nonexistent,-1.8,92.843,-50,1.65,5099.1,no +19,student,single,basic.9y,no,yes,no,cellular,mar,fri,126,4,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes +28,self-employed,single,university.degree,no,yes,no,cellular,mar,fri,186,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +32,student,single,university.degree,no,no,no,cellular,mar,fri,61,11,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +28,self-employed,single,university.degree,no,yes,no,cellular,mar,fri,41,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +28,self-employed,single,university.degree,no,no,no,cellular,mar,fri,114,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +30,student,single,high.school,no,no,no,cellular,mar,fri,268,5,10,2,failure,-1.8,92.843,-50,1.64,5099.1,yes +28,self-employed,single,university.degree,no,yes,yes,cellular,mar,fri,3076,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes +37,unemployed,single,university.degree,no,yes,no,cellular,mar,fri,432,1,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +50,unemployed,unknown,university.degree,no,no,no,cellular,mar,fri,166,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,no +28,self-employed,single,university.degree,no,no,no,cellular,mar,fri,296,2,999,0,nonexistent,-1.8,92.843,-50,1.64,5099.1,yes +70,retired,married,basic.4y,no,yes,no,cellular,mar,mon,61,6,999,1,failure,-1.8,92.843,-50,1.629,5099.1,no +70,retired,married,basic.4y,no,no,no,cellular,mar,mon,422,3,999,1,failure,-1.8,92.843,-50,1.629,5099.1,no +34,technician,married,professional.course,no,no,no,telephone,mar,mon,80,4,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +30,admin.,married,university.degree,no,unknown,unknown,cellular,mar,mon,291,3,8,1,success,-1.8,92.843,-50,1.629,5099.1,no +56,retired,married,university.degree,no,yes,yes,cellular,mar,mon,104,2,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,mar,mon,93,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +34,technician,married,professional.course,no,yes,yes,telephone,mar,mon,44,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +70,retired,married,basic.4y,no,yes,no,telephone,mar,mon,147,1,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,mar,mon,83,13,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,no +28,technician,single,university.degree,no,no,no,cellular,mar,mon,392,4,999,0,nonexistent,-1.8,92.843,-50,1.629,5099.1,yes +50,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,74,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +46,technician,married,professional.course,no,no,no,cellular,mar,tue,163,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,mar,tue,406,2,999,1,failure,-1.8,92.843,-50,1.614,5099.1,yes +21,student,single,high.school,no,no,no,cellular,mar,tue,220,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +77,retired,divorced,unknown,no,yes,no,cellular,mar,tue,178,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +37,unemployed,married,university.degree,no,yes,no,cellular,mar,tue,195,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +33,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,187,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +33,technician,single,university.degree,no,yes,no,cellular,mar,tue,325,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +29,technician,single,professional.course,no,no,no,cellular,mar,tue,299,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +34,admin.,single,university.degree,no,no,no,cellular,mar,tue,325,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,yes +32,admin.,single,professional.course,no,yes,no,cellular,mar,tue,159,2,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +32,admin.,single,professional.course,no,yes,yes,cellular,mar,tue,81,1,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,136,19,999,0,nonexistent,-1.8,92.843,-50,1.614,5099.1,no +26,student,single,high.school,no,no,no,cellular,mar,wed,236,2,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no +33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,140,10,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no +33,blue-collar,single,high.school,no,no,no,cellular,mar,wed,278,2,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes +60,management,single,university.degree,no,yes,yes,cellular,mar,wed,194,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes +24,admin.,single,high.school,no,yes,yes,cellular,mar,wed,224,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes +33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,163,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,no +68,retired,married,university.degree,no,no,no,cellular,mar,wed,201,1,999,0,nonexistent,-1.8,92.843,-50,1.602,5099.1,yes +33,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,203,4,999,1,failure,-1.8,92.843,-50,1.602,5099.1,yes +32,management,single,university.degree,no,no,yes,cellular,mar,thu,167,1,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,yes +24,admin.,single,high.school,no,no,yes,cellular,mar,thu,181,1,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,mar,thu,220,3,999,0,nonexistent,-1.8,92.843,-50,1.584,5099.1,yes +24,management,married,unknown,no,no,no,cellular,mar,fri,93,5,999,0,nonexistent,-1.8,92.843,-50,1.574,5099.1,no +54,admin.,married,university.degree,no,no,no,cellular,mar,mon,47,2,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,mar,mon,248,4,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes +54,admin.,married,university.degree,no,yes,no,cellular,mar,mon,415,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes +75,retired,divorced,basic.9y,no,no,no,cellular,mar,mon,233,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no +54,admin.,married,university.degree,no,yes,no,cellular,mar,mon,115,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,yes +27,unemployed,single,university.degree,no,yes,no,cellular,mar,mon,269,1,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no +31,admin.,divorced,university.degree,no,yes,yes,cellular,mar,mon,174,2,999,1,failure,-1.8,92.843,-50,1.56,5099.1,yes +70,admin.,divorced,university.degree,no,no,no,cellular,mar,mon,83,4,999,0,nonexistent,-1.8,92.843,-50,1.56,5099.1,no +19,student,single,basic.6y,no,no,no,cellular,mar,tue,136,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes +35,blue-collar,single,professional.course,no,yes,no,cellular,mar,tue,81,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +29,blue-collar,married,basic.4y,no,yes,yes,cellular,mar,tue,74,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +32,technician,divorced,professional.course,no,yes,yes,cellular,mar,tue,460,1,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes +32,technician,divorced,professional.course,no,no,no,cellular,mar,tue,115,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +28,technician,single,professional.course,no,yes,no,telephone,mar,tue,58,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,mar,tue,116,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +61,retired,married,basic.9y,no,no,yes,cellular,mar,tue,125,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +32,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,144,2,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes +29,blue-collar,single,basic.9y,no,yes,no,cellular,mar,tue,152,13,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,mar,tue,170,3,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes +46,admin.,married,university.degree,no,no,no,cellular,mar,tue,269,3,999,0,nonexistent,-1.8,92.843,-50,1.556,5099.1,yes +50,management,married,basic.9y,no,no,no,cellular,mar,wed,115,1,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes +28,admin.,single,university.degree,no,no,no,cellular,mar,wed,506,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes +63,retired,divorced,basic.4y,no,no,no,cellular,mar,wed,78,1,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,no +28,admin.,single,university.degree,no,no,yes,cellular,mar,wed,96,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes +33,admin.,married,university.degree,no,yes,no,cellular,mar,wed,278,8,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes +28,admin.,single,university.degree,no,no,no,cellular,mar,wed,411,2,999,0,nonexistent,-1.8,92.843,-50,1.548,5099.1,yes +35,admin.,married,high.school,no,yes,no,cellular,mar,thu,117,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes +36,management,married,university.degree,no,no,no,cellular,mar,thu,709,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes +36,management,married,university.degree,no,yes,no,cellular,mar,thu,141,1,999,1,failure,-1.8,92.843,-50,1.538,5099.1,no +26,student,single,high.school,no,no,no,cellular,mar,thu,200,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes +70,housemaid,married,basic.4y,no,no,no,cellular,mar,thu,91,1,999,1,failure,-1.8,92.843,-50,1.538,5099.1,no +45,technician,single,professional.course,no,yes,yes,cellular,mar,thu,143,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +20,student,single,basic.9y,no,yes,no,cellular,mar,thu,325,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes +36,management,married,university.degree,no,yes,yes,cellular,mar,thu,94,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,mar,thu,131,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +20,student,single,basic.9y,no,yes,no,cellular,mar,thu,267,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +36,management,married,university.degree,no,yes,no,cellular,mar,thu,86,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +37,blue-collar,married,basic.6y,no,yes,yes,cellular,mar,thu,73,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +58,unemployed,married,basic.4y,unknown,yes,no,cellular,mar,thu,439,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +68,retired,married,basic.4y,no,no,no,cellular,mar,thu,331,4,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,yes +51,technician,married,university.degree,no,yes,no,cellular,mar,thu,278,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,mar,thu,181,2,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +22,student,single,basic.9y,no,yes,no,cellular,mar,thu,173,1,999,0,nonexistent,-1.8,92.843,-50,1.538,5099.1,no +27,housemaid,married,high.school,no,yes,no,cellular,mar,fri,101,12,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +36,unemployed,married,university.degree,unknown,unknown,unknown,cellular,mar,fri,95,2,999,1,failure,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,yes,no,telephone,mar,fri,515,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,yes,no,cellular,mar,fri,300,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,yes,no,cellular,mar,fri,342,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,self-employed,single,university.degree,no,yes,no,telephone,mar,fri,124,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,mar,fri,283,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,yes,no,cellular,mar,fri,78,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +41,technician,married,professional.course,no,no,no,cellular,mar,fri,229,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,yes,no,cellular,mar,fri,102,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +25,admin.,married,university.degree,no,yes,no,cellular,mar,fri,294,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +25,admin.,married,university.degree,no,no,no,cellular,mar,fri,184,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +25,admin.,married,university.degree,no,yes,no,cellular,mar,fri,277,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +30,blue-collar,single,university.degree,no,no,no,cellular,mar,fri,166,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +28,admin.,single,high.school,no,no,yes,cellular,mar,fri,77,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +73,retired,married,university.degree,no,yes,no,cellular,mar,fri,179,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +43,admin.,married,university.degree,no,yes,no,cellular,mar,fri,689,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +31,technician,single,university.degree,no,yes,no,telephone,mar,fri,228,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +66,retired,married,unknown,no,yes,no,telephone,mar,fri,64,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +27,housemaid,married,high.school,no,yes,no,cellular,mar,fri,378,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +36,self-employed,married,university.degree,no,yes,no,cellular,mar,fri,101,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +60,admin.,married,university.degree,no,yes,no,cellular,mar,fri,558,1,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +25,admin.,married,university.degree,no,no,no,cellular,mar,fri,243,3,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +43,admin.,married,university.degree,no,yes,no,cellular,mar,fri,111,3,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +28,admin.,single,high.school,no,no,no,cellular,mar,fri,144,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +30,blue-collar,single,university.degree,no,yes,yes,cellular,mar,fri,166,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,no +28,admin.,single,high.school,no,no,no,telephone,mar,fri,234,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +32,admin.,single,university.degree,no,yes,no,cellular,mar,fri,271,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +28,admin.,single,high.school,no,no,no,cellular,mar,fri,347,2,999,0,nonexistent,-1.8,92.843,-50,1.531,5099.1,yes +32,admin.,single,university.degree,no,unknown,unknown,cellular,mar,mon,77,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,mar,mon,180,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes +32,admin.,single,university.degree,no,unknown,unknown,cellular,mar,mon,136,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +34,technician,single,university.degree,no,yes,no,cellular,mar,mon,253,2,999,1,failure,-1.8,92.843,-50,1.52,5099.1,no +34,technician,single,university.degree,no,yes,no,cellular,mar,mon,171,4,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,mar,mon,96,6,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +80,retired,married,basic.4y,unknown,yes,no,cellular,mar,mon,415,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +80,retired,married,basic.4y,unknown,no,no,cellular,mar,mon,95,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,285,8,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes +32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,364,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes +21,student,single,basic.4y,no,no,no,cellular,mar,mon,114,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,mar,mon,517,1,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes +32,admin.,single,university.degree,no,yes,no,cellular,mar,mon,167,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,mar,mon,78,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +62,admin.,married,high.school,no,no,no,telephone,mar,mon,163,2,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,yes +32,admin.,single,university.degree,no,no,no,cellular,mar,mon,52,3,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,mar,mon,138,8,999,0,nonexistent,-1.8,92.843,-50,1.52,5099.1,no +59,blue-collar,married,basic.4y,no,yes,yes,cellular,mar,tue,684,4,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +59,blue-collar,married,basic.4y,no,no,no,cellular,mar,tue,237,3,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes +80,management,divorced,professional.course,unknown,yes,no,cellular,mar,tue,158,2,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes +33,blue-collar,married,high.school,unknown,yes,no,cellular,mar,tue,494,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +39,admin.,married,high.school,unknown,yes,yes,cellular,mar,tue,210,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +39,admin.,married,high.school,unknown,yes,no,cellular,mar,tue,310,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +39,admin.,married,high.school,unknown,yes,no,cellular,mar,tue,265,1,999,1,failure,-1.8,92.843,-50,1.51,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,257,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,829,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +44,blue-collar,single,basic.4y,no,yes,no,cellular,mar,tue,1530,2,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,yes +48,admin.,single,university.degree,no,yes,no,cellular,mar,tue,544,1,999,0,nonexistent,-1.8,92.843,-50,1.51,5099.1,no +38,services,married,high.school,no,yes,no,cellular,apr,wed,484,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,351,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes +43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,apr,wed,131,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +43,self-employed,married,high.school,unknown,no,no,cellular,apr,wed,743,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +34,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,apr,wed,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +56,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,wed,202,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +30,services,single,high.school,no,yes,no,cellular,apr,wed,247,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +33,blue-collar,married,professional.course,no,yes,yes,cellular,apr,wed,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +49,admin.,married,basic.6y,no,yes,no,cellular,apr,wed,805,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,yes +33,management,single,university.degree,no,yes,yes,cellular,apr,wed,427,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +33,management,single,university.degree,no,yes,no,cellular,apr,wed,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +40,blue-collar,single,basic.9y,no,no,no,cellular,apr,wed,274,1,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no +33,management,single,university.degree,no,yes,yes,cellular,apr,wed,1176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes +33,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,165,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes +46,retired,married,basic.6y,unknown,yes,no,cellular,apr,wed,525,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,wed,479,1,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,513,1,5,2,success,-1.8,93.075,-47.1,1.498,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,wed,295,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +29,admin.,single,university.degree,no,no,yes,cellular,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +63,retired,married,professional.course,no,yes,no,cellular,apr,wed,387,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes +39,admin.,married,high.school,no,yes,no,cellular,apr,wed,286,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,wed,161,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no +27,entrepreneur,married,professional.course,no,unknown,unknown,cellular,apr,wed,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,498,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +44,admin.,married,unknown,no,no,no,cellular,apr,wed,251,4,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,apr,wed,625,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +56,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,apr,wed,121,2,999,1,failure,-1.8,93.075,-47.1,1.498,5099.1,no +43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,253,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +20,student,single,unknown,no,yes,no,cellular,apr,wed,184,4,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,yes +63,retired,married,professional.course,no,no,no,telephone,apr,wed,74,3,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +34,admin.,single,university.degree,no,no,yes,cellular,apr,wed,203,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,apr,wed,647,2,999,0,nonexistent,-1.8,93.075,-47.1,1.498,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,80,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,739,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +54,blue-collar,married,professional.course,no,yes,no,telephone,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +54,blue-collar,married,professional.course,no,no,no,cellular,apr,thu,2870,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,thu,90,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +38,admin.,divorced,basic.6y,unknown,yes,no,cellular,apr,thu,926,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,82,6,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +43,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,303,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +43,services,divorced,high.school,unknown,no,no,cellular,apr,thu,473,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +38,services,married,basic.9y,no,yes,no,cellular,apr,thu,101,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,243,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +39,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,340,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,yes,cellular,apr,thu,288,1,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no +34,technician,single,professional.course,no,no,no,cellular,apr,thu,121,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +26,services,single,high.school,no,no,no,cellular,apr,thu,177,1,1,3,success,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,thu,313,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,73,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,253,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,thu,450,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +39,blue-collar,single,basic.9y,no,no,no,cellular,apr,thu,311,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +44,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,thu,361,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +33,admin.,divorced,high.school,no,no,no,cellular,apr,thu,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +39,services,married,high.school,no,no,no,cellular,apr,thu,598,2,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,apr,thu,477,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +55,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,apr,thu,164,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +42,technician,divorced,professional.course,no,yes,yes,cellular,apr,thu,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +33,housemaid,unknown,university.degree,no,yes,no,cellular,apr,thu,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +28,blue-collar,single,high.school,no,no,yes,cellular,apr,thu,333,1,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +28,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,240,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +50,services,married,basic.4y,unknown,yes,yes,cellular,apr,thu,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +44,blue-collar,married,university.degree,no,yes,no,cellular,apr,thu,397,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +28,technician,single,professional.course,no,no,no,cellular,apr,thu,444,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,apr,thu,824,1,999,2,failure,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,thu,104,6,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,apr,thu,293,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +28,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,771,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +46,management,married,university.degree,no,no,no,cellular,apr,thu,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +42,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,204,4,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +28,blue-collar,single,high.school,no,yes,yes,cellular,apr,thu,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +39,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +49,admin.,married,basic.6y,unknown,yes,no,cellular,apr,thu,349,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +50,self-employed,single,basic.9y,no,no,no,cellular,apr,thu,399,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +44,admin.,divorced,university.degree,no,no,no,telephone,apr,thu,74,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,apr,thu,285,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,apr,thu,225,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +38,services,married,basic.9y,no,no,yes,cellular,apr,thu,96,3,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +28,blue-collar,single,high.school,no,yes,no,cellular,apr,thu,329,2,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,yes +28,blue-collar,single,high.school,no,yes,no,cellular,apr,thu,254,2,999,1,failure,-1.8,93.075,-47.1,1.483,5099.1,no +30,admin.,married,university.degree,no,no,yes,cellular,apr,thu,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.483,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,48,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +24,technician,single,university.degree,no,yes,no,cellular,apr,fri,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +39,admin.,divorced,university.degree,no,no,no,cellular,apr,fri,187,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,fri,456,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,93,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,905,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +53,blue-collar,divorced,high.school,no,yes,no,cellular,apr,fri,0,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +49,self-employed,divorced,unknown,unknown,yes,no,cellular,apr,fri,74,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +32,blue-collar,married,basic.9y,no,unknown,unknown,telephone,apr,fri,108,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,apr,fri,376,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +26,entrepreneur,single,high.school,no,yes,no,cellular,apr,fri,707,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,yes +26,entrepreneur,single,high.school,no,no,yes,cellular,apr,fri,297,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +49,housemaid,married,basic.4y,no,no,no,cellular,apr,fri,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +30,technician,married,university.degree,no,yes,no,cellular,apr,fri,103,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +42,admin.,married,high.school,no,no,no,cellular,apr,fri,697,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +37,management,married,high.school,no,yes,no,cellular,apr,fri,445,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no +51,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,314,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +51,technician,divorced,professional.course,no,yes,yes,cellular,apr,fri,84,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,fri,277,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,apr,fri,170,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +30,technician,single,high.school,no,no,no,cellular,apr,fri,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +33,services,divorced,high.school,no,no,yes,telephone,apr,fri,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +39,entrepreneur,married,high.school,no,no,no,cellular,apr,fri,484,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no +44,services,married,high.school,no,yes,no,cellular,apr,fri,240,1,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no +33,services,divorced,high.school,no,yes,yes,cellular,apr,fri,420,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,fri,482,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,yes +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,66,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +54,housemaid,married,unknown,no,yes,no,cellular,apr,fri,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,yes +55,retired,married,high.school,no,yes,no,cellular,apr,fri,213,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +49,self-employed,divorced,unknown,unknown,no,no,cellular,apr,fri,660,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +50,admin.,married,professional.course,unknown,yes,no,cellular,apr,fri,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +33,entrepreneur,married,high.school,no,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +50,admin.,married,unknown,no,yes,no,cellular,apr,fri,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,239,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +56,management,married,university.degree,no,no,no,telephone,apr,fri,362,2,999,2,failure,-1.8,93.075,-47.1,1.479,5099.1,no +54,housemaid,married,unknown,no,yes,no,cellular,apr,fri,105,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,582,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,fri,329,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +48,admin.,married,high.school,no,yes,no,cellular,apr,fri,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +48,admin.,married,high.school,no,no,no,cellular,apr,fri,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +32,services,married,high.school,no,no,no,cellular,apr,fri,65,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +43,management,married,university.degree,unknown,no,no,cellular,apr,fri,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +32,services,married,high.school,no,no,no,cellular,apr,fri,1090,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +34,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,203,1,1,1,success,-1.8,93.075,-47.1,1.479,5099.1,no +49,services,married,basic.6y,no,no,yes,cellular,apr,fri,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,100,3,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +39,entrepreneur,married,high.school,no,no,no,cellular,apr,fri,224,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,apr,fri,439,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +32,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,fri,205,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +44,management,divorced,university.degree,no,yes,no,cellular,apr,fri,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +44,management,divorced,university.degree,no,no,no,cellular,apr,fri,1091,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +31,technician,single,high.school,no,yes,no,cellular,apr,fri,596,1,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +47,technician,married,high.school,no,yes,no,cellular,apr,fri,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +36,services,single,high.school,no,no,yes,telephone,apr,fri,514,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +47,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,583,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,no +46,management,married,high.school,unknown,yes,no,cellular,apr,fri,57,4,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +41,admin.,married,basic.6y,no,no,no,cellular,apr,fri,1203,2,999,1,failure,-1.8,93.075,-47.1,1.479,5099.1,yes +51,technician,divorced,professional.course,no,no,no,cellular,apr,fri,579,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +37,admin.,married,university.degree,no,yes,no,telephone,apr,fri,309,4,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,fri,151,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +49,services,married,basic.6y,no,yes,no,cellular,apr,fri,219,2,999,0,nonexistent,-1.8,93.075,-47.1,1.479,5099.1,no +38,entrepreneur,married,professional.course,no,yes,yes,cellular,apr,mon,278,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,mon,479,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +42,management,married,unknown,no,yes,no,cellular,apr,mon,590,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +41,unemployed,married,basic.9y,no,no,yes,cellular,apr,mon,322,1,9,1,success,-1.8,93.075,-47.1,1.466,5099.1,no +50,management,divorced,university.degree,unknown,no,no,telephone,apr,mon,475,6,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes +41,unemployed,married,basic.9y,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +45,admin.,married,high.school,no,yes,no,cellular,apr,mon,185,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +40,management,married,university.degree,no,yes,no,cellular,apr,mon,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +25,technician,single,professional.course,no,no,yes,cellular,apr,mon,112,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +40,services,single,high.school,no,no,no,cellular,apr,mon,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +37,technician,divorced,basic.9y,no,yes,no,cellular,apr,mon,247,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +38,admin.,single,high.school,no,yes,no,cellular,apr,mon,332,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +55,management,divorced,university.degree,no,no,yes,cellular,apr,mon,916,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +53,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,583,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes +31,technician,married,professional.course,no,no,no,cellular,apr,mon,551,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +26,admin.,married,high.school,no,yes,no,cellular,apr,mon,90,10,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +56,retired,married,basic.6y,no,yes,no,telephone,apr,mon,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,retired,married,basic.4y,no,yes,no,cellular,apr,mon,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes +65,retired,married,university.degree,no,yes,no,cellular,apr,mon,147,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +34,admin.,married,basic.6y,no,yes,no,cellular,apr,mon,599,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,management,divorced,university.degree,no,yes,no,cellular,apr,mon,232,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,technician,married,professional.course,no,no,no,cellular,apr,mon,376,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +44,blue-collar,married,high.school,no,no,no,cellular,apr,mon,271,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +24,admin.,single,university.degree,no,yes,no,telephone,apr,mon,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +46,self-employed,single,university.degree,unknown,no,no,cellular,apr,mon,438,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +42,technician,married,basic.9y,no,no,yes,cellular,apr,mon,437,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +46,services,divorced,high.school,no,no,no,cellular,apr,mon,211,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +41,unemployed,married,basic.9y,no,yes,no,cellular,apr,mon,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +44,technician,married,unknown,no,yes,no,cellular,apr,mon,104,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +40,services,married,unknown,unknown,no,no,cellular,apr,mon,294,1,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +45,blue-collar,single,basic.9y,no,yes,no,cellular,apr,mon,173,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +45,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,housemaid,married,basic.4y,no,no,no,cellular,apr,mon,197,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +24,student,single,university.degree,no,no,no,cellular,apr,mon,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +40,blue-collar,divorced,basic.6y,no,no,no,cellular,apr,mon,399,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +26,admin.,married,high.school,no,no,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,1435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes +26,admin.,married,high.school,no,yes,no,telephone,apr,mon,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +58,retired,divorced,high.school,no,yes,no,cellular,apr,mon,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +55,technician,married,professional.course,no,yes,no,cellular,apr,mon,371,3,999,2,failure,-1.8,93.075,-47.1,1.466,5099.1,no +43,services,married,professional.course,no,no,no,cellular,apr,mon,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,41,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +32,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,mon,1063,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes +35,technician,married,professional.course,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +48,admin.,single,high.school,no,no,no,cellular,apr,mon,223,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +40,services,married,high.school,no,no,no,cellular,apr,mon,377,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +57,blue-collar,married,high.school,no,yes,yes,cellular,apr,mon,2316,1,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,mon,1353,2,5,1,success,-1.8,93.075,-47.1,1.466,5099.1,yes +29,technician,single,professional.course,no,yes,no,cellular,apr,mon,740,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,yes +37,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,1138,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,yes +38,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,357,2,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +42,technician,married,basic.9y,no,no,no,cellular,apr,mon,441,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +53,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,165,4,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +38,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,276,2,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,mon,125,3,999,1,failure,-1.8,93.075,-47.1,1.466,5099.1,no +51,admin.,divorced,professional.course,no,no,yes,cellular,apr,mon,583,3,999,0,nonexistent,-1.8,93.075,-47.1,1.466,5099.1,no +56,management,married,university.degree,no,no,no,cellular,apr,tue,72,5,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +60,retired,divorced,basic.4y,no,no,no,cellular,apr,tue,465,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +19,student,single,basic.9y,no,no,no,cellular,apr,tue,43,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,apr,tue,60,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +57,blue-collar,married,high.school,no,yes,no,cellular,apr,tue,355,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +39,technician,married,basic.6y,no,yes,no,cellular,apr,tue,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +43,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,tue,608,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,yes +43,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,tue,1096,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +35,admin.,married,high.school,no,no,no,cellular,apr,tue,327,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +34,admin.,single,high.school,no,no,no,cellular,apr,tue,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +44,technician,divorced,professional.course,no,no,no,cellular,apr,tue,208,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,91,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,381,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +41,admin.,married,university.degree,no,yes,no,cellular,apr,tue,183,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +22,student,single,high.school,no,no,no,cellular,apr,tue,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +41,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,103,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +41,admin.,married,university.degree,no,no,no,cellular,apr,tue,463,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +40,blue-collar,married,basic.9y,no,no,yes,cellular,apr,tue,479,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +40,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +46,admin.,divorced,high.school,no,no,no,cellular,apr,tue,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +45,services,married,professional.course,no,no,no,cellular,apr,tue,329,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +40,self-employed,married,professional.course,unknown,no,no,cellular,apr,tue,210,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,226,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +39,self-employed,married,professional.course,no,no,yes,cellular,apr,tue,389,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +57,blue-collar,married,high.school,no,yes,no,cellular,apr,tue,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +36,admin.,divorced,high.school,no,no,no,cellular,apr,tue,197,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +47,blue-collar,single,basic.4y,unknown,no,no,cellular,apr,tue,369,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +45,management,divorced,university.degree,no,no,no,cellular,apr,tue,196,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +34,admin.,single,high.school,no,yes,yes,cellular,apr,tue,2299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +41,admin.,married,basic.6y,unknown,no,no,cellular,apr,tue,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +46,technician,married,basic.6y,no,no,no,cellular,apr,tue,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,apr,tue,721,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +40,technician,married,professional.course,no,yes,no,cellular,apr,tue,366,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,208,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +40,technician,married,professional.course,no,no,no,cellular,apr,tue,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +39,admin.,married,high.school,no,yes,no,telephone,apr,tue,189,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +66,retired,single,university.degree,no,yes,no,cellular,apr,tue,411,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +42,technician,divorced,professional.course,no,yes,no,cellular,apr,tue,157,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +19,student,single,basic.9y,no,yes,no,cellular,apr,tue,299,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +42,technician,divorced,professional.course,no,no,no,cellular,apr,tue,615,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +34,management,married,university.degree,no,yes,no,cellular,apr,tue,255,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +28,student,single,university.degree,no,yes,no,cellular,apr,tue,93,3,11,2,failure,-1.8,93.075,-47.1,1.453,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,apr,tue,49,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +72,retired,married,basic.4y,no,unknown,unknown,cellular,apr,tue,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +72,retired,married,basic.4y,no,no,no,telephone,apr,tue,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +38,services,divorced,high.school,unknown,yes,no,cellular,apr,tue,620,1,2,1,success,-1.8,93.075,-47.1,1.453,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,84,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,yes +36,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,tue,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,apr,tue,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +45,services,married,high.school,no,no,no,cellular,apr,tue,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +38,services,divorced,high.school,unknown,no,no,cellular,apr,tue,311,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +45,services,married,high.school,no,yes,no,cellular,apr,tue,1063,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +38,services,divorced,high.school,unknown,yes,no,cellular,apr,tue,263,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +43,admin.,single,high.school,no,no,no,cellular,apr,tue,487,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +57,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +35,unemployed,divorced,university.degree,no,yes,yes,cellular,apr,tue,66,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +35,unemployed,divorced,university.degree,no,no,no,cellular,apr,tue,253,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +40,retired,single,basic.4y,no,yes,yes,cellular,apr,tue,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +46,services,married,unknown,no,yes,no,cellular,apr,tue,244,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +25,student,single,high.school,no,no,no,cellular,apr,tue,98,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +36,self-employed,single,university.degree,no,no,yes,cellular,apr,tue,104,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +39,technician,married,basic.6y,no,no,no,cellular,apr,tue,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,1,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,tue,158,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +40,blue-collar,married,high.school,no,no,no,cellular,apr,tue,245,8,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,161,1,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +59,services,married,high.school,no,yes,no,cellular,apr,tue,542,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +44,services,divorced,high.school,no,no,no,cellular,apr,tue,265,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +44,services,divorced,high.school,no,no,no,cellular,apr,tue,562,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +44,services,divorced,high.school,no,yes,yes,cellular,apr,tue,895,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,yes +38,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +38,blue-collar,married,basic.4y,no,no,no,cellular,apr,tue,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +38,admin.,divorced,high.school,no,no,no,cellular,apr,tue,172,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +33,blue-collar,single,professional.course,no,no,no,cellular,apr,tue,221,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +55,technician,married,high.school,no,yes,yes,cellular,apr,tue,376,3,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +59,retired,married,basic.4y,no,no,no,telephone,apr,tue,353,4,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +43,admin.,single,high.school,no,no,no,cellular,apr,tue,216,2,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +40,blue-collar,married,high.school,no,no,no,cellular,apr,tue,43,3,999,1,failure,-1.8,93.075,-47.1,1.453,5099.1,no +36,entrepreneur,married,high.school,no,yes,no,cellular,apr,tue,736,7,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +44,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,581,2,999,0,nonexistent,-1.8,93.075,-47.1,1.453,5099.1,no +27,technician,married,professional.course,no,yes,yes,cellular,apr,wed,163,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,no,yes,cellular,apr,wed,79,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,services,married,high.school,no,no,no,cellular,apr,wed,325,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +25,student,single,high.school,no,yes,no,cellular,apr,wed,327,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +25,student,single,high.school,no,yes,no,cellular,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +34,services,married,high.school,no,yes,no,cellular,apr,wed,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,131,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +43,technician,single,professional.course,unknown,yes,no,cellular,apr,wed,519,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +40,housemaid,married,basic.9y,no,yes,yes,telephone,apr,wed,169,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,apr,wed,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +55,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,628,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +27,admin.,single,university.degree,no,yes,yes,cellular,apr,wed,98,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +55,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,952,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +61,retired,married,university.degree,no,yes,no,cellular,apr,wed,205,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,blue-collar,divorced,basic.9y,no,no,yes,cellular,apr,wed,903,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +48,technician,married,professional.course,no,no,no,cellular,apr,wed,95,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +29,technician,married,university.degree,no,yes,no,cellular,apr,wed,58,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,apr,wed,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,123,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,yes,no,telephone,apr,wed,523,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +25,unemployed,single,professional.course,no,yes,no,cellular,apr,wed,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +25,unemployed,single,professional.course,no,no,no,cellular,apr,wed,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +49,blue-collar,divorced,basic.4y,unknown,no,no,cellular,apr,wed,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,120,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,182,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +27,technician,single,basic.9y,no,no,yes,cellular,apr,wed,335,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +37,technician,married,university.degree,no,yes,no,telephone,apr,wed,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +29,blue-collar,single,high.school,no,yes,yes,cellular,apr,wed,2129,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,wed,393,6,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +34,services,married,high.school,no,no,no,cellular,apr,wed,462,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,wed,213,4,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,blue-collar,divorced,basic.6y,unknown,no,no,cellular,apr,wed,179,5,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,no +38,admin.,married,high.school,no,no,yes,cellular,apr,wed,284,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,1032,3,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,yes +36,management,married,university.degree,no,no,yes,cellular,apr,wed,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +36,housemaid,married,basic.9y,no,yes,no,cellular,apr,wed,291,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +63,retired,married,unknown,no,no,no,cellular,apr,wed,150,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,yes +63,retired,married,unknown,no,yes,no,telephone,apr,wed,236,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +37,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,281,1,5,1,success,-1.8,93.075,-47.1,1.445,5099.1,no +50,admin.,married,university.degree,no,unknown,unknown,cellular,apr,wed,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,wed,120,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +47,unemployed,divorced,basic.9y,no,no,no,cellular,apr,wed,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +63,retired,married,unknown,no,no,no,telephone,apr,wed,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +28,admin.,married,university.degree,no,yes,no,cellular,apr,wed,261,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +51,admin.,single,university.degree,no,yes,yes,cellular,apr,wed,233,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +29,admin.,married,university.degree,no,yes,yes,cellular,apr,wed,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +25,admin.,single,professional.course,no,yes,no,cellular,apr,wed,67,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +47,entrepreneur,married,high.school,no,no,yes,cellular,apr,wed,663,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +25,admin.,single,professional.course,no,yes,no,cellular,apr,wed,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +29,technician,married,university.degree,no,unknown,unknown,cellular,apr,wed,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +31,services,married,high.school,no,no,yes,cellular,apr,wed,195,6,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +36,management,married,university.degree,no,no,yes,cellular,apr,wed,180,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +82,retired,married,unknown,no,no,no,cellular,apr,wed,321,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +27,technician,single,basic.9y,no,no,no,cellular,apr,wed,34,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,services,married,high.school,no,yes,no,cellular,apr,wed,201,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +24,services,single,high.school,no,yes,no,cellular,apr,wed,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +47,admin.,single,university.degree,no,no,no,cellular,apr,wed,167,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,apr,wed,58,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +38,admin.,married,high.school,no,no,no,cellular,apr,wed,518,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +24,student,single,high.school,no,yes,no,cellular,apr,wed,74,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +64,technician,married,professional.course,no,yes,no,cellular,apr,wed,250,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,apr,wed,1190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +40,services,divorced,high.school,no,yes,no,cellular,apr,wed,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +42,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,405,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,612,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,229,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +35,services,divorced,basic.9y,no,no,no,cellular,apr,wed,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +34,services,married,high.school,no,no,no,cellular,apr,wed,543,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +37,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,180,2,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +34,admin.,single,professional.course,no,no,no,cellular,apr,wed,174,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,wed,169,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +37,technician,married,professional.course,unknown,yes,yes,cellular,apr,wed,101,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +34,services,divorced,high.school,no,yes,yes,cellular,apr,wed,303,1,999,1,failure,-1.8,93.075,-47.1,1.445,5099.1,no +58,retired,married,university.degree,no,unknown,unknown,cellular,apr,wed,624,1,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +40,admin.,divorced,university.degree,no,no,no,cellular,apr,wed,143,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +27,technician,single,basic.9y,no,yes,no,cellular,apr,wed,56,7,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +22,management,single,university.degree,no,yes,no,cellular,apr,wed,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +64,technician,married,professional.course,no,yes,no,cellular,apr,wed,65,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,wed,91,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +25,unemployed,single,professional.course,no,no,yes,cellular,apr,wed,274,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,apr,wed,222,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +43,services,married,high.school,no,yes,no,telephone,apr,wed,690,7,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +34,services,married,high.school,no,yes,no,cellular,apr,wed,281,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +46,technician,married,basic.6y,unknown,yes,no,cellular,apr,wed,575,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +47,admin.,married,unknown,no,no,yes,cellular,apr,wed,764,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +39,services,married,basic.9y,unknown,yes,yes,telephone,apr,wed,93,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +38,services,single,high.school,no,yes,no,cellular,apr,wed,1665,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +41,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,wed,548,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +33,admin.,single,university.degree,no,no,no,cellular,apr,wed,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +30,unemployed,single,basic.9y,no,no,no,cellular,apr,wed,142,4,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +46,services,married,high.school,no,yes,no,cellular,apr,wed,417,2,999,2,failure,-1.8,93.075,-47.1,1.445,5099.1,no +43,self-employed,married,high.school,unknown,yes,no,cellular,apr,wed,902,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,apr,wed,350,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,yes +59,admin.,married,high.school,no,yes,no,cellular,apr,wed,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,apr,wed,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.445,5099.1,no +20,student,single,high.school,no,yes,no,cellular,apr,thu,162,4,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,68,3,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no +37,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,apr,thu,435,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +21,services,single,high.school,no,yes,no,cellular,apr,thu,374,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +41,admin.,married,university.degree,unknown,yes,yes,telephone,apr,thu,40,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +52,admin.,married,high.school,no,no,no,cellular,apr,thu,312,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +21,services,single,high.school,no,yes,yes,cellular,apr,thu,820,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +41,admin.,single,university.degree,no,yes,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +28,services,single,high.school,no,no,no,cellular,apr,thu,528,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +46,technician,single,basic.9y,no,yes,no,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +43,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,thu,105,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +43,technician,married,professional.course,no,no,no,cellular,apr,thu,264,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,592,4,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes +59,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,125,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +44,management,divorced,university.degree,no,yes,no,cellular,apr,thu,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +24,admin.,single,professional.course,no,yes,no,cellular,apr,thu,125,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +35,services,married,basic.9y,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +32,self-employed,single,university.degree,no,no,no,cellular,apr,thu,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +35,services,married,basic.9y,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +43,admin.,divorced,high.school,no,yes,no,cellular,apr,thu,448,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes +33,technician,single,university.degree,no,no,no,cellular,apr,thu,657,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +38,services,married,basic.9y,no,yes,no,cellular,apr,thu,220,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +38,technician,married,high.school,no,no,no,cellular,apr,thu,113,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,241,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +32,services,divorced,high.school,no,no,no,cellular,apr,thu,765,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +35,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,thu,311,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +33,technician,single,university.degree,no,unknown,unknown,cellular,apr,thu,527,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +67,retired,married,university.degree,no,yes,no,telephone,apr,thu,126,4,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +33,technician,single,university.degree,no,no,no,cellular,apr,thu,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +40,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +40,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,236,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +41,technician,married,university.degree,unknown,no,yes,cellular,apr,thu,272,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +32,blue-collar,married,high.school,no,yes,no,cellular,apr,thu,259,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +51,services,married,high.school,unknown,no,no,cellular,apr,thu,278,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +41,technician,married,university.degree,unknown,yes,yes,cellular,apr,thu,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +48,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,thu,429,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +33,services,divorced,university.degree,no,yes,no,cellular,apr,thu,230,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,96,4,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +45,admin.,married,high.school,no,no,yes,cellular,apr,thu,109,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +33,technician,single,university.degree,no,yes,no,cellular,apr,thu,530,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +33,technician,single,university.degree,no,yes,no,cellular,apr,thu,71,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,159,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,104,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,214,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,184,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,331,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,yes +30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +45,admin.,single,unknown,no,yes,no,cellular,apr,thu,62,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +35,services,married,high.school,no,yes,no,cellular,apr,thu,466,2,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no +52,admin.,married,university.degree,no,yes,no,telephone,apr,thu,327,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +42,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,290,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,464,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +46,technician,single,basic.9y,no,no,no,cellular,apr,thu,221,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +49,blue-collar,married,basic.6y,unknown,yes,yes,cellular,apr,thu,504,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +33,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,233,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +30,self-employed,single,university.degree,no,no,no,cellular,apr,thu,245,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +52,admin.,married,high.school,no,yes,no,cellular,apr,thu,152,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +45,entrepreneur,divorced,university.degree,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +33,technician,single,university.degree,no,yes,no,cellular,apr,thu,106,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +50,blue-collar,married,high.school,unknown,no,no,cellular,apr,thu,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +30,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,152,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +36,retired,married,high.school,no,yes,no,cellular,apr,thu,98,6,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +41,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,thu,268,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +47,technician,divorced,professional.course,no,no,no,cellular,apr,thu,337,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +54,self-employed,married,basic.9y,no,yes,no,cellular,apr,thu,133,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +43,entrepreneur,married,high.school,no,yes,no,cellular,apr,thu,90,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +28,services,single,high.school,no,yes,no,cellular,apr,thu,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +46,technician,single,basic.9y,no,no,no,cellular,apr,thu,385,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +45,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,317,5,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +36,admin.,single,university.degree,no,no,no,cellular,apr,thu,208,12,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,627,2,5,3,failure,-1.8,93.075,-47.1,1.435,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,1042,2,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,yes +41,admin.,married,university.degree,unknown,yes,yes,cellular,apr,thu,240,3,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +40,services,married,basic.6y,unknown,no,no,cellular,apr,thu,140,2,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,490,3,999,2,failure,-1.8,93.075,-47.1,1.435,5099.1,yes +57,services,married,high.school,no,yes,no,cellular,apr,thu,275,2,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +37,blue-collar,married,professional.course,no,no,no,cellular,apr,thu,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.435,5099.1,no +33,services,married,high.school,no,yes,no,cellular,apr,thu,236,1,999,1,failure,-1.8,93.075,-47.1,1.435,5099.1,no +30,admin.,single,university.degree,no,yes,no,telephone,apr,tue,563,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +41,technician,married,high.school,no,yes,yes,cellular,apr,tue,142,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +36,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,tue,283,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,self-employed,single,university.degree,no,no,no,telephone,apr,tue,86,6,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,tue,259,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +24,admin.,single,high.school,no,yes,no,cellular,apr,tue,255,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +41,technician,married,professional.course,no,yes,no,cellular,apr,tue,466,5,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes +41,admin.,divorced,university.degree,no,no,no,cellular,apr,tue,82,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,apr,tue,565,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,admin.,single,professional.course,no,yes,no,cellular,apr,tue,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,admin.,single,professional.course,no,no,no,cellular,apr,tue,262,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,269,3,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +37,admin.,single,university.degree,no,no,no,cellular,apr,tue,283,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +73,retired,divorced,basic.4y,no,no,yes,cellular,apr,tue,342,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,427,4,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,255,7,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,apr,tue,110,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,461,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +46,admin.,married,professional.course,no,yes,no,cellular,apr,tue,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,apr,tue,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,services,single,basic.6y,no,yes,yes,cellular,apr,tue,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +59,blue-collar,married,basic.9y,no,no,no,telephone,apr,tue,111,3,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +46,blue-collar,divorced,basic.9y,no,yes,no,telephone,apr,tue,266,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,self-employed,single,university.degree,no,yes,no,telephone,apr,tue,118,6,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,apr,tue,142,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +35,blue-collar,married,basic.9y,no,yes,no,cellular,apr,tue,855,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,apr,tue,344,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes +34,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,125,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +24,services,single,high.school,no,yes,no,cellular,apr,tue,850,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +48,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,85,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +24,services,single,high.school,no,yes,no,telephone,apr,tue,104,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +48,blue-collar,single,basic.9y,no,yes,no,cellular,apr,tue,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +24,services,single,high.school,no,yes,no,cellular,apr,tue,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +24,services,single,high.school,no,yes,no,cellular,apr,tue,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +59,retired,married,university.degree,no,no,no,cellular,apr,tue,1073,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +47,self-employed,married,basic.9y,no,yes,no,telephone,apr,tue,226,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +34,self-employed,single,university.degree,no,no,no,cellular,apr,tue,94,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +24,services,single,high.school,no,yes,no,cellular,apr,tue,1594,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes +24,services,single,high.school,no,no,no,cellular,apr,tue,450,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +55,admin.,single,high.school,no,yes,no,cellular,apr,tue,461,2,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +30,admin.,single,university.degree,no,no,yes,cellular,apr,tue,505,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +55,admin.,married,high.school,no,no,no,cellular,apr,tue,163,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,self-employed,married,university.degree,no,no,no,cellular,apr,tue,133,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,184,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +26,unemployed,single,university.degree,no,yes,no,cellular,apr,tue,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +28,blue-collar,single,university.degree,no,yes,no,cellular,apr,tue,49,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +35,admin.,married,university.degree,no,no,no,cellular,apr,tue,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,apr,tue,314,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +57,technician,married,professional.course,no,yes,no,cellular,apr,tue,232,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +57,technician,married,professional.course,no,yes,no,cellular,apr,tue,324,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,252,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +56,management,married,basic.9y,unknown,no,no,cellular,apr,tue,584,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,tue,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +30,admin.,married,university.degree,no,yes,no,cellular,apr,tue,496,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,95,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +46,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,tue,332,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +39,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,308,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +71,retired,married,basic.4y,no,no,no,telephone,apr,tue,129,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +25,admin.,single,university.degree,no,no,no,cellular,apr,tue,247,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +28,blue-collar,single,university.degree,no,no,no,cellular,apr,tue,107,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +42,self-employed,married,university.degree,no,yes,no,cellular,apr,tue,216,1,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,yes +46,technician,married,professional.course,no,no,no,cellular,apr,tue,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +31,blue-collar,single,unknown,no,no,no,cellular,apr,tue,424,2,999,2,failure,-1.8,93.075,-47.1,1.423,5099.1,no +34,blue-collar,single,high.school,no,no,no,cellular,apr,tue,259,2,999,2,failure,-1.8,93.075,-47.1,1.423,5099.1,no +57,admin.,married,high.school,no,yes,no,cellular,apr,tue,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +33,management,married,university.degree,unknown,yes,yes,cellular,apr,tue,258,8,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +61,retired,married,university.degree,no,yes,no,cellular,apr,tue,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +36,services,married,high.school,no,unknown,unknown,cellular,apr,tue,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +45,admin.,single,basic.9y,no,yes,yes,cellular,apr,tue,119,2,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,apr,tue,108,6,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,72,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,101,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +69,retired,divorced,university.degree,no,yes,no,cellular,apr,tue,207,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +26,unemployed,single,university.degree,no,yes,no,telephone,apr,tue,300,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +28,admin.,single,university.degree,no,yes,no,cellular,apr,tue,295,5,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,yes +23,technician,single,professional.course,no,no,yes,cellular,apr,tue,422,4,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +29,admin.,single,university.degree,no,yes,no,telephone,apr,tue,61,3,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +38,admin.,married,university.degree,no,yes,no,cellular,apr,tue,108,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +47,blue-collar,married,professional.course,no,yes,no,cellular,apr,tue,225,4,999,1,failure,-1.8,93.075,-47.1,1.423,5099.1,no +41,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,tue,608,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,tue,189,2,999,0,nonexistent,-1.8,93.075,-47.1,1.423,5099.1,no +46,admin.,divorced,university.degree,no,yes,no,cellular,apr,wed,201,6,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +49,admin.,married,unknown,no,yes,yes,cellular,apr,wed,61,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +70,retired,married,basic.4y,no,yes,no,cellular,apr,wed,223,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +67,retired,married,professional.course,no,no,no,telephone,apr,wed,47,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,apr,wed,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +56,admin.,married,basic.9y,no,yes,no,cellular,apr,wed,431,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +23,student,single,basic.4y,no,yes,no,cellular,apr,wed,1372,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +37,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,wed,343,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +56,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,wed,141,12,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +38,technician,divorced,university.degree,no,no,no,cellular,apr,wed,141,2,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no +32,unemployed,single,university.degree,no,yes,no,telephone,apr,wed,165,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes +34,technician,divorced,professional.course,no,yes,no,cellular,apr,wed,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +70,retired,married,basic.4y,no,no,no,cellular,apr,wed,167,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,wed,332,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +56,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,wed,87,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +43,management,married,basic.6y,no,no,no,cellular,apr,wed,945,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes +25,student,single,high.school,no,yes,yes,cellular,apr,wed,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +47,admin.,married,high.school,no,yes,no,cellular,apr,wed,903,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes +58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +30,admin.,married,university.degree,no,no,yes,cellular,apr,wed,389,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +45,services,married,high.school,no,yes,no,cellular,apr,wed,651,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +30,management,single,university.degree,no,yes,no,cellular,apr,wed,692,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +29,unemployed,single,high.school,no,no,no,cellular,apr,wed,217,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +36,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,wed,93,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +66,retired,married,basic.4y,no,yes,no,cellular,apr,wed,253,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,management,married,basic.6y,no,yes,no,cellular,apr,wed,139,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,management,married,basic.6y,no,yes,yes,cellular,apr,wed,154,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +40,management,single,basic.9y,no,yes,no,cellular,apr,wed,601,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +53,retired,married,high.school,no,no,no,telephone,apr,wed,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +53,retired,married,high.school,no,no,no,cellular,apr,wed,349,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,apr,wed,225,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +41,entrepreneur,single,professional.course,no,yes,no,cellular,apr,wed,103,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,technician,single,professional.course,no,yes,no,cellular,apr,wed,75,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,apr,wed,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,technician,single,professional.course,no,no,no,cellular,apr,wed,609,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +41,services,single,high.school,no,no,no,cellular,apr,wed,134,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,apr,wed,166,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +41,services,married,high.school,no,yes,yes,cellular,apr,wed,301,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,apr,wed,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +52,entrepreneur,married,university.degree,no,yes,no,cellular,apr,wed,126,1,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no +44,technician,married,professional.course,no,yes,no,cellular,apr,wed,56,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +60,housemaid,married,basic.4y,no,no,no,cellular,apr,wed,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +40,blue-collar,divorced,unknown,unknown,no,no,cellular,apr,wed,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +59,admin.,divorced,university.degree,no,no,no,cellular,apr,wed,194,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +49,management,married,university.degree,no,no,no,cellular,apr,wed,1214,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +21,admin.,single,high.school,no,yes,no,cellular,apr,wed,122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +32,unemployed,single,university.degree,no,no,no,cellular,apr,wed,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +32,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,187,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,unemployed,divorced,basic.9y,no,no,no,cellular,apr,wed,114,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +36,housemaid,married,basic.4y,no,yes,no,cellular,apr,wed,310,7,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,1217,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +29,technician,single,university.degree,no,yes,no,cellular,apr,wed,389,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,48,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +26,admin.,single,high.school,no,no,no,cellular,apr,wed,171,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +66,retired,married,basic.4y,no,yes,no,cellular,apr,wed,512,11,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +32,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +44,technician,single,professional.course,no,yes,no,cellular,apr,wed,412,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +32,admin.,single,high.school,no,yes,yes,cellular,apr,wed,120,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +70,retired,married,basic.4y,no,no,no,cellular,apr,wed,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +67,retired,married,professional.course,no,yes,no,cellular,apr,wed,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +27,technician,single,professional.course,no,no,no,cellular,apr,wed,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +37,admin.,married,university.degree,no,yes,no,cellular,apr,wed,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,437,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +33,admin.,married,university.degree,no,no,no,cellular,apr,wed,441,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +52,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,358,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,apr,wed,355,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +57,technician,married,high.school,no,yes,no,cellular,apr,wed,82,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +26,admin.,single,high.school,no,yes,no,telephone,apr,wed,170,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +57,technician,married,high.school,no,no,no,cellular,apr,wed,469,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +57,technician,married,high.school,no,yes,no,cellular,apr,wed,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +58,retired,divorced,university.degree,no,yes,no,cellular,apr,wed,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +31,admin.,married,university.degree,no,no,no,telephone,apr,wed,118,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +43,management,married,basic.6y,no,no,no,cellular,apr,wed,121,1,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +25,student,single,high.school,no,no,no,telephone,apr,wed,405,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +25,student,single,high.school,no,no,no,cellular,apr,wed,442,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +25,student,single,high.school,no,no,no,cellular,apr,wed,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,wed,1038,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +33,admin.,single,university.degree,no,yes,yes,telephone,apr,wed,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +31,admin.,single,university.degree,no,no,no,telephone,apr,wed,85,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +55,blue-collar,single,basic.4y,no,yes,no,cellular,apr,wed,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +37,services,married,basic.9y,no,yes,no,cellular,apr,wed,103,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,apr,wed,397,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +51,management,married,unknown,no,yes,no,cellular,apr,wed,309,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +37,admin.,married,university.degree,no,yes,no,cellular,apr,wed,142,5,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +56,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,wed,185,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,apr,wed,520,3,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +66,retired,married,basic.4y,no,no,yes,cellular,apr,wed,139,5,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,yes +30,management,single,university.degree,no,no,no,cellular,apr,wed,244,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +45,management,married,university.degree,no,no,no,telephone,apr,wed,221,4,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,apr,wed,266,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,apr,wed,623,2,999,2,failure,-1.8,93.075,-47.1,1.415,5099.1,no +71,retired,married,high.school,no,yes,no,cellular,apr,wed,162,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,apr,wed,80,3,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,no +40,blue-collar,single,basic.4y,unknown,no,no,cellular,apr,wed,158,2,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,apr,wed,540,3,9,1,success,-1.8,93.075,-47.1,1.415,5099.1,no +55,admin.,married,high.school,no,yes,no,cellular,apr,wed,140,3,999,1,failure,-1.8,93.075,-47.1,1.415,5099.1,no +41,services,single,high.school,no,yes,yes,cellular,apr,wed,264,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +36,management,married,university.degree,no,no,no,cellular,apr,wed,353,2,999,0,nonexistent,-1.8,93.075,-47.1,1.415,5099.1,yes +51,entrepreneur,married,illiterate,no,no,no,cellular,apr,thu,87,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +51,entrepreneur,married,illiterate,no,yes,no,cellular,apr,thu,838,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +63,retired,married,unknown,no,yes,no,cellular,apr,thu,144,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +26,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,78,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +42,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,55,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,206,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +30,admin.,married,high.school,unknown,yes,no,cellular,apr,thu,648,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +26,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,thu,251,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +39,management,single,university.degree,unknown,no,no,cellular,apr,thu,370,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +35,services,married,high.school,no,yes,no,cellular,apr,thu,137,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,married,university.degree,no,yes,yes,telephone,apr,thu,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +39,management,single,university.degree,unknown,yes,no,telephone,apr,thu,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +57,technician,married,university.degree,no,yes,no,cellular,apr,thu,836,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +40,entrepreneur,married,professional.course,unknown,yes,no,cellular,apr,thu,176,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,thu,271,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,827,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,258,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +64,retired,married,basic.6y,no,yes,no,cellular,apr,thu,67,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +57,retired,married,basic.4y,no,no,no,cellular,apr,thu,199,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,thu,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +48,blue-collar,married,basic.4y,no,no,yes,cellular,apr,thu,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,apr,thu,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +42,services,married,high.school,unknown,yes,yes,cellular,apr,thu,243,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +52,services,divorced,high.school,no,no,no,cellular,apr,thu,198,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +54,entrepreneur,divorced,unknown,no,no,yes,cellular,apr,thu,461,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,entrepreneur,married,professional.course,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +52,retired,married,basic.4y,unknown,no,no,cellular,apr,thu,204,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +52,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,thu,291,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +27,services,single,university.degree,no,yes,no,cellular,apr,thu,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,services,single,university.degree,no,yes,no,cellular,apr,thu,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,services,single,university.degree,no,yes,no,cellular,apr,thu,384,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +35,admin.,married,university.degree,no,no,no,cellular,apr,thu,250,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,479,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,324,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +44,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,thu,404,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,240,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +43,services,married,high.school,no,no,no,cellular,apr,thu,60,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,403,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,114,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +42,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,188,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,thu,618,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,528,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +27,blue-collar,single,basic.4y,no,no,no,cellular,apr,thu,622,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,583,1,5,1,success,-1.8,93.075,-47.1,1.41,5099.1,yes +44,technician,divorced,professional.course,unknown,yes,no,cellular,apr,thu,18,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +24,management,single,university.degree,no,yes,no,cellular,apr,thu,91,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +54,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,743,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +40,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,283,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,technician,divorced,professional.course,unknown,yes,no,cellular,apr,thu,172,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,39,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +52,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,thu,474,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,apr,thu,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,361,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +24,management,single,university.degree,no,yes,no,cellular,apr,thu,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,blue-collar,married,high.school,unknown,yes,no,cellular,apr,thu,253,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,blue-collar,single,basic.9y,no,unknown,unknown,cellular,apr,thu,350,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +46,technician,married,professional.course,no,yes,no,cellular,apr,thu,309,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +54,management,married,university.degree,no,no,no,cellular,apr,thu,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,77,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,admin.,married,university.degree,no,no,no,cellular,apr,thu,58,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +40,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,thu,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +35,admin.,married,professional.course,no,no,yes,cellular,apr,thu,34,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,191,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,services,divorced,basic.4y,no,no,yes,cellular,apr,thu,1579,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes +40,services,married,high.school,no,yes,no,cellular,apr,thu,228,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +41,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,316,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +43,management,married,unknown,unknown,no,no,cellular,apr,thu,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +43,management,married,unknown,unknown,no,yes,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,495,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +51,blue-collar,married,basic.6y,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,admin.,single,high.school,no,no,no,cellular,apr,thu,617,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +35,admin.,single,high.school,no,yes,no,cellular,apr,thu,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,99,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +59,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,thu,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +39,blue-collar,married,unknown,unknown,no,no,cellular,apr,thu,156,1,9,1,success,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,268,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +31,technician,single,professional.course,no,yes,no,cellular,apr,thu,270,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +56,admin.,married,basic.9y,no,no,no,cellular,apr,thu,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,technician,married,professional.course,no,yes,no,cellular,apr,thu,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,apr,thu,670,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,admin.,single,high.school,no,no,no,cellular,apr,thu,1025,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +46,self-employed,divorced,basic.9y,no,yes,yes,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,admin.,single,high.school,no,yes,yes,cellular,apr,thu,1122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +55,management,married,basic.4y,unknown,no,no,cellular,apr,thu,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +43,management,married,unknown,unknown,no,no,cellular,apr,thu,75,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +26,admin.,single,university.degree,no,unknown,unknown,cellular,apr,thu,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +36,blue-collar,married,unknown,no,yes,yes,cellular,apr,thu,90,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +41,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,884,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,thu,298,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +69,retired,married,unknown,no,no,no,cellular,apr,thu,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +36,blue-collar,married,unknown,no,no,no,cellular,apr,thu,1174,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +27,admin.,single,high.school,no,no,no,cellular,apr,thu,229,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,admin.,single,high.school,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,telephone,apr,thu,272,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +19,student,single,basic.9y,no,no,no,cellular,apr,thu,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,244,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +70,retired,married,unknown,no,yes,no,cellular,apr,thu,346,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +47,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +20,student,single,high.school,no,yes,no,telephone,apr,thu,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,thu,126,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,693,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +33,blue-collar,divorced,basic.9y,unknown,no,no,cellular,apr,thu,129,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,services,married,high.school,no,yes,no,cellular,apr,thu,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,257,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +50,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,1463,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +42,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,thu,76,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +33,technician,married,professional.course,no,no,no,cellular,apr,thu,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +37,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,218,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +34,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,570,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,174,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,blue-collar,single,basic.9y,no,unknown,unknown,cellular,apr,thu,462,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +26,student,single,university.degree,no,yes,no,cellular,apr,thu,76,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,entrepreneur,married,basic.4y,unknown,no,no,cellular,apr,thu,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,admin.,married,professional.course,no,yes,no,cellular,apr,thu,1087,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +44,blue-collar,married,basic.4y,no,yes,no,cellular,apr,thu,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +33,technician,married,professional.course,no,no,yes,cellular,apr,thu,667,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +37,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,62,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,divorced,basic.9y,no,yes,no,cellular,apr,thu,114,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +41,services,married,high.school,no,yes,no,cellular,apr,thu,60,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,563,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +35,unemployed,married,professional.course,no,yes,no,cellular,apr,thu,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +53,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,apr,thu,118,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +27,admin.,single,high.school,no,no,no,cellular,apr,thu,314,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +28,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,thu,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +53,services,divorced,high.school,unknown,no,yes,cellular,apr,thu,653,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +59,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,66,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +40,management,married,basic.6y,no,yes,no,cellular,apr,thu,77,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +24,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,178,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,127,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +33,services,single,basic.9y,no,yes,no,cellular,apr,thu,483,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,308,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +49,management,married,university.degree,no,no,no,cellular,apr,thu,289,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +49,management,married,university.degree,no,yes,no,cellular,apr,thu,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +34,technician,married,university.degree,no,yes,yes,cellular,apr,thu,168,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,technician,married,university.degree,no,no,no,telephone,apr,thu,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +70,retired,married,unknown,no,yes,yes,cellular,apr,thu,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +34,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,thu,249,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +24,admin.,single,university.degree,no,yes,no,telephone,apr,thu,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +29,services,single,basic.9y,unknown,yes,no,cellular,apr,thu,105,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +30,admin.,single,high.school,no,no,no,cellular,apr,thu,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,apr,thu,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,357,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +46,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,thu,285,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +37,admin.,married,professional.course,no,yes,yes,cellular,apr,thu,700,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +45,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,257,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,apr,thu,487,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +48,services,divorced,high.school,unknown,no,no,cellular,apr,thu,235,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +41,services,single,university.degree,no,no,no,cellular,apr,thu,290,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,admin.,married,high.school,no,no,no,cellular,apr,thu,125,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +50,unemployed,married,basic.4y,unknown,yes,no,cellular,apr,thu,241,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +55,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,thu,772,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,thu,657,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +29,admin.,single,high.school,no,yes,yes,cellular,apr,thu,123,3,9,1,success,-1.8,93.075,-47.1,1.41,5099.1,no +37,entrepreneur,married,professional.course,no,no,no,cellular,apr,thu,255,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +46,technician,married,university.degree,no,yes,no,cellular,apr,thu,375,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,386,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +53,management,married,high.school,no,yes,no,cellular,apr,thu,280,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +32,blue-collar,married,basic.4y,no,no,no,cellular,apr,thu,772,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +42,admin.,divorced,high.school,no,no,no,cellular,apr,thu,380,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,apr,thu,302,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +47,admin.,married,basic.6y,unknown,yes,no,cellular,apr,thu,399,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +46,self-employed,divorced,basic.9y,no,yes,no,cellular,apr,thu,453,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,567,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +40,services,single,high.school,no,yes,no,cellular,apr,thu,91,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +37,technician,single,high.school,no,yes,no,cellular,apr,thu,44,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +24,management,single,university.degree,no,no,no,cellular,apr,thu,640,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,services,married,basic.9y,no,yes,no,cellular,apr,thu,417,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,thu,1365,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes +40,admin.,divorced,university.degree,no,yes,no,cellular,apr,thu,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,176,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,single,professional.course,no,unknown,unknown,cellular,apr,thu,71,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +37,technician,single,high.school,no,yes,no,telephone,apr,thu,63,2,999,2,failure,-1.8,93.075,-47.1,1.41,5099.1,no +39,admin.,divorced,high.school,no,yes,yes,cellular,apr,thu,433,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +42,entrepreneur,married,basic.9y,no,no,yes,cellular,apr,thu,127,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +52,retired,married,basic.4y,unknown,yes,yes,cellular,apr,thu,449,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +32,services,single,high.school,no,no,no,cellular,apr,thu,472,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +39,services,single,high.school,no,yes,no,cellular,apr,thu,1007,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +33,technician,married,professional.course,no,no,yes,cellular,apr,thu,383,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +41,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,thu,256,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +36,blue-collar,single,high.school,no,yes,no,telephone,apr,thu,668,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +36,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,211,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +24,blue-collar,married,professional.course,unknown,no,no,cellular,apr,thu,348,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,admin.,married,high.school,no,no,no,cellular,apr,thu,792,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +41,blue-collar,married,high.school,no,no,yes,telephone,apr,thu,55,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +27,admin.,single,high.school,no,no,no,telephone,apr,thu,198,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,technician,single,professional.course,no,no,no,cellular,apr,thu,370,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +50,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,thu,1285,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,single,high.school,no,yes,yes,cellular,apr,thu,48,4,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +41,blue-collar,divorced,basic.4y,no,no,yes,cellular,apr,thu,316,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,technician,divorced,high.school,no,yes,yes,cellular,apr,thu,279,3,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,225,1,5,1,success,-1.8,93.075,-47.1,1.41,5099.1,no +56,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +47,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,admin.,single,high.school,no,yes,no,cellular,apr,thu,804,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +55,admin.,married,university.degree,no,yes,no,cellular,apr,thu,211,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,apr,thu,274,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,apr,thu,399,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +38,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,thu,691,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,426,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +25,student,single,university.degree,no,no,no,cellular,apr,thu,539,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +40,services,married,high.school,no,no,no,cellular,apr,thu,161,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +44,management,married,university.degree,no,yes,no,cellular,apr,thu,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,entrepreneur,divorced,university.degree,no,yes,no,cellular,apr,thu,580,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +50,services,single,basic.6y,unknown,no,no,cellular,apr,thu,119,1,10,1,success,-1.8,93.075,-47.1,1.41,5099.1,no +45,services,divorced,basic.4y,no,no,no,cellular,apr,thu,296,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +40,management,married,basic.6y,no,yes,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +50,services,single,basic.6y,unknown,no,no,cellular,apr,thu,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +50,services,single,basic.6y,unknown,yes,no,cellular,apr,thu,429,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +36,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,466,4,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,married,basic.9y,no,no,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +23,blue-collar,single,basic.4y,no,yes,no,telephone,apr,thu,287,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +43,management,married,university.degree,unknown,no,no,cellular,apr,thu,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,married,basic.9y,no,no,no,cellular,apr,thu,442,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,apr,thu,304,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +55,management,married,basic.4y,unknown,no,no,cellular,apr,thu,594,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,apr,thu,772,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +30,services,married,high.school,no,no,no,cellular,apr,thu,647,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +25,student,married,university.degree,no,yes,yes,telephone,apr,thu,127,7,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,entrepreneur,divorced,high.school,no,no,no,cellular,apr,thu,71,5,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,432,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +59,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,332,2,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,no,no,cellular,apr,thu,829,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,yes,cellular,apr,thu,614,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,797,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,student,single,unknown,unknown,no,no,cellular,apr,thu,102,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +29,blue-collar,single,basic.6y,no,yes,yes,cellular,apr,thu,1410,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,thu,944,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes +31,student,single,unknown,unknown,no,yes,cellular,apr,thu,246,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,234,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +26,student,single,university.degree,no,no,yes,cellular,apr,thu,551,2,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,yes +31,student,single,unknown,unknown,yes,no,cellular,apr,thu,427,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,340,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,no +42,blue-collar,married,basic.4y,no,no,yes,cellular,apr,thu,579,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +47,services,married,basic.9y,no,yes,no,cellular,apr,thu,561,3,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +31,student,single,unknown,unknown,yes,no,cellular,apr,thu,1156,1,999,1,failure,-1.8,93.075,-47.1,1.41,5099.1,yes +39,blue-collar,married,unknown,unknown,yes,no,cellular,apr,thu,307,1,999,0,nonexistent,-1.8,93.075,-47.1,1.41,5099.1,no +43,admin.,single,high.school,no,yes,no,cellular,apr,fri,192,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,entrepreneur,married,university.degree,unknown,no,no,cellular,apr,fri,46,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,management,married,basic.9y,no,no,yes,cellular,apr,fri,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,single,basic.9y,unknown,yes,no,telephone,apr,fri,109,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,35,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,single,high.school,no,no,no,cellular,apr,fri,377,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,81,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,professional.course,no,no,no,cellular,apr,fri,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,single,high.school,no,yes,no,cellular,apr,fri,141,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,apr,fri,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,282,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,married,university.degree,unknown,no,no,cellular,apr,fri,226,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.4y,no,no,yes,cellular,apr,fri,125,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,divorced,high.school,no,no,no,cellular,apr,fri,620,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,apr,fri,141,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,557,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,50,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,high.school,unknown,yes,no,cellular,apr,fri,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,434,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,180,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,fri,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +45,management,married,university.degree,no,yes,no,cellular,apr,fri,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,technician,single,university.degree,no,no,no,cellular,apr,fri,118,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,admin.,divorced,unknown,no,no,no,cellular,apr,fri,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,233,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,management,married,university.degree,no,yes,yes,cellular,apr,fri,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,single,high.school,no,yes,no,cellular,apr,fri,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,entrepreneur,married,basic.9y,no,yes,yes,cellular,apr,fri,52,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,self-employed,married,basic.9y,no,no,no,cellular,apr,fri,112,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,single,high.school,no,yes,no,cellular,apr,fri,392,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,113,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,student,married,university.degree,unknown,yes,no,telephone,apr,fri,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,married,university.degree,no,no,no,cellular,apr,fri,85,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,515,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,services,married,high.school,unknown,no,no,cellular,apr,fri,402,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +54,services,married,high.school,unknown,no,no,cellular,apr,fri,408,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,divorced,basic.9y,no,yes,no,cellular,apr,fri,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,student,married,university.degree,unknown,no,no,cellular,apr,fri,224,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,married,high.school,unknown,yes,yes,cellular,apr,fri,294,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,420,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,student,married,university.degree,unknown,yes,no,cellular,apr,fri,346,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,basic.4y,no,no,no,cellular,apr,fri,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,married,high.school,no,no,no,cellular,apr,fri,238,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,basic.4y,no,yes,no,cellular,apr,fri,548,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +59,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,416,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,apr,fri,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,599,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,210,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,fri,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,married,high.school,no,yes,yes,cellular,apr,fri,329,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,self-employed,married,basic.4y,unknown,yes,no,cellular,apr,fri,236,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,management,single,university.degree,no,no,no,cellular,apr,fri,82,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,management,married,university.degree,no,yes,no,cellular,apr,fri,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,612,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,basic.6y,no,yes,no,cellular,apr,fri,177,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,fri,678,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +43,blue-collar,married,basic.6y,no,no,yes,cellular,apr,fri,150,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,199,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,112,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,basic.6y,no,yes,no,cellular,apr,fri,704,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,372,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,486,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,apr,fri,709,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +50,unemployed,married,basic.4y,unknown,yes,no,cellular,apr,fri,71,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,462,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,divorced,high.school,no,no,no,cellular,apr,fri,156,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,married,university.degree,no,no,no,cellular,apr,fri,203,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,77,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,486,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,high.school,no,yes,no,cellular,apr,fri,341,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,single,high.school,no,yes,no,cellular,apr,fri,267,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,single,high.school,no,no,no,cellular,apr,fri,1017,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +41,unemployed,married,basic.9y,unknown,yes,no,telephone,apr,fri,246,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,services,married,basic.9y,unknown,yes,no,cellular,apr,fri,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,self-employed,married,basic.9y,no,yes,no,cellular,apr,fri,313,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,professional.course,no,yes,no,cellular,apr,fri,377,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,135,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,services,single,high.school,unknown,yes,no,cellular,apr,fri,451,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,university.degree,no,yes,no,cellular,apr,fri,351,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,apr,fri,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,university.degree,no,yes,no,cellular,apr,fri,456,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,apr,fri,306,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,admin.,single,high.school,no,no,no,cellular,apr,fri,178,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,unknown,no,yes,cellular,apr,fri,76,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,married,professional.course,no,no,no,cellular,apr,fri,292,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,divorced,basic.4y,no,yes,no,cellular,apr,fri,406,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,239,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,514,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,admin.,single,high.school,no,no,no,telephone,apr,fri,51,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,apr,fri,1095,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +44,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,468,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,122,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,fri,452,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,technician,divorced,professional.course,no,no,no,cellular,apr,fri,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,married,basic.9y,no,yes,no,cellular,apr,fri,196,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,married,high.school,no,yes,no,cellular,apr,fri,88,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,university.degree,no,yes,no,cellular,apr,fri,31,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,fri,268,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,management,married,high.school,unknown,yes,no,cellular,apr,fri,143,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,management,married,university.degree,no,yes,no,cellular,apr,fri,111,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,357,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,services,married,high.school,no,no,no,cellular,apr,fri,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,400,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,married,unknown,no,no,no,cellular,apr,fri,952,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +34,housemaid,divorced,university.degree,no,yes,yes,cellular,apr,fri,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,832,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,fri,251,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,303,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,married,high.school,no,yes,no,cellular,apr,fri,101,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,management,married,university.degree,unknown,no,no,cellular,apr,fri,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,113,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,management,married,university.degree,unknown,yes,no,cellular,apr,fri,268,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,unknown,no,no,no,cellular,apr,fri,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,admin.,single,university.degree,no,yes,no,cellular,apr,fri,237,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,married,high.school,unknown,no,yes,cellular,apr,fri,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,management,married,university.degree,unknown,no,no,cellular,apr,fri,981,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,retired,married,basic.4y,no,yes,no,cellular,apr,fri,531,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,management,married,university.degree,no,yes,no,cellular,apr,fri,58,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,single,basic.6y,unknown,no,yes,cellular,apr,fri,351,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,entrepreneur,married,basic.9y,no,no,no,cellular,apr,fri,299,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,69,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.9y,unknown,yes,yes,cellular,apr,fri,418,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,351,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,divorced,high.school,no,no,no,cellular,apr,fri,471,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,47,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,264,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,divorced,high.school,no,yes,yes,cellular,apr,fri,57,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,apr,fri,183,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,single,basic.6y,unknown,no,no,cellular,apr,fri,139,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +24,services,single,high.school,no,yes,no,cellular,apr,fri,515,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,single,basic.6y,unknown,no,no,cellular,apr,fri,289,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,apr,fri,132,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,divorced,basic.9y,no,yes,yes,cellular,apr,fri,83,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,840,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +44,blue-collar,married,high.school,no,yes,no,cellular,apr,fri,921,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,management,married,university.degree,no,no,no,cellular,apr,fri,519,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,yes,cellular,apr,fri,299,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,high.school,no,yes,no,cellular,apr,fri,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,apr,fri,73,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,unknown,yes,yes,cellular,apr,fri,307,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,1311,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +24,technician,divorced,professional.course,no,yes,no,cellular,apr,fri,107,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,married,high.school,no,yes,no,cellular,apr,fri,193,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,248,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,divorced,unknown,no,no,no,cellular,apr,fri,386,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +24,technician,divorced,professional.course,no,no,no,cellular,apr,fri,332,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,married,high.school,unknown,unknown,unknown,cellular,apr,fri,499,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,unemployed,married,basic.9y,unknown,yes,no,cellular,apr,fri,71,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,management,married,university.degree,no,yes,yes,cellular,apr,fri,362,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,181,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,high.school,no,no,no,cellular,apr,fri,161,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,high.school,no,no,no,cellular,apr,fri,997,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +38,technician,single,high.school,no,yes,no,cellular,apr,fri,183,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,self-employed,divorced,university.degree,unknown,no,no,telephone,apr,fri,42,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,married,university.degree,no,unknown,unknown,cellular,apr,fri,462,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,fri,74,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,management,married,high.school,no,unknown,unknown,cellular,apr,fri,234,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,management,married,high.school,no,no,yes,cellular,apr,fri,245,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,technician,single,high.school,no,yes,no,cellular,apr,fri,218,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,574,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +19,student,single,unknown,no,yes,no,telephone,apr,fri,1161,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,services,married,basic.6y,no,no,yes,cellular,apr,fri,754,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,professional.course,no,no,no,cellular,apr,fri,609,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,apr,fri,235,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,university.degree,no,no,no,cellular,apr,fri,146,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,high.school,no,no,no,cellular,apr,fri,518,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,management,married,professional.course,no,yes,no,cellular,apr,fri,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,high.school,unknown,unknown,unknown,cellular,apr,fri,239,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,admin.,married,high.school,no,yes,yes,cellular,apr,fri,218,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,single,university.degree,no,no,no,telephone,apr,fri,52,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,single,university.degree,no,no,no,telephone,apr,fri,82,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,no,no,cellular,apr,fri,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,apr,fri,68,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,services,single,high.school,no,no,no,cellular,apr,fri,707,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,management,married,university.degree,no,yes,no,cellular,apr,fri,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,technician,married,professional.course,no,yes,no,cellular,apr,fri,51,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +47,technician,divorced,university.degree,no,no,no,cellular,apr,fri,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,unknown,no,no,no,cellular,apr,fri,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,university.degree,no,yes,no,telephone,apr,fri,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,no,no,cellular,apr,fri,108,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,services,married,high.school,no,yes,no,telephone,apr,fri,137,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,9,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,married,professional.course,unknown,no,no,cellular,apr,fri,92,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,882,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +48,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,576,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,admin.,married,high.school,no,no,no,cellular,apr,fri,191,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,telephone,apr,fri,777,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,apr,fri,161,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,basic.9y,no,yes,no,cellular,apr,fri,329,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,basic.4y,no,no,no,cellular,apr,fri,155,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,basic.4y,no,no,yes,cellular,apr,fri,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,apr,fri,76,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,1007,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +33,admin.,single,university.degree,no,yes,no,cellular,apr,fri,382,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,496,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,services,married,high.school,no,no,no,cellular,apr,fri,464,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,no,yes,cellular,apr,fri,82,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,343,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,entrepreneur,married,basic.9y,no,no,no,cellular,apr,fri,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,university.degree,unknown,no,yes,cellular,apr,fri,526,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +37,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,fri,43,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,services,married,high.school,unknown,yes,no,cellular,apr,fri,45,7,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,married,professional.course,unknown,no,no,cellular,apr,fri,1624,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +33,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,95,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,no,yes,cellular,apr,fri,175,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,208,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,services,married,high.school,unknown,yes,no,cellular,apr,fri,87,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,basic.9y,no,no,yes,telephone,apr,fri,26,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,342,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,telephone,apr,fri,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,university.degree,no,no,yes,cellular,apr,fri,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,technician,single,university.degree,no,yes,no,cellular,apr,fri,73,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,145,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,high.school,no,yes,yes,cellular,apr,fri,171,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,married,professional.course,no,yes,no,cellular,apr,fri,372,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,153,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,self-employed,married,university.degree,no,no,yes,cellular,apr,fri,138,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,175,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,professional.course,unknown,no,no,cellular,apr,fri,247,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,professional.course,no,no,yes,cellular,apr,fri,404,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +26,technician,single,professional.course,no,yes,no,cellular,apr,fri,362,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,services,divorced,basic.6y,no,no,no,cellular,apr,fri,286,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,married,professional.course,no,no,no,cellular,apr,fri,316,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,fri,251,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,professional.course,unknown,no,no,cellular,apr,fri,370,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,admin.,married,university.degree,no,yes,yes,cellular,apr,fri,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,admin.,married,university.degree,no,no,no,cellular,apr,fri,324,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,university.degree,no,yes,yes,cellular,apr,fri,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,apr,fri,191,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,367,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +43,management,married,university.degree,unknown,yes,no,telephone,apr,fri,141,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,fri,200,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,unemployed,single,basic.9y,no,yes,no,cellular,apr,fri,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,self-employed,married,basic.9y,no,no,no,cellular,apr,fri,214,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,professional.course,no,no,no,cellular,apr,fri,122,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,649,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,blue-collar,single,basic.9y,no,yes,no,cellular,apr,fri,14,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,unknown,unknown,cellular,apr,fri,397,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,retired,married,basic.4y,no,yes,no,cellular,apr,fri,263,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,yes,cellular,apr,fri,72,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,management,married,university.degree,no,no,no,cellular,apr,fri,433,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,407,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,216,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,admin.,married,high.school,no,yes,no,cellular,apr,fri,33,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,unemployed,single,basic.9y,no,yes,no,cellular,apr,fri,55,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,single,basic.9y,no,no,no,cellular,apr,fri,419,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,married,high.school,no,yes,no,cellular,apr,fri,113,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,157,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,management,married,university.degree,no,yes,yes,cellular,apr,fri,40,8,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,single,professional.course,no,yes,no,cellular,apr,fri,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,married,basic.6y,no,yes,no,cellular,apr,fri,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,no,yes,yes,cellular,apr,fri,637,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,yes,no,cellular,apr,fri,317,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,apr,fri,294,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,married,university.degree,no,no,yes,cellular,apr,fri,77,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,technician,married,university.degree,no,yes,no,cellular,apr,fri,492,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,70,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,retired,married,high.school,no,no,no,cellular,apr,fri,401,1,8,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,238,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,married,university.degree,no,yes,yes,telephone,apr,fri,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +35,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,fri,212,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,high.school,no,yes,no,cellular,apr,fri,36,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,611,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,359,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,high.school,no,no,no,cellular,apr,fri,280,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,divorced,high.school,no,yes,yes,cellular,apr,fri,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,654,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +58,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,834,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,single,unknown,no,no,no,cellular,apr,fri,345,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes +39,blue-collar,married,unknown,no,no,no,cellular,apr,fri,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +22,admin.,married,high.school,no,yes,yes,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,single,professional.course,no,yes,yes,cellular,apr,fri,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,self-employed,married,basic.6y,no,no,no,cellular,apr,fri,211,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,married,professional.course,no,no,no,cellular,apr,fri,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,apr,fri,1080,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +38,technician,single,university.degree,no,no,no,cellular,apr,fri,301,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,unknown,unknown,no,no,cellular,apr,fri,203,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,fri,19,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,fri,182,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,apr,fri,401,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,237,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,unknown,unknown,cellular,apr,fri,198,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,unemployed,divorced,high.school,no,yes,yes,cellular,apr,fri,715,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +30,technician,single,professional.course,no,yes,no,cellular,apr,fri,346,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,apr,fri,508,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,divorced,professional.course,no,yes,no,cellular,apr,fri,115,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,high.school,no,no,yes,cellular,apr,fri,463,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,high.school,no,yes,yes,telephone,apr,fri,73,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,self-employed,married,university.degree,no,no,no,cellular,apr,fri,775,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,apr,fri,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,fri,100,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,single,unknown,no,no,no,cellular,apr,fri,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,unknown,no,no,no,cellular,apr,fri,231,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,management,married,basic.9y,no,no,no,cellular,apr,fri,727,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,married,unknown,no,no,no,cellular,apr,fri,42,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,single,high.school,no,no,no,cellular,apr,fri,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,single,unknown,no,yes,no,cellular,apr,fri,130,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,married,university.degree,no,no,no,cellular,apr,fri,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,402,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,apr,fri,297,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,apr,fri,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,unemployed,married,basic.9y,unknown,no,no,cellular,apr,fri,135,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,blue-collar,unknown,basic.4y,no,no,no,cellular,apr,fri,422,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,blue-collar,single,basic.9y,unknown,no,no,cellular,apr,fri,22,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,married,university.degree,no,yes,no,cellular,apr,fri,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +44,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,1034,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,married,high.school,no,yes,no,cellular,apr,fri,326,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,fri,91,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,services,single,high.school,unknown,yes,no,telephone,apr,fri,40,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,management,single,university.degree,unknown,yes,yes,cellular,apr,fri,333,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,university.degree,no,no,no,cellular,apr,fri,476,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +33,admin.,single,university.degree,no,no,no,cellular,apr,fri,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,apr,fri,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +45,blue-collar,married,basic.9y,no,no,no,cellular,apr,fri,99,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,240,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,technician,married,basic.6y,no,no,yes,cellular,apr,fri,158,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,365,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,technician,married,professional.course,no,no,no,cellular,apr,fri,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,divorced,high.school,no,no,no,cellular,apr,fri,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,student,single,professional.course,no,yes,no,cellular,apr,fri,96,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +22,admin.,single,university.degree,no,no,no,cellular,apr,fri,149,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +41,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,412,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +51,housemaid,divorced,high.school,unknown,no,no,cellular,apr,fri,145,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,management,married,professional.course,no,no,no,cellular,apr,fri,65,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,housemaid,divorced,university.degree,no,unknown,unknown,cellular,apr,fri,182,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,114,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,194,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +71,retired,single,unknown,no,yes,no,cellular,apr,fri,188,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +47,admin.,married,university.degree,unknown,yes,yes,cellular,apr,fri,126,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,technician,married,professional.course,no,no,no,cellular,apr,fri,93,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,university.degree,no,no,no,cellular,apr,fri,772,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +28,admin.,single,university.degree,no,no,no,cellular,apr,fri,69,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,divorced,high.school,no,no,no,cellular,apr,fri,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,admin.,single,university.degree,no,yes,no,cellular,apr,fri,395,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,admin.,single,university.degree,no,no,no,cellular,apr,fri,815,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,147,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,admin.,married,basic.4y,no,yes,no,cellular,apr,fri,224,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,150,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +25,student,married,university.degree,no,no,yes,cellular,apr,fri,74,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,single,high.school,no,no,no,cellular,apr,fri,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,married,university.degree,no,yes,no,cellular,apr,fri,771,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,housemaid,married,university.degree,no,yes,no,telephone,apr,fri,460,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +49,services,divorced,high.school,no,no,no,cellular,apr,fri,300,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,apr,fri,17,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,self-employed,single,university.degree,no,yes,no,cellular,apr,fri,254,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,management,married,professional.course,no,yes,no,cellular,apr,fri,239,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,apr,fri,73,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,services,single,high.school,no,no,no,cellular,apr,fri,473,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,apr,fri,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +59,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,128,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,apr,fri,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,services,married,high.school,no,no,no,cellular,apr,fri,52,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,unemployed,married,basic.9y,unknown,yes,no,cellular,apr,fri,153,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,unemployed,married,high.school,no,yes,no,cellular,apr,fri,370,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,divorced,university.degree,no,no,yes,cellular,apr,fri,642,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,married,professional.course,unknown,no,no,cellular,apr,fri,232,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,student,single,unknown,no,yes,no,cellular,apr,fri,170,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,333,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,apr,fri,413,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.4y,no,no,yes,cellular,apr,fri,163,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.9y,unknown,no,no,telephone,apr,fri,599,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,married,high.school,no,no,no,cellular,apr,fri,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,professional.course,unknown,no,no,cellular,apr,fri,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,technician,single,university.degree,no,no,no,cellular,apr,fri,232,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +75,housemaid,divorced,basic.4y,no,no,no,cellular,apr,fri,95,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,married,professional.course,no,no,no,cellular,apr,fri,181,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,married,university.degree,no,yes,no,cellular,apr,fri,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +30,services,single,professional.course,no,yes,no,cellular,apr,fri,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,single,university.degree,no,no,no,cellular,apr,fri,115,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,apr,fri,598,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,apr,fri,323,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,apr,fri,160,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,services,married,high.school,no,no,no,cellular,apr,fri,134,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,retired,married,basic.6y,unknown,no,no,cellular,apr,fri,203,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,fri,541,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,single,basic.6y,unknown,no,yes,cellular,apr,fri,266,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,technician,married,unknown,no,no,no,cellular,apr,fri,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +33,admin.,married,high.school,unknown,no,no,cellular,apr,fri,220,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,no,no,cellular,apr,fri,606,2,1,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,single,high.school,no,no,no,cellular,apr,fri,105,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +26,technician,single,professional.course,no,yes,no,cellular,apr,fri,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +60,admin.,married,university.degree,no,no,no,cellular,apr,fri,246,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,entrepreneur,married,basic.4y,no,yes,no,cellular,apr,fri,1130,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,management,married,university.degree,no,yes,no,cellular,apr,fri,949,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +44,services,single,high.school,no,no,no,cellular,apr,fri,276,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,housemaid,married,basic.6y,unknown,unknown,unknown,cellular,apr,fri,2926,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +49,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,fri,88,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,single,basic.6y,unknown,yes,no,cellular,apr,fri,155,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,services,married,high.school,no,no,no,cellular,apr,fri,185,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,single,university.degree,no,no,no,cellular,apr,fri,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,fri,273,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,management,married,university.degree,no,no,no,cellular,apr,fri,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,single,high.school,no,no,no,cellular,apr,fri,166,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +24,services,single,high.school,no,no,yes,cellular,apr,fri,1426,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,married,basic.9y,no,yes,yes,cellular,apr,fri,795,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +49,admin.,single,basic.6y,no,yes,yes,cellular,apr,fri,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,yes,yes,cellular,apr,fri,398,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,services,married,high.school,no,no,yes,cellular,apr,fri,340,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,308,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,218,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,divorced,high.school,no,yes,no,cellular,apr,fri,647,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,high.school,no,no,yes,cellular,apr,fri,57,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,student,single,professional.course,no,no,yes,cellular,apr,fri,170,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,666,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,married,basic.4y,no,no,yes,cellular,apr,fri,244,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,apr,fri,146,2,5,2,success,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,divorced,high.school,no,no,yes,telephone,apr,fri,318,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,fri,278,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,apr,fri,426,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.6y,no,no,yes,cellular,apr,fri,229,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,single,high.school,no,yes,no,cellular,apr,fri,74,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.9y,no,no,yes,cellular,apr,fri,1184,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,single,unknown,unknown,yes,no,cellular,apr,fri,464,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,apr,fri,334,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,fri,61,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,fri,2053,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,married,professional.course,no,no,yes,cellular,apr,fri,69,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,high.school,no,no,no,cellular,apr,fri,277,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,fri,1064,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,single,basic.4y,no,unknown,unknown,cellular,apr,fri,163,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,services,divorced,high.school,no,yes,no,telephone,apr,fri,501,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,apr,fri,245,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,entrepreneur,single,university.degree,no,yes,no,cellular,apr,fri,738,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,retired,married,high.school,unknown,yes,no,cellular,apr,fri,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,335,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,divorced,basic.4y,no,no,no,cellular,apr,fri,204,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,management,divorced,professional.course,no,yes,no,cellular,apr,fri,140,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,professional.course,unknown,yes,no,cellular,apr,fri,446,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,single,unknown,no,yes,no,cellular,apr,fri,164,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,single,high.school,no,no,no,cellular,apr,fri,151,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,married,professional.course,no,yes,yes,cellular,apr,fri,65,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,174,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,married,university.degree,no,yes,no,cellular,apr,fri,489,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,entrepreneur,single,university.degree,no,no,no,cellular,apr,fri,758,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,married,high.school,no,no,no,cellular,apr,fri,469,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,unemployed,single,basic.9y,no,no,no,cellular,apr,fri,48,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,services,married,high.school,no,no,no,cellular,apr,fri,368,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,single,university.degree,no,no,no,telephone,apr,fri,48,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,single,unknown,no,no,no,cellular,apr,fri,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,apr,fri,342,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,management,married,university.degree,unknown,no,no,cellular,apr,fri,183,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,services,single,high.school,no,yes,no,cellular,apr,fri,73,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,unknown,no,no,cellular,apr,fri,315,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,admin.,single,university.degree,no,no,no,telephone,apr,fri,394,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +45,admin.,married,high.school,no,yes,yes,cellular,apr,fri,636,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +22,student,single,high.school,no,yes,no,cellular,apr,fri,14,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,divorced,high.school,no,no,no,telephone,apr,fri,320,3,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes +26,technician,single,professional.course,no,yes,no,telephone,apr,fri,100,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,divorced,high.school,no,yes,yes,cellular,apr,fri,238,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,professional.course,no,no,no,cellular,apr,fri,317,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,single,university.degree,no,yes,no,cellular,apr,fri,271,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,admin.,single,high.school,no,yes,no,cellular,apr,fri,202,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,basic.6y,no,yes,no,cellular,apr,fri,99,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,unknown,unknown,yes,no,cellular,apr,fri,50,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,divorced,basic.9y,no,yes,no,cellular,apr,fri,321,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,apr,fri,202,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,no,yes,cellular,apr,fri,177,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,divorced,unknown,no,no,no,cellular,apr,fri,211,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +22,admin.,married,high.school,no,no,yes,cellular,apr,fri,108,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,672,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,fri,225,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,single,university.degree,no,no,no,cellular,apr,fri,952,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,unknown,no,no,no,cellular,apr,fri,119,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,management,divorced,university.degree,no,no,yes,cellular,apr,fri,131,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,apr,fri,171,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,professional.course,no,no,yes,cellular,apr,fri,239,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,high.school,no,no,no,cellular,apr,fri,193,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,single,high.school,no,no,no,cellular,apr,fri,544,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,admin.,divorced,high.school,no,no,yes,cellular,apr,fri,2139,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +60,retired,married,basic.4y,unknown,yes,no,cellular,apr,fri,314,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +41,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,fri,1038,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,self-employed,married,university.degree,no,no,no,cellular,apr,fri,625,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,student,single,high.school,no,yes,no,cellular,apr,fri,756,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,no,no,no,cellular,apr,fri,191,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,fri,1013,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,divorced,high.school,no,no,no,telephone,apr,fri,392,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,technician,married,unknown,no,no,no,cellular,apr,fri,119,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,basic.6y,no,no,no,cellular,apr,fri,324,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,427,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,divorced,professional.course,no,yes,yes,cellular,apr,fri,180,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,apr,fri,200,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,divorced,university.degree,no,yes,no,cellular,apr,fri,660,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,single,unknown,no,no,no,telephone,apr,fri,541,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +35,blue-collar,married,professional.course,no,yes,yes,telephone,apr,fri,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,married,high.school,no,no,no,cellular,apr,fri,291,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,no,yes,cellular,apr,fri,72,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,fri,184,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,apr,fri,479,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,196,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,single,professional.course,no,no,no,cellular,apr,mon,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,158,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,12,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,yes,yes,cellular,apr,mon,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,services,married,high.school,no,no,no,cellular,apr,mon,95,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,admin.,married,high.school,no,no,no,cellular,apr,mon,9,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +58,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,483,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,self-employed,single,university.degree,no,yes,yes,cellular,apr,mon,152,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,single,professional.course,unknown,yes,no,cellular,apr,mon,415,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,yes,cellular,apr,mon,206,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +46,entrepreneur,married,basic.4y,unknown,yes,no,cellular,apr,mon,630,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +60,retired,married,basic.6y,no,yes,yes,telephone,apr,mon,384,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,married,professional.course,no,no,no,cellular,apr,mon,322,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.4y,no,no,yes,cellular,apr,mon,287,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,married,high.school,unknown,yes,no,cellular,apr,mon,184,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,mon,438,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,services,single,high.school,no,no,no,cellular,apr,mon,1332,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,management,married,university.degree,unknown,no,no,cellular,apr,mon,397,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,entrepreneur,married,university.degree,unknown,no,no,cellular,apr,mon,774,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,services,married,high.school,no,no,no,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,self-employed,divorced,university.degree,no,yes,no,telephone,apr,mon,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,single,professional.course,no,yes,no,cellular,apr,mon,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,12,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +68,retired,married,high.school,no,no,yes,cellular,apr,mon,263,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,entrepreneur,married,basic.4y,no,no,no,cellular,apr,mon,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,311,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,mon,88,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,married,university.degree,no,no,no,cellular,apr,mon,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,single,high.school,no,yes,no,cellular,apr,mon,1202,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +47,blue-collar,married,basic.9y,no,yes,yes,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,divorced,basic.9y,no,no,no,cellular,apr,mon,105,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,student,single,university.degree,no,yes,yes,telephone,apr,mon,37,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,married,high.school,unknown,yes,no,cellular,apr,mon,79,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,services,married,high.school,no,yes,no,cellular,apr,mon,14,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,apr,mon,506,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,management,married,university.degree,no,no,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,management,single,high.school,no,no,no,cellular,apr,mon,150,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,divorced,basic.9y,no,yes,yes,cellular,apr,mon,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,mon,142,12,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,married,high.school,no,no,no,cellular,apr,mon,1112,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +45,blue-collar,married,basic.4y,no,yes,no,telephone,apr,mon,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,divorced,basic.6y,no,yes,no,cellular,apr,mon,339,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,divorced,high.school,no,no,no,cellular,apr,mon,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,retired,married,high.school,no,yes,no,cellular,apr,mon,525,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,374,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,single,basic.4y,no,no,no,cellular,apr,mon,210,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,unemployed,single,professional.course,unknown,yes,no,cellular,apr,mon,533,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +24,technician,single,high.school,no,yes,no,cellular,apr,mon,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,apr,mon,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,single,professional.course,unknown,yes,yes,telephone,apr,mon,73,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,services,single,basic.6y,no,yes,no,cellular,apr,mon,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,married,professional.course,no,yes,no,cellular,apr,mon,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,186,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,married,basic.9y,no,no,no,telephone,apr,mon,406,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,admin.,married,high.school,no,no,no,cellular,apr,mon,566,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,223,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,421,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,83,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,self-employed,divorced,university.degree,no,yes,no,cellular,apr,mon,227,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,860,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +29,technician,single,university.degree,no,no,no,cellular,apr,mon,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,207,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,entrepreneur,married,university.degree,unknown,yes,no,cellular,apr,mon,68,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,high.school,unknown,yes,yes,cellular,apr,mon,62,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,professional.course,no,no,no,cellular,apr,mon,17,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,single,university.degree,no,no,no,cellular,apr,mon,89,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,married,high.school,unknown,no,no,cellular,apr,mon,267,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,services,single,high.school,no,no,no,cellular,apr,mon,386,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,193,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +59,self-employed,married,professional.course,no,unknown,unknown,cellular,apr,mon,69,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,divorced,high.school,no,unknown,unknown,cellular,apr,mon,214,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,high.school,no,no,no,cellular,apr,mon,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,1550,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +42,blue-collar,single,unknown,unknown,no,no,cellular,apr,mon,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,29,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,married,high.school,unknown,no,no,telephone,apr,mon,121,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,married,high.school,no,yes,no,cellular,apr,mon,61,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,high.school,no,yes,yes,cellular,apr,mon,234,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,apr,mon,185,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,399,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,19,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,single,basic.9y,no,yes,yes,cellular,apr,mon,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,technician,divorced,professional.course,unknown,no,no,cellular,apr,mon,131,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,services,married,high.school,no,no,no,cellular,apr,mon,26,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,143,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,apr,mon,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,386,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,single,university.degree,no,yes,no,cellular,apr,mon,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,201,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,428,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,128,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,student,single,high.school,no,yes,no,cellular,apr,mon,7,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,married,unknown,no,yes,no,cellular,apr,mon,466,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,professional.course,no,yes,no,cellular,apr,mon,304,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,married,professional.course,no,yes,no,cellular,apr,mon,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,yes,cellular,apr,mon,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,no,cellular,apr,mon,90,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,apr,mon,122,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,no,cellular,apr,mon,365,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,apr,mon,285,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,apr,mon,275,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,7,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +73,retired,married,basic.4y,no,yes,no,cellular,apr,mon,158,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,high.school,no,yes,no,cellular,apr,mon,178,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,professional.course,no,yes,no,cellular,apr,mon,199,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,63,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,65,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,retired,divorced,university.degree,no,yes,no,cellular,apr,mon,199,5,9,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,188,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,telephone,apr,mon,534,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,no,yes,no,cellular,apr,mon,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,130,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,no,no,no,cellular,apr,mon,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,technician,single,university.degree,no,yes,no,cellular,apr,mon,210,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,admin.,single,university.degree,no,yes,no,cellular,apr,mon,670,4,11,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes +53,services,married,high.school,no,yes,no,cellular,apr,mon,62,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,single,university.degree,unknown,no,no,cellular,apr,mon,712,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,no,no,no,cellular,apr,mon,401,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,high.school,no,yes,no,cellular,apr,mon,59,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,university.degree,no,yes,no,cellular,apr,mon,17,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,services,married,high.school,no,no,no,cellular,apr,mon,319,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,single,high.school,no,yes,no,cellular,apr,mon,142,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,married,professional.course,no,yes,yes,cellular,apr,mon,314,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,management,married,university.degree,unknown,no,no,cellular,apr,mon,28,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,single,high.school,no,yes,no,cellular,apr,mon,133,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,317,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,basic.9y,no,yes,no,cellular,apr,mon,79,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,single,high.school,no,yes,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +41,blue-collar,divorced,high.school,unknown,yes,no,cellular,apr,mon,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,technician,single,university.degree,no,no,yes,cellular,apr,mon,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,49,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,apr,mon,277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,9,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,professional.course,unknown,yes,no,cellular,apr,mon,698,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,entrepreneur,single,university.degree,no,no,yes,cellular,apr,mon,7,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,no,yes,no,cellular,apr,mon,13,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,apr,mon,714,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,university.degree,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,single,high.school,no,no,no,cellular,apr,mon,785,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +57,management,divorced,university.degree,unknown,no,no,cellular,apr,mon,322,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,married,high.school,no,no,no,cellular,apr,mon,658,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,98,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,management,single,university.degree,unknown,no,yes,cellular,apr,mon,144,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,high.school,no,yes,yes,cellular,apr,mon,42,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,services,married,high.school,no,yes,no,cellular,apr,mon,12,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,high.school,no,yes,yes,cellular,apr,mon,254,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,9,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,single,high.school,no,no,no,cellular,apr,mon,123,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,married,unknown,no,yes,yes,cellular,apr,mon,207,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,student,single,university.degree,no,yes,no,cellular,apr,mon,712,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,274,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,high.school,no,no,no,cellular,apr,mon,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,divorced,basic.6y,no,yes,yes,cellular,apr,mon,37,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,high.school,unknown,yes,no,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,high.school,no,no,no,cellular,apr,mon,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,admin.,married,high.school,no,yes,yes,telephone,apr,mon,24,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,services,married,high.school,no,yes,yes,cellular,apr,mon,18,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,divorced,university.degree,no,yes,no,cellular,apr,mon,238,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,management,married,university.degree,no,yes,yes,cellular,apr,mon,163,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,high.school,no,yes,yes,cellular,apr,mon,982,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,divorced,basic.9y,no,no,no,cellular,apr,mon,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,management,married,university.degree,no,no,no,cellular,apr,mon,450,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,management,married,university.degree,no,yes,yes,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +42,services,married,high.school,no,yes,no,cellular,apr,mon,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,high.school,no,yes,no,cellular,apr,mon,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,90,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +68,retired,married,high.school,no,yes,no,cellular,apr,mon,194,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,technician,single,professional.course,no,yes,no,cellular,apr,mon,250,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,single,university.degree,no,yes,no,cellular,apr,mon,79,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,single,professional.course,no,yes,yes,cellular,apr,mon,538,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,yes,yes,cellular,apr,mon,21,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,335,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,technician,divorced,university.degree,no,no,no,cellular,apr,mon,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,management,divorced,university.degree,no,no,yes,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,retired,single,high.school,no,yes,no,cellular,apr,mon,166,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,divorced,high.school,unknown,yes,yes,cellular,apr,mon,92,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,high.school,unknown,no,no,cellular,apr,mon,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,management,single,high.school,no,yes,no,cellular,apr,mon,508,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,apr,mon,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,management,married,university.degree,no,no,no,cellular,apr,mon,51,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +58,services,married,basic.6y,no,yes,no,cellular,apr,mon,41,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,technician,single,professional.course,no,unknown,unknown,cellular,apr,mon,80,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,university.degree,no,unknown,unknown,cellular,apr,mon,59,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +49,unemployed,married,basic.6y,unknown,no,no,cellular,apr,mon,68,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,management,divorced,university.degree,no,no,no,cellular,apr,mon,611,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,entrepreneur,single,university.degree,no,yes,yes,cellular,apr,mon,45,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +26,admin.,single,high.school,no,no,no,telephone,apr,mon,216,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +35,services,single,professional.course,unknown,no,no,cellular,apr,mon,204,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,apr,mon,92,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,high.school,unknown,no,no,cellular,apr,mon,11,5,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,divorced,university.degree,no,no,yes,cellular,apr,mon,473,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,basic.9y,no,no,no,cellular,apr,mon,110,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,87,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,92,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,entrepreneur,single,university.degree,no,yes,no,cellular,apr,mon,720,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +43,services,single,university.degree,no,yes,no,cellular,apr,mon,178,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,84,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,professional.course,no,no,yes,cellular,apr,mon,123,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,single,basic.9y,no,yes,no,cellular,apr,mon,16,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,basic.9y,no,no,no,cellular,apr,mon,617,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,single,high.school,unknown,no,yes,cellular,apr,mon,76,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,no,no,telephone,apr,mon,205,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,apr,mon,62,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,apr,mon,33,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,no,no,cellular,apr,mon,246,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +52,services,married,basic.6y,no,no,yes,cellular,apr,mon,44,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,self-employed,married,university.degree,no,no,no,cellular,apr,mon,83,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,unknown,unknown,cellular,apr,mon,213,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +26,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,586,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +43,management,married,university.degree,no,no,yes,cellular,apr,mon,443,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,basic.9y,unknown,yes,no,cellular,apr,mon,201,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,divorced,high.school,no,no,no,cellular,apr,mon,379,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,divorced,high.school,no,no,no,cellular,apr,mon,330,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,admin.,divorced,university.degree,no,yes,no,cellular,apr,mon,40,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +21,services,single,basic.9y,no,no,no,cellular,apr,mon,293,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,240,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,married,basic.4y,no,unknown,unknown,cellular,apr,mon,130,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,single,university.degree,no,no,no,cellular,apr,mon,190,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,divorced,professional.course,no,no,no,cellular,apr,mon,15,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,single,professional.course,unknown,yes,no,cellular,apr,mon,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,yes,cellular,apr,mon,111,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,services,married,high.school,unknown,yes,no,cellular,apr,mon,157,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,housemaid,married,basic.6y,unknown,unknown,unknown,cellular,apr,mon,372,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +73,retired,married,basic.4y,no,yes,yes,cellular,apr,mon,128,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +23,student,single,high.school,no,yes,no,cellular,apr,mon,637,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,apr,mon,140,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,self-employed,married,university.degree,no,yes,no,cellular,apr,mon,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,single,professional.course,no,yes,no,cellular,apr,mon,20,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,151,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +51,services,married,high.school,no,yes,no,cellular,apr,mon,272,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +56,services,married,basic.4y,no,yes,yes,cellular,apr,mon,15,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,64,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,single,professional.course,no,no,no,cellular,apr,mon,147,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,professional.course,no,yes,no,cellular,apr,mon,170,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,professional.course,no,no,no,cellular,apr,mon,217,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,no,no,no,cellular,apr,mon,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +28,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,187,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,no,no,no,telephone,apr,mon,60,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,no,yes,no,cellular,apr,mon,180,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,admin.,single,university.degree,unknown,no,no,cellular,apr,mon,162,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,university.degree,no,yes,no,cellular,apr,mon,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,apr,mon,818,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,services,married,high.school,unknown,yes,no,cellular,apr,mon,297,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,mon,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,293,1,1,1,success,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,apr,mon,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,services,married,high.school,no,yes,yes,cellular,apr,mon,691,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +48,retired,divorced,basic.4y,unknown,yes,no,cellular,apr,mon,132,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,567,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,self-employed,married,basic.9y,no,yes,yes,cellular,apr,mon,64,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,unknown,unknown,cellular,apr,mon,19,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,unemployed,single,high.school,no,yes,no,telephone,apr,mon,22,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,basic.9y,no,yes,no,cellular,apr,mon,904,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,239,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,high.school,unknown,yes,no,cellular,apr,mon,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,self-employed,married,university.degree,no,no,no,cellular,apr,mon,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,admin.,married,university.degree,no,yes,no,cellular,apr,mon,95,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,197,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,single,university.degree,no,yes,no,cellular,apr,mon,221,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,318,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,management,married,university.degree,no,yes,no,cellular,apr,mon,96,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.4y,no,unknown,unknown,cellular,apr,mon,308,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,54,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +71,retired,married,university.degree,no,no,no,cellular,apr,mon,349,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +38,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,6,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,no,no,no,cellular,apr,mon,91,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +52,services,married,basic.6y,no,yes,no,cellular,apr,mon,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,entrepreneur,married,university.degree,no,yes,no,cellular,apr,mon,48,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +52,services,married,basic.6y,no,no,no,cellular,apr,mon,157,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,no,no,cellular,apr,mon,715,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,87,2,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,325,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +49,entrepreneur,married,university.degree,no,yes,no,cellular,apr,mon,334,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,high.school,unknown,yes,no,cellular,apr,mon,9,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,72,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,238,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,245,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +75,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,227,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +23,admin.,married,high.school,no,no,no,cellular,apr,mon,297,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,management,divorced,university.degree,unknown,yes,no,cellular,apr,mon,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,technician,married,professional.course,no,yes,no,cellular,apr,mon,38,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,single,university.degree,no,no,no,cellular,apr,mon,59,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,technician,married,high.school,unknown,no,no,cellular,apr,mon,222,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,divorced,basic.9y,no,yes,no,cellular,apr,mon,23,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,148,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,admin.,married,university.degree,no,yes,no,cellular,apr,mon,181,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,management,single,university.degree,no,no,no,cellular,apr,mon,190,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,high.school,no,yes,no,cellular,apr,mon,82,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,married,high.school,no,no,no,telephone,apr,mon,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,apr,mon,180,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,253,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,202,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,admin.,divorced,high.school,unknown,yes,no,cellular,apr,mon,47,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,high.school,no,no,no,cellular,apr,mon,211,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,management,divorced,university.degree,unknown,unknown,unknown,cellular,apr,mon,249,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,63,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,single,university.degree,no,unknown,unknown,cellular,apr,mon,147,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,170,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,entrepreneur,single,university.degree,no,no,no,cellular,apr,mon,151,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +22,services,single,high.school,no,yes,no,cellular,apr,mon,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,mon,205,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +40,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,379,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,42,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,129,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,entrepreneur,divorced,university.degree,no,no,no,cellular,apr,mon,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +52,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,20,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,divorced,high.school,no,no,no,cellular,apr,mon,379,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,divorced,university.degree,no,yes,no,telephone,apr,mon,180,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,technician,married,high.school,no,yes,no,cellular,apr,mon,116,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,divorced,professional.course,no,yes,no,cellular,apr,mon,153,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,self-employed,married,university.degree,unknown,yes,no,cellular,apr,mon,93,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,divorced,high.school,unknown,yes,no,cellular,apr,mon,369,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,self-employed,married,university.degree,no,yes,no,cellular,apr,mon,291,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,143,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,services,married,high.school,unknown,yes,no,cellular,apr,mon,78,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,services,married,high.school,unknown,yes,no,cellular,apr,mon,226,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,174,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,university.degree,no,yes,no,cellular,apr,mon,247,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,housemaid,married,university.degree,no,yes,no,cellular,apr,mon,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,98,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +59,self-employed,married,professional.course,no,yes,no,cellular,apr,mon,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,housemaid,single,high.school,unknown,yes,yes,cellular,apr,mon,114,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,326,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +60,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,89,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,technician,divorced,university.degree,no,no,no,cellular,apr,mon,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,married,university.degree,no,no,no,cellular,apr,mon,345,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,53,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +24,admin.,single,professional.course,no,yes,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +53,management,divorced,university.degree,unknown,yes,no,cellular,apr,mon,165,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,services,married,high.school,no,yes,no,cellular,apr,mon,113,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,no,no,cellular,apr,mon,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +59,technician,divorced,professional.course,no,no,no,cellular,apr,mon,185,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,blue-collar,married,basic.6y,unknown,unknown,unknown,cellular,apr,mon,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,technician,single,university.degree,no,unknown,unknown,cellular,apr,mon,112,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +29,technician,single,basic.9y,no,unknown,unknown,telephone,apr,mon,116,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,admin.,married,high.school,no,no,no,cellular,apr,mon,177,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +25,self-employed,divorced,university.degree,no,no,no,cellular,apr,mon,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,single,university.degree,unknown,yes,yes,cellular,apr,mon,378,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,management,married,university.degree,no,no,no,cellular,apr,mon,44,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,self-employed,divorced,university.degree,no,no,no,cellular,apr,mon,241,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +25,self-employed,divorced,university.degree,no,no,yes,cellular,apr,mon,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +32,admin.,single,university.degree,no,yes,no,cellular,apr,mon,237,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,management,married,university.degree,no,no,no,cellular,apr,mon,666,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,admin.,divorced,basic.9y,no,yes,yes,cellular,apr,mon,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,apr,mon,305,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,apr,mon,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,high.school,no,no,no,cellular,apr,mon,131,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +21,student,single,high.school,no,yes,no,cellular,apr,mon,110,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,management,single,university.degree,no,no,no,cellular,apr,mon,333,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,single,university.degree,no,yes,no,cellular,apr,mon,48,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,86,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,basic.9y,no,yes,no,cellular,apr,mon,419,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +51,blue-collar,divorced,basic.4y,no,no,yes,cellular,apr,mon,16,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,services,divorced,basic.9y,no,yes,no,cellular,apr,mon,325,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,unknown,yes,no,cellular,apr,mon,766,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +21,self-employed,single,university.degree,no,yes,yes,cellular,apr,mon,169,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,divorced,high.school,no,yes,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,high.school,no,no,no,cellular,apr,mon,58,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,divorced,high.school,no,yes,no,cellular,apr,mon,267,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +21,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,345,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +53,admin.,married,professional.course,no,yes,no,cellular,apr,mon,476,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,single,university.degree,no,no,no,cellular,apr,mon,115,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,entrepreneur,married,high.school,no,yes,no,cellular,apr,mon,257,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,management,married,university.degree,no,no,no,cellular,apr,mon,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +38,admin.,unknown,university.degree,no,no,no,cellular,apr,mon,517,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,high.school,no,no,no,telephone,apr,mon,340,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,unknown,unknown,cellular,apr,mon,124,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +23,student,single,university.degree,no,unknown,unknown,cellular,apr,mon,131,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,no,cellular,apr,mon,436,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,apr,mon,53,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,mon,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,technician,single,university.degree,no,yes,yes,cellular,apr,mon,861,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,management,divorced,university.degree,unknown,no,no,cellular,apr,mon,414,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,married,basic.9y,no,no,no,cellular,apr,mon,74,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,single,basic.6y,no,no,no,cellular,apr,mon,28,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,apr,mon,542,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,single,basic.6y,no,no,no,cellular,apr,mon,170,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,single,university.degree,unknown,yes,no,cellular,apr,mon,198,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +24,admin.,single,university.degree,no,yes,no,cellular,apr,mon,393,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,technician,married,professional.course,no,yes,yes,cellular,apr,mon,168,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,technician,single,professional.course,no,yes,yes,cellular,apr,mon,230,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,management,married,university.degree,no,no,no,cellular,apr,mon,48,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,243,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,single,university.degree,no,no,no,cellular,apr,mon,1422,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,services,divorced,high.school,no,no,no,cellular,apr,mon,150,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,single,high.school,unknown,no,yes,cellular,apr,mon,18,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,high.school,no,no,yes,cellular,apr,mon,239,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +24,admin.,single,professional.course,no,no,no,cellular,apr,mon,267,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +40,blue-collar,married,basic.4y,no,yes,yes,cellular,apr,mon,45,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,professional.course,no,yes,yes,cellular,apr,mon,528,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,high.school,no,yes,yes,cellular,apr,mon,55,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,university.degree,no,yes,no,cellular,apr,mon,72,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,professional.course,no,yes,no,telephone,apr,mon,16,12,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,services,single,basic.9y,unknown,yes,no,cellular,apr,mon,54,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,university.degree,no,yes,yes,cellular,apr,mon,228,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +19,student,single,unknown,no,yes,no,cellular,apr,mon,104,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,university.degree,unknown,no,no,cellular,apr,mon,73,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,687,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,apr,mon,90,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,technician,divorced,professional.course,unknown,yes,no,cellular,apr,mon,104,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,technician,single,basic.9y,no,yes,no,cellular,apr,mon,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +37,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,233,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +21,student,single,high.school,no,no,no,cellular,apr,mon,258,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +36,services,married,high.school,no,yes,no,cellular,apr,mon,334,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,management,married,university.degree,no,yes,no,cellular,apr,mon,143,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,technician,single,university.degree,no,no,yes,cellular,apr,mon,400,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,single,high.school,no,yes,yes,cellular,apr,mon,289,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,management,married,university.degree,no,no,no,cellular,apr,mon,81,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.4y,unknown,no,yes,cellular,apr,mon,64,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,university.degree,no,yes,no,cellular,apr,mon,155,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,self-employed,single,university.degree,unknown,yes,no,cellular,apr,mon,66,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,no,no,cellular,apr,mon,1010,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,management,married,university.degree,unknown,no,yes,cellular,apr,mon,1817,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +25,admin.,married,university.degree,no,yes,no,cellular,apr,mon,137,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +52,entrepreneur,married,basic.9y,no,yes,yes,telephone,apr,mon,67,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +25,admin.,single,university.degree,no,no,yes,cellular,apr,mon,120,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,services,married,basic.9y,no,yes,no,cellular,apr,mon,1030,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +47,technician,married,basic.9y,no,yes,no,cellular,apr,mon,151,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,divorced,university.degree,no,yes,yes,cellular,apr,mon,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +37,blue-collar,married,basic.4y,unknown,yes,yes,cellular,apr,mon,17,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,885,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +69,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,92,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,724,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,68,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,single,professional.course,unknown,no,no,cellular,apr,mon,36,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +69,retired,divorced,basic.4y,no,yes,no,cellular,apr,mon,453,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,58,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,304,7,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,282,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,high.school,unknown,yes,no,telephone,apr,mon,58,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,divorced,high.school,unknown,yes,no,cellular,apr,mon,81,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,married,basic.9y,no,yes,no,cellular,apr,mon,401,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,unknown,no,no,cellular,apr,mon,270,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,apr,mon,108,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,services,married,basic.9y,no,no,no,cellular,apr,mon,643,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,management,married,university.degree,no,no,yes,cellular,apr,mon,76,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,11,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,admin.,single,basic.9y,no,no,no,cellular,apr,mon,91,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,blue-collar,single,basic.6y,no,no,no,cellular,apr,mon,87,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,89,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,81,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,professional.course,no,yes,no,cellular,apr,mon,93,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,entrepreneur,divorced,university.degree,unknown,yes,no,telephone,apr,mon,70,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,high.school,no,no,no,cellular,apr,mon,226,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,172,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,apr,mon,121,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,249,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,single,basic.9y,no,yes,no,cellular,apr,mon,8,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,mon,10,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,married,basic.6y,no,yes,no,cellular,apr,mon,132,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,services,married,university.degree,no,no,no,cellular,apr,mon,890,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,apr,mon,10,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,294,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,self-employed,married,basic.4y,no,yes,no,telephone,apr,mon,534,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,retired,divorced,university.degree,no,yes,no,cellular,apr,mon,529,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,8,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,basic.9y,no,yes,yes,cellular,apr,mon,7,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,housemaid,married,basic.4y,no,yes,no,cellular,apr,mon,8,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,81,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,admin.,married,professional.course,no,no,no,cellular,apr,mon,9,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,10,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +23,student,single,high.school,no,no,no,cellular,apr,mon,400,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +24,technician,single,professional.course,no,yes,no,cellular,apr,mon,200,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +38,services,married,high.school,no,yes,no,cellular,apr,mon,22,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,management,married,university.degree,unknown,yes,no,cellular,apr,mon,241,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,single,high.school,no,yes,no,telephone,apr,mon,32,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,apr,mon,52,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,single,professional.course,no,no,no,cellular,apr,mon,69,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,blue-collar,single,basic.9y,unknown,yes,no,cellular,apr,mon,145,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +50,admin.,married,high.school,no,yes,no,cellular,apr,mon,562,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,services,married,basic.9y,no,yes,no,telephone,apr,mon,26,4,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,services,married,high.school,no,no,no,cellular,apr,mon,124,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,technician,divorced,professional.course,unknown,yes,no,telephone,apr,mon,18,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +33,services,single,high.school,no,no,no,cellular,apr,mon,11,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,professional.course,no,yes,no,cellular,apr,mon,21,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,technician,single,unknown,no,no,no,cellular,apr,mon,415,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,single,university.degree,no,no,no,cellular,apr,mon,140,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,apr,mon,87,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +54,management,married,university.degree,unknown,no,no,cellular,apr,mon,138,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +44,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,apr,mon,16,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,116,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,technician,married,basic.6y,no,no,no,cellular,apr,mon,316,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +60,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,198,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +24,admin.,married,professional.course,no,yes,no,cellular,apr,mon,102,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +57,technician,married,university.degree,no,no,no,cellular,apr,mon,72,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,management,married,university.degree,no,no,no,cellular,apr,mon,31,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,9,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,admin.,divorced,high.school,no,no,no,cellular,apr,mon,190,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +31,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,mon,280,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,apr,mon,152,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,single,basic.9y,unknown,no,no,cellular,apr,mon,36,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,entrepreneur,married,unknown,no,yes,no,cellular,apr,mon,58,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,mon,13,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +49,admin.,married,university.degree,no,yes,no,cellular,apr,mon,404,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +56,technician,married,professional.course,unknown,no,no,cellular,apr,mon,136,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.6y,no,yes,no,telephone,apr,mon,7,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,single,university.degree,no,no,no,cellular,apr,mon,277,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,single,professional.course,no,yes,no,cellular,apr,mon,93,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +30,student,single,university.degree,no,yes,no,cellular,apr,mon,23,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +49,entrepreneur,married,university.degree,no,no,yes,cellular,apr,mon,281,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,apr,mon,20,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,blue-collar,married,professional.course,no,no,no,cellular,apr,mon,233,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +45,blue-collar,divorced,basic.4y,no,no,no,telephone,apr,mon,197,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,220,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +28,admin.,single,high.school,no,no,no,cellular,apr,mon,1333,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +51,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,104,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,179,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,single,professional.course,no,yes,no,cellular,apr,mon,12,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,admin.,married,university.degree,no,no,no,cellular,apr,mon,69,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +60,retired,married,basic.6y,no,yes,no,cellular,apr,mon,579,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +49,services,married,high.school,no,no,no,cellular,apr,mon,173,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,231,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +32,services,married,high.school,no,no,no,cellular,apr,mon,259,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,no,no,yes,cellular,apr,mon,780,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,basic.9y,no,no,no,cellular,apr,mon,405,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,divorced,basic.9y,no,no,no,cellular,apr,mon,20,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +55,admin.,married,university.degree,no,yes,yes,cellular,apr,mon,204,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,847,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,single,basic.4y,no,no,no,cellular,apr,mon,242,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,yes,cellular,apr,mon,243,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,apr,mon,505,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,apr,mon,355,3,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,single,professional.course,no,yes,no,cellular,apr,mon,307,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,blue-collar,married,basic.9y,no,unknown,unknown,cellular,apr,mon,72,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,services,married,high.school,no,no,no,cellular,apr,mon,250,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,admin.,single,university.degree,no,no,no,cellular,apr,mon,164,6,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +60,blue-collar,married,basic.4y,unknown,yes,no,cellular,apr,mon,18,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,57,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,single,university.degree,unknown,yes,no,cellular,apr,mon,372,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +43,blue-collar,married,basic.6y,unknown,yes,no,cellular,apr,mon,353,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,technician,single,professional.course,no,yes,no,cellular,apr,mon,8,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,apr,mon,250,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,admin.,divorced,basic.9y,no,yes,no,cellular,apr,mon,39,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,apr,mon,22,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,technician,married,high.school,no,unknown,unknown,cellular,apr,mon,122,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +27,management,single,university.degree,no,yes,yes,cellular,apr,mon,21,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,apr,mon,31,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,blue-collar,married,basic.4y,no,yes,no,cellular,apr,mon,554,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +35,blue-collar,married,basic.4y,unknown,no,no,cellular,apr,mon,212,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,apr,mon,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,blue-collar,divorced,basic.9y,no,no,yes,cellular,apr,mon,34,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,married,professional.course,unknown,no,no,cellular,apr,mon,98,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,apr,mon,639,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,services,married,high.school,no,yes,no,cellular,apr,mon,106,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,technician,married,high.school,no,yes,no,cellular,apr,mon,94,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +32,services,married,high.school,no,yes,yes,cellular,apr,mon,6,6,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +40,admin.,single,university.degree,no,yes,yes,cellular,apr,mon,8,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +38,entrepreneur,single,basic.4y,no,yes,yes,cellular,apr,mon,7,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,apr,mon,1156,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +42,blue-collar,married,high.school,no,no,yes,cellular,apr,mon,178,5,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +53,blue-collar,married,basic.6y,no,yes,yes,cellular,apr,mon,208,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,technician,married,professional.course,no,yes,no,telephone,apr,mon,43,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +48,services,divorced,high.school,no,yes,no,cellular,apr,mon,25,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,technician,single,university.degree,no,yes,no,cellular,apr,mon,6,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,self-employed,married,basic.4y,no,yes,no,cellular,apr,mon,659,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +36,admin.,married,university.degree,no,yes,no,telephone,apr,mon,5,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,apr,mon,149,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,self-employed,married,basic.4y,no,yes,no,cellular,apr,mon,627,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +37,blue-collar,married,high.school,no,no,no,cellular,apr,mon,943,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,admin.,single,university.degree,no,yes,no,cellular,apr,mon,305,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,235,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +64,retired,married,university.degree,no,yes,no,cellular,apr,tue,146,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,technician,single,university.degree,no,no,yes,cellular,apr,tue,333,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +56,self-employed,married,university.degree,no,no,no,cellular,apr,tue,110,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +75,retired,married,basic.4y,no,no,no,cellular,apr,tue,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +64,retired,married,university.degree,no,yes,yes,cellular,apr,tue,159,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +53,admin.,married,university.degree,no,yes,no,cellular,apr,tue,142,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,management,married,university.degree,no,yes,no,cellular,apr,tue,336,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +78,retired,married,basic.4y,no,yes,no,cellular,apr,tue,274,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +57,retired,married,basic.4y,no,yes,yes,telephone,apr,tue,1348,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +19,student,single,unknown,no,yes,no,telephone,apr,tue,396,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,technician,single,university.degree,no,no,no,telephone,apr,tue,207,17,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +75,retired,married,basic.4y,no,no,no,cellular,apr,tue,109,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +44,unknown,divorced,unknown,no,no,no,cellular,apr,tue,189,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +41,technician,married,university.degree,no,no,no,cellular,apr,tue,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +31,technician,single,university.degree,no,unknown,unknown,telephone,apr,tue,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,housemaid,single,professional.course,no,yes,no,cellular,apr,tue,100,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +61,retired,married,professional.course,no,unknown,unknown,cellular,apr,tue,164,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +70,retired,married,basic.6y,no,yes,no,cellular,apr,tue,252,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +54,management,married,university.degree,no,yes,no,cellular,apr,tue,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +54,management,married,university.degree,no,no,no,cellular,apr,tue,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +78,retired,married,basic.4y,no,yes,yes,cellular,apr,tue,75,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +66,retired,married,basic.4y,no,yes,no,cellular,apr,tue,63,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +29,technician,single,university.degree,no,no,no,cellular,apr,tue,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +65,self-employed,married,professional.course,no,no,no,telephone,apr,tue,110,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +65,retired,married,basic.4y,no,unknown,unknown,cellular,apr,tue,106,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +20,student,single,unknown,no,yes,yes,cellular,apr,tue,47,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +47,housemaid,married,basic.4y,no,no,no,cellular,apr,tue,645,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,divorced,high.school,no,no,no,cellular,apr,tue,446,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +34,admin.,divorced,high.school,no,yes,no,cellular,apr,tue,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +34,admin.,divorced,high.school,no,yes,no,telephone,apr,tue,946,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +75,retired,married,basic.4y,no,no,no,cellular,apr,tue,356,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +53,admin.,married,university.degree,no,yes,no,cellular,apr,tue,158,2,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes +31,technician,single,university.degree,no,yes,no,telephone,apr,tue,847,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +47,housemaid,single,professional.course,no,yes,no,cellular,apr,tue,242,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +78,retired,married,basic.4y,no,yes,no,telephone,apr,tue,137,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +19,student,single,unknown,no,yes,yes,cellular,apr,tue,278,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +85,retired,married,basic.4y,unknown,yes,no,cellular,apr,tue,129,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +64,retired,married,university.degree,no,no,no,cellular,apr,tue,157,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +27,services,single,high.school,no,yes,no,cellular,apr,tue,204,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +31,technician,single,university.degree,no,no,no,telephone,apr,tue,126,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +61,admin.,married,university.degree,no,yes,no,cellular,apr,wed,183,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,university.degree,no,yes,no,telephone,apr,wed,94,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +46,admin.,married,university.degree,no,yes,no,telephone,apr,wed,154,8,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,71,7,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +33,admin.,single,university.degree,no,yes,no,telephone,apr,wed,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,single,high.school,no,yes,yes,telephone,apr,wed,186,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +23,admin.,single,university.degree,no,no,yes,cellular,apr,wed,343,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +23,admin.,single,university.degree,no,no,no,cellular,apr,wed,341,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +30,unemployed,single,university.degree,no,yes,no,cellular,apr,wed,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,621,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +23,admin.,single,university.degree,no,yes,no,cellular,apr,wed,219,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,315,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +45,self-employed,single,basic.9y,no,yes,no,cellular,apr,wed,156,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +23,admin.,single,university.degree,no,no,no,cellular,apr,wed,314,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +45,technician,divorced,university.degree,no,no,yes,telephone,apr,wed,101,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +29,admin.,single,high.school,no,no,yes,cellular,apr,wed,319,1,6,1,success,-1.8,93.075,-47.1,1.405,5099.1,yes +46,admin.,married,university.degree,no,yes,no,cellular,apr,wed,164,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +64,retired,married,basic.4y,no,yes,no,cellular,apr,wed,104,1,999,2,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +29,admin.,single,university.degree,no,yes,no,cellular,apr,wed,145,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +64,retired,married,university.degree,no,yes,no,cellular,apr,wed,102,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,apr,wed,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +37,services,single,high.school,no,yes,no,cellular,apr,wed,165,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +25,admin.,single,high.school,no,yes,no,cellular,apr,wed,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +55,admin.,married,high.school,no,no,yes,cellular,apr,wed,307,1,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +54,technician,married,professional.course,no,yes,no,cellular,apr,wed,138,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +48,admin.,married,university.degree,no,yes,no,cellular,apr,wed,87,9,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +57,management,divorced,unknown,no,no,no,cellular,apr,wed,279,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +50,technician,divorced,basic.9y,no,yes,no,cellular,apr,wed,91,2,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +25,admin.,single,high.school,no,yes,no,cellular,apr,wed,108,3,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,no +61,retired,married,basic.4y,no,yes,no,cellular,apr,wed,245,4,999,1,failure,-1.8,93.075,-47.1,1.405,5099.1,yes +65,retired,married,university.degree,no,no,no,cellular,apr,wed,124,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +60,technician,married,professional.course,no,no,no,cellular,apr,wed,107,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +30,student,single,unknown,no,yes,no,cellular,apr,wed,176,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,apr,wed,382,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +30,student,single,unknown,no,yes,no,cellular,apr,wed,116,4,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,no +52,blue-collar,married,basic.4y,no,yes,no,cellular,apr,wed,229,5,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +58,retired,single,professional.course,no,yes,no,cellular,apr,wed,1288,3,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +60,blue-collar,married,professional.course,no,yes,no,cellular,apr,wed,545,1,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +19,student,single,basic.4y,no,no,yes,cellular,apr,wed,371,2,999,0,nonexistent,-1.8,93.075,-47.1,1.405,5099.1,yes +25,admin.,single,university.degree,no,yes,no,cellular,apr,thu,229,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +34,unknown,married,basic.4y,no,yes,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +62,self-employed,married,university.degree,no,yes,yes,telephone,apr,thu,164,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +53,retired,married,basic.9y,no,no,no,telephone,apr,thu,67,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +34,unknown,married,basic.4y,no,yes,no,cellular,apr,thu,477,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +34,unknown,married,basic.4y,no,yes,yes,cellular,apr,thu,94,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +61,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,266,5,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +52,blue-collar,married,basic.6y,no,no,no,cellular,apr,thu,247,5,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +37,technician,single,high.school,no,yes,no,telephone,apr,thu,201,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +44,admin.,married,university.degree,no,no,no,cellular,apr,thu,172,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +35,technician,married,university.degree,no,no,no,cellular,apr,thu,270,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +50,admin.,married,university.degree,no,yes,yes,telephone,apr,thu,413,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +27,student,single,university.degree,no,no,no,telephone,apr,thu,141,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +38,technician,married,professional.course,no,yes,yes,cellular,apr,thu,117,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +42,technician,married,high.school,no,yes,no,cellular,apr,thu,163,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +33,self-employed,married,university.degree,no,no,no,telephone,apr,thu,155,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +43,admin.,married,university.degree,no,no,no,cellular,apr,thu,522,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +34,unknown,married,basic.4y,no,yes,yes,cellular,apr,thu,91,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,106,3,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +28,blue-collar,single,basic.9y,no,yes,yes,cellular,apr,thu,333,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +26,student,single,high.school,no,yes,no,cellular,apr,thu,116,4,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,yes +37,technician,single,high.school,no,yes,no,telephone,apr,thu,77,2,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +29,student,single,high.school,no,no,no,cellular,apr,thu,86,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +85,retired,married,basic.4y,no,yes,no,cellular,apr,thu,191,1,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +31,admin.,single,university.degree,no,no,no,cellular,apr,thu,115,16,999,0,nonexistent,-1.8,93.075,-47.1,1.406,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,fri,65,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +30,technician,single,university.degree,no,yes,no,cellular,apr,fri,143,1,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,no +50,admin.,married,university.degree,no,yes,no,cellular,apr,fri,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,yes +36,admin.,married,high.school,no,no,no,cellular,apr,fri,78,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +85,retired,married,basic.4y,no,yes,no,cellular,apr,fri,117,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +80,blue-collar,married,high.school,no,no,no,cellular,apr,fri,105,6,999,3,failure,-1.8,93.075,-47.1,1.4,5099.1,no +64,retired,married,high.school,no,yes,no,cellular,apr,fri,111,1,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +64,management,married,high.school,no,yes,no,cellular,apr,fri,693,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,yes +27,student,single,university.degree,no,no,no,cellular,apr,fri,227,1,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,yes +38,technician,single,university.degree,no,no,no,cellular,apr,fri,202,5,999,1,failure,-1.8,93.075,-47.1,1.4,5099.1,yes +66,retired,married,professional.course,no,yes,yes,cellular,apr,fri,222,4,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +64,retired,married,university.degree,no,no,no,cellular,apr,fri,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +34,unknown,married,basic.4y,no,no,yes,cellular,apr,fri,83,2,999,0,nonexistent,-1.8,93.075,-47.1,1.4,5099.1,no +33,services,single,high.school,no,yes,no,cellular,apr,mon,44,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +71,retired,married,university.degree,no,yes,yes,telephone,apr,mon,89,12,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +38,admin.,married,university.degree,no,unknown,unknown,cellular,apr,mon,124,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +27,management,married,university.degree,no,no,no,cellular,apr,mon,54,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +36,management,married,university.degree,no,no,no,cellular,apr,mon,98,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +28,unemployed,single,high.school,no,no,no,cellular,apr,mon,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +28,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,218,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,apr,mon,107,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +64,retired,married,university.degree,no,no,no,telephone,apr,mon,227,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,apr,mon,148,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +27,management,married,university.degree,no,no,no,cellular,apr,mon,444,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +55,services,divorced,professional.course,no,no,no,cellular,apr,mon,88,1,999,1,failure,-1.8,93.075,-47.1,1.392,5099.1,no +41,admin.,married,high.school,no,no,no,cellular,apr,mon,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +53,admin.,single,high.school,no,yes,no,cellular,apr,mon,167,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,apr,mon,360,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +38,admin.,divorced,university.degree,no,no,no,cellular,apr,mon,62,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +85,retired,married,basic.4y,no,no,no,cellular,apr,mon,81,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +62,self-employed,married,university.degree,no,no,no,cellular,apr,mon,66,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +23,management,single,university.degree,no,yes,no,cellular,apr,mon,122,1,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,yes +38,technician,married,professional.course,no,yes,no,cellular,apr,mon,90,2,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +34,unknown,married,basic.4y,no,no,no,telephone,apr,mon,151,3,999,0,nonexistent,-1.8,93.075,-47.1,1.392,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,apr,tue,151,3,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +52,blue-collar,married,basic.6y,no,no,no,cellular,apr,tue,139,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +85,retired,married,basic.4y,no,no,no,cellular,apr,tue,165,3,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +61,retired,divorced,university.degree,no,yes,no,cellular,apr,tue,118,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +38,admin.,divorced,university.degree,no,yes,no,cellular,apr,tue,177,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,yes +38,services,married,high.school,no,no,no,cellular,apr,tue,186,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +61,technician,married,university.degree,no,no,no,cellular,apr,tue,50,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +23,management,single,university.degree,no,yes,no,cellular,apr,tue,56,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,apr,tue,101,2,999,0,nonexistent,-1.8,93.075,-47.1,1.384,5099.1,no +51,blue-collar,married,basic.6y,no,yes,no,cellular,apr,wed,89,2,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,apr,wed,507,3,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,yes +47,services,married,high.school,no,yes,no,cellular,apr,wed,636,2,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,yes +33,admin.,single,high.school,no,yes,no,cellular,apr,wed,961,2,999,1,failure,-1.8,93.075,-47.1,1.372,5099.1,yes +30,technician,single,university.degree,no,no,no,cellular,apr,wed,80,5,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +53,admin.,single,high.school,no,yes,yes,telephone,apr,wed,75,3,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +69,retired,married,high.school,no,yes,no,cellular,apr,wed,153,4,999,1,failure,-1.8,93.075,-47.1,1.372,5099.1,no +55,services,divorced,professional.course,no,yes,no,telephone,apr,wed,164,23,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +30,technician,single,university.degree,no,yes,no,telephone,apr,wed,169,8,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +52,management,divorced,professional.course,no,yes,no,cellular,apr,wed,85,7,999,0,nonexistent,-1.8,93.075,-47.1,1.372,5099.1,no +24,technician,single,university.degree,no,yes,no,cellular,apr,thu,170,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,apr,thu,211,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +24,technician,single,university.degree,no,yes,no,cellular,apr,thu,192,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,admin.,married,university.degree,no,no,no,cellular,apr,thu,179,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,358,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +27,admin.,single,university.degree,no,no,no,cellular,apr,thu,523,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +79,retired,married,basic.9y,no,yes,no,cellular,apr,thu,510,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,571,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +60,retired,married,high.school,no,no,no,cellular,apr,thu,400,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +58,retired,married,basic.4y,no,yes,no,cellular,apr,thu,185,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +39,technician,married,professional.course,no,yes,no,cellular,apr,thu,67,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +60,retired,divorced,professional.course,no,yes,no,cellular,apr,thu,968,1,5,2,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +31,technician,single,university.degree,no,yes,no,cellular,apr,thu,701,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +39,technician,married,professional.course,no,yes,no,cellular,apr,thu,381,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +28,admin.,single,high.school,no,no,no,cellular,apr,thu,571,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +18,student,single,basic.4y,no,no,no,cellular,apr,thu,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,apr,thu,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +44,admin.,married,university.degree,no,no,no,cellular,apr,thu,109,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +55,admin.,married,unknown,no,yes,no,cellular,apr,thu,525,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,apr,thu,224,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,apr,thu,662,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +53,admin.,single,university.degree,no,no,no,cellular,apr,thu,494,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +46,admin.,married,high.school,no,no,no,cellular,apr,thu,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,management,married,university.degree,no,yes,no,cellular,apr,thu,364,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +39,services,married,high.school,no,yes,no,cellular,apr,thu,243,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +35,services,married,high.school,no,yes,no,cellular,apr,thu,412,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,university.degree,no,no,no,cellular,apr,thu,353,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,admin.,married,high.school,no,no,no,telephone,apr,thu,268,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +21,admin.,single,high.school,no,no,no,cellular,apr,thu,264,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +60,admin.,married,high.school,no,unknown,unknown,cellular,apr,thu,208,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +40,admin.,married,university.degree,no,no,yes,cellular,apr,thu,499,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +51,services,married,basic.6y,no,no,no,cellular,apr,thu,407,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,220,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +60,admin.,married,high.school,no,no,no,cellular,apr,thu,447,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,62,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +57,retired,married,university.degree,no,yes,yes,telephone,apr,thu,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +54,management,married,university.degree,no,yes,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +54,management,married,university.degree,no,yes,no,cellular,apr,thu,121,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +40,admin.,married,high.school,no,yes,no,cellular,apr,thu,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,619,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +49,management,married,university.degree,no,yes,no,cellular,apr,thu,387,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +40,admin.,married,high.school,no,yes,no,cellular,apr,thu,401,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,services,married,high.school,no,yes,no,cellular,apr,thu,239,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +77,retired,divorced,basic.4y,no,no,no,cellular,apr,thu,155,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,apr,thu,313,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +53,management,divorced,university.degree,no,no,no,cellular,apr,thu,152,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,871,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +53,management,divorced,university.degree,no,yes,no,cellular,apr,thu,297,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +24,student,single,professional.course,no,yes,no,cellular,apr,thu,413,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +46,admin.,married,high.school,no,yes,no,cellular,apr,thu,231,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +43,admin.,married,university.degree,no,no,no,cellular,apr,thu,104,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +40,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,328,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +41,management,married,basic.6y,no,no,no,cellular,apr,thu,281,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,high.school,no,yes,no,cellular,apr,thu,119,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,apr,thu,733,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +40,technician,divorced,university.degree,no,yes,no,cellular,apr,thu,335,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,high.school,no,no,no,cellular,apr,thu,252,1,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +40,admin.,married,university.degree,no,no,no,cellular,apr,thu,815,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +39,technician,married,basic.9y,no,yes,no,cellular,apr,thu,620,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,high.school,no,no,no,cellular,apr,thu,706,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,apr,thu,354,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +41,technician,divorced,professional.course,no,unknown,unknown,cellular,apr,thu,347,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +30,management,married,university.degree,no,yes,no,cellular,apr,thu,271,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +38,technician,married,professional.course,no,yes,no,cellular,apr,thu,110,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +46,technician,married,unknown,no,no,no,cellular,apr,thu,551,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,apr,thu,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,294,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +31,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,383,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +54,housemaid,married,high.school,no,yes,no,cellular,apr,thu,41,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +34,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,177,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +30,admin.,single,university.degree,no,no,no,cellular,apr,thu,368,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +53,technician,married,university.degree,no,no,yes,cellular,apr,thu,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +41,admin.,single,university.degree,no,unknown,unknown,cellular,apr,thu,1277,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +54,housemaid,married,high.school,no,yes,yes,cellular,apr,thu,267,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +38,admin.,married,high.school,no,yes,yes,cellular,apr,thu,390,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +54,housemaid,married,high.school,no,no,no,cellular,apr,thu,381,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +40,self-employed,married,university.degree,no,no,no,cellular,apr,thu,187,10,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,student,single,university.degree,no,no,no,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +28,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,156,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +36,technician,single,professional.course,no,yes,no,cellular,apr,thu,218,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes +32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,116,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,465,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +33,services,married,high.school,no,yes,no,cellular,apr,thu,900,2,999,2,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +23,admin.,single,high.school,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,apr,thu,394,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,management,married,university.degree,no,no,no,cellular,apr,thu,127,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +83,retired,married,basic.4y,no,yes,no,cellular,apr,thu,321,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +59,retired,married,basic.4y,no,yes,no,cellular,apr,thu,381,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +34,admin.,married,university.degree,no,no,no,cellular,apr,thu,279,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,entrepreneur,single,university.degree,no,no,no,cellular,apr,thu,202,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,management,married,university.degree,no,no,no,cellular,apr,thu,375,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +38,self-employed,married,professional.course,no,yes,no,cellular,apr,thu,779,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +27,blue-collar,single,university.degree,no,yes,no,cellular,apr,thu,246,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,management,married,university.degree,no,yes,no,cellular,apr,thu,584,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +35,management,married,university.degree,no,yes,no,cellular,apr,thu,878,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +44,technician,married,university.degree,no,yes,yes,cellular,apr,thu,504,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +20,student,single,high.school,no,yes,no,cellular,apr,thu,195,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +81,retired,married,professional.course,no,yes,no,cellular,apr,thu,99,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +49,admin.,single,university.degree,no,no,no,cellular,apr,thu,222,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +71,self-employed,married,university.degree,no,yes,no,cellular,apr,thu,78,2,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +35,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,58,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,apr,thu,160,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,apr,thu,337,2,5,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +51,technician,married,professional.course,no,yes,yes,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +51,technician,married,professional.course,no,yes,no,cellular,apr,thu,115,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,technician,married,professional.course,no,yes,no,cellular,apr,thu,369,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +51,technician,married,professional.course,no,yes,no,cellular,apr,thu,341,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +51,technician,married,professional.course,no,yes,yes,cellular,apr,thu,297,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes +39,services,married,university.degree,no,no,no,cellular,apr,thu,237,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +55,admin.,married,unknown,no,yes,no,cellular,apr,thu,110,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +51,technician,married,professional.course,no,yes,no,cellular,apr,thu,687,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +27,admin.,single,university.degree,no,yes,no,cellular,apr,thu,193,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +49,admin.,married,high.school,no,yes,no,cellular,apr,thu,216,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +81,retired,married,professional.course,no,no,no,cellular,apr,thu,135,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +60,retired,divorced,professional.course,no,yes,no,cellular,apr,thu,126,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +36,technician,married,professional.course,no,yes,yes,cellular,apr,thu,266,2,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes +44,blue-collar,married,basic.9y,no,yes,no,telephone,apr,thu,455,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +47,admin.,married,university.degree,no,yes,no,cellular,apr,thu,53,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +33,services,married,high.school,no,yes,no,cellular,apr,thu,524,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,apr,thu,225,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +34,technician,married,professional.course,no,yes,no,cellular,apr,thu,258,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +25,technician,single,professional.course,no,yes,yes,cellular,apr,thu,104,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +40,services,married,high.school,no,yes,no,cellular,apr,thu,124,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,married,university.degree,no,unknown,unknown,cellular,apr,thu,308,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +42,services,married,high.school,no,yes,no,cellular,apr,thu,344,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +48,technician,divorced,high.school,no,yes,no,cellular,apr,thu,400,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,103,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,24,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +48,technician,divorced,university.degree,no,yes,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,yes,no,telephone,apr,thu,141,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,207,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,284,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,apr,thu,800,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,204,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,472,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,99,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,196,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,452,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +53,admin.,single,university.degree,no,no,yes,cellular,apr,thu,586,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,316,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,270,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,461,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +27,admin.,single,high.school,no,yes,no,cellular,apr,thu,127,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +25,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,113,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +51,technician,married,university.degree,no,yes,no,cellular,apr,thu,526,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +28,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,315,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +29,admin.,single,professional.course,no,yes,no,cellular,apr,thu,130,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +49,management,married,university.degree,no,no,no,cellular,apr,thu,97,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +39,technician,married,professional.course,no,yes,no,cellular,apr,thu,423,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +54,management,married,university.degree,no,yes,no,cellular,apr,thu,311,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +49,unemployed,married,university.degree,no,no,no,cellular,apr,thu,171,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +20,student,single,basic.4y,no,yes,no,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +43,technician,single,university.degree,no,no,no,cellular,apr,thu,64,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +24,student,single,high.school,no,no,yes,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +56,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,457,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +25,unemployed,single,university.degree,no,yes,no,cellular,apr,thu,260,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +46,services,married,high.school,no,no,no,cellular,apr,thu,146,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,services,married,high.school,no,yes,yes,cellular,apr,thu,354,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +42,technician,married,professional.course,no,no,no,cellular,apr,thu,94,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +60,admin.,married,high.school,no,yes,yes,cellular,apr,thu,482,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +47,blue-collar,single,basic.6y,no,no,no,cellular,apr,thu,309,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +48,technician,divorced,university.degree,no,yes,yes,cellular,apr,thu,173,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +37,admin.,single,university.degree,no,yes,no,cellular,apr,thu,261,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +47,blue-collar,married,high.school,no,no,no,cellular,apr,thu,439,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +36,blue-collar,married,basic.9y,no,no,no,cellular,apr,thu,171,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +69,retired,married,university.degree,no,yes,no,cellular,apr,thu,616,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +63,retired,married,high.school,no,no,no,cellular,apr,thu,198,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +28,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,76,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,admin.,married,basic.6y,no,no,no,cellular,apr,thu,278,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +28,admin.,single,university.degree,no,yes,no,cellular,apr,thu,280,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +28,admin.,single,university.degree,no,yes,no,cellular,apr,thu,249,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +28,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,68,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +48,technician,married,professional.course,no,yes,yes,cellular,apr,thu,269,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +49,admin.,divorced,university.degree,no,no,no,cellular,apr,thu,532,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +30,technician,married,university.degree,no,yes,yes,cellular,apr,thu,1373,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +21,admin.,single,high.school,no,no,no,cellular,apr,thu,97,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,102,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +37,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,48,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,apr,thu,226,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +24,student,single,high.school,no,yes,no,cellular,apr,thu,88,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,apr,thu,574,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +28,admin.,single,university.degree,no,no,yes,telephone,apr,thu,917,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +48,unemployed,single,basic.9y,no,yes,no,cellular,apr,thu,242,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +58,retired,divorced,professional.course,no,no,no,cellular,apr,thu,430,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +48,unemployed,single,basic.9y,no,yes,no,cellular,apr,thu,228,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,483,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +39,management,married,professional.course,no,no,no,cellular,apr,thu,156,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +51,technician,divorced,high.school,no,no,yes,cellular,apr,thu,306,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +34,admin.,single,professional.course,no,no,no,telephone,apr,thu,130,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +29,technician,single,professional.course,no,no,no,cellular,apr,thu,96,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +33,blue-collar,single,basic.4y,no,no,no,cellular,apr,thu,452,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,admin.,divorced,high.school,no,yes,no,cellular,apr,thu,285,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,entrepreneur,single,university.degree,no,yes,no,cellular,apr,thu,666,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +27,student,single,unknown,unknown,yes,no,cellular,apr,thu,458,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,473,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +24,student,single,high.school,no,yes,no,cellular,apr,thu,209,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,apr,thu,69,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,apr,thu,352,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,27,1,999,2,failure,-1.8,93.075,-47.1,1.365,5099.1,no +57,retired,married,university.degree,no,no,no,cellular,apr,thu,81,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +55,admin.,divorced,university.degree,no,no,no,cellular,apr,thu,260,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +22,student,single,high.school,no,no,no,cellular,apr,thu,780,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +54,management,married,university.degree,no,no,no,telephone,apr,thu,107,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +40,technician,married,professional.course,no,yes,no,cellular,apr,thu,580,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,high.school,no,yes,yes,cellular,apr,thu,398,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +73,retired,married,university.degree,no,yes,no,cellular,apr,thu,79,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +71,retired,divorced,basic.4y,no,no,yes,cellular,apr,thu,214,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +28,admin.,married,university.degree,no,no,no,cellular,apr,thu,258,1,2,2,success,-1.8,93.075,-47.1,1.365,5099.1,yes +41,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,834,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +43,admin.,married,university.degree,no,yes,no,cellular,apr,thu,114,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +35,management,married,university.degree,no,yes,yes,cellular,apr,thu,435,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +58,retired,divorced,university.degree,no,no,no,cellular,apr,thu,211,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +32,self-employed,single,university.degree,no,yes,no,cellular,apr,thu,441,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +20,student,single,high.school,no,yes,no,cellular,apr,thu,615,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +38,admin.,single,university.degree,no,yes,yes,cellular,apr,thu,555,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +47,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,149,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +40,self-employed,single,university.degree,unknown,yes,no,cellular,apr,thu,384,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +34,admin.,single,professional.course,no,no,no,cellular,apr,thu,168,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +28,student,single,high.school,no,no,no,cellular,apr,thu,319,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +41,admin.,single,high.school,no,unknown,unknown,cellular,apr,thu,664,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +18,student,single,basic.4y,no,yes,yes,cellular,apr,thu,184,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +41,technician,divorced,professional.course,no,yes,no,cellular,apr,thu,811,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +25,admin.,single,university.degree,no,no,yes,telephone,apr,thu,71,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +23,student,single,high.school,no,yes,no,cellular,apr,thu,354,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +47,unknown,married,unknown,no,no,no,cellular,apr,thu,85,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +44,technician,single,professional.course,no,no,no,cellular,apr,thu,116,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,yes,cellular,apr,thu,488,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,blue-collar,single,basic.4y,no,yes,yes,cellular,apr,thu,460,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +24,technician,single,university.degree,no,yes,no,cellular,apr,thu,477,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +28,admin.,married,university.degree,no,yes,no,cellular,apr,thu,63,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,apr,thu,970,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +58,retired,married,basic.4y,no,no,no,cellular,apr,thu,266,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +49,technician,married,professional.course,no,no,no,cellular,apr,thu,618,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +41,technician,divorced,professional.course,no,no,no,cellular,apr,thu,774,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +51,housemaid,married,unknown,no,yes,yes,cellular,apr,thu,132,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +28,student,single,high.school,no,yes,no,cellular,apr,thu,121,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +45,management,married,university.degree,unknown,yes,no,cellular,apr,thu,175,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +49,technician,single,university.degree,no,yes,no,cellular,apr,thu,861,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +49,management,married,university.degree,no,no,yes,cellular,apr,thu,296,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +49,management,married,university.degree,no,yes,no,cellular,apr,thu,240,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,yes +29,management,single,high.school,no,yes,no,cellular,apr,thu,329,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +59,admin.,married,high.school,no,yes,no,cellular,apr,thu,147,3,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +33,admin.,married,high.school,no,no,no,cellular,apr,thu,113,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +48,entrepreneur,married,university.degree,no,no,no,cellular,apr,thu,327,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +40,services,married,basic.9y,no,yes,no,cellular,apr,thu,264,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +28,admin.,married,university.degree,no,no,no,cellular,apr,thu,115,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +34,technician,married,university.degree,no,no,no,cellular,apr,thu,82,6,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +32,blue-collar,married,professional.course,unknown,yes,yes,cellular,apr,thu,127,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,yes,yes,telephone,apr,thu,874,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +37,self-employed,single,university.degree,no,yes,no,telephone,apr,thu,44,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +66,unemployed,single,basic.4y,no,no,no,telephone,apr,thu,56,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,apr,thu,510,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +46,admin.,married,basic.6y,no,yes,no,cellular,apr,thu,513,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +38,retired,divorced,basic.9y,unknown,yes,no,cellular,apr,thu,189,3,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +66,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,416,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,services,divorced,high.school,no,no,no,cellular,apr,thu,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +41,management,married,high.school,no,yes,no,cellular,apr,thu,243,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +32,blue-collar,married,professional.course,unknown,no,no,cellular,apr,thu,140,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,apr,thu,109,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,126,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,blue-collar,single,professional.course,no,yes,no,cellular,apr,thu,652,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +71,retired,divorced,basic.4y,no,yes,no,telephone,apr,thu,96,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +33,technician,married,basic.9y,no,yes,no,cellular,apr,thu,144,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +25,student,single,university.degree,no,yes,no,cellular,apr,thu,92,1,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,apr,thu,475,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +25,student,single,university.degree,no,no,no,cellular,apr,thu,236,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +34,technician,married,university.degree,no,yes,no,cellular,apr,thu,193,2,8,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,apr,thu,645,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +24,admin.,single,university.degree,no,yes,no,cellular,apr,thu,342,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +32,blue-collar,married,professional.course,unknown,yes,no,cellular,apr,thu,73,2,999,1,failure,-1.8,93.075,-47.1,1.365,5099.1,no +53,technician,married,professional.course,no,yes,no,cellular,apr,thu,301,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +32,admin.,single,high.school,no,no,no,cellular,apr,thu,1143,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +33,admin.,single,high.school,no,no,no,cellular,apr,thu,380,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +49,management,married,university.degree,no,yes,no,cellular,apr,thu,210,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +29,admin.,single,professional.course,no,no,no,cellular,apr,thu,427,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +31,admin.,single,university.degree,no,yes,no,cellular,apr,thu,370,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +37,admin.,married,high.school,no,no,no,cellular,apr,thu,73,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +61,retired,divorced,university.degree,no,no,no,cellular,apr,thu,949,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +32,student,married,high.school,no,yes,no,cellular,apr,thu,753,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +60,unemployed,married,high.school,no,yes,no,cellular,apr,thu,1260,2,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +60,admin.,married,professional.course,no,yes,no,cellular,apr,thu,108,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,no,no,telephone,apr,thu,95,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,apr,thu,652,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +35,services,married,high.school,no,no,no,cellular,apr,thu,1034,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +64,admin.,married,university.degree,no,no,yes,telephone,apr,thu,766,3,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +56,entrepreneur,married,university.degree,no,yes,no,cellular,apr,thu,266,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +27,student,single,unknown,unknown,yes,no,cellular,apr,thu,35,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +39,services,married,university.degree,no,yes,no,cellular,apr,thu,369,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,apr,thu,502,1,0,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +40,self-employed,single,university.degree,unknown,yes,yes,cellular,apr,thu,509,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,yes +30,admin.,married,university.degree,no,no,no,cellular,apr,thu,132,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +30,student,single,high.school,no,yes,no,telephone,apr,thu,136,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +32,student,married,high.school,no,no,no,cellular,apr,thu,567,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +42,services,married,high.school,no,yes,no,cellular,apr,thu,501,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +57,retired,married,university.degree,no,yes,no,cellular,apr,thu,374,1,2,1,success,-1.8,93.075,-47.1,1.365,5099.1,no +25,unknown,single,university.degree,no,yes,no,telephone,apr,thu,712,2,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +27,admin.,single,professional.course,no,yes,yes,telephone,apr,thu,117,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +49,admin.,divorced,university.degree,no,yes,no,cellular,apr,thu,347,3,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +24,student,single,high.school,no,no,yes,cellular,apr,thu,157,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +56,entrepreneur,married,university.degree,no,yes,yes,cellular,apr,thu,259,1,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,yes +66,unemployed,single,basic.4y,no,yes,no,cellular,apr,thu,1958,11,999,0,nonexistent,-1.8,93.075,-47.1,1.365,5099.1,no +88,retired,divorced,high.school,no,yes,no,cellular,may,mon,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +63,retired,married,high.school,no,yes,no,telephone,may,mon,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +38,management,married,university.degree,no,no,no,cellular,may,mon,208,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +57,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,47,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,265,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +61,retired,married,high.school,no,yes,no,cellular,may,mon,104,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +21,student,single,unknown,no,yes,yes,cellular,may,mon,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +59,housemaid,married,professional.course,no,no,no,cellular,may,mon,675,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +46,technician,married,high.school,no,no,no,cellular,may,mon,60,5,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +36,entrepreneur,married,university.degree,no,no,no,telephone,may,mon,410,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +33,technician,married,professional.course,no,yes,no,telephone,may,mon,390,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,mon,303,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +42,services,married,high.school,no,no,no,cellular,may,mon,312,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,mon,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,160,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +35,admin.,single,high.school,no,yes,yes,cellular,may,mon,130,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +44,entrepreneur,single,professional.course,no,no,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +60,management,married,university.degree,no,yes,no,telephone,may,mon,364,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +35,services,married,basic.6y,no,no,no,cellular,may,mon,392,2,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes +28,self-employed,single,university.degree,no,yes,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +60,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,193,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +36,management,married,university.degree,no,yes,no,cellular,may,mon,267,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +60,admin.,married,university.degree,no,yes,no,cellular,may,mon,1602,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +31,admin.,divorced,university.degree,no,no,no,cellular,may,mon,200,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +26,services,single,high.school,no,yes,no,cellular,may,mon,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +30,unknown,married,professional.course,no,yes,no,cellular,may,mon,359,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +49,admin.,married,university.degree,no,yes,yes,telephone,may,mon,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +58,retired,married,university.degree,no,yes,no,cellular,may,mon,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,management,single,university.degree,no,yes,yes,cellular,may,mon,447,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +31,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +81,retired,married,basic.9y,no,no,no,cellular,may,mon,170,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +39,admin.,married,high.school,no,no,no,cellular,may,mon,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +41,technician,married,unknown,no,yes,yes,cellular,may,mon,963,1,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes +30,unemployed,married,high.school,no,no,no,cellular,may,mon,417,1,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +39,admin.,married,high.school,no,yes,no,cellular,may,mon,301,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +35,services,married,basic.6y,no,yes,no,cellular,may,mon,136,1,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +36,admin.,married,high.school,no,yes,no,telephone,may,mon,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +65,management,married,university.degree,no,no,no,telephone,may,mon,1076,3,6,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +28,admin.,married,university.degree,no,yes,no,cellular,may,mon,643,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,yes,yes,cellular,may,mon,275,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +36,unemployed,single,university.degree,no,yes,no,cellular,may,mon,251,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +50,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,293,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +35,services,married,basic.6y,no,no,no,cellular,may,mon,592,1,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +26,student,single,university.degree,no,no,yes,cellular,may,mon,90,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +52,admin.,single,high.school,no,no,no,cellular,may,mon,437,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,yes,no,cellular,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +25,technician,unknown,university.degree,no,yes,no,cellular,may,mon,346,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +28,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +43,entrepreneur,married,basic.6y,no,yes,no,cellular,may,mon,195,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,services,single,high.school,no,yes,yes,cellular,may,mon,95,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +59,retired,married,basic.6y,no,no,no,cellular,may,mon,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +27,student,single,high.school,no,no,no,cellular,may,mon,64,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +27,management,single,university.degree,no,yes,no,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +32,student,single,unknown,no,no,yes,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +66,management,married,university.degree,no,no,no,cellular,may,mon,98,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,mon,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +49,admin.,married,university.degree,no,yes,no,telephone,may,mon,15,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +52,admin.,single,high.school,no,no,no,cellular,may,mon,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +57,admin.,single,university.degree,no,no,yes,cellular,may,mon,532,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +31,student,single,unknown,no,no,yes,cellular,may,mon,535,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +25,technician,married,university.degree,no,no,no,cellular,may,mon,106,1,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no +36,technician,married,university.degree,no,no,yes,cellular,may,mon,287,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +42,admin.,married,professional.course,no,yes,no,cellular,may,mon,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +62,retired,married,professional.course,no,yes,no,cellular,may,mon,212,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,admin.,married,professional.course,no,no,yes,cellular,may,mon,300,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +53,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,367,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +27,management,single,university.degree,no,no,no,cellular,may,mon,52,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +35,services,married,high.school,no,no,no,cellular,may,mon,297,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +26,admin.,single,university.degree,no,yes,no,telephone,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,unemployed,married,high.school,no,yes,no,cellular,may,mon,214,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +59,retired,married,basic.6y,no,yes,no,cellular,may,mon,228,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +39,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,378,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +45,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,7,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +43,admin.,single,university.degree,no,yes,no,telephone,may,mon,34,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +33,services,married,high.school,no,no,yes,cellular,may,mon,347,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,291,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,no,no,cellular,may,mon,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +33,blue-collar,married,high.school,unknown,yes,yes,cellular,may,mon,164,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +33,blue-collar,married,high.school,unknown,yes,no,cellular,may,mon,92,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +60,blue-collar,married,unknown,unknown,yes,no,cellular,may,mon,26,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,no,no,cellular,may,mon,90,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,admin.,single,university.degree,no,no,no,telephone,may,mon,222,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +53,management,married,high.school,no,yes,no,cellular,may,mon,383,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,mon,434,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +42,admin.,married,professional.course,no,yes,yes,cellular,may,mon,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,54,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +49,unemployed,married,high.school,no,yes,no,telephone,may,mon,96,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +57,technician,married,university.degree,no,yes,no,cellular,may,mon,334,2,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +55,technician,married,basic.9y,unknown,no,no,cellular,may,mon,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +25,technician,unknown,university.degree,no,yes,yes,cellular,may,mon,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +35,admin.,married,professional.course,no,yes,no,cellular,may,mon,76,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +27,blue-collar,unknown,high.school,no,no,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,student,single,unknown,no,no,yes,cellular,may,mon,63,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +58,retired,married,university.degree,no,yes,no,telephone,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +43,admin.,married,professional.course,no,yes,yes,cellular,may,mon,238,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,services,married,high.school,unknown,no,no,cellular,may,mon,619,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +38,admin.,single,university.degree,no,no,no,cellular,may,mon,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +36,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,257,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,admin.,married,university.degree,no,yes,no,cellular,may,mon,370,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +41,admin.,single,high.school,no,yes,no,cellular,may,mon,306,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +35,services,married,high.school,no,no,no,cellular,may,mon,130,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +39,technician,married,professional.course,no,yes,no,cellular,may,mon,1046,3,11,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +27,technician,single,university.degree,no,yes,no,cellular,may,mon,77,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +27,technician,single,university.degree,no,yes,no,cellular,may,mon,90,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +53,admin.,married,high.school,unknown,yes,no,cellular,may,mon,181,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +19,student,single,unknown,no,yes,no,cellular,may,mon,121,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +27,technician,single,university.degree,no,yes,no,telephone,may,mon,336,9,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,may,mon,72,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +20,technician,single,university.degree,no,no,no,cellular,may,mon,237,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +45,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,211,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,admin.,married,professional.course,no,yes,no,cellular,may,mon,458,3,9,2,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +36,management,married,university.degree,no,no,yes,cellular,may,mon,110,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,392,7,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,self-employed,married,basic.4y,unknown,no,no,cellular,may,mon,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,124,3,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no +35,admin.,married,professional.course,no,yes,no,cellular,may,mon,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +44,self-employed,single,professional.course,no,yes,no,cellular,may,mon,922,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +30,self-employed,married,university.degree,no,no,no,cellular,may,mon,107,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,technician,single,university.degree,no,no,no,cellular,may,mon,220,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,mon,75,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +51,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,601,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +39,admin.,single,university.degree,no,no,no,cellular,may,mon,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +52,admin.,married,university.degree,no,no,yes,cellular,may,mon,434,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +28,admin.,single,university.degree,no,no,no,cellular,may,mon,497,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +48,admin.,married,university.degree,no,no,yes,cellular,may,mon,312,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,housemaid,single,high.school,no,yes,no,telephone,may,mon,186,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +53,technician,married,professional.course,no,yes,no,telephone,may,mon,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,blue-collar,single,basic.9y,no,yes,yes,cellular,may,mon,78,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +39,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,264,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +58,admin.,married,university.degree,no,yes,yes,cellular,may,mon,353,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +56,housemaid,married,high.school,no,yes,yes,telephone,may,mon,290,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,may,mon,79,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +57,self-employed,married,university.degree,no,yes,no,cellular,may,mon,949,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +39,admin.,married,high.school,no,unknown,unknown,cellular,may,mon,99,2,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no +56,admin.,married,basic.9y,no,yes,yes,cellular,may,mon,313,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,unemployed,married,high.school,no,yes,yes,telephone,may,mon,104,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,may,mon,742,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +22,student,single,high.school,no,yes,yes,cellular,may,mon,1370,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +42,admin.,married,university.degree,no,yes,no,cellular,may,mon,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +52,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,528,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,yes,yes,cellular,may,mon,675,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +28,technician,single,high.school,no,yes,no,cellular,may,mon,134,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +35,housemaid,single,university.degree,no,no,yes,cellular,may,mon,126,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +35,admin.,married,high.school,no,yes,yes,telephone,may,mon,159,10,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +32,self-employed,married,basic.6y,no,yes,no,cellular,may,mon,1121,3,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +61,technician,divorced,professional.course,no,yes,no,cellular,may,mon,268,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +42,admin.,married,university.degree,no,yes,no,cellular,may,mon,230,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +50,self-employed,married,high.school,no,yes,no,cellular,may,mon,172,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +41,services,single,high.school,no,yes,no,cellular,may,mon,417,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +26,student,single,high.school,no,no,no,cellular,may,mon,716,3,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +40,admin.,married,university.degree,no,no,no,cellular,may,mon,365,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,240,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +36,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,104,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +81,retired,married,basic.4y,no,no,no,cellular,may,mon,617,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +46,services,married,basic.6y,no,yes,no,telephone,may,mon,89,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +56,technician,married,professional.course,no,yes,yes,cellular,may,mon,333,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +59,retired,married,basic.4y,no,no,no,cellular,may,mon,13,6,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +21,student,single,unknown,no,no,no,cellular,may,mon,288,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +44,technician,married,high.school,no,no,no,cellular,may,mon,174,5,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +50,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,483,4,3,2,success,-1.8,92.893,-46.2,1.354,5099.1,yes +51,technician,married,professional.course,no,yes,no,cellular,may,mon,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,admin.,married,high.school,no,no,no,telephone,may,mon,6,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +46,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,1091,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +53,technician,married,professional.course,no,no,no,cellular,may,mon,206,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +29,management,married,university.degree,no,no,no,telephone,may,mon,150,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,admin.,married,high.school,no,no,no,cellular,may,mon,1063,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +39,admin.,married,university.degree,no,yes,no,telephone,may,mon,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,79,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +53,management,married,high.school,no,yes,no,cellular,may,mon,8,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +37,technician,single,professional.course,no,no,no,telephone,may,mon,21,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +43,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,99,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,services,married,professional.course,no,yes,no,cellular,may,mon,72,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +27,student,single,university.degree,no,yes,no,telephone,may,mon,354,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,mon,520,2,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +59,management,married,university.degree,no,no,no,telephone,may,mon,340,8,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +45,admin.,married,university.degree,no,yes,no,cellular,may,mon,254,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,mon,76,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +44,self-employed,married,high.school,no,yes,no,cellular,may,mon,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +57,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,429,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +59,unknown,married,unknown,no,yes,no,cellular,may,mon,399,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +48,unemployed,married,professional.course,no,yes,yes,cellular,may,mon,10,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +32,services,single,high.school,no,no,no,cellular,may,mon,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +30,unknown,married,professional.course,no,no,no,cellular,may,mon,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +50,entrepreneur,married,basic.9y,no,yes,no,telephone,may,mon,331,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +29,admin.,married,university.degree,unknown,yes,no,cellular,may,mon,11,4,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +44,self-employed,single,professional.course,no,yes,no,cellular,may,mon,775,5,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,yes +37,technician,single,professional.course,no,yes,no,cellular,may,mon,78,4,999,1,failure,-1.8,92.893,-46.2,1.354,5099.1,no +46,admin.,single,high.school,no,no,yes,cellular,may,mon,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +49,technician,married,high.school,no,yes,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +53,admin.,married,basic.9y,no,no,no,telephone,may,mon,40,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +51,unemployed,married,high.school,no,no,no,cellular,may,mon,14,5,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +24,technician,single,high.school,no,yes,no,cellular,may,mon,841,4,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +44,self-employed,single,professional.course,no,no,no,cellular,may,mon,230,6,12,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +37,unknown,single,university.degree,no,yes,no,cellular,may,mon,23,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +44,self-employed,married,high.school,no,no,yes,cellular,may,mon,15,4,999,2,failure,-1.8,92.893,-46.2,1.354,5099.1,no +36,management,married,university.degree,no,yes,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +39,unemployed,single,basic.9y,no,yes,no,telephone,may,mon,846,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +31,services,married,high.school,unknown,no,no,telephone,may,mon,211,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +56,housemaid,married,high.school,no,no,no,cellular,may,mon,9,8,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +56,services,divorced,high.school,no,no,no,telephone,may,mon,640,7,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,yes +49,admin.,divorced,university.degree,no,no,no,cellular,may,mon,124,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,mon,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +50,self-employed,married,basic.9y,no,yes,yes,cellular,may,mon,673,6,3,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +25,management,single,university.degree,no,yes,no,cellular,may,mon,362,5,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +56,services,married,high.school,no,yes,no,cellular,may,mon,520,2,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +34,admin.,married,university.degree,no,yes,yes,telephone,may,mon,75,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +59,unknown,married,unknown,no,yes,no,cellular,may,mon,8,7,6,1,success,-1.8,92.893,-46.2,1.354,5099.1,no +45,admin.,married,university.degree,no,yes,yes,telephone,may,mon,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.354,5099.1,no +60,admin.,married,university.degree,no,yes,no,cellular,may,mon,226,2,11,1,success,-1.8,92.893,-46.2,1.354,5099.1,yes +39,blue-collar,single,basic.4y,no,no,yes,cellular,may,tue,205,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,services,married,high.school,no,yes,no,cellular,may,tue,574,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,tue,159,8,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +25,services,married,high.school,no,no,no,cellular,may,tue,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,may,tue,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,retired,married,high.school,no,yes,no,cellular,may,tue,762,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +32,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,813,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +28,services,single,unknown,no,no,no,cellular,may,tue,466,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,tue,88,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +58,services,divorced,high.school,unknown,yes,no,cellular,may,tue,29,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,admin.,single,high.school,no,yes,no,cellular,may,tue,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,94,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,management,married,university.degree,no,yes,no,cellular,may,tue,35,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,admin.,married,university.degree,no,no,no,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +48,services,married,basic.4y,no,no,no,cellular,may,tue,17,5,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +57,retired,married,basic.6y,no,no,no,cellular,may,tue,148,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,155,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +55,retired,married,basic.4y,no,no,no,cellular,may,tue,43,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,307,4,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,divorced,high.school,no,yes,no,telephone,may,tue,19,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,tue,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,39,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +19,student,single,high.school,unknown,no,yes,cellular,may,tue,106,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,admin.,married,basic.9y,no,yes,no,cellular,may,tue,272,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +44,services,married,high.school,no,yes,no,cellular,may,tue,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,tue,245,6,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +44,admin.,single,professional.course,unknown,no,no,cellular,may,tue,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,84,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,admin.,married,basic.9y,no,yes,no,cellular,may,tue,24,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,housemaid,married,basic.9y,unknown,yes,no,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,337,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,184,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,632,5,10,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +38,admin.,divorced,high.school,no,no,no,cellular,may,tue,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,363,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,332,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,334,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,72,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,214,1,0,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,276,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,management,married,university.degree,no,yes,yes,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,admin.,divorced,high.school,no,no,yes,cellular,may,tue,461,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,may,tue,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,may,tue,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,may,tue,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,415,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,may,tue,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,services,divorced,high.school,no,no,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,admin.,married,high.school,no,yes,no,cellular,may,tue,181,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,may,tue,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,high.school,unknown,no,no,cellular,may,tue,168,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +47,technician,married,professional.course,unknown,yes,no,cellular,may,tue,60,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,243,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +47,services,married,high.school,unknown,yes,no,cellular,may,tue,377,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +49,admin.,married,high.school,no,no,no,cellular,may,tue,57,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,234,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,234,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,admin.,single,high.school,no,no,no,cellular,may,tue,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,admin.,single,high.school,no,no,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,29,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,entrepreneur,married,professional.course,no,no,yes,cellular,may,tue,266,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,entrepreneur,married,professional.course,no,yes,no,cellular,may,tue,382,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +58,admin.,single,university.degree,no,no,no,cellular,may,tue,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +49,admin.,married,high.school,no,yes,no,cellular,may,tue,668,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes +44,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,494,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +49,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,121,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +38,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +51,admin.,married,basic.4y,unknown,no,no,cellular,may,tue,142,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,1240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +35,blue-collar,married,high.school,no,no,no,cellular,may,tue,895,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +58,admin.,single,university.degree,no,yes,no,cellular,may,tue,851,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +49,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +49,blue-collar,married,professional.course,no,no,no,cellular,may,tue,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,392,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +43,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,self-employed,married,basic.9y,no,yes,yes,cellular,may,tue,731,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +35,technician,divorced,professional.course,no,no,no,cellular,may,tue,301,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +38,technician,married,university.degree,no,yes,no,cellular,may,tue,55,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,286,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +47,management,married,university.degree,no,no,no,cellular,may,tue,242,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +51,admin.,married,basic.4y,unknown,no,no,cellular,may,tue,516,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,unknown,no,yes,no,cellular,may,tue,163,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,services,single,basic.9y,no,no,no,cellular,may,tue,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,single,high.school,no,yes,no,cellular,may,tue,173,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,86,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,high.school,no,yes,no,cellular,may,tue,863,1,3,2,success,-1.8,92.893,-46.2,1.344,5099.1,yes +35,admin.,single,university.degree,no,yes,no,telephone,may,tue,227,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,student,single,high.school,unknown,no,yes,cellular,may,tue,139,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,may,tue,479,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,tue,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,entrepreneur,divorced,basic.9y,no,yes,yes,cellular,may,tue,17,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,tue,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,48,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,management,married,university.degree,no,yes,no,cellular,may,tue,459,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,services,married,high.school,no,yes,no,cellular,may,tue,358,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +48,blue-collar,single,basic.4y,unknown,yes,yes,cellular,may,tue,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,divorced,high.school,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,married,unknown,unknown,yes,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,retired,divorced,basic.4y,no,yes,no,cellular,may,tue,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +50,technician,married,unknown,no,no,no,cellular,may,tue,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,single,high.school,no,no,no,cellular,may,tue,1090,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +55,self-employed,married,basic.9y,no,yes,no,cellular,may,tue,604,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,management,single,basic.9y,no,no,no,cellular,may,tue,381,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,103,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +54,blue-collar,married,high.school,unknown,yes,yes,cellular,may,tue,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,entrepreneur,single,university.degree,no,yes,no,cellular,may,tue,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,tue,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,management,married,professional.course,no,unknown,unknown,cellular,may,tue,247,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +50,technician,married,unknown,no,yes,yes,cellular,may,tue,400,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +54,blue-collar,married,high.school,unknown,yes,no,cellular,may,tue,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,269,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +50,technician,married,unknown,no,yes,no,cellular,may,tue,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,married,university.degree,no,no,yes,cellular,may,tue,252,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,545,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,technician,divorced,university.degree,unknown,yes,no,cellular,may,tue,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,tue,718,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,620,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,unknown,no,yes,no,cellular,may,tue,696,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,services,married,professional.course,no,yes,no,cellular,may,tue,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,98,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,68,1,6,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,may,tue,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +48,services,married,basic.4y,no,no,no,cellular,may,tue,1130,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,services,married,basic.6y,unknown,yes,no,cellular,may,tue,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,admin.,married,high.school,no,no,yes,cellular,may,tue,838,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +34,technician,single,professional.course,no,yes,no,cellular,may,tue,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,tue,397,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +46,blue-collar,married,high.school,no,no,yes,cellular,may,tue,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,659,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +44,admin.,married,university.degree,no,yes,no,cellular,may,tue,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,blue-collar,single,basic.9y,no,no,yes,cellular,may,tue,143,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +30,technician,single,university.degree,no,no,yes,cellular,may,tue,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +46,blue-collar,married,high.school,no,no,no,cellular,may,tue,456,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,technician,single,university.degree,no,yes,no,cellular,may,tue,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,tue,108,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,single,basic.6y,unknown,no,no,cellular,may,tue,141,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,may,tue,236,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +38,technician,married,university.degree,no,no,no,telephone,may,tue,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +46,blue-collar,married,high.school,no,yes,no,cellular,may,tue,675,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,may,tue,84,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,258,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,single,high.school,no,no,no,telephone,may,tue,60,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,admin.,single,high.school,no,no,no,cellular,may,tue,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,may,tue,241,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,tue,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,technician,married,university.degree,no,no,no,cellular,may,tue,34,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +47,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +51,blue-collar,married,professional.course,unknown,yes,no,cellular,may,tue,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,tue,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,tue,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,services,divorced,professional.course,no,yes,yes,cellular,may,tue,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,tue,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,335,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,admin.,divorced,high.school,no,yes,no,cellular,may,tue,294,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,self-employed,married,university.degree,no,no,yes,cellular,may,tue,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +49,entrepreneur,married,high.school,no,no,no,cellular,may,tue,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +28,services,single,unknown,no,yes,no,cellular,may,tue,87,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +49,entrepreneur,married,high.school,no,no,no,cellular,may,tue,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +58,retired,married,high.school,unknown,no,no,cellular,may,tue,127,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,services,married,high.school,no,no,no,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,services,married,high.school,no,no,no,cellular,may,tue,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +47,entrepreneur,married,unknown,unknown,yes,no,telephone,may,tue,22,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +58,retired,married,high.school,unknown,yes,no,cellular,may,tue,159,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,married,high.school,no,yes,no,cellular,may,tue,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,tue,623,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +47,entrepreneur,married,unknown,unknown,yes,no,cellular,may,tue,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,admin.,single,professional.course,unknown,yes,no,cellular,may,tue,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,unknown,unknown,no,no,cellular,may,tue,409,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,335,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +40,technician,married,high.school,no,yes,no,cellular,may,tue,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +51,blue-collar,married,basic.6y,no,unknown,unknown,cellular,may,tue,811,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,272,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +57,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,442,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +49,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,568,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes +34,admin.,married,high.school,no,yes,yes,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +36,admin.,single,high.school,no,yes,no,cellular,may,tue,220,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,management,divorced,university.degree,no,yes,no,cellular,may,tue,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,single,university.degree,no,yes,no,cellular,may,tue,42,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,management,divorced,university.degree,no,yes,no,cellular,may,tue,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,tue,29,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,231,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,may,tue,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,entrepreneur,married,basic.4y,no,yes,no,cellular,may,tue,955,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +37,management,divorced,unknown,no,yes,no,cellular,may,tue,221,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +52,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,157,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,tue,359,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +53,admin.,single,high.school,no,yes,no,cellular,may,tue,470,2,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,unemployed,single,university.degree,no,yes,no,cellular,may,tue,11,9,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,tue,495,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +29,entrepreneur,married,basic.6y,no,yes,no,cellular,may,tue,383,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,tue,295,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,single,university.degree,no,no,no,cellular,may,tue,107,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,retired,single,university.degree,no,yes,no,cellular,may,tue,93,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,single,university.degree,no,yes,no,cellular,may,tue,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,166,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,tue,542,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,single,university.degree,no,yes,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +58,services,divorced,high.school,unknown,yes,no,cellular,may,tue,237,4,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +38,entrepreneur,married,basic.4y,no,no,no,cellular,may,tue,184,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +49,blue-collar,married,professional.course,no,no,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,technician,single,professional.course,no,no,no,cellular,may,tue,1221,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes +38,entrepreneur,married,basic.4y,no,yes,no,cellular,may,tue,360,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,services,married,high.school,unknown,no,no,cellular,may,tue,245,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,may,tue,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +52,blue-collar,married,high.school,no,yes,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +52,blue-collar,married,high.school,no,no,no,cellular,may,tue,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,single,basic.9y,no,no,no,cellular,may,tue,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,single,basic.9y,no,no,no,cellular,may,tue,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,single,basic.9y,no,no,no,cellular,may,tue,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,services,divorced,university.degree,no,yes,no,cellular,may,tue,335,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,basic.9y,no,no,no,cellular,may,tue,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,services,married,high.school,no,yes,no,cellular,may,tue,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,services,divorced,university.degree,no,no,no,cellular,may,tue,499,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +44,management,married,university.degree,no,yes,no,cellular,may,tue,71,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,services,married,high.school,no,no,no,cellular,may,tue,414,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,may,tue,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,352,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +51,services,divorced,high.school,unknown,no,no,cellular,may,tue,398,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +57,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,399,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,253,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +47,blue-collar,divorced,basic.4y,no,no,no,cellular,may,tue,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,management,divorced,university.degree,no,yes,yes,cellular,may,tue,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,316,1,11,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,tue,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,may,tue,76,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,services,married,high.school,no,no,yes,cellular,may,tue,284,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,tue,90,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,tue,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,246,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,162,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +40,admin.,single,professional.course,no,yes,no,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +28,blue-collar,single,university.degree,no,no,no,cellular,may,tue,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,retired,divorced,basic.4y,no,yes,yes,cellular,may,tue,209,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,may,tue,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,may,tue,387,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,technician,married,basic.9y,no,yes,yes,cellular,may,tue,67,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,253,1,12,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +32,self-employed,married,basic.9y,no,no,no,cellular,may,tue,301,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,tue,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,entrepreneur,married,high.school,no,no,no,cellular,may,tue,179,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,283,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,married,basic.6y,no,yes,no,cellular,may,tue,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,management,married,university.degree,no,no,no,cellular,may,tue,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,married,basic.9y,no,no,no,cellular,may,tue,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,management,married,university.degree,no,yes,yes,cellular,may,tue,198,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +47,blue-collar,single,basic.4y,unknown,no,no,cellular,may,tue,343,4,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +39,services,married,high.school,no,yes,yes,cellular,may,tue,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +54,management,married,university.degree,no,yes,yes,cellular,may,tue,552,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +30,management,single,university.degree,no,yes,yes,cellular,may,tue,228,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +30,management,single,university.degree,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,management,single,university.degree,no,no,yes,cellular,may,tue,496,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +51,management,married,high.school,unknown,yes,no,cellular,may,tue,397,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,management,single,university.degree,no,yes,no,cellular,may,tue,876,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,may,tue,305,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,admin.,divorced,high.school,no,no,no,cellular,may,tue,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,788,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +31,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,183,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +33,admin.,married,basic.9y,no,yes,no,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +33,services,married,high.school,no,no,no,cellular,may,tue,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,entrepreneur,divorced,professional.course,no,yes,no,cellular,may,tue,355,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,894,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,1101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,divorced,basic.9y,unknown,yes,no,telephone,may,tue,170,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +26,student,single,high.school,unknown,yes,no,cellular,may,tue,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,150,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,tue,442,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,160,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,tue,85,8,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +28,services,single,unknown,no,yes,no,cellular,may,tue,83,9,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +44,management,married,university.degree,no,yes,no,cellular,may,tue,281,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,services,unknown,high.school,no,yes,yes,cellular,may,tue,369,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +58,blue-collar,single,basic.4y,unknown,no,no,cellular,may,tue,304,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +46,management,divorced,professional.course,no,no,no,cellular,may,tue,159,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,tue,71,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +30,services,single,high.school,no,no,no,cellular,may,tue,263,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,technician,married,university.degree,no,no,no,cellular,may,tue,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +32,management,divorced,university.degree,no,no,no,cellular,may,tue,342,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,services,married,professional.course,no,yes,no,cellular,may,tue,335,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,blue-collar,divorced,high.school,no,yes,no,cellular,may,tue,334,6,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +37,admin.,single,university.degree,no,yes,no,cellular,may,tue,414,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,divorced,high.school,unknown,no,no,cellular,may,tue,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,may,tue,200,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,technician,married,basic.9y,no,yes,no,cellular,may,tue,297,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,married,basic.9y,no,yes,no,cellular,may,tue,500,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +26,management,single,university.degree,no,no,no,cellular,may,tue,279,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +19,student,single,high.school,unknown,yes,no,cellular,may,tue,338,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,may,tue,318,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,322,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,management,divorced,unknown,no,yes,no,cellular,may,tue,147,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +42,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,63,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +55,blue-collar,married,high.school,no,no,no,cellular,may,tue,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +49,entrepreneur,married,high.school,no,yes,yes,cellular,may,tue,214,3,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,may,tue,81,9,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,tue,378,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +26,student,single,high.school,unknown,no,no,cellular,may,tue,176,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +33,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,670,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,yes +43,management,married,university.degree,unknown,no,no,cellular,may,tue,167,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,tue,333,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +52,management,married,basic.4y,no,yes,no,cellular,may,tue,1100,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,192,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,self-employed,single,university.degree,no,no,no,cellular,may,tue,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,477,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,240,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,tue,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,tue,122,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +38,technician,divorced,professional.course,no,yes,yes,cellular,may,tue,351,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,180,3,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +35,services,married,basic.6y,unknown,no,no,cellular,may,tue,178,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +43,blue-collar,divorced,basic.4y,no,unknown,unknown,cellular,may,tue,157,7,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,211,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,single,university.degree,no,yes,no,telephone,may,tue,521,6,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +48,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,862,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,319,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +53,unemployed,married,basic.9y,unknown,yes,no,cellular,may,tue,67,4,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,75,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +57,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,674,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +39,admin.,single,professional.course,no,yes,no,cellular,may,tue,209,5,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,tue,185,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +40,technician,married,professional.course,no,yes,no,cellular,may,tue,211,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +44,admin.,married,university.degree,no,yes,no,cellular,may,tue,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,tue,205,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +47,management,married,university.degree,no,yes,no,cellular,may,tue,469,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,523,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,yes,telephone,may,tue,36,7,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,may,tue,371,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,52,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +55,self-employed,married,basic.9y,no,yes,yes,cellular,may,tue,475,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +45,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,672,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +46,blue-collar,married,high.school,no,yes,yes,telephone,may,tue,328,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,1085,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,yes +29,entrepreneur,married,basic.6y,no,no,no,cellular,may,tue,118,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,may,tue,102,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,services,single,high.school,no,no,no,cellular,may,tue,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,technician,married,university.degree,no,yes,no,cellular,may,tue,370,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,admin.,married,high.school,no,yes,no,cellular,may,tue,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +48,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +37,admin.,married,high.school,no,no,no,cellular,may,tue,305,5,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +31,admin.,divorced,university.degree,no,yes,no,telephone,may,tue,259,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,399,2,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +26,management,single,university.degree,no,yes,no,cellular,may,tue,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +27,technician,single,professional.course,unknown,yes,no,cellular,may,tue,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +36,admin.,single,high.school,no,no,no,cellular,may,tue,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +46,technician,married,professional.course,no,yes,no,telephone,may,tue,193,1,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +49,admin.,married,high.school,no,no,no,cellular,may,tue,104,1,6,1,success,-1.8,92.893,-46.2,1.344,5099.1,no +38,blue-collar,married,professional.course,no,yes,no,cellular,may,tue,418,3,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,tue,408,2,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +40,services,married,high.school,no,no,no,cellular,may,tue,74,8,999,1,failure,-1.8,92.893,-46.2,1.344,5099.1,no +44,management,divorced,university.degree,no,yes,no,cellular,may,tue,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +42,technician,divorced,basic.6y,no,yes,no,cellular,may,tue,221,1,999,2,failure,-1.8,92.893,-46.2,1.344,5099.1,no +46,admin.,divorced,high.school,no,no,no,cellular,may,tue,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +46,technician,married,high.school,no,yes,no,cellular,may,tue,368,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +40,admin.,married,professional.course,no,unknown,unknown,cellular,may,tue,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,tue,614,1,999,0,nonexistent,-1.8,92.893,-46.2,1.344,5099.1,no +53,admin.,married,university.degree,unknown,no,no,cellular,may,wed,160,7,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,104,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,wed,55,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,admin.,married,unknown,no,yes,no,cellular,may,wed,7,11,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,wed,199,7,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,high.school,no,no,no,cellular,may,wed,105,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +50,services,divorced,high.school,no,no,no,cellular,may,wed,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,54,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,single,professional.course,unknown,yes,no,cellular,may,wed,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,management,divorced,university.degree,no,no,no,cellular,may,wed,451,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +38,technician,married,university.degree,no,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,technician,married,university.degree,no,yes,yes,cellular,may,wed,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +54,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,303,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,78,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,management,married,basic.9y,no,yes,yes,cellular,may,wed,438,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,management,married,university.degree,no,no,no,cellular,may,wed,210,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,wed,241,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,admin.,divorced,professional.course,no,no,no,cellular,may,wed,194,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +38,technician,married,university.degree,no,yes,no,cellular,may,wed,814,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,married,high.school,no,no,no,cellular,may,wed,327,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,married,high.school,unknown,yes,yes,cellular,may,wed,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,admin.,married,high.school,no,no,no,cellular,may,wed,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,may,wed,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,may,wed,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,wed,653,1,11,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes +40,services,single,high.school,no,no,no,cellular,may,wed,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,single,high.school,no,yes,no,cellular,may,wed,87,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,high.school,no,yes,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +58,services,married,basic.6y,unknown,no,no,cellular,may,wed,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,wed,215,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,wed,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,293,1,11,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,334,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,372,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,single,high.school,no,no,no,cellular,may,wed,473,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,married,high.school,no,no,no,cellular,may,wed,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,wed,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,entrepreneur,married,basic.4y,no,yes,no,cellular,may,wed,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,wed,731,1,10,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes +41,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,488,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +29,admin.,single,university.degree,no,no,no,cellular,may,wed,401,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,management,single,university.degree,no,yes,no,cellular,may,wed,38,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,university.degree,no,yes,yes,cellular,may,wed,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,admin.,married,high.school,unknown,yes,no,cellular,may,wed,293,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,473,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +25,student,single,basic.9y,no,no,yes,cellular,may,wed,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,14,11,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +50,services,divorced,high.school,no,no,yes,cellular,may,wed,178,5,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,wed,362,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,343,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,services,married,high.school,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +53,blue-collar,married,professional.course,unknown,no,no,cellular,may,wed,403,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,entrepreneur,married,basic.4y,no,no,yes,cellular,may,wed,767,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +45,housemaid,married,basic.6y,no,yes,no,cellular,may,wed,236,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +55,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,self-employed,married,unknown,unknown,no,no,cellular,may,wed,100,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +45,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,139,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +53,blue-collar,married,professional.course,unknown,no,yes,cellular,may,wed,595,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,technician,single,professional.course,no,yes,no,cellular,may,wed,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,may,wed,376,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,services,married,professional.course,unknown,yes,no,cellular,may,wed,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +54,technician,divorced,university.degree,no,yes,no,cellular,may,wed,132,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,438,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,divorced,basic.9y,no,unknown,unknown,cellular,may,wed,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,954,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +46,services,divorced,basic.9y,no,yes,no,cellular,may,wed,403,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,blue-collar,divorced,high.school,unknown,no,no,cellular,may,wed,848,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,wed,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,439,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,entrepreneur,married,basic.6y,no,no,no,cellular,may,wed,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,wed,36,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +57,admin.,married,high.school,no,no,no,cellular,may,wed,644,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,services,married,high.school,no,no,yes,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,34,9,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,19,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,272,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,177,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,high.school,no,no,no,cellular,may,wed,90,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,services,married,high.school,no,no,no,cellular,may,wed,339,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,high.school,no,no,no,cellular,may,wed,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,single,university.degree,unknown,yes,no,cellular,may,wed,530,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,single,university.degree,no,no,yes,cellular,may,wed,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,admin.,married,university.degree,no,no,no,cellular,may,wed,208,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,wed,54,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,management,married,basic.9y,no,yes,no,cellular,may,wed,503,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,wed,174,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,high.school,no,no,no,cellular,may,wed,465,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,married,high.school,unknown,no,no,cellular,may,wed,257,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,married,high.school,unknown,yes,no,cellular,may,wed,404,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,student,single,university.degree,no,no,no,cellular,may,wed,253,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,153,1,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +27,student,single,university.degree,no,no,no,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +25,admin.,single,university.degree,no,no,no,cellular,may,wed,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +49,admin.,married,high.school,no,yes,no,cellular,may,wed,115,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,366,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +45,unemployed,divorced,high.school,no,no,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,single,high.school,no,yes,no,cellular,may,wed,576,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +25,admin.,single,university.degree,no,yes,no,cellular,may,wed,209,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +45,unemployed,divorced,high.school,no,yes,yes,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,admin.,single,basic.9y,unknown,no,no,cellular,may,wed,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,188,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,housemaid,married,basic.6y,unknown,no,no,cellular,may,wed,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,yes,yes,cellular,may,wed,137,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,single,basic.6y,unknown,no,yes,cellular,may,wed,42,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,services,single,high.school,no,yes,no,cellular,may,wed,305,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,professional.course,no,no,no,cellular,may,wed,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,109,1,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,569,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +48,technician,married,professional.course,unknown,yes,no,cellular,may,wed,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,married,basic.9y,no,no,no,cellular,may,wed,984,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +31,services,single,high.school,no,yes,no,cellular,may,wed,234,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,wed,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,may,wed,339,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,entrepreneur,married,university.degree,unknown,no,no,cellular,may,wed,205,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,may,wed,124,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,high.school,no,yes,no,cellular,may,wed,597,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,management,married,university.degree,no,no,yes,cellular,may,wed,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,divorced,basic.9y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,164,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,238,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +57,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,wed,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,may,wed,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,basic.9y,no,yes,yes,telephone,may,wed,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +20,blue-collar,single,high.school,no,yes,no,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,338,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,187,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,single,professional.course,no,no,no,cellular,may,wed,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,single,professional.course,no,yes,yes,cellular,may,wed,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,wed,49,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +20,blue-collar,single,high.school,no,yes,no,cellular,may,wed,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,services,married,high.school,no,no,no,cellular,may,wed,990,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,may,wed,244,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,47,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,technician,divorced,professional.course,no,no,no,cellular,may,wed,258,8,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,unknown,no,yes,no,cellular,may,wed,123,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,wed,37,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,high.school,no,yes,no,telephone,may,wed,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +53,admin.,married,university.degree,unknown,yes,no,cellular,may,wed,59,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +25,services,single,high.school,no,no,no,cellular,may,wed,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +58,retired,married,basic.9y,no,no,yes,cellular,may,wed,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,225,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,admin.,married,basic.9y,no,yes,no,cellular,may,wed,472,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,professional.course,no,no,no,cellular,may,wed,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,single,basic.4y,no,unknown,unknown,cellular,may,wed,1079,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,161,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,professional.course,no,no,no,cellular,may,wed,199,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,admin.,single,university.degree,no,no,no,cellular,may,wed,68,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,wed,686,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,self-employed,married,university.degree,unknown,unknown,unknown,cellular,may,wed,64,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,high.school,no,unknown,unknown,cellular,may,wed,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,admin.,married,university.degree,no,unknown,unknown,cellular,may,wed,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,admin.,single,university.degree,no,no,no,cellular,may,wed,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +50,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,146,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,364,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,admin.,married,unknown,no,yes,no,cellular,may,wed,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,services,married,high.school,unknown,no,no,cellular,may,wed,378,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,technician,single,unknown,no,yes,no,cellular,may,wed,84,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +54,management,divorced,university.degree,no,no,no,telephone,may,wed,10,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +54,management,divorced,university.degree,no,yes,yes,telephone,may,wed,39,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,may,wed,66,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,wed,78,1,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,wed,611,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +46,services,single,high.school,unknown,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,155,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +27,admin.,married,high.school,no,yes,no,cellular,may,wed,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +57,management,married,university.degree,no,no,no,cellular,may,wed,1205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +53,technician,divorced,university.degree,no,yes,no,cellular,may,wed,167,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,admin.,married,high.school,no,no,yes,cellular,may,wed,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,married,high.school,no,yes,yes,cellular,may,wed,270,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,211,1,10,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +32,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,107,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,admin.,married,high.school,no,no,no,cellular,may,wed,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,married,professional.course,no,no,yes,cellular,may,wed,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,477,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,wed,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,admin.,married,high.school,no,no,no,cellular,may,wed,159,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +29,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,837,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +33,technician,married,professional.course,no,yes,no,cellular,may,wed,221,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,wed,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,wed,318,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,51,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,services,married,high.school,unknown,yes,no,cellular,may,wed,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,wed,29,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,wed,585,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,unknown,no,no,yes,cellular,may,wed,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,management,married,university.degree,unknown,no,no,telephone,may,wed,16,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,184,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +41,services,divorced,high.school,no,no,no,cellular,may,wed,52,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,wed,128,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,282,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,self-employed,single,university.degree,no,yes,no,cellular,may,wed,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,839,2,7,1,success,-1.8,92.893,-46.2,1.334,5099.1,yes +36,management,married,basic.9y,no,no,no,cellular,may,wed,50,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,housemaid,divorced,basic.6y,no,no,yes,cellular,may,wed,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,technician,married,university.degree,unknown,yes,no,cellular,may,wed,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,technician,single,high.school,no,no,no,cellular,may,wed,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,services,single,basic.9y,no,no,yes,cellular,may,wed,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,married,high.school,no,yes,no,cellular,may,wed,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,18,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,254,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,married,high.school,no,no,no,cellular,may,wed,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,451,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,428,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +59,admin.,married,high.school,no,no,no,cellular,may,wed,289,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,university.degree,no,yes,no,cellular,may,wed,317,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,services,single,high.school,no,no,no,cellular,may,wed,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +55,retired,married,basic.9y,unknown,no,no,cellular,may,wed,674,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,services,single,high.school,no,yes,no,cellular,may,wed,445,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +51,entrepreneur,single,basic.9y,no,no,no,cellular,may,wed,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,technician,single,university.degree,no,yes,no,telephone,may,wed,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,189,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +44,admin.,single,high.school,no,yes,no,cellular,may,wed,728,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,wed,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,179,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +49,admin.,single,basic.6y,unknown,no,no,cellular,may,wed,135,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,single,high.school,no,no,no,cellular,may,wed,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,1131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,156,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,single,professional.course,no,yes,no,cellular,may,wed,519,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +31,services,single,high.school,no,no,no,cellular,may,wed,343,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,admin.,married,high.school,no,no,no,cellular,may,wed,64,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,services,married,high.school,no,yes,no,cellular,may,wed,903,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,services,married,high.school,no,no,no,cellular,may,wed,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,459,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,unemployed,married,high.school,no,no,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,unknown,university.degree,no,no,no,cellular,may,wed,139,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +58,retired,married,professional.course,no,yes,no,cellular,may,wed,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,single,professional.course,no,yes,yes,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,wed,322,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,45,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,wed,197,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,single,professional.course,no,no,no,cellular,may,wed,687,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +51,entrepreneur,single,basic.9y,no,no,yes,cellular,may,wed,89,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +32,admin.,married,high.school,no,yes,yes,cellular,may,wed,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,389,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +40,admin.,married,basic.9y,unknown,yes,yes,cellular,may,wed,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,single,high.school,no,yes,yes,cellular,may,wed,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,married,high.school,no,no,no,cellular,may,wed,174,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +49,technician,married,university.degree,no,yes,no,cellular,may,wed,89,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +58,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,74,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,540,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +44,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +45,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,288,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,admin.,married,university.degree,no,no,no,cellular,may,wed,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,353,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +54,management,divorced,university.degree,no,yes,no,cellular,may,wed,127,2,12,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,wed,137,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,admin.,married,professional.course,no,yes,no,cellular,may,wed,827,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,single,basic.6y,no,yes,no,cellular,may,wed,402,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,admin.,married,high.school,no,yes,no,cellular,may,wed,319,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,203,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,unknown,high.school,no,no,no,cellular,may,wed,311,1,6,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,110,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,divorced,high.school,unknown,yes,no,cellular,may,wed,175,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,divorced,university.degree,no,no,no,cellular,may,wed,207,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,wed,92,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +52,admin.,single,unknown,unknown,yes,no,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,high.school,no,yes,no,telephone,may,wed,48,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,admin.,single,unknown,unknown,no,no,cellular,may,wed,321,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,management,single,high.school,no,no,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,wed,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,services,married,high.school,no,yes,no,cellular,may,wed,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,wed,317,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,wed,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,194,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,technician,married,professional.course,no,no,no,cellular,may,wed,550,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +34,admin.,married,high.school,no,no,yes,cellular,may,wed,811,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,admin.,single,basic.6y,no,yes,no,telephone,may,wed,125,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,430,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +53,admin.,married,university.degree,unknown,yes,no,cellular,may,wed,124,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +54,blue-collar,married,high.school,no,yes,yes,cellular,may,wed,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +27,services,single,high.school,unknown,yes,no,cellular,may,wed,124,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,182,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,118,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,79,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,technician,single,professional.course,no,no,yes,cellular,may,wed,289,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,482,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,professional.course,unknown,no,no,cellular,may,wed,654,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,wed,198,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,116,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,services,married,high.school,unknown,unknown,unknown,cellular,may,wed,141,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,admin.,married,high.school,no,yes,no,cellular,may,wed,346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +40,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,131,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,220,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,housemaid,married,basic.6y,unknown,yes,yes,cellular,may,wed,756,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,309,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +54,technician,divorced,university.degree,no,no,no,cellular,may,wed,91,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,services,married,high.school,no,yes,yes,cellular,may,wed,323,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +51,admin.,divorced,high.school,no,yes,yes,cellular,may,wed,316,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,283,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +24,student,single,basic.9y,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,admin.,single,university.degree,no,yes,yes,cellular,may,wed,120,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +58,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +53,blue-collar,married,professional.course,unknown,yes,no,cellular,may,wed,251,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +27,technician,single,university.degree,no,yes,yes,cellular,may,wed,754,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +37,blue-collar,single,professional.course,no,no,no,cellular,may,wed,84,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +39,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,self-employed,single,university.degree,no,no,no,cellular,may,wed,554,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +32,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,302,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,239,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,entrepreneur,single,basic.9y,no,yes,no,cellular,may,wed,396,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +58,self-employed,married,unknown,unknown,no,no,cellular,may,wed,250,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,married,professional.course,unknown,no,no,cellular,may,wed,167,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +40,housemaid,divorced,high.school,no,yes,no,cellular,may,wed,136,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,housemaid,married,basic.6y,unknown,no,no,cellular,may,wed,322,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,wed,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,206,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,admin.,single,university.degree,no,no,no,cellular,may,wed,51,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,wed,281,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,housemaid,married,high.school,unknown,yes,yes,cellular,may,wed,17,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,management,married,university.degree,unknown,no,no,cellular,may,wed,825,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,admin.,divorced,high.school,no,yes,no,telephone,may,wed,62,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,single,high.school,no,yes,yes,cellular,may,wed,253,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +48,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,wed,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +49,admin.,married,university.degree,no,no,no,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,311,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,no,yes,no,telephone,may,wed,90,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,management,single,high.school,no,no,yes,cellular,may,wed,402,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,22,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,wed,89,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,professional.course,unknown,yes,no,cellular,may,wed,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,wed,350,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,technician,divorced,professional.course,no,yes,no,telephone,may,wed,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,technician,married,professional.course,no,yes,yes,cellular,may,wed,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,may,wed,192,1,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,technician,divorced,basic.9y,no,yes,yes,cellular,may,wed,103,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,married,high.school,unknown,no,no,cellular,may,wed,765,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +40,blue-collar,married,unknown,no,yes,no,cellular,may,wed,88,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +30,admin.,divorced,high.school,no,yes,no,cellular,may,wed,422,1,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +47,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,74,6,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +34,admin.,married,university.degree,no,no,no,telephone,may,wed,149,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +30,services,single,high.school,unknown,yes,no,cellular,may,wed,70,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,blue-collar,single,professional.course,no,yes,no,cellular,may,wed,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,233,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,28,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,admin.,single,unknown,unknown,no,yes,cellular,may,wed,346,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +46,management,married,university.degree,unknown,yes,yes,cellular,may,wed,172,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,services,married,basic.9y,no,yes,no,cellular,may,wed,523,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,management,single,university.degree,no,yes,yes,cellular,may,wed,147,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +54,management,divorced,university.degree,no,yes,yes,cellular,may,wed,265,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +54,technician,divorced,university.degree,no,yes,no,cellular,may,wed,57,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +40,services,married,high.school,no,no,no,cellular,may,wed,246,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,entrepreneur,single,high.school,no,yes,yes,cellular,may,wed,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +37,admin.,single,high.school,no,no,no,cellular,may,wed,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,management,married,university.degree,no,yes,no,cellular,may,wed,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +51,management,divorced,university.degree,no,no,no,cellular,may,wed,345,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,168,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,services,married,basic.6y,no,yes,no,cellular,may,wed,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +58,retired,married,basic.4y,no,yes,no,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,may,wed,116,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,technician,married,university.degree,no,no,no,cellular,may,wed,1489,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +33,entrepreneur,married,basic.9y,no,no,no,cellular,may,wed,349,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +30,services,married,high.school,unknown,no,yes,cellular,may,wed,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,admin.,single,university.degree,no,no,yes,cellular,may,wed,593,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,single,high.school,no,no,yes,cellular,may,wed,1347,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +28,admin.,single,university.degree,no,yes,no,cellular,may,wed,69,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,technician,single,university.degree,no,no,no,cellular,may,wed,307,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,242,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,self-employed,divorced,university.degree,no,no,no,cellular,may,wed,143,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,129,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,320,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,206,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,self-employed,married,basic.9y,no,no,no,cellular,may,wed,270,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,entrepreneur,married,basic.6y,no,no,no,cellular,may,wed,1369,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,wed,456,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,wed,17,3,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +49,services,single,high.school,no,no,yes,cellular,may,wed,231,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +28,admin.,married,high.school,no,yes,no,cellular,may,wed,293,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,wed,215,2,999,2,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,technician,married,professional.course,no,no,yes,cellular,may,wed,273,4,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,804,2,9,1,success,-1.8,92.893,-46.2,1.334,5099.1,no +48,entrepreneur,single,professional.course,no,yes,no,cellular,may,wed,606,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +44,admin.,married,basic.9y,unknown,no,no,cellular,may,wed,217,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,wed,261,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +32,services,married,high.school,no,yes,no,telephone,may,wed,309,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +37,admin.,married,university.degree,no,no,no,cellular,may,wed,232,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,wed,152,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +50,admin.,divorced,university.degree,no,yes,no,cellular,may,wed,335,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,437,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,married,high.school,no,no,no,telephone,may,wed,167,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,458,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,wed,91,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,284,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +45,services,divorced,high.school,unknown,no,no,cellular,may,wed,185,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,77,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +29,student,single,basic.9y,no,no,no,cellular,may,wed,467,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,187,8,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +45,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,1074,4,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,yes +37,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,services,married,high.school,no,no,yes,cellular,may,wed,362,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,technician,divorced,professional.course,no,no,yes,cellular,may,wed,445,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +46,services,married,basic.9y,no,no,yes,cellular,may,wed,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,wed,281,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +52,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,667,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +33,blue-collar,married,basic.6y,no,yes,yes,cellular,may,wed,686,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,157,3,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +48,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,services,married,high.school,no,yes,no,telephone,may,wed,276,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,blue-collar,married,unknown,no,no,no,cellular,may,wed,232,6,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +43,unemployed,married,basic.4y,no,no,no,cellular,may,wed,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +59,admin.,married,high.school,no,no,no,cellular,may,wed,232,2,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,wed,940,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,wed,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +34,housemaid,married,high.school,unknown,no,no,cellular,may,wed,361,5,999,1,failure,-1.8,92.893,-46.2,1.334,5099.1,no +31,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,796,2,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,no +38,technician,single,university.degree,no,yes,yes,cellular,may,wed,606,3,999,0,nonexistent,-1.8,92.893,-46.2,1.334,5099.1,yes +39,technician,married,professional.course,no,no,no,cellular,may,thu,31,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +57,admin.,married,high.school,unknown,yes,no,cellular,may,thu,55,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,may,thu,86,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,admin.,single,university.degree,no,no,no,cellular,may,thu,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,management,married,unknown,no,no,no,telephone,may,thu,25,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +31,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,services,married,professional.course,unknown,no,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,315,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,services,married,basic.9y,unknown,yes,no,cellular,may,thu,343,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,management,married,basic.4y,no,no,no,cellular,may,thu,175,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,admin.,divorced,basic.9y,unknown,no,no,cellular,may,thu,270,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,technician,married,university.degree,no,yes,no,cellular,may,thu,83,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,57,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,management,married,basic.4y,no,yes,no,cellular,may,thu,124,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,thu,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,technician,married,university.degree,no,yes,no,telephone,may,thu,755,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,admin.,single,high.school,no,yes,yes,cellular,may,thu,106,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,admin.,single,high.school,no,yes,no,cellular,may,thu,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,housemaid,single,high.school,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,247,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,management,married,university.degree,no,no,no,cellular,may,thu,370,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,51,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,157,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +26,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,531,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,thu,512,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,admin.,married,high.school,no,yes,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,98,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,31,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,may,thu,923,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +36,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,single,basic.6y,no,no,no,cellular,may,thu,22,11,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,entrepreneur,divorced,basic.6y,no,no,yes,cellular,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +54,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,thu,62,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,single,university.degree,unknown,no,no,cellular,may,thu,203,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +24,services,single,high.school,unknown,yes,no,cellular,may,thu,689,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,thu,191,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,single,high.school,no,yes,no,cellular,may,thu,27,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,may,thu,203,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,single,high.school,no,yes,yes,cellular,may,thu,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,may,thu,722,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,thu,449,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,management,married,high.school,no,yes,no,telephone,may,thu,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,thu,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,services,married,high.school,no,yes,no,telephone,may,thu,45,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,single,high.school,no,yes,yes,cellular,may,thu,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,admin.,single,university.degree,no,no,no,cellular,may,thu,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,admin.,single,professional.course,no,yes,yes,cellular,may,thu,104,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,entrepreneur,married,unknown,no,yes,yes,cellular,may,thu,85,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,252,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +54,technician,single,university.degree,no,yes,yes,cellular,may,thu,121,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +43,services,married,high.school,no,yes,no,cellular,may,thu,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +57,retired,divorced,high.school,no,yes,yes,cellular,may,thu,265,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +54,technician,single,university.degree,no,yes,no,cellular,may,thu,333,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,623,1,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes +32,admin.,married,high.school,no,no,no,cellular,may,thu,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,thu,132,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,high.school,no,no,no,cellular,may,thu,104,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,may,thu,19,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,high.school,no,no,no,cellular,may,thu,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,thu,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,high.school,unknown,yes,no,cellular,may,thu,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,183,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,admin.,married,basic.9y,no,no,no,cellular,may,thu,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,admin.,married,high.school,no,no,no,cellular,may,thu,329,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,services,married,basic.9y,no,yes,no,cellular,may,thu,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,1957,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,thu,556,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,393,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,management,married,university.degree,unknown,yes,no,cellular,may,thu,383,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,thu,141,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,married,university.degree,no,no,no,cellular,may,thu,70,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,327,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,375,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +47,technician,divorced,university.degree,unknown,yes,no,cellular,may,thu,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,self-employed,married,professional.course,no,yes,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,thu,146,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,single,high.school,no,no,yes,cellular,may,thu,184,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +26,technician,single,professional.course,no,yes,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,may,thu,148,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +50,services,divorced,basic.9y,no,yes,no,cellular,may,thu,429,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +25,services,single,high.school,no,no,no,cellular,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,technician,married,university.degree,no,yes,no,cellular,may,thu,402,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,155,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,self-employed,divorced,university.degree,no,yes,no,cellular,may,thu,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,self-employed,divorced,university.degree,no,yes,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,single,professional.course,no,no,no,cellular,may,thu,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +60,admin.,single,university.degree,no,yes,yes,cellular,may,thu,107,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +60,admin.,single,university.degree,no,no,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,technician,single,high.school,unknown,yes,yes,cellular,may,thu,754,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,professional.course,no,yes,yes,telephone,may,thu,29,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,self-employed,divorced,university.degree,no,no,no,cellular,may,thu,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,professional.course,no,no,no,cellular,may,thu,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,professional.course,no,yes,no,cellular,may,thu,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,student,single,university.degree,unknown,no,no,telephone,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,252,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +52,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,69,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +52,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,198,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,services,married,high.school,no,no,no,telephone,may,thu,63,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,single,unknown,no,yes,no,cellular,may,thu,172,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,83,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,married,university.degree,unknown,yes,no,cellular,may,thu,462,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,thu,397,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,married,professional.course,no,no,no,cellular,may,thu,229,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,single,professional.course,no,yes,yes,cellular,may,thu,1046,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +32,admin.,single,professional.course,no,no,no,cellular,may,thu,1145,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,single,basic.6y,no,no,no,cellular,may,thu,159,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,services,married,high.school,unknown,no,no,cellular,may,thu,56,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +28,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,1148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +40,unemployed,married,professional.course,no,yes,no,cellular,may,thu,609,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,services,divorced,high.school,no,no,no,cellular,may,thu,502,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,thu,855,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +30,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,542,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,91,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,unemployed,single,university.degree,no,yes,no,cellular,may,thu,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,divorced,unknown,no,yes,no,cellular,may,thu,40,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,234,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,divorced,unknown,no,no,no,cellular,may,thu,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,technician,single,high.school,no,yes,yes,cellular,may,thu,609,1,11,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes +45,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,thu,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +57,retired,married,basic.6y,no,yes,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +57,retired,married,basic.6y,no,no,yes,cellular,may,thu,93,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +57,retired,married,basic.6y,no,yes,no,cellular,may,thu,189,1,6,2,success,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,basic.9y,no,yes,no,cellular,may,thu,302,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +26,services,single,university.degree,no,yes,no,cellular,may,thu,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,11,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +55,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,1191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,406,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,36,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,blue-collar,single,high.school,no,no,no,cellular,may,thu,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,services,single,university.degree,no,yes,no,cellular,may,thu,551,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,158,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +28,blue-collar,single,high.school,no,no,no,cellular,may,thu,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,192,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,143,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,divorced,high.school,no,yes,no,cellular,may,thu,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,married,high.school,no,no,yes,cellular,may,thu,147,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,management,married,basic.4y,no,yes,no,cellular,may,thu,60,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,thu,50,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +45,management,married,university.degree,no,yes,no,cellular,may,thu,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,technician,married,university.degree,no,unknown,unknown,cellular,may,thu,86,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,management,married,basic.6y,unknown,no,no,cellular,may,thu,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,356,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,divorced,high.school,unknown,no,no,cellular,may,thu,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,single,high.school,no,yes,no,cellular,may,thu,229,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,single,high.school,no,yes,no,cellular,may,thu,208,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,divorced,high.school,unknown,yes,no,cellular,may,thu,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,management,married,university.degree,no,no,no,cellular,may,thu,647,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +36,technician,single,high.school,no,yes,no,cellular,may,thu,426,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,625,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,services,divorced,basic.6y,no,no,yes,cellular,may,thu,122,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +38,admin.,married,high.school,no,yes,yes,cellular,may,thu,574,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +41,management,married,university.degree,no,no,yes,cellular,may,thu,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,unemployed,single,university.degree,no,no,no,cellular,may,thu,213,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +31,technician,married,professional.course,unknown,yes,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,management,married,university.degree,no,yes,no,cellular,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,983,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +35,technician,single,professional.course,no,yes,no,cellular,may,thu,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +49,admin.,divorced,high.school,no,yes,no,cellular,may,thu,168,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,technician,single,professional.course,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,divorced,professional.course,no,no,no,cellular,may,thu,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +47,management,married,university.degree,unknown,yes,no,cellular,may,thu,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,may,thu,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,services,single,professional.course,unknown,yes,no,cellular,may,thu,199,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,admin.,married,basic.9y,no,yes,no,cellular,may,thu,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,282,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,technician,married,professional.course,no,yes,no,cellular,may,thu,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +48,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,313,1,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +47,self-employed,married,basic.4y,unknown,no,no,cellular,may,thu,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,may,thu,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +47,services,married,high.school,no,no,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,unknown,no,no,no,cellular,may,thu,446,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,self-employed,married,basic.4y,no,no,no,cellular,may,thu,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,thu,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +24,student,single,university.degree,no,yes,no,cellular,may,thu,362,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,admin.,married,university.degree,no,yes,yes,cellular,may,thu,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,thu,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,thu,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,services,married,basic.9y,no,yes,no,cellular,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,technician,married,university.degree,no,yes,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,54,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +44,technician,divorced,professional.course,no,no,no,cellular,may,thu,569,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,220,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,services,married,high.school,no,no,no,cellular,may,thu,57,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,490,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,thu,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,158,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,134,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,services,married,basic.9y,no,no,yes,cellular,may,thu,447,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +43,admin.,single,high.school,no,yes,no,cellular,may,thu,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,married,professional.course,no,no,no,cellular,may,thu,293,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,management,married,university.degree,no,no,yes,cellular,may,thu,130,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,services,married,high.school,no,yes,no,cellular,may,thu,1129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +34,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,41,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,thu,242,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,technician,married,professional.course,no,yes,yes,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,199,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,105,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,thu,332,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +38,management,married,unknown,no,no,no,cellular,may,thu,155,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,high.school,no,no,yes,cellular,may,thu,142,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,technician,single,high.school,no,yes,no,cellular,may,thu,491,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,admin.,married,high.school,no,no,no,cellular,may,thu,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,married,high.school,no,no,yes,cellular,may,thu,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,blue-collar,married,professional.course,unknown,yes,no,cellular,may,thu,196,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,may,thu,290,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,technician,married,university.degree,no,yes,no,telephone,may,thu,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,technician,married,university.degree,no,yes,no,cellular,may,thu,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,admin.,single,high.school,unknown,yes,yes,cellular,may,thu,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,481,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +45,admin.,divorced,basic.9y,unknown,yes,no,cellular,may,thu,355,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,single,high.school,no,yes,no,cellular,may,thu,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,single,high.school,no,yes,no,telephone,may,thu,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,admin.,single,high.school,no,yes,yes,cellular,may,thu,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,468,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,125,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +56,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +23,student,single,basic.9y,no,yes,yes,cellular,may,thu,6,7,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,management,married,university.degree,no,yes,no,cellular,may,thu,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,married,professional.course,no,no,no,cellular,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,single,university.degree,unknown,no,no,cellular,may,thu,412,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,management,married,university.degree,no,no,no,cellular,may,thu,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,may,thu,361,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,160,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,661,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +37,management,divorced,university.degree,no,no,no,cellular,may,thu,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,married,professional.course,no,no,no,cellular,may,thu,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,110,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,divorced,high.school,no,yes,no,cellular,may,thu,174,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,single,high.school,no,yes,no,cellular,may,thu,66,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,technician,married,university.degree,no,no,no,cellular,may,thu,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,single,high.school,no,yes,yes,cellular,may,thu,332,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,may,thu,162,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,admin.,divorced,high.school,no,yes,no,cellular,may,thu,304,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,unemployed,divorced,high.school,unknown,yes,no,cellular,may,thu,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,623,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +32,services,married,high.school,no,no,no,cellular,may,thu,213,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,219,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,technician,single,basic.9y,no,yes,no,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +50,admin.,married,basic.9y,no,unknown,unknown,cellular,may,thu,446,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,267,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,services,married,high.school,unknown,no,no,cellular,may,thu,67,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +38,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,476,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,married,high.school,unknown,no,no,cellular,may,thu,207,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,management,married,university.degree,no,no,no,cellular,may,thu,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,services,single,high.school,no,no,no,cellular,may,thu,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,services,married,professional.course,no,yes,no,cellular,may,thu,103,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +45,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,single,university.degree,unknown,no,no,cellular,may,thu,159,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,divorced,high.school,no,yes,no,cellular,may,thu,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,admin.,married,high.school,no,yes,no,cellular,may,thu,182,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,student,single,high.school,no,yes,no,cellular,may,thu,101,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,married,professional.course,no,yes,no,cellular,may,thu,156,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,single,high.school,no,no,no,cellular,may,thu,957,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +44,self-employed,divorced,professional.course,no,yes,no,cellular,may,thu,652,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,married,professional.course,no,yes,no,cellular,may,thu,258,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,yes,no,cellular,may,thu,349,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +34,management,married,university.degree,unknown,yes,no,cellular,may,thu,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,self-employed,married,professional.course,no,yes,no,cellular,may,thu,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,management,single,university.degree,no,no,no,telephone,may,thu,287,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,management,divorced,university.degree,no,yes,no,cellular,may,thu,154,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,services,single,high.school,no,yes,no,cellular,may,thu,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +52,technician,married,professional.course,no,no,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,services,single,high.school,no,yes,yes,cellular,may,thu,356,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,management,single,university.degree,no,no,no,cellular,may,thu,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,management,single,university.degree,no,yes,no,telephone,may,thu,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,divorced,professional.course,no,yes,no,cellular,may,thu,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +59,retired,divorced,high.school,unknown,no,no,cellular,may,thu,97,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +48,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,services,married,high.school,no,yes,no,cellular,may,thu,87,2,12,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,divorced,high.school,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,thu,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +48,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,370,2,1,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +42,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,560,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,admin.,single,unknown,no,yes,no,cellular,may,thu,473,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,352,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,services,divorced,high.school,unknown,yes,no,cellular,may,thu,295,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,entrepreneur,married,basic.6y,no,no,no,cellular,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,admin.,single,high.school,no,yes,no,cellular,may,thu,360,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,195,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,services,married,basic.9y,no,no,no,cellular,may,thu,225,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,single,university.degree,unknown,yes,no,cellular,may,thu,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,may,thu,589,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,unemployed,married,basic.4y,no,no,no,cellular,may,thu,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +58,technician,divorced,university.degree,no,no,no,cellular,may,thu,101,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,thu,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,may,thu,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,thu,235,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,married,professional.course,unknown,yes,yes,cellular,may,thu,18,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,253,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,technician,married,professional.course,no,no,no,cellular,may,thu,347,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +40,technician,single,university.degree,no,no,no,telephone,may,thu,430,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,thu,100,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,thu,1030,1,6,1,success,-1.8,92.893,-46.2,1.327,5099.1,yes +31,services,divorced,high.school,unknown,no,no,cellular,may,thu,45,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,127,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,56,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,technician,married,professional.course,no,yes,no,cellular,may,thu,1254,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +55,technician,married,university.degree,no,yes,yes,cellular,may,thu,895,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +28,services,married,basic.9y,unknown,yes,yes,cellular,may,thu,65,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,270,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,entrepreneur,married,high.school,no,no,no,telephone,may,thu,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,admin.,married,high.school,no,no,yes,cellular,may,thu,279,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,management,married,university.degree,unknown,no,yes,cellular,may,thu,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,539,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +27,admin.,married,high.school,no,no,no,cellular,may,thu,643,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.4y,unknown,no,yes,cellular,may,thu,262,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,self-employed,married,basic.9y,no,no,no,cellular,may,thu,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,thu,798,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,admin.,married,basic.9y,no,no,no,cellular,may,thu,95,6,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,unemployed,married,basic.6y,no,yes,no,cellular,may,thu,425,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,professional.course,unknown,no,no,cellular,may,thu,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +38,admin.,single,university.degree,no,no,yes,cellular,may,thu,266,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,admin.,single,basic.9y,unknown,yes,no,cellular,may,thu,33,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,330,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,management,married,university.degree,no,no,no,cellular,may,thu,304,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +27,blue-collar,single,high.school,no,no,yes,cellular,may,thu,308,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +54,admin.,married,high.school,no,yes,no,cellular,may,thu,594,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +56,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,373,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,thu,314,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,single,high.school,no,no,yes,cellular,may,thu,50,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,single,basic.6y,unknown,no,yes,cellular,may,thu,245,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,management,married,university.degree,no,yes,no,cellular,may,thu,247,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,management,married,university.degree,no,no,no,cellular,may,thu,437,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,management,married,university.degree,no,yes,no,cellular,may,thu,458,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,96,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +49,technician,single,high.school,no,no,yes,cellular,may,thu,253,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,married,professional.course,no,no,no,cellular,may,thu,271,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,services,married,high.school,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,married,high.school,no,unknown,unknown,cellular,may,thu,582,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,technician,single,professional.course,no,no,yes,cellular,may,thu,423,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,entrepreneur,divorced,basic.6y,no,no,no,cellular,may,thu,422,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,single,university.degree,no,no,yes,cellular,may,thu,49,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,244,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,may,thu,924,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,married,professional.course,no,yes,no,cellular,may,thu,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +59,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,190,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,580,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +46,admin.,married,university.degree,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +59,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,600,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,580,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,admin.,married,basic.9y,no,yes,yes,cellular,may,thu,639,2,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,244,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,may,thu,245,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,single,basic.4y,no,no,yes,cellular,may,thu,178,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,212,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,technician,married,professional.course,no,unknown,unknown,cellular,may,thu,35,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,divorced,university.degree,no,no,yes,cellular,may,thu,201,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,services,married,basic.9y,no,yes,no,cellular,may,thu,158,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,admin.,married,high.school,no,no,yes,cellular,may,thu,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,1806,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +48,blue-collar,married,professional.course,no,no,no,cellular,may,thu,146,2,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +54,admin.,married,high.school,no,no,no,cellular,may,thu,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,556,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,728,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,may,thu,189,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,thu,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,admin.,single,high.school,unknown,no,no,cellular,may,thu,1391,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +30,services,single,high.school,no,no,no,cellular,may,thu,132,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,services,married,basic.9y,unknown,no,no,telephone,may,thu,11,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,166,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +26,unemployed,married,basic.9y,no,yes,yes,cellular,may,thu,217,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,1516,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +41,admin.,single,high.school,no,no,no,telephone,may,thu,202,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,divorced,university.degree,no,yes,yes,cellular,may,thu,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,admin.,divorced,high.school,no,yes,no,cellular,may,thu,350,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,93,4,999,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +44,services,married,professional.course,unknown,yes,no,cellular,may,thu,428,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +24,student,single,university.degree,no,no,no,telephone,may,thu,908,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,student,single,basic.9y,unknown,yes,no,cellular,may,thu,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,140,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +32,admin.,single,professional.course,no,yes,no,cellular,may,thu,603,2,7,2,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,592,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,services,single,high.school,no,no,yes,cellular,may,thu,195,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +28,student,single,university.degree,unknown,yes,no,cellular,may,thu,191,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,technician,divorced,professional.course,no,yes,no,cellular,may,thu,245,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,entrepreneur,single,basic.9y,unknown,no,no,cellular,may,thu,300,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,services,married,high.school,no,yes,no,cellular,may,thu,739,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +56,admin.,married,basic.9y,no,no,yes,cellular,may,thu,225,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,429,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,management,married,university.degree,no,yes,no,cellular,may,thu,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,434,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,services,married,high.school,unknown,no,no,telephone,may,thu,79,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +40,services,married,high.school,unknown,no,no,cellular,may,thu,388,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,thu,128,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,single,high.school,no,yes,yes,cellular,may,thu,269,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,services,married,high.school,no,yes,yes,cellular,may,thu,273,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +48,blue-collar,married,professional.course,no,no,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,364,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,no,no,cellular,may,thu,249,4,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,professional.course,no,yes,no,cellular,may,thu,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,services,single,high.school,no,no,no,cellular,may,thu,337,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,thu,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,unemployed,married,professional.course,no,yes,no,cellular,may,thu,700,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,admin.,single,basic.9y,unknown,yes,yes,cellular,may,thu,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,technician,single,professional.course,no,no,yes,cellular,may,thu,181,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,student,single,basic.9y,unknown,yes,yes,cellular,may,thu,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,technician,married,professional.course,unknown,yes,no,cellular,may,thu,476,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,thu,877,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +24,services,single,high.school,unknown,yes,no,cellular,may,thu,263,2,10,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,no,no,cellular,may,thu,156,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,792,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +49,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,589,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,services,married,high.school,no,unknown,unknown,cellular,may,thu,215,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,management,married,university.degree,no,yes,yes,cellular,may,thu,84,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,329,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +48,technician,married,basic.9y,no,no,no,cellular,may,thu,553,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +38,technician,married,university.degree,no,yes,no,cellular,may,thu,174,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +47,admin.,single,basic.9y,no,no,no,cellular,may,thu,253,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +47,management,married,university.degree,no,yes,no,cellular,may,thu,127,6,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,management,married,university.degree,no,yes,yes,cellular,may,thu,265,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,management,married,university.degree,no,no,no,cellular,may,thu,272,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,admin.,married,high.school,unknown,yes,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,admin.,divorced,professional.course,no,no,no,cellular,may,thu,37,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,1135,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +31,management,single,university.degree,no,yes,no,cellular,may,thu,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +53,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,376,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +37,admin.,single,university.degree,no,yes,no,cellular,may,thu,255,6,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +49,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,324,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,228,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,may,thu,20,8,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +37,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,635,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,admin.,single,high.school,no,no,no,cellular,may,thu,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,management,single,university.degree,no,unknown,unknown,cellular,may,thu,274,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +39,technician,married,professional.course,no,no,yes,cellular,may,thu,831,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +34,services,single,high.school,no,yes,no,cellular,may,thu,541,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,unknown,unknown,no,no,no,cellular,may,thu,162,7,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,admin.,divorced,high.school,no,yes,yes,cellular,may,thu,892,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,admin.,married,basic.6y,no,yes,no,telephone,may,thu,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,technician,single,university.degree,unknown,yes,no,cellular,may,thu,63,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,882,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +46,admin.,married,high.school,no,yes,no,telephone,may,thu,146,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,463,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +51,self-employed,married,high.school,no,yes,no,cellular,may,thu,43,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +55,unemployed,divorced,university.degree,no,no,no,cellular,may,thu,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,services,married,high.school,no,no,no,cellular,may,thu,62,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,350,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,273,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,thu,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,thu,304,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +33,admin.,married,university.degree,no,no,no,cellular,may,thu,245,5,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,411,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +26,services,single,high.school,no,yes,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +25,services,single,high.school,no,yes,no,cellular,may,thu,239,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,technician,single,professional.course,no,yes,no,cellular,may,thu,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +42,admin.,married,high.school,no,unknown,unknown,cellular,may,thu,878,3,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,yes +41,services,single,unknown,no,yes,no,cellular,may,thu,206,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +35,blue-collar,married,unknown,no,yes,no,cellular,may,thu,1262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +35,management,married,university.degree,no,no,no,cellular,may,thu,597,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,yes +50,admin.,married,basic.9y,no,yes,no,telephone,may,thu,138,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +50,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,857,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,admin.,divorced,basic.9y,unknown,no,no,cellular,may,thu,133,1,12,1,success,-1.8,92.893,-46.2,1.327,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,10,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,technician,married,professional.course,unknown,no,no,cellular,may,thu,681,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +29,services,married,professional.course,no,no,no,cellular,may,thu,1051,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,technician,single,university.degree,no,no,no,cellular,may,thu,235,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,admin.,single,high.school,no,no,no,cellular,may,thu,42,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,technician,single,university.degree,no,yes,no,cellular,may,thu,59,4,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +56,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,unknown,no,no,no,telephone,may,thu,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,490,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +48,services,married,high.school,no,no,no,cellular,may,thu,388,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +45,technician,married,professional.course,no,yes,yes,cellular,may,thu,702,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,1297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +28,technician,married,university.degree,no,yes,no,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,208,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +30,blue-collar,single,high.school,unknown,yes,no,cellular,may,thu,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +44,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,148,5,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,services,married,basic.6y,unknown,yes,no,cellular,may,thu,378,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +58,technician,divorced,university.degree,no,no,no,cellular,may,thu,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.327,5099.1,no +41,blue-collar,married,unknown,no,no,yes,cellular,may,thu,373,2,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +57,retired,married,basic.6y,no,no,no,cellular,may,thu,873,1,999,1,failure,-1.8,92.893,-46.2,1.327,5099.1,no +41,technician,married,university.degree,no,yes,yes,cellular,may,fri,170,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,fri,141,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,182,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,high.school,no,no,no,telephone,may,fri,128,8,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,management,divorced,university.degree,no,yes,no,cellular,may,fri,156,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +50,blue-collar,divorced,basic.9y,no,no,no,cellular,may,fri,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.4y,no,no,yes,cellular,may,fri,328,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +30,blue-collar,married,basic.4y,unknown,no,no,telephone,may,fri,142,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,high.school,unknown,yes,no,telephone,may,fri,17,9,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,fri,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,technician,married,professional.course,unknown,yes,no,cellular,may,fri,608,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,admin.,single,university.degree,no,yes,no,cellular,may,fri,150,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,management,single,high.school,no,yes,yes,cellular,may,fri,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,admin.,single,university.degree,unknown,no,no,telephone,may,fri,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,single,unknown,no,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,management,single,university.degree,no,no,yes,cellular,may,fri,662,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +38,services,married,high.school,no,yes,yes,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,admin.,single,university.degree,unknown,yes,yes,cellular,may,fri,440,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,41,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +48,admin.,married,basic.9y,no,no,no,cellular,may,fri,253,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,admin.,divorced,professional.course,no,no,yes,cellular,may,fri,132,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +49,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,164,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,906,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,admin.,married,high.school,no,no,no,cellular,may,fri,131,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +44,admin.,married,high.school,no,no,no,cellular,may,fri,127,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,fri,104,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,fri,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,admin.,married,high.school,no,yes,no,cellular,may,fri,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,high.school,unknown,no,no,cellular,may,fri,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,admin.,divorced,high.school,no,no,no,cellular,may,fri,11,8,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,married,high.school,no,yes,yes,cellular,may,fri,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,high.school,no,yes,yes,cellular,may,fri,795,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,services,single,high.school,no,no,no,cellular,may,fri,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,fri,729,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +27,blue-collar,single,high.school,no,no,no,cellular,may,fri,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,married,basic.9y,no,yes,yes,cellular,may,fri,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,married,basic.9y,no,no,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.6y,no,yes,yes,cellular,may,fri,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,admin.,single,high.school,no,yes,no,cellular,may,fri,57,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,services,married,high.school,no,yes,no,cellular,may,fri,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +56,management,divorced,university.degree,no,no,no,cellular,may,fri,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,fri,68,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,fri,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,married,basic.9y,no,no,yes,cellular,may,fri,1077,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +32,technician,divorced,professional.course,no,no,yes,cellular,may,fri,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,may,fri,440,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,student,single,university.degree,no,no,no,cellular,may,fri,81,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +28,student,single,university.degree,no,yes,no,cellular,may,fri,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +60,management,married,basic.4y,unknown,no,no,cellular,may,fri,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,divorced,high.school,no,yes,no,cellular,may,fri,380,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,married,high.school,unknown,no,no,cellular,may,fri,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,unknown,yes,no,cellular,may,fri,181,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,single,basic.9y,no,yes,no,cellular,may,fri,293,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,1022,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +42,admin.,married,high.school,no,yes,no,cellular,may,fri,106,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,technician,single,professional.course,unknown,yes,no,cellular,may,fri,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,divorced,university.degree,unknown,yes,no,cellular,may,fri,84,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,72,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,may,fri,364,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,technician,married,professional.course,no,yes,no,cellular,may,fri,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,single,high.school,no,no,no,cellular,may,fri,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,266,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,may,fri,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,328,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,technician,married,university.degree,no,yes,no,cellular,may,fri,285,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,63,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,divorced,university.degree,unknown,no,no,cellular,may,fri,776,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +37,technician,married,professional.course,no,yes,yes,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,may,fri,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +35,services,single,high.school,no,yes,yes,cellular,may,fri,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,may,fri,213,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,475,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,housemaid,married,basic.4y,no,yes,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,housemaid,married,basic.4y,no,yes,yes,cellular,may,fri,340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,122,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,high.school,no,yes,no,cellular,may,fri,232,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,65,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,self-employed,married,university.degree,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,may,fri,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,services,single,high.school,no,yes,no,cellular,may,fri,557,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,entrepreneur,married,basic.9y,no,yes,no,telephone,may,fri,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,services,single,high.school,unknown,no,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,self-employed,married,university.degree,no,no,no,cellular,may,fri,395,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +46,admin.,divorced,basic.9y,no,yes,no,cellular,may,fri,275,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,admin.,single,university.degree,no,yes,yes,cellular,may,fri,171,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,265,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,40,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +57,retired,single,university.degree,no,no,no,cellular,may,fri,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,management,divorced,high.school,no,yes,no,cellular,may,fri,163,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,no,no,cellular,may,fri,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +58,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,74,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,49,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,technician,single,professional.course,no,yes,no,cellular,may,fri,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,university.degree,no,no,yes,cellular,may,fri,208,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,single,high.school,no,no,no,cellular,may,fri,103,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,self-employed,single,university.degree,no,no,no,cellular,may,fri,302,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +50,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,103,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,75,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,fri,97,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,technician,divorced,professional.course,unknown,yes,no,cellular,may,fri,14,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,high.school,no,yes,yes,cellular,may,fri,137,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,services,married,high.school,unknown,yes,yes,cellular,may,fri,19,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,management,married,university.degree,no,yes,no,cellular,may,fri,144,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,entrepreneur,married,basic.6y,no,yes,yes,cellular,may,fri,158,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,services,single,basic.6y,unknown,no,yes,cellular,may,fri,307,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,self-employed,married,university.degree,no,no,no,cellular,may,fri,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,may,fri,1281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +51,blue-collar,married,university.degree,no,no,no,cellular,may,fri,153,4,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +24,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,389,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,technician,married,professional.course,no,no,no,cellular,may,fri,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,married,professional.course,no,yes,yes,cellular,may,fri,134,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,fri,153,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,851,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.6y,no,unknown,unknown,cellular,may,fri,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,entrepreneur,married,university.degree,no,yes,no,telephone,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,services,single,high.school,unknown,no,no,cellular,may,fri,182,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,self-employed,married,university.degree,no,no,no,cellular,may,fri,704,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes +33,technician,married,professional.course,no,yes,yes,cellular,may,fri,500,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,high.school,no,no,yes,cellular,may,fri,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,self-employed,single,university.degree,no,no,yes,cellular,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +55,entrepreneur,divorced,university.degree,unknown,no,no,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,299,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,may,fri,6,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,159,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +44,services,single,high.school,no,no,no,cellular,may,fri,318,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,self-employed,single,university.degree,no,no,no,cellular,may,fri,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.6y,no,unknown,unknown,telephone,may,fri,833,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +53,admin.,married,high.school,no,yes,no,cellular,may,fri,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,student,single,university.degree,no,no,no,cellular,may,fri,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,86,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,fri,80,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,52,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,technician,married,professional.course,no,yes,no,cellular,may,fri,346,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,813,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +44,management,divorced,university.degree,no,unknown,unknown,cellular,may,fri,47,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,technician,married,professional.course,no,no,no,cellular,may,fri,1014,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,144,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,single,university.degree,no,unknown,unknown,cellular,may,fri,498,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +51,management,married,university.degree,no,no,no,cellular,may,fri,203,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,may,fri,268,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +22,student,single,high.school,no,no,no,cellular,may,fri,312,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,management,married,university.degree,no,no,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,single,university.degree,no,unknown,unknown,cellular,may,fri,31,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,561,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,admin.,divorced,university.degree,no,no,no,telephone,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,212,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +55,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +56,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,50,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,fri,402,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,349,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,married,high.school,no,no,no,cellular,may,fri,134,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +28,services,married,high.school,no,no,yes,cellular,may,fri,343,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,fri,120,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,services,married,high.school,no,yes,no,telephone,may,fri,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,admin.,married,university.degree,unknown,yes,no,cellular,may,fri,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,single,high.school,unknown,no,no,cellular,may,fri,239,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,111,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,single,high.school,no,no,yes,cellular,may,fri,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,admin.,single,high.school,no,yes,no,cellular,may,fri,92,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,88,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,87,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +28,student,single,university.degree,no,yes,yes,cellular,may,fri,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +46,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,577,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +46,admin.,married,basic.9y,unknown,no,no,cellular,may,fri,175,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,high.school,no,no,no,telephone,may,fri,396,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,98,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,86,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,unknown,unknown,no,no,cellular,may,fri,936,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,39,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,university.degree,no,yes,no,cellular,may,fri,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +57,services,divorced,unknown,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,high.school,unknown,yes,no,cellular,may,fri,310,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,management,married,university.degree,no,no,no,cellular,may,fri,525,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,services,single,high.school,no,yes,no,cellular,may,fri,127,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +51,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,99,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,single,basic.9y,no,yes,no,cellular,may,fri,501,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +37,admin.,single,university.degree,no,yes,no,cellular,may,fri,105,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,414,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,318,2,11,1,success,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,445,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,fri,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,management,married,university.degree,no,yes,no,cellular,may,fri,1276,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +34,technician,married,university.degree,no,no,no,cellular,may,fri,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,married,basic.4y,unknown,no,no,cellular,may,fri,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,married,basic.4y,unknown,yes,no,cellular,may,fri,237,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +23,student,single,basic.9y,no,no,no,cellular,may,fri,145,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,high.school,no,no,no,cellular,may,fri,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,married,basic.4y,unknown,no,no,cellular,may,fri,308,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,self-employed,single,university.degree,no,no,no,cellular,may,fri,1243,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,management,single,university.degree,no,yes,no,cellular,may,fri,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,77,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,management,single,university.degree,no,no,yes,cellular,may,fri,217,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,may,fri,197,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,married,high.school,no,unknown,unknown,cellular,may,fri,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,single,high.school,no,unknown,unknown,cellular,may,fri,579,2,10,1,success,-1.8,92.893,-46.2,1.313,5099.1,yes +35,services,married,high.school,no,no,no,cellular,may,fri,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +58,management,single,university.degree,no,no,no,cellular,may,fri,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +58,management,single,university.degree,no,no,yes,cellular,may,fri,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,171,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,married,high.school,no,yes,no,cellular,may,fri,478,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,fri,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,services,married,high.school,no,yes,no,cellular,may,fri,424,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,326,1,11,1,success,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,1080,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +34,admin.,single,university.degree,no,no,yes,cellular,may,fri,398,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +24,technician,single,basic.9y,no,no,no,cellular,may,fri,87,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,services,divorced,professional.course,no,no,no,cellular,may,fri,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,137,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,single,high.school,no,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.4y,no,no,yes,cellular,may,fri,269,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,yes,yes,cellular,may,fri,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,fri,340,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,94,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,admin.,divorced,university.degree,no,no,no,cellular,may,fri,308,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,763,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,may,fri,132,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,261,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,married,high.school,no,no,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,66,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +28,technician,married,high.school,unknown,yes,no,cellular,may,fri,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,254,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,management,single,university.degree,no,yes,no,cellular,may,fri,468,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,451,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,fri,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +55,blue-collar,married,unknown,unknown,no,no,cellular,may,fri,9,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +26,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,191,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,married,high.school,no,no,no,cellular,may,fri,301,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,fri,662,1,12,1,success,-1.8,92.893,-46.2,1.313,5099.1,yes +39,blue-collar,married,high.school,no,yes,no,telephone,may,fri,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +54,technician,married,university.degree,unknown,no,no,cellular,may,fri,56,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,high.school,no,no,yes,cellular,may,fri,248,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,high.school,no,yes,yes,cellular,may,fri,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,18,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,705,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,self-employed,single,basic.9y,no,yes,no,cellular,may,fri,82,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +52,services,married,high.school,no,yes,no,cellular,may,fri,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +24,services,single,high.school,no,yes,no,cellular,may,fri,53,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,568,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +37,admin.,married,university.degree,no,yes,yes,cellular,may,fri,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.6y,no,no,yes,cellular,may,fri,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,high.school,unknown,no,no,cellular,may,fri,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,technician,married,university.degree,no,no,no,cellular,may,fri,186,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +57,management,married,high.school,no,yes,no,cellular,may,fri,129,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +44,services,single,high.school,no,yes,no,cellular,may,fri,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,admin.,married,high.school,no,yes,no,cellular,may,fri,579,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,491,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,fri,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,fri,1448,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,management,married,university.degree,no,yes,no,cellular,may,fri,69,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,392,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,428,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,fri,209,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,656,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,728,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +38,blue-collar,single,high.school,no,yes,no,cellular,may,fri,81,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,720,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +37,blue-collar,married,high.school,no,no,no,cellular,may,fri,171,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,fri,291,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,high.school,no,yes,no,cellular,may,fri,435,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,272,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +52,services,married,high.school,no,yes,no,cellular,may,fri,121,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +42,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,married,basic.9y,no,no,no,cellular,may,fri,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,339,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +52,retired,divorced,basic.6y,no,no,no,cellular,may,fri,154,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,high.school,no,no,no,cellular,may,fri,319,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,married,professional.course,no,no,no,cellular,may,fri,218,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,services,married,high.school,no,no,no,telephone,may,fri,125,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +46,technician,married,professional.course,no,no,no,cellular,may,fri,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +22,student,single,high.school,no,no,no,cellular,may,fri,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,services,single,high.school,unknown,no,no,cellular,may,fri,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,married,high.school,no,yes,no,cellular,may,fri,151,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +58,admin.,married,high.school,no,yes,no,cellular,may,fri,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,university.degree,no,no,no,cellular,may,fri,89,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,university.degree,no,yes,yes,cellular,may,fri,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,270,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +47,services,married,high.school,no,no,yes,cellular,may,fri,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,fri,247,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,self-employed,married,basic.9y,unknown,no,no,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,services,married,basic.4y,unknown,yes,no,cellular,may,fri,85,1,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,325,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,self-employed,single,professional.course,no,yes,no,cellular,may,fri,76,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,services,single,professional.course,no,yes,no,cellular,may,fri,279,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +26,student,single,basic.9y,unknown,yes,no,cellular,may,fri,682,2,3,2,success,-1.8,92.893,-46.2,1.313,5099.1,no +37,services,single,professional.course,no,no,no,cellular,may,fri,462,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,high.school,no,yes,no,cellular,may,fri,238,6,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,fri,81,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +21,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,fri,68,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +51,management,married,university.degree,no,no,no,cellular,may,fri,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,management,married,university.degree,no,no,no,cellular,may,fri,238,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,married,professional.course,no,no,no,cellular,may,fri,158,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,single,high.school,no,no,no,cellular,may,fri,1642,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,69,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,356,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,25,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,management,single,high.school,no,yes,no,cellular,may,fri,345,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,474,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +54,admin.,divorced,professional.course,no,yes,no,telephone,may,fri,75,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,single,high.school,unknown,yes,no,cellular,may,fri,77,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,high.school,no,no,yes,cellular,may,fri,254,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,management,single,university.degree,no,yes,no,cellular,may,fri,175,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,management,single,university.degree,no,no,no,cellular,may,fri,261,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,456,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,services,single,professional.course,no,yes,no,cellular,may,fri,241,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +51,admin.,married,high.school,unknown,no,no,cellular,may,fri,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,103,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +55,management,married,basic.4y,no,no,no,cellular,may,fri,95,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,fri,226,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +55,entrepreneur,divorced,university.degree,unknown,no,no,cellular,may,fri,133,8,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,admin.,married,high.school,no,no,no,cellular,may,fri,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,211,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,single,high.school,no,yes,no,telephone,may,fri,473,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,137,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,single,basic.9y,unknown,no,no,cellular,may,fri,85,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,blue-collar,single,basic.9y,no,yes,yes,cellular,may,fri,238,6,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,management,married,university.degree,no,no,no,cellular,may,fri,316,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,services,single,high.school,no,yes,no,cellular,may,fri,408,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,144,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,married,high.school,no,no,no,cellular,may,fri,428,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,services,single,high.school,unknown,no,no,cellular,may,fri,422,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,44,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,294,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +41,admin.,married,university.degree,unknown,yes,no,telephone,may,fri,288,3,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +48,admin.,married,basic.9y,no,no,no,cellular,may,fri,311,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,admin.,single,university.degree,no,yes,no,cellular,may,fri,273,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,91,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,36,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,37,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,technician,married,high.school,unknown,yes,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +40,admin.,married,high.school,unknown,no,yes,cellular,may,fri,326,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,management,married,professional.course,no,no,yes,cellular,may,fri,376,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,44,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,admin.,single,university.degree,no,no,no,cellular,may,fri,104,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,unknown,no,no,cellular,may,fri,323,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,single,unknown,unknown,yes,no,cellular,may,fri,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,yes,no,cellular,may,fri,247,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,no,no,cellular,may,fri,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,technician,married,university.degree,no,yes,no,cellular,may,fri,47,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,207,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +31,services,married,high.school,no,no,no,cellular,may,fri,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,single,high.school,no,no,no,cellular,may,fri,455,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,management,married,professional.course,no,unknown,unknown,cellular,may,fri,154,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,married,basic.9y,no,yes,no,telephone,may,fri,147,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +27,services,single,high.school,no,yes,no,cellular,may,fri,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +46,admin.,married,high.school,no,no,no,cellular,may,fri,318,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,admin.,married,high.school,unknown,yes,no,cellular,may,fri,503,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,may,fri,83,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,services,married,high.school,unknown,yes,yes,telephone,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,fri,334,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,services,married,basic.9y,no,no,yes,cellular,may,fri,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,admin.,single,high.school,no,no,yes,cellular,may,fri,154,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,admin.,married,university.degree,no,yes,no,cellular,may,fri,286,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +31,self-employed,single,high.school,no,yes,no,cellular,may,fri,187,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,557,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,services,divorced,high.school,no,unknown,unknown,cellular,may,fri,186,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,fri,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,services,married,high.school,no,yes,no,cellular,may,fri,237,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,unknown,no,yes,telephone,may,fri,367,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,services,married,high.school,no,yes,no,cellular,may,fri,104,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,612,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,technician,married,professional.course,no,no,yes,cellular,may,fri,40,6,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,services,married,high.school,no,no,yes,cellular,may,fri,506,2,999,2,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,telephone,may,fri,191,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,high.school,unknown,no,no,cellular,may,fri,267,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +46,services,married,basic.4y,no,yes,no,cellular,may,fri,187,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,high.school,unknown,no,yes,cellular,may,fri,296,5,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,single,university.degree,no,no,yes,cellular,may,fri,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +27,technician,married,professional.course,no,no,yes,cellular,may,fri,224,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +49,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,128,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +30,services,single,high.school,unknown,yes,no,cellular,may,fri,55,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,156,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +58,management,single,university.degree,no,yes,no,cellular,may,fri,685,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +45,blue-collar,single,professional.course,no,yes,no,cellular,may,fri,1954,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,admin.,divorced,high.school,no,yes,yes,cellular,may,fri,211,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,143,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,admin.,married,high.school,no,no,no,cellular,may,fri,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +42,management,divorced,high.school,no,no,no,cellular,may,fri,13,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +38,admin.,married,high.school,no,unknown,unknown,cellular,may,fri,295,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +52,services,married,high.school,no,no,yes,cellular,may,fri,38,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,basic.4y,no,yes,yes,cellular,may,fri,456,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +54,technician,married,university.degree,unknown,no,no,cellular,may,fri,217,7,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,may,fri,216,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,entrepreneur,married,university.degree,no,yes,yes,cellular,may,fri,152,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,may,fri,1024,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes +57,services,divorced,unknown,no,no,no,cellular,may,fri,405,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,518,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,fri,438,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,may,fri,129,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +25,admin.,single,high.school,no,no,no,cellular,may,fri,682,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,yes +44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,361,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +45,technician,single,university.degree,no,no,no,cellular,may,fri,311,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,1094,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,fri,746,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,entrepreneur,divorced,basic.6y,no,yes,no,cellular,may,fri,53,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,management,married,university.degree,no,yes,no,telephone,may,fri,283,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,services,single,high.school,no,yes,no,cellular,may,fri,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +54,technician,married,university.degree,unknown,yes,no,telephone,may,fri,265,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,single,university.degree,no,no,no,cellular,may,fri,146,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +42,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,114,7,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +28,services,married,high.school,no,no,no,cellular,may,fri,1049,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +50,blue-collar,married,basic.4y,no,yes,no,telephone,may,fri,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +37,blue-collar,married,high.school,no,yes,no,cellular,may,fri,466,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,may,fri,348,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,services,married,high.school,no,no,no,cellular,may,fri,263,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +59,admin.,married,university.degree,no,yes,no,cellular,may,fri,324,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,83,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +36,admin.,married,university.degree,no,no,yes,telephone,may,fri,267,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,340,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,may,fri,418,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,fri,553,2,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +32,admin.,married,university.degree,no,no,no,telephone,may,fri,546,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +30,technician,married,professional.course,no,yes,no,cellular,may,fri,156,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,288,3,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +49,technician,married,professional.course,no,yes,no,cellular,may,fri,364,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,fri,219,4,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +37,unemployed,married,basic.9y,no,yes,yes,cellular,may,fri,129,4,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,may,fri,282,5,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,married,high.school,unknown,no,no,cellular,may,fri,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,basic.9y,no,yes,no,cellular,may,fri,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,services,divorced,high.school,no,yes,no,cellular,may,fri,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,married,high.school,unknown,no,no,cellular,may,fri,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +36,services,married,high.school,unknown,yes,yes,cellular,may,fri,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +29,services,divorced,high.school,no,yes,no,cellular,may,fri,548,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,63,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,173,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,383,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +47,blue-collar,married,high.school,no,yes,yes,telephone,may,fri,72,6,6,1,success,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +38,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,713,3,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +33,blue-collar,married,professional.course,no,yes,no,telephone,may,fri,15,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,423,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,yes +52,admin.,married,high.school,no,yes,yes,cellular,may,fri,81,2,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +32,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,211,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,322,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +28,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,349,1,999,0,nonexistent,-1.8,92.893,-46.2,1.313,5099.1,no +34,admin.,married,basic.9y,no,unknown,unknown,cellular,may,fri,248,1,999,1,failure,-1.8,92.893,-46.2,1.313,5099.1,no +34,technician,married,basic.9y,no,yes,yes,cellular,may,mon,142,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,may,mon,102,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,self-employed,divorced,basic.4y,no,no,no,cellular,may,mon,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,84,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +41,housemaid,single,university.degree,no,yes,no,telephone,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,mon,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,332,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,technician,married,professional.course,no,no,no,cellular,may,mon,13,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,unemployed,single,high.school,no,yes,no,telephone,may,mon,21,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,single,high.school,no,yes,no,cellular,may,mon,62,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,mon,240,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,high.school,unknown,no,no,cellular,may,mon,229,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,management,married,university.degree,no,yes,no,cellular,may,mon,61,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,entrepreneur,single,university.degree,no,yes,no,telephone,may,mon,30,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +50,blue-collar,married,unknown,unknown,yes,yes,telephone,may,mon,10,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,married,high.school,no,no,no,cellular,may,mon,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,mon,14,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +56,services,divorced,high.school,unknown,yes,no,cellular,may,mon,125,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,may,mon,156,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,services,married,basic.9y,no,yes,no,cellular,may,mon,50,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,may,mon,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,single,high.school,no,no,no,cellular,may,mon,80,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,services,married,basic.9y,no,yes,yes,cellular,may,mon,304,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +43,services,divorced,professional.course,no,no,no,cellular,may,mon,108,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +45,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,basic.6y,no,yes,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,single,professional.course,no,no,no,cellular,may,mon,573,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,652,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,mon,443,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +44,admin.,married,basic.9y,no,yes,no,cellular,may,mon,55,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,mon,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,mon,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +25,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,249,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,485,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,technician,married,professional.course,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,single,high.school,no,yes,no,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,194,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,services,married,high.school,no,yes,no,cellular,may,mon,577,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,admin.,married,high.school,unknown,no,no,cellular,may,mon,547,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,management,single,university.degree,no,unknown,unknown,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,married,high.school,no,yes,no,cellular,may,mon,27,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,may,mon,502,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,139,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +24,services,single,high.school,no,yes,yes,cellular,may,mon,590,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,services,single,high.school,no,yes,no,cellular,may,mon,7,5,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,divorced,basic.9y,no,no,no,cellular,may,mon,81,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,married,high.school,no,yes,yes,cellular,may,mon,528,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,mon,195,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,mon,106,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,university.degree,no,yes,yes,cellular,may,mon,9,7,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,mon,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,student,single,high.school,no,yes,no,cellular,may,mon,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,self-employed,single,university.degree,no,yes,no,cellular,may,mon,66,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,university.degree,no,no,no,cellular,may,mon,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,student,single,high.school,no,yes,no,cellular,may,mon,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,self-employed,single,university.degree,no,no,no,cellular,may,mon,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,55,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,197,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,management,single,basic.9y,no,yes,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,management,single,basic.9y,no,no,no,cellular,may,mon,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,84,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,entrepreneur,married,university.degree,no,no,yes,cellular,may,mon,117,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +25,admin.,married,university.degree,no,no,no,cellular,may,mon,496,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +48,technician,married,basic.9y,no,yes,no,cellular,may,mon,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,services,married,high.school,no,no,no,telephone,may,mon,108,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +23,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,207,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +49,admin.,divorced,high.school,no,no,no,cellular,may,mon,128,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,277,1,9,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,1038,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,657,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +35,blue-collar,married,unknown,no,yes,no,cellular,may,mon,40,8,10,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +37,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,346,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,university.degree,no,yes,no,cellular,may,mon,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,self-employed,married,basic.4y,unknown,yes,no,cellular,may,mon,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,telephone,may,mon,65,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,mon,689,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +47,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,mon,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,12,8,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,single,high.school,no,yes,no,telephone,may,mon,32,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,admin.,divorced,high.school,no,no,no,cellular,may,mon,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,admin.,divorced,high.school,no,yes,no,cellular,may,mon,469,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,58,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,mon,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,university.degree,no,no,no,cellular,may,mon,629,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes +52,services,married,high.school,unknown,yes,no,telephone,may,mon,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,admin.,married,high.school,no,no,no,telephone,may,mon,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,married,high.school,no,yes,yes,cellular,may,mon,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,460,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,mon,183,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,mon,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +45,technician,unknown,basic.6y,no,no,no,cellular,may,mon,197,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,student,single,basic.4y,no,no,yes,cellular,may,mon,802,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +31,technician,single,university.degree,no,yes,no,cellular,may,mon,1514,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes +40,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +52,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,mon,934,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes +36,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,mon,422,1,12,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +51,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,214,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,248,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,self-employed,married,university.degree,no,yes,no,cellular,may,mon,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,housemaid,single,basic.9y,no,yes,no,cellular,may,mon,279,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,188,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,high.school,unknown,yes,no,cellular,may,mon,254,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,divorced,university.degree,no,yes,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,divorced,university.degree,no,no,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,single,basic.9y,no,yes,yes,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,220,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,university.degree,no,yes,yes,cellular,may,mon,80,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +53,admin.,married,university.degree,no,yes,no,cellular,may,mon,202,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,technician,single,university.degree,no,yes,no,cellular,may,mon,340,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,549,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,divorced,high.school,no,yes,no,cellular,may,mon,472,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,university.degree,no,no,no,cellular,may,mon,409,1,1,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,divorced,high.school,no,no,no,cellular,may,mon,479,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,236,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,mon,308,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,mon,90,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,15,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,services,married,high.school,no,no,no,cellular,may,mon,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,may,mon,262,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,services,married,high.school,no,yes,no,cellular,may,mon,49,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,services,single,high.school,no,no,yes,cellular,may,mon,369,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,mon,471,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,services,married,high.school,no,yes,no,cellular,may,mon,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +42,management,married,university.degree,no,yes,no,cellular,may,mon,568,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,services,married,high.school,no,no,no,cellular,may,mon,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,116,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +55,blue-collar,divorced,basic.4y,unknown,yes,yes,cellular,may,mon,163,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,unknown,no,yes,no,cellular,may,mon,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +41,technician,single,professional.course,no,no,no,cellular,may,mon,686,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,high.school,no,no,no,telephone,may,mon,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,entrepreneur,married,professional.course,unknown,no,no,cellular,may,mon,295,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,management,single,university.degree,no,no,yes,cellular,may,mon,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +57,technician,married,university.degree,no,no,no,cellular,may,mon,200,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,married,university.degree,no,no,no,cellular,may,mon,733,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +29,technician,single,basic.9y,no,yes,no,cellular,may,mon,170,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,technician,single,basic.9y,no,yes,no,cellular,may,mon,214,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,474,1,9,1,success,-1.8,92.893,-46.2,1.299,5099.1,yes +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,101,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,mon,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,115,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,231,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,single,university.degree,no,no,yes,cellular,may,mon,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +56,management,married,professional.course,no,yes,no,cellular,may,mon,240,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,technician,single,basic.9y,no,no,yes,cellular,may,mon,701,1,12,1,success,-1.8,92.893,-46.2,1.299,5099.1,yes +46,technician,married,university.degree,no,yes,no,cellular,may,mon,231,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,666,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +31,admin.,married,university.degree,no,yes,no,cellular,may,mon,712,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,239,5,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +47,admin.,single,high.school,no,no,no,cellular,may,mon,219,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,services,married,basic.6y,unknown,yes,no,cellular,may,mon,102,6,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,single,high.school,no,no,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,single,high.school,no,unknown,unknown,cellular,may,mon,216,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +45,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,mon,190,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,single,high.school,no,yes,yes,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,single,basic.6y,no,no,no,cellular,may,mon,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,single,high.school,no,yes,yes,cellular,may,mon,405,1,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,services,single,high.school,no,yes,no,cellular,may,mon,274,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +48,admin.,divorced,basic.4y,no,yes,no,cellular,may,mon,227,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,single,basic.4y,unknown,yes,yes,cellular,may,mon,46,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,services,single,high.school,no,yes,no,cellular,may,mon,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,single,professional.course,no,yes,no,cellular,may,mon,74,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,mon,490,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,services,married,university.degree,no,yes,no,cellular,may,mon,105,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,226,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,services,married,university.degree,no,no,no,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,admin.,married,basic.9y,unknown,yes,no,cellular,may,mon,18,6,6,2,success,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,professional.course,no,no,no,cellular,may,mon,149,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +40,admin.,single,high.school,unknown,yes,no,cellular,may,mon,222,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,management,married,basic.9y,no,no,yes,cellular,may,mon,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,high.school,no,yes,no,cellular,may,mon,225,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,mon,21,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,high.school,no,no,no,cellular,may,mon,40,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,married,high.school,unknown,no,no,cellular,may,mon,627,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,mon,151,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +44,admin.,single,professional.course,no,yes,no,cellular,may,mon,105,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,mon,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +55,retired,married,basic.9y,unknown,no,no,telephone,may,mon,114,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,281,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,high.school,no,no,no,cellular,may,mon,347,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,154,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,basic.9y,no,no,no,cellular,may,mon,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,basic.9y,no,yes,no,cellular,may,mon,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,214,8,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,services,married,high.school,unknown,no,no,cellular,may,mon,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +50,blue-collar,married,basic.4y,no,yes,yes,cellular,may,mon,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,unknown,single,high.school,unknown,yes,yes,cellular,may,mon,628,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,services,divorced,basic.9y,no,yes,no,cellular,may,mon,465,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,high.school,no,no,no,cellular,may,mon,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,admin.,single,university.degree,no,no,yes,cellular,may,mon,553,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,married,professional.course,unknown,no,no,cellular,may,mon,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,technician,single,professional.course,no,yes,no,cellular,may,mon,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +49,services,married,high.school,no,no,no,telephone,may,mon,86,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,unemployed,married,basic.9y,no,yes,yes,cellular,may,mon,21,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,99,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +49,services,married,high.school,no,yes,no,cellular,may,mon,165,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,unemployed,married,basic.9y,no,no,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,technician,married,university.degree,no,no,no,cellular,may,mon,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +45,admin.,single,high.school,no,no,no,cellular,may,mon,1487,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,653,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +37,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,177,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,management,single,university.degree,no,yes,yes,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,may,mon,125,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,married,university.degree,no,yes,no,cellular,may,mon,42,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,single,basic.9y,no,no,no,cellular,may,mon,79,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,professional.course,no,yes,yes,cellular,may,mon,214,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,may,mon,85,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +50,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,mon,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,professional.course,no,yes,yes,cellular,may,mon,187,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,married,high.school,no,yes,no,cellular,may,mon,329,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,mon,29,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,mon,234,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,high.school,no,no,no,cellular,may,mon,610,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +31,technician,single,professional.course,no,yes,yes,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,144,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,unknown,university.degree,no,no,no,cellular,may,mon,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,mon,75,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +41,services,divorced,high.school,no,yes,no,cellular,may,mon,622,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,unknown,university.degree,no,yes,yes,cellular,may,mon,56,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,student,single,university.degree,unknown,no,no,cellular,may,mon,489,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,583,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +34,admin.,unknown,university.degree,no,yes,no,cellular,may,mon,304,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +24,services,married,high.school,no,yes,no,cellular,may,mon,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,technician,divorced,professional.course,no,no,no,cellular,may,mon,66,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,married,high.school,no,no,no,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,mon,432,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,78,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,technician,married,professional.course,no,yes,no,cellular,may,mon,275,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,single,professional.course,no,unknown,unknown,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,admin.,single,university.degree,no,yes,yes,cellular,may,mon,292,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,single,high.school,no,yes,no,cellular,may,mon,134,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,313,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,admin.,single,high.school,no,no,no,cellular,may,mon,1114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,207,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,672,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +31,technician,single,high.school,no,no,no,cellular,may,mon,552,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,management,married,university.degree,no,yes,no,cellular,may,mon,249,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,married,basic.6y,no,yes,no,cellular,may,mon,72,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,high.school,unknown,yes,no,cellular,may,mon,412,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,single,professional.course,no,no,no,cellular,may,mon,299,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,high.school,no,yes,yes,cellular,may,mon,124,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,high.school,no,yes,yes,cellular,may,mon,109,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +49,blue-collar,single,basic.4y,no,yes,no,cellular,may,mon,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,400,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,married,high.school,no,yes,yes,cellular,may,mon,82,9,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,494,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +52,services,married,high.school,unknown,yes,no,cellular,may,mon,930,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +28,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,146,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,married,basic.6y,no,yes,no,cellular,may,mon,262,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,single,basic.9y,no,no,no,cellular,may,mon,177,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,124,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,divorced,university.degree,no,no,no,cellular,may,mon,239,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,mon,91,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,52,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,married,basic.9y,no,no,yes,telephone,may,mon,159,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,services,married,high.school,no,no,no,cellular,may,mon,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,175,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,technician,married,professional.course,no,no,no,cellular,may,mon,132,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,may,mon,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,services,divorced,basic.9y,no,no,yes,cellular,may,mon,295,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +48,admin.,divorced,high.school,unknown,no,no,cellular,may,mon,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,505,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,may,mon,580,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +55,management,married,university.degree,no,yes,no,cellular,may,mon,90,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,housemaid,married,basic.6y,no,no,no,cellular,may,mon,608,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +48,admin.,divorced,high.school,unknown,yes,yes,cellular,may,mon,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +25,admin.,married,high.school,no,no,no,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +49,entrepreneur,married,basic.6y,unknown,yes,yes,cellular,may,mon,330,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,mon,148,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,management,married,basic.6y,no,yes,yes,telephone,may,mon,26,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,76,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.6y,no,no,no,cellular,may,mon,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,services,married,high.school,no,yes,no,cellular,may,mon,643,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,475,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,yes +57,technician,married,high.school,no,yes,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,68,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,single,high.school,no,yes,no,telephone,may,mon,41,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +38,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,mon,168,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +51,admin.,married,basic.6y,no,no,yes,cellular,may,mon,228,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +57,technician,married,high.school,no,no,yes,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,services,divorced,university.degree,no,yes,no,cellular,may,mon,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,management,married,basic.6y,no,no,no,cellular,may,mon,966,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +57,technician,married,high.school,no,yes,no,cellular,may,mon,758,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +50,admin.,single,basic.9y,unknown,no,yes,telephone,may,mon,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +57,technician,married,high.school,no,no,yes,cellular,may,mon,371,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,high.school,no,yes,yes,cellular,may,mon,426,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,basic.4y,unknown,yes,no,cellular,may,mon,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,self-employed,married,basic.4y,unknown,yes,no,cellular,may,mon,145,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,may,mon,329,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,divorced,high.school,no,no,no,cellular,may,mon,159,2,11,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,242,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,77,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +40,services,divorced,high.school,no,yes,no,cellular,may,mon,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.9y,unknown,unknown,unknown,telephone,may,mon,267,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,entrepreneur,married,basic.4y,unknown,yes,no,telephone,may,mon,224,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,184,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,mon,289,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,mon,143,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,288,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +41,services,single,high.school,unknown,yes,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +45,management,married,basic.9y,unknown,yes,no,cellular,may,mon,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,101,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,basic.9y,no,yes,no,cellular,may,mon,35,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,629,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,admin.,married,high.school,no,yes,yes,cellular,may,mon,186,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +27,unknown,single,high.school,unknown,yes,no,cellular,may,mon,334,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,admin.,married,university.degree,no,yes,no,cellular,may,mon,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,married,high.school,no,yes,yes,cellular,may,mon,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,may,mon,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,entrepreneur,single,professional.course,no,yes,no,cellular,may,mon,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,admin.,married,basic.6y,unknown,no,yes,cellular,may,mon,270,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +43,admin.,divorced,basic.9y,no,yes,no,cellular,may,mon,47,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,technician,single,basic.9y,no,no,no,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,technician,single,basic.9y,no,yes,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,high.school,no,yes,yes,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,may,mon,77,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +57,technician,married,professional.course,no,yes,no,cellular,may,mon,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,single,university.degree,unknown,yes,no,cellular,may,mon,321,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +56,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,mon,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,204,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +49,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,mon,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,services,divorced,high.school,no,yes,no,cellular,may,mon,254,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,232,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,services,married,university.degree,no,yes,no,cellular,may,mon,97,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +28,technician,single,professional.course,no,yes,no,telephone,may,mon,296,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +48,admin.,divorced,high.school,unknown,no,no,cellular,may,mon,263,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,admin.,married,university.degree,no,no,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +57,technician,married,high.school,no,yes,no,cellular,may,mon,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,admin.,divorced,high.school,no,yes,no,cellular,may,mon,274,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +42,management,married,university.degree,no,yes,no,cellular,may,mon,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.6y,no,yes,yes,cellular,may,mon,429,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +52,admin.,single,basic.4y,no,no,no,cellular,may,mon,776,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,51,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,services,divorced,high.school,no,no,no,cellular,may,mon,150,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,admin.,married,basic.6y,unknown,yes,no,cellular,may,mon,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +25,student,single,high.school,unknown,yes,no,cellular,may,mon,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +38,services,married,high.school,unknown,no,no,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,admin.,married,high.school,no,yes,yes,cellular,may,mon,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +49,blue-collar,single,high.school,no,yes,no,cellular,may,mon,430,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,technician,single,basic.9y,no,no,yes,cellular,may,mon,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,technician,single,high.school,no,no,no,cellular,may,mon,236,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,technician,married,basic.9y,no,no,no,cellular,may,mon,798,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,university.degree,no,no,no,cellular,may,mon,66,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,34,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +58,technician,divorced,basic.9y,no,no,no,cellular,may,mon,128,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +36,entrepreneur,married,high.school,no,yes,yes,cellular,may,mon,102,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,services,married,basic.9y,no,no,no,cellular,may,mon,400,1,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,university.degree,no,no,yes,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +55,management,married,university.degree,no,yes,no,cellular,may,mon,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.4y,no,no,yes,cellular,may,mon,285,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,327,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,admin.,single,university.degree,no,yes,no,telephone,may,mon,168,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,127,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,blue-collar,single,high.school,unknown,no,no,cellular,may,mon,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,technician,married,professional.course,no,yes,no,cellular,may,mon,147,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,student,single,high.school,no,no,no,cellular,may,mon,472,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,admin.,married,high.school,no,yes,no,cellular,may,mon,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,mon,213,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,services,married,basic.9y,no,yes,no,cellular,may,mon,220,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,mon,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,299,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,247,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +24,technician,single,basic.9y,no,yes,no,cellular,may,mon,111,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,entrepreneur,married,basic.9y,no,yes,no,cellular,may,mon,195,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,single,high.school,no,yes,no,cellular,may,mon,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,married,high.school,no,no,no,cellular,may,mon,286,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +50,blue-collar,married,unknown,unknown,yes,no,cellular,may,mon,96,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,services,divorced,professional.course,no,no,no,telephone,may,mon,75,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,blue-collar,married,basic.9y,no,yes,yes,telephone,may,mon,386,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.6y,no,yes,no,telephone,may,mon,544,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,127,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,may,mon,155,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +42,entrepreneur,married,basic.4y,unknown,no,no,cellular,may,mon,120,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +56,services,single,basic.4y,unknown,yes,no,cellular,may,mon,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,high.school,unknown,no,no,cellular,may,mon,194,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,mon,1232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +35,services,married,basic.9y,unknown,no,no,cellular,may,mon,69,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,blue-collar,single,basic.6y,unknown,no,no,cellular,may,mon,133,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,admin.,married,high.school,no,no,no,telephone,may,mon,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,telephone,may,mon,70,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,206,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,blue-collar,divorced,unknown,unknown,no,no,cellular,may,mon,152,2,10,1,success,-1.8,92.893,-46.2,1.299,5099.1,no +30,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,243,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,services,married,basic.9y,no,yes,yes,telephone,may,mon,437,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,admin.,single,university.degree,no,no,no,telephone,may,mon,259,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,services,married,high.school,unknown,yes,no,cellular,may,mon,182,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,unknown,university.degree,no,yes,no,cellular,may,mon,447,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,entrepreneur,married,basic.9y,no,no,no,cellular,may,mon,238,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,410,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,472,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,mon,83,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,mon,254,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,high.school,no,yes,yes,cellular,may,mon,56,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +50,services,married,high.school,unknown,no,no,cellular,may,mon,204,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +37,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +37,housemaid,divorced,basic.9y,unknown,yes,no,telephone,may,mon,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +55,self-employed,married,university.degree,unknown,no,no,cellular,may,mon,217,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +49,blue-collar,single,high.school,no,yes,yes,cellular,may,mon,217,6,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,entrepreneur,married,basic.6y,unknown,yes,no,cellular,may,mon,379,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,145,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,technician,single,university.degree,no,yes,no,cellular,may,mon,271,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,0,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,admin.,single,basic.9y,no,yes,no,cellular,may,mon,258,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,married,basic.9y,no,unknown,unknown,cellular,may,mon,180,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,technician,single,professional.course,no,yes,no,cellular,may,mon,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,135,2,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +25,blue-collar,single,high.school,unknown,yes,no,telephone,may,mon,300,3,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,347,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,1001,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,technician,married,professional.course,no,no,no,cellular,may,mon,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,single,university.degree,unknown,yes,no,cellular,may,mon,498,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +44,blue-collar,married,high.school,no,unknown,unknown,cellular,may,mon,279,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,may,mon,50,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,single,high.school,no,no,yes,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +26,admin.,single,high.school,no,yes,no,cellular,may,mon,211,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,entrepreneur,married,basic.4y,unknown,no,no,telephone,may,mon,567,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +37,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,mon,170,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +41,services,single,high.school,unknown,unknown,unknown,cellular,may,mon,772,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +26,services,single,high.school,no,no,no,cellular,may,mon,298,2,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,university.degree,no,yes,no,cellular,may,mon,120,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +36,technician,married,university.degree,no,yes,no,cellular,may,mon,219,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +27,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,877,7,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,mon,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +35,admin.,divorced,high.school,no,yes,yes,telephone,may,mon,82,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +25,technician,single,university.degree,no,no,yes,cellular,may,mon,304,3,12,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,273,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,471,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +41,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,301,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +23,services,single,basic.9y,unknown,yes,no,cellular,may,mon,350,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,mon,86,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,unemployed,single,high.school,unknown,yes,no,cellular,may,mon,94,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,1388,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +35,entrepreneur,married,high.school,no,yes,no,cellular,may,mon,508,3,999,2,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,blue-collar,married,basic.4y,unknown,no,no,telephone,may,mon,338,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +47,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,208,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +29,student,single,unknown,no,no,no,telephone,may,mon,1143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,services,single,high.school,no,no,no,cellular,may,mon,503,3,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +37,services,married,high.school,unknown,yes,no,telephone,may,mon,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,basic.6y,no,yes,no,cellular,may,mon,142,5,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +45,admin.,single,high.school,no,yes,no,cellular,may,mon,276,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +24,services,single,high.school,no,yes,no,cellular,may,mon,201,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +53,blue-collar,married,basic.4y,unknown,unknown,unknown,cellular,may,mon,63,2,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +46,services,divorced,high.school,no,no,no,cellular,may,mon,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +32,admin.,married,professional.course,no,no,no,cellular,may,mon,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +40,technician,married,university.degree,no,no,no,cellular,may,mon,192,4,999,1,failure,-1.8,92.893,-46.2,1.299,5099.1,no +47,admin.,single,high.school,no,yes,no,cellular,may,mon,911,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,yes +35,admin.,single,university.degree,no,yes,yes,cellular,may,mon,439,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +54,management,married,high.school,unknown,no,no,cellular,may,mon,273,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +33,technician,single,university.degree,no,no,no,cellular,may,mon,284,4,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +29,technician,single,basic.9y,no,yes,no,cellular,may,mon,288,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +31,technician,single,university.degree,no,yes,no,telephone,may,mon,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +30,services,married,professional.course,no,no,no,cellular,may,mon,66,3,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +43,self-employed,single,university.degree,no,yes,no,cellular,may,mon,445,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,management,married,university.degree,no,no,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +41,entrepreneur,married,basic.9y,no,no,yes,cellular,may,mon,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +46,technician,divorced,professional.course,unknown,no,no,cellular,may,mon,927,2,999,0,nonexistent,-1.8,92.893,-46.2,1.299,5099.1,no +28,services,single,high.school,no,unknown,unknown,cellular,may,tue,48,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,married,university.degree,no,no,no,cellular,may,tue,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,single,high.school,no,no,no,cellular,may,tue,81,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,university.degree,no,no,no,cellular,may,tue,89,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,278,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,student,single,university.degree,unknown,yes,no,cellular,may,tue,116,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,self-employed,married,basic.4y,no,no,no,telephone,may,tue,16,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,services,single,basic.6y,no,yes,no,cellular,may,tue,546,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +23,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,8,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,167,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,married,university.degree,no,no,no,cellular,may,tue,72,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,divorced,high.school,no,yes,no,cellular,may,tue,75,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,services,married,high.school,no,yes,no,telephone,may,tue,14,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,single,basic.4y,no,yes,no,telephone,may,tue,200,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,high.school,no,yes,no,cellular,may,tue,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,married,high.school,unknown,yes,no,cellular,may,tue,312,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,management,single,professional.course,no,no,no,cellular,may,tue,134,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,services,married,high.school,no,yes,no,telephone,may,tue,34,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,services,married,high.school,no,yes,yes,cellular,may,tue,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,may,tue,188,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,single,professional.course,no,yes,no,cellular,may,tue,788,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +40,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,103,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,may,tue,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,single,university.degree,no,yes,no,cellular,may,tue,25,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,52,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,admin.,single,high.school,unknown,yes,no,cellular,may,tue,41,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,234,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,divorced,basic.9y,no,yes,no,cellular,may,tue,255,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,high.school,no,yes,yes,cellular,may,tue,200,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,217,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,housemaid,single,university.degree,no,yes,no,cellular,may,tue,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,married,high.school,no,no,no,cellular,may,tue,315,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,unknown,no,yes,no,cellular,may,tue,128,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,divorced,high.school,no,yes,yes,cellular,may,tue,10,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,high.school,no,yes,yes,telephone,may,tue,352,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +49,admin.,married,high.school,no,no,no,cellular,may,tue,97,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,54,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +45,admin.,single,high.school,unknown,unknown,unknown,cellular,may,tue,7,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,management,divorced,university.degree,no,no,no,telephone,may,tue,63,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +50,unknown,married,basic.4y,unknown,no,yes,cellular,may,tue,77,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,basic.6y,no,no,no,cellular,may,tue,117,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,self-employed,married,professional.course,no,no,no,cellular,may,tue,34,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,104,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +26,admin.,single,university.degree,no,yes,yes,cellular,may,tue,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,14,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +30,services,single,basic.6y,no,yes,no,cellular,may,tue,208,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,married,basic.9y,no,no,yes,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,single,professional.course,no,yes,no,cellular,may,tue,160,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,may,tue,197,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,tue,151,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,divorced,high.school,no,no,no,cellular,may,tue,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,731,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +43,blue-collar,married,unknown,no,yes,no,cellular,may,tue,756,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,tue,12,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +38,technician,married,high.school,no,yes,no,cellular,may,tue,114,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,unknown,married,basic.4y,unknown,yes,no,cellular,may,tue,12,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,management,single,professional.course,no,no,no,cellular,may,tue,365,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +37,blue-collar,divorced,professional.course,no,yes,no,cellular,may,tue,304,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,unknown,no,no,yes,telephone,may,tue,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,high.school,no,yes,no,cellular,may,tue,20,8,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,married,high.school,no,yes,no,cellular,may,tue,109,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +54,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,138,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,services,single,high.school,no,yes,yes,cellular,may,tue,6,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,single,professional.course,no,yes,no,cellular,may,tue,200,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +40,services,married,basic.9y,no,yes,yes,cellular,may,tue,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,single,professional.course,no,yes,no,cellular,may,tue,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,single,high.school,no,yes,no,cellular,may,tue,100,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +51,admin.,married,high.school,no,no,no,cellular,may,tue,40,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,services,single,basic.9y,no,no,no,cellular,may,tue,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,150,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,divorced,university.degree,unknown,yes,no,telephone,may,tue,11,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,high.school,no,yes,yes,cellular,may,tue,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,unknown,no,no,no,telephone,may,tue,257,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,99,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +40,services,divorced,high.school,no,no,no,cellular,may,tue,49,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,may,tue,882,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +31,blue-collar,single,basic.9y,no,no,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,services,single,basic.9y,no,no,yes,cellular,may,tue,515,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +59,services,divorced,basic.6y,no,yes,no,cellular,may,tue,158,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,206,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,25,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,300,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,single,high.school,no,yes,no,telephone,may,tue,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +59,services,divorced,basic.6y,no,yes,no,cellular,may,tue,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +47,admin.,divorced,high.school,no,yes,no,cellular,may,tue,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +44,admin.,divorced,high.school,no,no,no,cellular,may,tue,214,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,85,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,82,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,services,married,basic.6y,no,unknown,unknown,cellular,may,tue,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,married,basic.9y,no,yes,no,cellular,may,tue,69,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,technician,married,basic.9y,no,no,no,cellular,may,tue,580,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +48,technician,divorced,basic.9y,unknown,yes,no,cellular,may,tue,62,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +48,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,1203,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +45,services,married,basic.6y,no,no,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,64,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,631,1,11,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,married,basic.4y,unknown,no,no,cellular,may,tue,658,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +35,blue-collar,married,high.school,no,yes,no,cellular,may,tue,942,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,services,married,basic.6y,no,no,no,cellular,may,tue,207,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,may,tue,104,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,single,professional.course,no,yes,no,cellular,may,tue,377,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +41,housemaid,married,basic.4y,no,no,no,cellular,may,tue,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,housemaid,married,basic.4y,no,yes,no,cellular,may,tue,128,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +54,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,291,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,524,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,may,tue,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,entrepreneur,married,high.school,no,no,no,cellular,may,tue,366,1,6,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +43,admin.,single,university.degree,no,yes,yes,cellular,may,tue,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,married,basic.9y,no,no,yes,cellular,may,tue,560,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +43,admin.,single,university.degree,no,yes,no,telephone,may,tue,52,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,entrepreneur,single,university.degree,no,yes,yes,cellular,may,tue,347,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,admin.,single,university.degree,no,no,no,cellular,may,tue,107,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,admin.,single,university.degree,no,yes,no,telephone,may,tue,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,entrepreneur,married,unknown,unknown,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +54,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +58,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,451,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +29,student,single,high.school,unknown,no,no,cellular,may,tue,53,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,entrepreneur,single,university.degree,no,no,no,cellular,may,tue,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +43,admin.,single,university.degree,no,yes,no,cellular,may,tue,305,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,may,tue,104,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,176,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,technician,divorced,university.degree,no,yes,no,cellular,may,tue,507,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,management,single,university.degree,no,yes,no,cellular,may,tue,103,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +59,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,137,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,tue,223,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,tue,124,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,tue,63,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +24,student,single,basic.4y,no,yes,no,cellular,may,tue,137,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,23,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,may,tue,22,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,may,tue,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,703,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +34,admin.,married,high.school,no,yes,yes,cellular,may,tue,179,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +59,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,690,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +41,management,married,high.school,unknown,yes,no,cellular,may,tue,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,high.school,unknown,no,no,telephone,may,tue,25,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,management,single,university.degree,no,no,no,cellular,may,tue,11,12,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,entrepreneur,married,unknown,unknown,no,no,cellular,may,tue,1272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +57,retired,divorced,basic.9y,no,yes,no,cellular,may,tue,69,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +41,management,married,high.school,unknown,no,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,may,tue,300,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,university.degree,no,no,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,admin.,married,university.degree,no,yes,yes,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +38,student,divorced,unknown,no,no,no,cellular,may,tue,244,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,admin.,divorced,university.degree,no,no,no,cellular,may,tue,1062,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,22,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,divorced,professional.course,no,yes,yes,cellular,may,tue,429,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +44,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,tue,494,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +44,management,married,basic.9y,no,no,no,cellular,may,tue,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,tue,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,admin.,married,university.degree,no,yes,yes,cellular,may,tue,826,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +39,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,243,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,245,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,entrepreneur,married,high.school,no,unknown,unknown,cellular,may,tue,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,single,university.degree,no,yes,no,telephone,may,tue,139,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,232,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,may,tue,517,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +40,blue-collar,single,high.school,unknown,no,no,cellular,may,tue,418,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,may,tue,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,may,tue,116,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,university.degree,no,no,no,telephone,may,tue,168,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,married,basic.9y,no,no,no,cellular,may,tue,261,1,12,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,university.degree,no,no,no,cellular,may,tue,69,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,admin.,single,high.school,unknown,no,no,cellular,may,tue,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +54,management,divorced,professional.course,no,yes,no,cellular,may,tue,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,divorced,high.school,no,no,no,cellular,may,tue,23,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,single,high.school,no,yes,yes,cellular,may,tue,202,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,342,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,22,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,455,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,may,tue,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,33,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,services,married,high.school,no,yes,no,cellular,may,tue,58,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,student,single,high.school,no,yes,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,360,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,tue,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,single,basic.9y,no,yes,yes,cellular,may,tue,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,married,basic.9y,no,no,no,telephone,may,tue,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +21,services,single,high.school,no,no,no,cellular,may,tue,68,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +29,services,married,basic.9y,no,no,no,cellular,may,tue,212,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,basic.9y,no,yes,no,telephone,may,tue,38,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,single,university.degree,no,yes,yes,cellular,may,tue,639,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,483,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +53,unemployed,married,basic.9y,unknown,no,no,cellular,may,tue,205,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +29,services,married,basic.9y,no,no,no,cellular,may,tue,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,self-employed,single,high.school,no,no,no,cellular,may,tue,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,self-employed,single,high.school,no,yes,yes,cellular,may,tue,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,technician,married,professional.course,no,no,no,cellular,may,tue,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,self-employed,single,high.school,no,no,no,cellular,may,tue,238,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,single,high.school,unknown,yes,no,cellular,may,tue,27,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,self-employed,single,high.school,no,yes,no,cellular,may,tue,337,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,services,single,high.school,no,yes,no,telephone,may,tue,24,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,365,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,technician,married,professional.course,no,no,no,cellular,may,tue,37,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,25,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,tue,152,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,unemployed,single,high.school,no,yes,no,telephone,may,tue,179,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,high.school,unknown,no,no,cellular,may,tue,272,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,tue,30,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,services,single,university.degree,no,yes,no,cellular,may,tue,79,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,admin.,divorced,high.school,no,no,no,cellular,may,tue,324,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,technician,married,university.degree,unknown,unknown,unknown,cellular,may,tue,426,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +53,technician,single,professional.course,unknown,no,no,cellular,may,tue,196,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,services,single,university.degree,no,yes,no,cellular,may,tue,366,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,211,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,admin.,single,university.degree,no,no,no,cellular,may,tue,43,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,admin.,divorced,high.school,no,yes,no,cellular,may,tue,816,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,189,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,315,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,78,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,97,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,basic.4y,no,no,yes,cellular,may,tue,337,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,services,married,high.school,no,yes,no,cellular,may,tue,185,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,single,professional.course,no,yes,no,cellular,may,tue,78,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,55,2,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,442,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,technician,married,basic.6y,unknown,no,no,cellular,may,tue,36,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,tue,326,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,unknown,basic.9y,no,no,no,telephone,may,tue,81,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,tue,179,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,management,married,high.school,unknown,yes,no,cellular,may,tue,527,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,918,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,225,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,high.school,no,yes,no,cellular,may,tue,787,10,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +39,technician,single,professional.course,no,no,no,telephone,may,tue,15,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,279,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,services,married,high.school,no,no,yes,cellular,may,tue,416,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,may,tue,83,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,yes,no,telephone,may,tue,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,single,university.degree,no,no,yes,cellular,may,tue,542,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,may,tue,256,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,tue,189,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,tue,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,services,married,university.degree,unknown,no,no,cellular,may,tue,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,technician,single,university.degree,no,no,yes,telephone,may,tue,1100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,married,high.school,no,yes,no,cellular,may,tue,451,4,3,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,married,university.degree,no,no,yes,telephone,may,tue,232,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,209,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,admin.,married,high.school,no,yes,no,cellular,may,tue,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,340,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,313,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,single,basic.9y,unknown,yes,no,cellular,may,tue,191,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,may,tue,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,divorced,professional.course,no,yes,no,cellular,may,tue,493,10,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,1182,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,yes +28,unemployed,married,high.school,unknown,no,no,cellular,may,tue,216,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,entrepreneur,divorced,basic.9y,no,no,no,cellular,may,tue,184,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +53,technician,single,professional.course,unknown,no,no,telephone,may,tue,360,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,admin.,married,high.school,unknown,no,no,cellular,may,tue,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,84,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,housemaid,married,basic.9y,no,yes,no,cellular,may,tue,61,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,tue,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,services,divorced,basic.6y,no,unknown,unknown,cellular,may,tue,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,183,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,services,unknown,high.school,no,no,no,cellular,may,tue,516,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +48,management,married,basic.9y,no,yes,no,cellular,may,tue,393,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,286,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,high.school,no,no,no,cellular,may,tue,87,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,basic.9y,no,no,yes,cellular,may,tue,277,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,technician,single,university.degree,no,yes,no,cellular,may,tue,200,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,management,married,basic.9y,no,yes,no,cellular,may,tue,725,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +33,technician,divorced,high.school,no,no,no,cellular,may,tue,204,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,divorced,high.school,no,yes,no,cellular,may,tue,175,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,divorced,high.school,no,yes,no,cellular,may,tue,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +40,blue-collar,single,basic.4y,no,no,no,cellular,may,tue,218,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +56,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,may,tue,59,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,services,married,professional.course,no,yes,no,cellular,may,tue,146,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +45,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,77,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,management,single,university.degree,no,yes,no,cellular,may,tue,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,single,basic.6y,no,no,no,cellular,may,tue,482,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,tue,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,396,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,tue,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,entrepreneur,married,university.degree,no,no,no,cellular,may,tue,549,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +30,admin.,single,basic.9y,no,no,no,cellular,may,tue,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,439,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,single,high.school,unknown,yes,no,cellular,may,tue,107,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +41,management,married,university.degree,no,unknown,unknown,cellular,may,tue,369,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,unemployed,married,professional.course,no,unknown,unknown,cellular,may,tue,356,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,services,single,high.school,no,no,no,cellular,may,tue,561,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,basic.9y,no,no,yes,cellular,may,tue,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,309,1,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes +54,retired,divorced,professional.course,no,yes,no,telephone,may,tue,139,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,services,married,high.school,unknown,no,no,cellular,may,tue,148,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,admin.,married,high.school,unknown,yes,no,cellular,may,tue,139,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,basic.9y,no,no,yes,cellular,may,tue,549,1,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes +36,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,395,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,married,high.school,no,yes,yes,cellular,may,tue,145,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,119,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +26,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,88,2,6,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +43,management,married,basic.6y,unknown,yes,no,cellular,may,tue,463,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,admin.,married,high.school,unknown,yes,no,cellular,may,tue,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,tue,57,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,blue-collar,married,basic.4y,no,no,yes,cellular,may,tue,300,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,tue,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,single,professional.course,no,no,no,cellular,may,tue,200,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,unknown,unknown,cellular,may,tue,225,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,tue,844,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,divorced,high.school,no,no,no,cellular,may,tue,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,may,tue,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +59,housemaid,divorced,basic.6y,unknown,yes,no,cellular,may,tue,130,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,tue,387,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,may,tue,211,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +37,technician,single,university.degree,no,no,yes,cellular,may,tue,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +39,blue-collar,single,basic.6y,no,yes,no,cellular,may,tue,357,1,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no +37,technician,single,university.degree,no,yes,no,cellular,may,tue,322,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,basic.9y,no,no,no,cellular,may,tue,584,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,self-employed,married,university.degree,no,yes,no,cellular,may,tue,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,tue,374,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +44,unemployed,married,high.school,no,yes,no,cellular,may,tue,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,22,8,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.6y,no,yes,yes,telephone,may,tue,207,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,technician,single,university.degree,no,no,no,cellular,may,tue,183,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,100,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +48,management,married,basic.9y,no,yes,yes,cellular,may,tue,955,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +34,admin.,single,university.degree,no,no,no,cellular,may,tue,146,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,31,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,334,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,tue,271,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +41,housemaid,married,basic.6y,no,yes,no,cellular,may,tue,223,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,basic.6y,no,yes,yes,cellular,may,tue,95,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,admin.,single,high.school,no,yes,no,cellular,may,tue,106,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +48,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,admin.,single,basic.9y,no,yes,no,cellular,may,tue,458,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +29,admin.,single,high.school,no,yes,yes,cellular,may,tue,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,retired,married,basic.4y,unknown,yes,no,cellular,may,tue,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,retired,married,basic.4y,unknown,no,no,cellular,may,tue,179,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,single,basic.9y,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +26,services,single,basic.9y,unknown,yes,no,cellular,may,tue,165,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +25,technician,married,university.degree,no,yes,no,cellular,may,tue,127,1,12,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +25,technician,married,university.degree,no,no,no,cellular,may,tue,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,single,basic.9y,no,yes,no,cellular,may,tue,409,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +33,technician,single,university.degree,no,yes,no,cellular,may,tue,165,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,tue,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,tue,536,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +29,services,married,high.school,no,yes,yes,cellular,may,tue,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,single,high.school,no,yes,no,cellular,may,tue,1531,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +35,admin.,single,high.school,no,no,no,cellular,may,tue,107,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,admin.,single,high.school,unknown,yes,no,cellular,may,tue,132,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,divorced,professional.course,no,yes,no,cellular,may,tue,406,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,divorced,professional.course,no,no,no,cellular,may,tue,240,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,high.school,no,no,no,cellular,may,tue,278,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,admin.,married,high.school,unknown,no,yes,cellular,may,tue,908,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,tue,706,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +57,housemaid,married,basic.4y,unknown,yes,no,cellular,may,tue,215,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,161,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,370,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +25,technician,single,professional.course,no,yes,no,cellular,may,tue,157,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,tue,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.6y,unknown,no,no,cellular,may,tue,399,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +56,admin.,married,university.degree,no,yes,no,cellular,may,tue,1925,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,829,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +28,management,married,basic.9y,no,yes,no,cellular,may,tue,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,tue,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,tue,178,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +49,entrepreneur,married,university.degree,no,no,no,cellular,may,tue,242,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,services,single,high.school,no,no,yes,cellular,may,tue,450,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,technician,single,university.degree,no,yes,yes,cellular,may,tue,485,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,single,basic.9y,no,yes,no,cellular,may,tue,76,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,self-employed,married,basic.9y,no,unknown,unknown,cellular,may,tue,328,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,technician,single,university.degree,no,no,no,cellular,may,tue,289,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,single,professional.course,no,no,no,cellular,may,tue,163,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +48,admin.,divorced,university.degree,no,no,no,cellular,may,tue,53,9,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +22,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,tue,453,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,single,high.school,no,yes,no,cellular,may,tue,324,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,single,basic.9y,no,yes,yes,cellular,may,tue,637,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +35,admin.,single,basic.9y,no,yes,no,cellular,may,tue,301,3,9,1,success,-1.8,92.893,-46.2,1.291,5099.1,no +43,admin.,single,university.degree,no,no,no,cellular,may,tue,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +50,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,tue,118,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,unemployed,married,professional.course,no,yes,no,cellular,may,tue,32,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,admin.,married,high.school,no,no,no,cellular,may,tue,278,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,student,single,high.school,no,no,no,cellular,may,tue,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,technician,single,professional.course,no,no,no,telephone,may,tue,34,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,609,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +48,blue-collar,married,basic.9y,no,no,yes,cellular,may,tue,276,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,married,basic.9y,unknown,no,no,cellular,may,tue,548,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +45,blue-collar,married,basic.6y,no,yes,no,telephone,may,tue,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,management,single,university.degree,no,yes,no,cellular,may,tue,1710,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +27,blue-collar,single,basic.9y,no,yes,no,telephone,may,tue,217,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,192,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +40,services,single,high.school,no,yes,no,cellular,may,tue,208,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,tue,415,1,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,technician,married,professional.course,no,no,no,cellular,may,tue,278,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,management,single,university.degree,unknown,yes,yes,telephone,may,tue,326,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,may,tue,173,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,306,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +53,technician,married,professional.course,no,no,no,cellular,may,tue,350,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,tue,614,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +45,blue-collar,married,basic.4y,no,yes,no,cellular,may,tue,224,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,divorced,professional.course,no,yes,yes,cellular,may,tue,668,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +24,admin.,single,high.school,unknown,no,no,telephone,may,tue,748,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +42,services,married,basic.6y,no,no,no,cellular,may,tue,474,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +40,services,single,high.school,no,yes,no,cellular,may,tue,143,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +57,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,tue,168,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,tue,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,married,high.school,no,yes,no,cellular,may,tue,106,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,technician,married,professional.course,no,no,no,cellular,may,tue,234,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,897,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +31,services,married,high.school,no,yes,no,cellular,may,tue,398,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +33,technician,single,professional.course,no,yes,no,telephone,may,tue,422,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,technician,divorced,professional.course,no,yes,no,cellular,may,tue,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,may,tue,61,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,services,married,high.school,no,no,no,cellular,may,tue,863,4,1,2,success,-1.8,92.893,-46.2,1.291,5099.1,yes +35,admin.,single,university.degree,no,yes,no,cellular,may,tue,255,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,single,high.school,no,yes,yes,cellular,may,tue,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,29,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,tue,750,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +38,blue-collar,married,basic.6y,no,no,yes,cellular,may,tue,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,cellular,may,tue,266,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +51,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,tue,314,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,student,single,university.degree,no,yes,no,cellular,may,tue,775,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +32,technician,single,university.degree,no,yes,yes,cellular,may,tue,181,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,services,single,high.school,no,yes,no,cellular,may,tue,178,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,single,university.degree,unknown,yes,no,cellular,may,tue,254,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,housemaid,single,high.school,no,no,no,cellular,may,tue,351,7,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,married,high.school,no,yes,yes,cellular,may,tue,373,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,high.school,no,no,no,cellular,may,tue,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,student,single,university.degree,unknown,no,no,cellular,may,tue,135,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +59,housemaid,divorced,basic.6y,unknown,yes,no,cellular,may,tue,216,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,married,unknown,no,yes,no,cellular,may,tue,86,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,blue-collar,single,university.degree,no,yes,no,cellular,may,tue,85,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,entrepreneur,married,high.school,no,yes,no,cellular,may,tue,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,may,tue,187,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,463,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,services,married,basic.6y,no,no,no,cellular,may,tue,142,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,280,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,tue,398,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +57,retired,divorced,basic.9y,no,yes,no,telephone,may,tue,149,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,divorced,basic.9y,no,no,no,cellular,may,tue,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,management,single,university.degree,no,yes,no,cellular,may,tue,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,single,high.school,no,yes,no,cellular,may,tue,302,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.9y,no,yes,yes,cellular,may,tue,317,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,services,divorced,high.school,no,yes,no,cellular,may,tue,211,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,student,single,university.degree,unknown,yes,no,cellular,may,tue,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,services,married,high.school,no,yes,no,cellular,may,tue,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,technician,single,university.degree,no,yes,no,cellular,may,tue,464,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,blue-collar,single,professional.course,no,no,no,cellular,may,tue,343,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +30,self-employed,married,professional.course,no,yes,no,cellular,may,tue,98,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +45,admin.,married,university.degree,no,no,no,cellular,may,tue,198,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,technician,single,high.school,no,yes,no,cellular,may,tue,361,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,management,married,university.degree,no,yes,no,telephone,may,tue,345,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,single,high.school,no,no,no,telephone,may,tue,114,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,technician,divorced,high.school,no,yes,no,cellular,may,tue,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,services,divorced,basic.6y,no,yes,no,telephone,may,tue,556,2,10,1,success,-1.8,92.893,-46.2,1.291,5099.1,yes +32,management,single,professional.course,no,yes,no,cellular,may,tue,68,10,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,may,tue,239,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,admin.,married,basic.9y,unknown,no,no,cellular,may,tue,349,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,112,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,technician,married,professional.course,no,yes,no,telephone,may,tue,34,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +49,admin.,divorced,high.school,no,yes,no,cellular,may,tue,181,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,tue,178,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,tue,206,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,services,single,high.school,no,yes,no,cellular,may,tue,194,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,high.school,no,yes,yes,cellular,may,tue,209,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +46,management,married,high.school,unknown,no,no,cellular,may,tue,692,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +46,blue-collar,married,basic.9y,unknown,no,no,telephone,may,tue,210,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +54,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,206,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +48,admin.,divorced,university.degree,no,no,no,telephone,may,tue,355,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,high.school,no,no,no,telephone,may,tue,339,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,tue,737,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,yes +50,entrepreneur,married,university.degree,no,yes,no,cellular,may,tue,191,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +41,technician,single,professional.course,no,yes,no,cellular,may,tue,175,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,services,divorced,basic.9y,no,no,no,cellular,may,tue,286,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.4y,no,no,no,cellular,may,tue,93,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,tue,170,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +44,admin.,divorced,high.school,no,yes,no,cellular,may,tue,173,8,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +36,technician,married,professional.course,no,no,no,cellular,may,tue,541,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,telephone,may,tue,89,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,admin.,married,high.school,no,unknown,unknown,cellular,may,tue,213,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,self-employed,single,university.degree,no,yes,no,cellular,may,tue,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +59,admin.,divorced,university.degree,unknown,unknown,unknown,cellular,may,tue,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,technician,married,basic.9y,no,no,no,telephone,may,tue,472,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +28,blue-collar,married,high.school,no,unknown,unknown,cellular,may,tue,135,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,professional.course,no,no,no,cellular,may,tue,304,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,management,married,basic.9y,unknown,yes,no,cellular,may,tue,275,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +28,unemployed,married,high.school,unknown,yes,no,telephone,may,tue,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +29,technician,single,professional.course,no,no,no,telephone,may,tue,125,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,single,high.school,no,no,no,cellular,may,tue,96,6,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +37,services,divorced,basic.6y,no,no,no,telephone,may,tue,175,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +26,self-employed,married,basic.4y,no,yes,no,cellular,may,tue,134,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,services,married,high.school,unknown,no,yes,cellular,may,tue,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,single,basic.4y,no,no,yes,cellular,may,tue,807,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,may,tue,235,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +53,technician,married,basic.6y,unknown,yes,no,cellular,may,tue,673,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,tue,124,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +53,technician,married,professional.course,no,yes,no,cellular,may,tue,57,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,admin.,divorced,university.degree,no,no,no,cellular,may,tue,225,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,tue,144,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +49,blue-collar,married,high.school,no,yes,no,cellular,may,tue,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +42,self-employed,divorced,high.school,no,yes,no,cellular,may,tue,455,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,264,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,married,high.school,unknown,no,no,telephone,may,tue,295,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,may,tue,285,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,tue,166,5,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +42,services,single,high.school,no,yes,no,cellular,may,tue,456,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.4y,no,no,yes,telephone,may,tue,101,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,telephone,may,tue,256,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,tue,497,5,999,2,failure,-1.8,92.893,-46.2,1.291,5099.1,no +53,self-employed,married,basic.9y,no,yes,no,cellular,may,tue,600,4,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +38,student,divorced,unknown,no,yes,no,cellular,may,tue,268,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +34,blue-collar,married,basic.9y,unknown,yes,yes,telephone,may,tue,899,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,may,tue,339,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,tue,220,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +25,student,single,university.degree,no,yes,yes,cellular,may,tue,700,3,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,blue-collar,married,basic.6y,no,no,no,cellular,may,tue,150,7,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,may,tue,147,4,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +35,blue-collar,single,high.school,no,yes,yes,telephone,may,tue,236,6,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +55,blue-collar,divorced,basic.9y,no,no,no,cellular,may,tue,133,3,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +34,admin.,married,high.school,no,yes,no,telephone,may,tue,58,2,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +31,technician,married,high.school,unknown,yes,yes,telephone,may,tue,234,5,999,0,nonexistent,-1.8,92.893,-46.2,1.291,5099.1,no +43,technician,married,basic.4y,no,yes,no,telephone,may,tue,1388,7,999,1,failure,-1.8,92.893,-46.2,1.291,5099.1,no +47,admin.,divorced,university.degree,unknown,no,no,cellular,may,wed,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,57,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,services,single,basic.6y,no,yes,no,cellular,may,wed,70,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,31,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,wed,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,496,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +26,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,94,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,technician,single,high.school,no,yes,no,telephone,may,wed,83,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +26,student,single,high.school,no,no,no,telephone,may,wed,29,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,admin.,married,basic.9y,unknown,yes,no,telephone,may,wed,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,yes,yes,cellular,may,wed,46,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,wed,20,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +25,admin.,married,high.school,no,yes,no,cellular,may,wed,152,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +26,student,single,high.school,no,yes,yes,telephone,may,wed,61,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,university.degree,no,yes,yes,cellular,may,wed,389,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +55,management,married,basic.4y,no,yes,yes,cellular,may,wed,1108,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,technician,single,university.degree,no,yes,yes,cellular,may,wed,310,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,yes,yes,cellular,may,wed,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,yes,cellular,may,wed,21,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,management,divorced,basic.9y,no,yes,yes,cellular,may,wed,117,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,services,married,high.school,no,yes,no,telephone,may,wed,413,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,divorced,basic.6y,unknown,yes,no,cellular,may,wed,24,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +55,blue-collar,divorced,basic.4y,unknown,yes,no,cellular,may,wed,254,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,65,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,53,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +57,admin.,married,basic.4y,unknown,yes,no,cellular,may,wed,164,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,housemaid,married,basic.9y,no,yes,no,cellular,may,wed,321,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +47,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,5,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,single,high.school,no,yes,no,cellular,may,wed,82,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,81,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,divorced,basic.6y,unknown,unknown,unknown,cellular,may,wed,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,self-employed,divorced,basic.9y,no,yes,no,cellular,may,wed,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,wed,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,blue-collar,single,unknown,no,yes,no,cellular,may,wed,320,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,services,married,high.school,no,yes,yes,cellular,may,wed,77,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,wed,211,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,yes,no,telephone,may,wed,26,1,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,38,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +26,student,single,high.school,no,no,no,telephone,may,wed,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,49,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,210,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,basic.6y,no,no,no,cellular,may,wed,863,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,259,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +55,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,wed,130,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +37,services,married,basic.9y,unknown,yes,no,telephone,may,wed,211,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,87,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,self-employed,single,professional.course,no,yes,no,cellular,may,wed,774,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,15,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,may,wed,44,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,technician,single,professional.course,no,yes,no,cellular,may,wed,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,married,high.school,no,unknown,unknown,cellular,may,wed,74,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,135,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,217,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,single,high.school,no,no,no,cellular,may,wed,22,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,technician,single,university.degree,no,no,no,telephone,may,wed,32,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +23,student,single,high.school,no,yes,no,cellular,may,wed,435,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,high.school,no,yes,no,telephone,may,wed,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +23,services,married,high.school,no,no,no,cellular,may,wed,370,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,wed,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +25,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,793,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,wed,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,admin.,married,high.school,no,yes,no,cellular,may,wed,150,3,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,364,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,282,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +58,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +48,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,68,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,self-employed,single,high.school,no,yes,no,cellular,may,wed,109,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,may,wed,23,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,admin.,married,high.school,no,yes,no,cellular,may,wed,1073,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +35,self-employed,single,high.school,no,yes,no,cellular,may,wed,207,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,married,basic.9y,no,yes,no,cellular,may,wed,224,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,technician,married,professional.course,no,yes,no,telephone,may,wed,67,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,high.school,no,yes,yes,cellular,may,wed,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,no,yes,cellular,may,wed,29,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,technician,single,high.school,no,yes,yes,cellular,may,wed,610,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,admin.,single,basic.9y,no,no,yes,cellular,may,wed,118,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,management,married,high.school,no,yes,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +27,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,admin.,married,basic.4y,no,yes,no,cellular,may,wed,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.9y,no,no,yes,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,785,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,student,single,high.school,no,yes,no,cellular,may,wed,628,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,retired,divorced,university.degree,no,yes,no,cellular,may,wed,172,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,200,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,admin.,married,university.degree,no,yes,yes,cellular,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,unemployed,single,university.degree,no,yes,no,cellular,may,wed,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,high.school,no,yes,no,cellular,may,wed,850,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +55,retired,divorced,basic.4y,unknown,no,no,cellular,may,wed,526,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +43,admin.,married,high.school,no,no,no,cellular,may,wed,140,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,single,high.school,no,yes,yes,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,admin.,married,university.degree,no,yes,yes,cellular,may,wed,318,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,services,married,high.school,no,yes,no,telephone,may,wed,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,services,single,basic.6y,unknown,yes,yes,telephone,may,wed,19,8,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,wed,157,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,self-employed,single,high.school,unknown,no,no,cellular,may,wed,79,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +30,technician,single,high.school,no,yes,no,cellular,may,wed,9,12,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,wed,19,11,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +34,blue-collar,single,high.school,no,yes,no,cellular,may,wed,39,1,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,divorced,high.school,no,yes,no,cellular,may,wed,502,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,admin.,divorced,basic.9y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,technician,married,professional.course,unknown,yes,yes,cellular,may,wed,267,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,technician,divorced,professional.course,no,yes,yes,telephone,may,wed,30,10,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,no,yes,telephone,may,wed,355,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,unemployed,married,basic.9y,no,yes,no,telephone,may,wed,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,wed,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,wed,10,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,management,married,university.degree,no,yes,no,cellular,may,wed,17,13,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,divorced,university.degree,no,yes,no,telephone,may,wed,47,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,yes,no,cellular,may,wed,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,69,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,divorced,basic.6y,no,no,no,cellular,may,wed,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,technician,married,professional.course,no,no,yes,cellular,may,wed,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,unemployed,married,basic.9y,no,no,no,cellular,may,wed,570,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +28,blue-collar,single,high.school,no,yes,no,cellular,may,wed,516,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +40,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,220,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,yes,yes,cellular,may,wed,177,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,388,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,married,basic.9y,no,no,no,cellular,may,wed,61,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +33,admin.,divorced,university.degree,no,no,no,cellular,may,wed,699,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,high.school,no,yes,no,cellular,may,wed,133,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,wed,6,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,management,married,university.degree,no,no,yes,telephone,may,wed,318,5,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +23,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,413,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,student,single,high.school,no,yes,yes,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,high.school,no,no,no,cellular,may,wed,590,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +38,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +57,services,married,high.school,unknown,no,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,single,high.school,no,no,no,cellular,may,wed,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,technician,single,university.degree,no,yes,no,cellular,may,wed,152,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,902,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +31,management,single,university.degree,no,yes,no,cellular,may,wed,294,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,admin.,divorced,high.school,no,yes,no,telephone,may,wed,15,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,wed,290,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,may,wed,12,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,housemaid,married,basic.4y,no,yes,no,cellular,may,wed,31,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,wed,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,management,married,university.degree,no,no,no,cellular,may,wed,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,student,single,high.school,no,no,no,cellular,may,wed,669,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +31,technician,single,professional.course,no,yes,yes,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,housemaid,single,high.school,no,no,no,cellular,may,wed,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +37,services,single,basic.6y,no,yes,no,cellular,may,wed,93,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,divorced,high.school,no,no,no,cellular,may,wed,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,divorced,high.school,no,yes,no,cellular,may,wed,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,256,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,married,high.school,no,yes,no,cellular,may,wed,394,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +33,services,single,basic.6y,unknown,no,no,cellular,may,wed,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,wed,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,wed,131,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,may,wed,149,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,may,wed,27,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,may,wed,152,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,116,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,basic.9y,no,yes,no,telephone,may,wed,41,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,admin.,married,basic.9y,no,yes,no,cellular,may,wed,302,1,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,yes +33,blue-collar,single,university.degree,unknown,no,no,cellular,may,wed,275,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,university.degree,no,no,no,cellular,may,wed,128,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +23,student,single,high.school,no,yes,no,cellular,may,wed,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,services,single,basic.6y,no,yes,yes,cellular,may,wed,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,university.degree,no,no,no,cellular,may,wed,101,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +53,management,married,university.degree,no,no,no,cellular,may,wed,147,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +25,blue-collar,single,high.school,no,yes,no,cellular,may,wed,262,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,services,single,high.school,no,no,no,cellular,may,wed,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,technician,single,professional.course,no,no,no,cellular,may,wed,546,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +33,services,married,high.school,no,yes,no,cellular,may,wed,1512,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +35,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,services,single,basic.6y,unknown,no,no,cellular,may,wed,85,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,technician,single,university.degree,no,yes,no,telephone,may,wed,119,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +52,admin.,married,basic.9y,no,no,no,cellular,may,wed,423,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,self-employed,married,basic.9y,no,no,no,cellular,may,wed,315,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,single,university.degree,no,no,no,cellular,may,wed,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,44,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,admin.,married,high.school,no,no,no,cellular,may,wed,75,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +59,admin.,divorced,high.school,no,unknown,unknown,telephone,may,wed,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +46,admin.,married,high.school,unknown,yes,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,technician,married,basic.9y,no,yes,no,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,wed,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,high.school,no,yes,no,cellular,may,wed,529,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +48,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,349,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,wed,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.6y,no,no,no,cellular,may,wed,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,technician,divorced,professional.course,no,no,yes,cellular,may,wed,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,wed,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +39,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,wed,408,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +58,retired,married,basic.4y,unknown,yes,no,cellular,may,wed,205,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,158,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +55,blue-collar,married,basic.4y,unknown,unknown,unknown,telephone,may,wed,18,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,276,1,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,264,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,technician,divorced,professional.course,no,no,no,cellular,may,wed,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,no,yes,cellular,may,wed,234,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,services,single,basic.6y,no,yes,no,cellular,may,wed,272,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,technician,divorced,professional.course,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,155,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,589,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,admin.,divorced,basic.9y,no,no,no,telephone,may,wed,363,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,951,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +38,technician,married,university.degree,no,yes,no,cellular,may,wed,172,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,wed,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,professional.course,no,no,no,telephone,may,wed,34,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,management,single,university.degree,no,no,no,cellular,may,wed,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,services,single,high.school,no,yes,no,telephone,may,wed,155,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,unemployed,married,basic.9y,no,yes,no,cellular,may,wed,788,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,528,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,296,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,114,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,314,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,unknown,no,no,cellular,may,wed,249,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,services,single,high.school,no,yes,yes,cellular,may,wed,562,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +36,services,single,professional.course,no,yes,no,cellular,may,wed,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,204,1,11,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +31,self-employed,married,basic.9y,no,unknown,unknown,cellular,may,wed,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +23,blue-collar,single,basic.9y,no,yes,no,telephone,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,services,single,basic.6y,no,yes,no,cellular,may,wed,734,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +31,admin.,single,basic.9y,no,no,no,telephone,may,wed,80,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,single,university.degree,unknown,no,no,cellular,may,wed,60,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,services,single,high.school,no,yes,no,cellular,may,wed,281,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,admin.,divorced,basic.9y,no,yes,no,cellular,may,wed,321,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,155,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +47,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,single,high.school,no,yes,no,cellular,may,wed,49,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,services,married,high.school,no,no,no,cellular,may,wed,354,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,294,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +47,services,married,professional.course,no,yes,no,cellular,may,wed,137,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,admin.,divorced,high.school,no,yes,no,cellular,may,wed,191,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,55,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,no,no,cellular,may,wed,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,entrepreneur,married,unknown,no,no,no,cellular,may,wed,85,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,management,married,university.degree,no,yes,no,cellular,may,wed,92,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +48,admin.,divorced,unknown,no,yes,no,cellular,may,wed,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,no,no,telephone,may,wed,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,wed,132,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,married,professional.course,no,yes,no,cellular,may,wed,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,technician,single,unknown,no,yes,yes,cellular,may,wed,324,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +22,student,single,high.school,no,yes,no,cellular,may,wed,315,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,64,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,110,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +26,services,single,high.school,no,yes,no,telephone,may,wed,421,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,divorced,basic.6y,unknown,no,no,cellular,may,wed,79,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,174,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,257,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,technician,divorced,high.school,no,yes,no,cellular,may,wed,228,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,9,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,337,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,may,wed,476,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +28,technician,single,professional.course,no,yes,no,telephone,may,wed,185,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,104,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,may,wed,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,married,professional.course,unknown,yes,no,cellular,may,wed,573,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +44,admin.,married,high.school,no,no,no,cellular,may,wed,231,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +58,management,married,basic.4y,no,yes,yes,cellular,may,wed,184,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,21,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,single,basic.9y,unknown,no,no,cellular,may,wed,233,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,96,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,99,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,basic.9y,no,yes,no,cellular,may,wed,117,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,single,high.school,no,yes,no,cellular,may,wed,53,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,married,university.degree,no,no,yes,cellular,may,wed,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,technician,single,professional.course,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,university.degree,no,no,no,cellular,may,wed,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,wed,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,married,basic.9y,no,yes,no,cellular,may,wed,53,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,single,high.school,no,unknown,unknown,cellular,may,wed,363,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,may,wed,14,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,wed,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,wed,459,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +50,blue-collar,single,professional.course,no,no,no,cellular,may,wed,425,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,223,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +58,housemaid,married,basic.4y,no,yes,no,cellular,may,wed,413,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,services,married,high.school,no,no,yes,cellular,may,wed,747,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +47,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,177,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,wed,66,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,716,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +34,services,married,university.degree,no,yes,yes,cellular,may,wed,253,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,14,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,married,high.school,no,no,no,cellular,may,wed,316,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,services,single,high.school,no,yes,no,cellular,may,wed,152,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.6y,no,no,yes,telephone,may,wed,137,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,management,single,university.degree,no,no,yes,cellular,may,wed,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +56,blue-collar,divorced,basic.6y,unknown,no,no,cellular,may,wed,154,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,admin.,married,high.school,no,yes,yes,cellular,may,wed,165,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,466,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,1101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,368,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,admin.,married,high.school,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,high.school,no,yes,yes,cellular,may,wed,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,married,high.school,no,yes,yes,cellular,may,wed,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,high.school,no,no,no,cellular,may,wed,157,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,may,wed,96,6,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,single,university.degree,no,no,no,telephone,may,wed,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +52,admin.,married,basic.9y,no,yes,no,cellular,may,wed,38,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +48,services,married,high.school,no,yes,yes,cellular,may,wed,154,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +55,blue-collar,divorced,basic.4y,unknown,no,no,telephone,may,wed,148,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,wed,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,single,professional.course,no,yes,yes,telephone,may,wed,43,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +44,technician,single,high.school,unknown,no,no,cellular,may,wed,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,self-employed,single,high.school,unknown,no,no,cellular,may,wed,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,single,unknown,no,yes,no,telephone,may,wed,125,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.9y,no,yes,yes,cellular,may,wed,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,427,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,technician,single,high.school,no,no,no,cellular,may,wed,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +22,admin.,single,high.school,no,yes,no,cellular,may,wed,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,basic.4y,no,yes,yes,cellular,may,wed,409,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +55,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,299,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,323,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,services,divorced,basic.9y,no,no,no,cellular,may,wed,215,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,student,single,high.school,unknown,yes,no,cellular,may,wed,290,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +37,admin.,single,basic.9y,no,yes,yes,cellular,may,wed,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,technician,single,professional.course,no,no,no,cellular,may,wed,143,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,admin.,married,university.degree,no,yes,no,cellular,may,wed,541,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +40,admin.,single,high.school,no,no,yes,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,single,basic.6y,no,yes,yes,cellular,may,wed,309,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +59,retired,divorced,professional.course,no,no,no,cellular,may,wed,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,student,single,university.degree,no,yes,no,cellular,may,wed,79,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,may,wed,299,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,housemaid,divorced,university.degree,no,yes,no,cellular,may,wed,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,196,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,54,1,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,high.school,no,no,no,cellular,may,wed,54,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,247,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,426,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,wed,404,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,wed,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,wed,135,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,wed,162,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,wed,130,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,wed,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,366,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +33,technician,single,university.degree,no,no,yes,cellular,may,wed,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,management,married,basic.9y,no,yes,yes,cellular,may,wed,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,single,basic.9y,no,no,no,cellular,may,wed,308,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,unemployed,married,university.degree,no,no,no,cellular,may,wed,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,wed,300,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +45,blue-collar,single,basic.4y,no,no,no,cellular,may,wed,223,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +37,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,199,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +56,housemaid,married,basic.4y,unknown,no,no,cellular,may,wed,206,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,721,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,technician,married,university.degree,no,yes,no,cellular,may,wed,641,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,wed,234,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,divorced,basic.4y,no,no,no,cellular,may,wed,86,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,180,2,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,technician,single,high.school,no,no,no,cellular,may,wed,68,4,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,single,high.school,no,no,no,cellular,may,wed,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,single,high.school,no,no,no,cellular,may,wed,102,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,wed,239,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,may,wed,325,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,wed,234,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,technician,married,professional.course,no,no,no,cellular,may,wed,194,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,134,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,management,married,university.degree,no,yes,no,cellular,may,wed,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,admin.,married,basic.9y,no,yes,yes,cellular,may,wed,674,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +36,services,single,high.school,no,yes,no,telephone,may,wed,216,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,122,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +58,retired,married,university.degree,no,no,no,cellular,may,wed,109,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,622,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,1966,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,married,university.degree,no,no,yes,cellular,may,wed,131,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,entrepreneur,married,university.degree,no,no,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,281,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,technician,married,basic.6y,no,yes,no,cellular,may,wed,156,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +45,blue-collar,single,basic.4y,no,yes,no,cellular,may,wed,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,may,wed,44,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,technician,single,high.school,no,yes,no,cellular,may,wed,240,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,technician,married,professional.course,no,no,no,cellular,may,wed,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,management,single,professional.course,no,no,no,cellular,may,wed,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,may,wed,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +26,admin.,single,high.school,no,yes,no,cellular,may,wed,38,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,services,married,basic.9y,no,yes,no,cellular,may,wed,201,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,technician,single,professional.course,no,no,no,cellular,may,wed,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,basic.6y,no,yes,no,cellular,may,wed,298,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,wed,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +23,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,52,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +23,services,married,high.school,no,yes,no,cellular,may,wed,77,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,blue-collar,divorced,unknown,no,no,no,cellular,may,wed,390,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,unemployed,married,basic.4y,unknown,yes,no,cellular,may,wed,804,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,417,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,361,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,married,high.school,no,yes,no,cellular,may,wed,809,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +31,blue-collar,divorced,high.school,no,no,no,cellular,may,wed,156,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,wed,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,admin.,married,high.school,no,no,no,cellular,may,wed,166,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,services,married,high.school,no,yes,no,cellular,may,wed,58,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,76,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,high.school,no,yes,yes,cellular,may,wed,312,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,high.school,no,yes,no,cellular,may,wed,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,retired,single,basic.6y,unknown,yes,no,cellular,may,wed,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,divorced,high.school,no,yes,no,cellular,may,wed,829,1,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,291,8,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,484,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,single,university.degree,unknown,no,no,cellular,may,wed,169,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,admin.,single,high.school,no,yes,no,cellular,may,wed,437,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,unemployed,single,high.school,no,yes,no,cellular,may,wed,937,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +31,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,37,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,193,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,wed,230,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,blue-collar,divorced,high.school,no,yes,no,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,wed,163,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +58,management,married,basic.6y,unknown,no,no,cellular,may,wed,159,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,unemployed,single,high.school,no,yes,no,cellular,may,wed,1970,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +32,blue-collar,single,high.school,no,no,yes,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,wed,195,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,unknown,unknown,yes,no,telephone,may,wed,1302,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,wed,96,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,blue-collar,divorced,basic.4y,no,no,no,cellular,may,wed,154,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +51,self-employed,married,basic.9y,no,no,no,telephone,may,wed,246,2,12,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +30,student,single,university.degree,unknown,yes,yes,cellular,may,wed,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,married,basic.4y,unknown,no,no,telephone,may,wed,276,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,wed,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,119,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,management,married,university.degree,no,yes,no,cellular,may,wed,172,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,management,married,university.degree,no,yes,yes,cellular,may,wed,74,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,187,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,141,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,technician,married,professional.course,no,no,no,cellular,may,wed,124,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,1975,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,services,single,basic.6y,no,yes,yes,cellular,may,wed,252,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,single,high.school,no,no,no,cellular,may,wed,248,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,married,high.school,no,yes,yes,cellular,may,wed,85,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,199,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,no,yes,cellular,may,wed,482,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +30,technician,married,basic.9y,no,no,no,cellular,may,wed,226,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,98,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,358,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +37,blue-collar,married,basic.6y,no,no,yes,cellular,may,wed,158,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,admin.,married,university.degree,no,yes,yes,cellular,may,wed,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,self-employed,single,university.degree,no,no,no,cellular,may,wed,340,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,single,basic.9y,no,yes,yes,telephone,may,wed,325,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +47,blue-collar,single,basic.6y,unknown,no,no,cellular,may,wed,408,2,999,2,failure,-1.8,92.893,-46.2,1.281,5099.1,no +48,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,management,married,university.degree,no,no,no,cellular,may,wed,323,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,divorced,university.degree,no,yes,no,cellular,may,wed,275,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,may,wed,177,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,admin.,married,high.school,unknown,no,no,cellular,may,wed,431,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,single,university.degree,no,yes,no,cellular,may,wed,53,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,396,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +39,management,divorced,university.degree,no,no,no,cellular,may,wed,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,blue-collar,married,high.school,unknown,yes,yes,cellular,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,wed,954,2,10,1,success,-1.8,92.893,-46.2,1.281,5099.1,yes +41,blue-collar,married,unknown,no,yes,yes,cellular,may,wed,612,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,wed,251,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,admin.,single,high.school,unknown,no,no,cellular,may,wed,537,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,single,high.school,no,no,no,cellular,may,wed,402,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,services,single,high.school,no,no,no,cellular,may,wed,1298,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +36,admin.,single,university.degree,no,no,yes,cellular,may,wed,1119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +52,technician,divorced,high.school,no,no,yes,cellular,may,wed,191,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +27,technician,single,professional.course,no,yes,yes,cellular,may,wed,94,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,499,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,single,high.school,no,yes,no,cellular,may,wed,66,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +26,blue-collar,single,professional.course,no,yes,no,cellular,may,wed,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,high.school,no,no,no,telephone,may,wed,56,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,technician,married,high.school,no,no,no,cellular,may,wed,195,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +35,services,single,high.school,no,no,no,telephone,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,technician,single,professional.course,no,yes,no,cellular,may,wed,38,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,168,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,services,married,university.degree,no,yes,no,cellular,may,wed,154,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +24,housemaid,married,basic.9y,no,no,no,cellular,may,wed,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,wed,107,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,admin.,married,high.school,no,yes,no,telephone,may,wed,121,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,entrepreneur,single,university.degree,no,yes,no,cellular,may,wed,318,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,255,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +41,housemaid,married,high.school,no,no,no,cellular,may,wed,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,53,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,admin.,single,university.degree,no,no,no,cellular,may,wed,196,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,married,university.degree,no,no,yes,telephone,may,wed,65,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,136,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,wed,444,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,married,high.school,no,yes,no,cellular,may,wed,308,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,admin.,single,high.school,no,no,no,cellular,may,wed,698,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +31,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,wed,228,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,may,wed,562,2,6,1,success,-1.8,92.893,-46.2,1.281,5099.1,no +35,entrepreneur,married,university.degree,no,yes,no,cellular,may,wed,272,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +39,entrepreneur,married,basic.9y,no,yes,no,cellular,may,wed,419,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +46,housemaid,married,basic.4y,unknown,yes,no,cellular,may,wed,369,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +55,services,single,high.school,no,no,yes,cellular,may,wed,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,single,university.degree,no,yes,no,cellular,may,wed,173,9,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,technician,single,professional.course,no,no,no,cellular,may,wed,62,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,management,married,university.degree,no,yes,no,cellular,may,wed,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +57,services,married,high.school,unknown,yes,no,cellular,may,wed,76,7,1,2,success,-1.8,92.893,-46.2,1.281,5099.1,no +32,technician,married,professional.course,no,no,no,cellular,may,wed,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,married,high.school,no,unknown,unknown,cellular,may,wed,805,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,married,basic.9y,unknown,no,no,telephone,may,wed,97,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,technician,single,high.school,no,yes,no,cellular,may,wed,202,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,wed,777,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,378,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,654,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +35,services,single,high.school,no,yes,no,cellular,may,wed,185,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.4y,no,yes,yes,cellular,may,wed,1805,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,technician,single,professional.course,no,yes,no,cellular,may,wed,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,university.degree,no,no,no,cellular,may,wed,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,222,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +38,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,wed,122,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,services,single,high.school,no,no,no,cellular,may,wed,649,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +49,blue-collar,married,high.school,unknown,yes,no,cellular,may,wed,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,services,married,high.school,no,yes,no,cellular,may,wed,237,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,unemployed,divorced,basic.6y,no,unknown,unknown,cellular,may,wed,135,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,technician,single,professional.course,no,yes,no,cellular,may,wed,102,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,professional.course,unknown,no,no,cellular,may,wed,65,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +59,retired,divorced,professional.course,no,yes,no,cellular,may,wed,281,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +56,blue-collar,married,basic.4y,no,yes,yes,cellular,may,wed,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,services,married,basic.9y,no,no,yes,cellular,may,wed,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.6y,no,yes,yes,cellular,may,wed,143,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +44,unemployed,divorced,basic.9y,no,no,no,telephone,may,wed,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,high.school,no,yes,no,cellular,may,wed,177,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,admin.,single,university.degree,no,yes,yes,cellular,may,wed,84,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,admin.,married,high.school,no,no,no,cellular,may,wed,406,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,services,married,high.school,no,no,no,cellular,may,wed,185,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,155,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,yes,cellular,may,wed,190,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,technician,single,professional.course,no,no,no,telephone,may,wed,99,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,254,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +42,technician,single,professional.course,no,no,no,cellular,may,wed,531,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,admin.,single,basic.9y,no,yes,no,cellular,may,wed,256,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,entrepreneur,married,basic.4y,unknown,yes,no,cellular,may,wed,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +48,blue-collar,married,basic.6y,no,no,no,telephone,may,wed,25,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,253,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +26,student,single,high.school,no,yes,no,cellular,may,wed,277,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,single,basic.6y,no,yes,no,cellular,may,wed,125,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,services,single,high.school,no,no,no,cellular,may,wed,151,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +34,unemployed,single,high.school,no,no,no,telephone,may,wed,127,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,wed,449,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +57,blue-collar,married,basic.6y,unknown,no,no,cellular,may,wed,97,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,divorced,basic.6y,no,yes,no,cellular,may,wed,16,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +46,housemaid,single,basic.9y,unknown,no,no,cellular,may,wed,388,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,self-employed,single,university.degree,no,no,no,cellular,may,wed,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,265,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +40,technician,married,professional.course,no,yes,no,cellular,may,wed,32,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,self-employed,married,basic.9y,no,yes,no,cellular,may,wed,285,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +39,services,married,high.school,no,no,no,cellular,may,wed,383,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,blue-collar,single,basic.4y,no,yes,no,telephone,may,wed,179,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,single,university.degree,no,yes,no,telephone,may,wed,51,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,technician,single,high.school,no,yes,no,cellular,may,wed,446,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,management,single,university.degree,no,no,yes,cellular,may,wed,136,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,high.school,unknown,yes,no,cellular,may,wed,420,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +53,retired,married,basic.9y,no,no,no,cellular,may,wed,133,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +21,student,single,high.school,no,no,no,cellular,may,wed,513,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +36,technician,single,professional.course,no,yes,no,cellular,may,wed,225,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,single,high.school,no,no,yes,cellular,may,wed,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,wed,240,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +28,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,135,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,admin.,single,basic.9y,no,no,no,cellular,may,wed,245,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,married,high.school,no,yes,no,cellular,may,wed,119,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,may,wed,1279,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +44,admin.,divorced,professional.course,no,no,yes,telephone,may,wed,38,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,basic.9y,no,no,yes,cellular,may,wed,331,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,unemployed,married,basic.4y,unknown,no,no,cellular,may,wed,771,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +49,entrepreneur,married,basic.4y,unknown,yes,no,cellular,may,wed,491,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,housemaid,divorced,university.degree,no,yes,no,cellular,may,wed,873,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +51,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,440,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +36,services,divorced,high.school,no,no,yes,telephone,may,wed,992,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +58,housemaid,married,basic.4y,no,no,no,telephone,may,wed,689,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +29,admin.,single,high.school,no,yes,no,cellular,may,wed,443,7,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,wed,302,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +32,technician,single,university.degree,no,yes,no,cellular,may,wed,75,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,admin.,married,university.degree,no,no,yes,cellular,may,wed,72,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,single,basic.9y,no,no,yes,telephone,may,wed,418,5,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,324,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,divorced,high.school,no,no,no,cellular,may,wed,69,11,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +38,self-employed,married,basic.9y,no,no,no,cellular,may,wed,1130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,yes +52,admin.,married,university.degree,no,no,no,cellular,may,wed,429,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,yes +34,blue-collar,married,high.school,no,yes,no,cellular,may,wed,96,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,310,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,wed,149,6,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +28,student,single,high.school,no,no,no,cellular,may,wed,182,4,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,wed,1309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,364,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,management,married,university.degree,no,yes,yes,cellular,may,wed,36,9,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,unknown,yes,no,telephone,may,wed,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +46,blue-collar,divorced,basic.9y,no,no,no,cellular,may,wed,426,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +45,services,married,high.school,unknown,yes,no,cellular,may,wed,25,7,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,single,high.school,no,yes,yes,cellular,may,wed,196,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,wed,126,2,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +25,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,201,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +42,blue-collar,divorced,basic.9y,no,no,yes,cellular,may,wed,300,5,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +32,blue-collar,married,basic.6y,unknown,no,no,telephone,may,wed,630,3,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,telephone,may,wed,48,4,999,1,failure,-1.8,92.893,-46.2,1.281,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,may,wed,305,8,999,0,nonexistent,-1.8,92.893,-46.2,1.281,5099.1,no +27,admin.,married,professional.course,no,no,no,cellular,may,thu,68,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,65,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,247,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,thu,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,technician,single,university.degree,no,yes,yes,cellular,may,thu,178,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +35,technician,single,professional.course,no,no,no,telephone,may,thu,19,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,housemaid,single,basic.4y,no,no,yes,cellular,may,thu,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,services,single,basic.4y,unknown,yes,no,cellular,may,thu,24,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,may,thu,165,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,thu,14,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,high.school,no,yes,no,telephone,may,thu,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +59,admin.,divorced,basic.9y,no,yes,no,cellular,may,thu,8,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +48,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,33,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,management,married,university.degree,no,yes,no,telephone,may,thu,921,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,services,married,high.school,no,yes,yes,cellular,may,thu,436,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,professional.course,no,no,no,cellular,may,thu,119,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,basic.9y,no,yes,no,telephone,may,thu,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,self-employed,married,high.school,no,yes,yes,cellular,may,thu,181,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,basic.9y,no,yes,no,telephone,may,thu,7,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,16,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,university.degree,no,yes,no,cellular,may,thu,259,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,102,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,single,university.degree,no,yes,no,cellular,may,thu,19,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,high.school,unknown,yes,no,cellular,may,thu,152,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +47,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,student,single,high.school,no,yes,no,cellular,may,thu,21,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,thu,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,divorced,basic.9y,no,no,yes,telephone,may,thu,18,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,blue-collar,single,basic.9y,unknown,yes,yes,cellular,may,thu,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,services,married,high.school,unknown,yes,no,cellular,may,thu,13,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,technician,married,professional.course,no,yes,no,cellular,may,thu,99,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,services,single,high.school,no,unknown,unknown,cellular,may,thu,11,15,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,admin.,single,high.school,no,yes,no,cellular,may,thu,24,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,technician,married,university.degree,no,yes,no,cellular,may,thu,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,services,single,basic.9y,no,yes,no,cellular,may,thu,78,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,thu,29,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,yes,no,telephone,may,thu,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,465,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,thu,263,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,no,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +43,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,722,2,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +33,admin.,married,professional.course,no,no,yes,cellular,may,thu,178,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +34,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,6,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,basic.6y,no,no,no,cellular,may,thu,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,thu,348,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,thu,30,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +48,management,divorced,university.degree,unknown,no,no,cellular,may,thu,33,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,may,thu,325,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +43,services,married,high.school,unknown,yes,no,cellular,may,thu,974,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +23,self-employed,single,basic.9y,no,no,no,cellular,may,thu,254,11,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,married,university.degree,unknown,no,no,cellular,may,thu,344,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,925,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,467,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +27,entrepreneur,divorced,university.degree,unknown,no,no,telephone,may,thu,9,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,15,11,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,12,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +20,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,42,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,services,divorced,high.school,no,no,no,cellular,may,thu,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,technician,married,professional.course,no,yes,no,cellular,may,thu,580,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,40,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,services,single,high.school,no,no,no,cellular,may,thu,350,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,720,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,management,married,university.degree,no,no,no,cellular,may,thu,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,single,high.school,no,yes,yes,cellular,may,thu,10,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,services,divorced,high.school,no,yes,no,cellular,may,thu,533,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +45,self-employed,married,high.school,no,yes,no,cellular,may,thu,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,management,single,university.degree,no,yes,yes,cellular,may,thu,146,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,services,married,high.school,no,yes,yes,cellular,may,thu,189,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,365,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,management,married,university.degree,no,no,no,cellular,may,thu,84,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,thu,638,1,6,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,thu,46,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,student,single,unknown,no,yes,yes,cellular,may,thu,306,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,558,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +26,management,single,university.degree,no,yes,yes,cellular,may,thu,161,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,management,single,university.degree,no,yes,no,cellular,may,thu,119,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,entrepreneur,married,high.school,no,yes,no,cellular,may,thu,61,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,admin.,married,high.school,no,no,no,cellular,may,thu,362,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,151,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +25,services,single,high.school,no,no,no,cellular,may,thu,566,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,basic.9y,no,no,no,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +50,self-employed,married,basic.9y,unknown,no,no,cellular,may,thu,291,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +50,self-employed,married,basic.9y,unknown,no,no,cellular,may,thu,287,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,basic.9y,no,no,no,cellular,may,thu,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,high.school,no,no,no,cellular,may,thu,244,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,management,single,university.degree,no,yes,no,cellular,may,thu,667,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +26,admin.,single,high.school,unknown,no,no,cellular,may,thu,136,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,management,single,university.degree,no,no,no,cellular,may,thu,715,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +40,admin.,divorced,high.school,no,yes,no,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,may,thu,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,admin.,married,basic.9y,unknown,yes,yes,cellular,may,thu,414,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,services,single,high.school,no,yes,no,cellular,may,thu,201,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,high.school,no,yes,no,cellular,may,thu,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,management,divorced,university.degree,unknown,no,no,cellular,may,thu,86,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,317,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,divorced,high.school,no,no,no,cellular,may,thu,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,services,married,high.school,no,yes,no,cellular,may,thu,532,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,professional.course,no,no,no,cellular,may,thu,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +54,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,141,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,self-employed,single,professional.course,unknown,yes,no,cellular,may,thu,161,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,23,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,276,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,professional.course,no,no,no,telephone,may,thu,7,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,high.school,no,yes,yes,cellular,may,thu,201,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,basic.9y,no,no,no,cellular,may,thu,20,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,blue-collar,single,basic.9y,no,no,yes,cellular,may,thu,51,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,divorced,basic.9y,unknown,no,no,cellular,may,thu,467,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,single,high.school,no,no,yes,cellular,may,thu,603,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,thu,9,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,283,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,professional.course,no,yes,no,cellular,may,thu,341,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,102,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,267,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +55,services,single,basic.9y,no,unknown,unknown,cellular,may,thu,717,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,services,married,high.school,no,yes,no,cellular,may,thu,22,8,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,technician,married,professional.course,no,yes,yes,cellular,may,thu,428,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,484,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,self-employed,single,professional.course,unknown,no,no,cellular,may,thu,561,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +32,management,single,university.degree,no,yes,no,cellular,may,thu,149,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,338,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,182,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,thu,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,self-employed,single,university.degree,no,yes,yes,cellular,may,thu,73,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,no,no,cellular,may,thu,584,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,260,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,self-employed,single,university.degree,no,no,no,cellular,may,thu,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,self-employed,single,university.degree,no,no,no,cellular,may,thu,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,no,no,cellular,may,thu,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,thu,590,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +48,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,214,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,entrepreneur,divorced,high.school,no,yes,no,cellular,may,thu,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,37,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,273,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,high.school,no,no,no,cellular,may,thu,451,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +35,entrepreneur,married,professional.course,no,yes,no,telephone,may,thu,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,technician,single,unknown,no,no,no,cellular,may,thu,745,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +29,services,single,high.school,no,no,no,cellular,may,thu,854,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,1166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,no,yes,cellular,may,thu,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +47,entrepreneur,divorced,high.school,no,no,no,cellular,may,thu,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,married,high.school,no,no,yes,cellular,may,thu,7,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,self-employed,married,high.school,no,no,no,cellular,may,thu,159,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,services,single,high.school,no,no,no,cellular,may,thu,646,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +24,admin.,single,professional.course,no,no,no,cellular,may,thu,210,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,married,university.degree,no,no,yes,cellular,may,thu,17,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,management,single,high.school,no,no,yes,cellular,may,thu,365,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,married,basic.4y,unknown,yes,no,telephone,may,thu,162,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,university.degree,no,yes,yes,cellular,may,thu,255,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +41,technician,married,professional.course,no,yes,no,cellular,may,thu,377,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,housemaid,single,high.school,no,yes,no,cellular,may,thu,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,thu,133,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +37,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,345,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,263,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,management,married,professional.course,no,no,no,cellular,may,thu,125,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,technician,single,basic.4y,unknown,yes,no,cellular,may,thu,411,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,services,married,high.school,no,no,no,cellular,may,thu,67,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,single,basic.4y,no,yes,no,cellular,may,thu,279,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +38,services,single,high.school,no,yes,yes,cellular,may,thu,456,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +25,services,married,high.school,no,no,no,cellular,may,thu,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,680,1,6,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +49,services,married,high.school,no,yes,no,cellular,may,thu,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,services,married,high.school,no,yes,no,cellular,may,thu,21,12,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,blue-collar,unknown,basic.4y,no,no,no,cellular,may,thu,1180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +32,technician,single,university.degree,no,no,no,cellular,may,thu,14,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,services,single,high.school,no,no,no,cellular,may,thu,243,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,high.school,no,yes,no,cellular,may,thu,17,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,student,single,high.school,no,no,no,cellular,may,thu,12,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,535,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +44,services,married,high.school,no,no,no,telephone,may,thu,188,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +52,technician,married,basic.6y,unknown,no,no,cellular,may,thu,498,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +32,admin.,single,high.school,no,yes,no,cellular,may,thu,149,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,technician,single,university.degree,no,yes,no,telephone,may,thu,62,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,admin.,married,university.degree,unknown,no,no,cellular,may,thu,877,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,entrepreneur,single,university.degree,no,yes,yes,cellular,may,thu,204,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,entrepreneur,married,basic.6y,no,yes,no,cellular,may,thu,210,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,student,unknown,basic.9y,no,no,no,cellular,may,thu,155,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,university.degree,no,no,yes,cellular,may,thu,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,management,married,professional.course,no,no,no,cellular,may,thu,578,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +54,blue-collar,married,basic.4y,unknown,yes,yes,cellular,may,thu,303,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,thu,258,1,10,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +44,services,married,high.school,no,no,yes,cellular,may,thu,786,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +29,services,married,high.school,unknown,yes,no,cellular,may,thu,161,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,633,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +32,admin.,married,university.degree,no,no,no,cellular,may,thu,57,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +46,services,married,high.school,no,no,no,cellular,may,thu,107,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,divorced,high.school,no,no,no,cellular,may,thu,307,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +23,self-employed,single,basic.9y,no,yes,no,cellular,may,thu,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +41,services,married,high.school,no,no,no,cellular,may,thu,116,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,entrepreneur,divorced,high.school,no,yes,no,cellular,may,thu,318,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,yes,no,cellular,may,thu,47,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,self-employed,married,high.school,no,no,no,cellular,may,thu,183,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,married,high.school,no,yes,no,cellular,may,thu,343,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,basic.9y,no,yes,no,telephone,may,thu,230,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,university.degree,no,no,no,cellular,may,thu,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,thu,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,single,high.school,no,no,no,cellular,may,thu,47,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +47,services,married,basic.6y,no,yes,no,cellular,may,thu,201,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,married,professional.course,no,yes,yes,telephone,may,thu,289,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.6y,unknown,no,no,cellular,may,thu,72,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,273,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,single,high.school,no,no,yes,cellular,may,thu,91,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,married,high.school,unknown,yes,no,cellular,may,thu,23,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +45,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,single,university.degree,no,no,no,telephone,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,449,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +45,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,single,high.school,no,no,no,cellular,may,thu,524,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +25,student,single,university.degree,no,no,no,telephone,may,thu,13,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +53,services,married,basic.6y,no,yes,no,cellular,may,thu,157,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +42,services,divorced,high.school,no,no,no,cellular,may,thu,72,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,112,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,50,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,225,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,35,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,607,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +37,management,married,university.degree,no,no,yes,cellular,may,thu,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,255,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,self-employed,single,university.degree,no,no,no,cellular,may,thu,334,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,1075,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +36,admin.,single,high.school,no,yes,no,cellular,may,thu,235,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,single,high.school,no,no,no,cellular,may,thu,64,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,high.school,no,no,no,cellular,may,thu,137,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,services,divorced,high.school,no,yes,yes,cellular,may,thu,874,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +23,student,single,university.degree,no,yes,no,cellular,may,thu,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,433,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,single,high.school,no,no,no,cellular,may,thu,215,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,thu,287,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +47,blue-collar,married,basic.4y,unknown,no,no,telephone,may,thu,391,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,16,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,523,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,225,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +21,student,single,high.school,no,no,no,cellular,may,thu,24,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,management,married,university.degree,no,yes,no,cellular,may,thu,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,services,single,university.degree,no,unknown,unknown,telephone,may,thu,93,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,married,university.degree,no,no,yes,cellular,may,thu,234,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,admin.,single,high.school,no,no,no,cellular,may,thu,797,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,419,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,married,basic.6y,no,yes,no,cellular,may,thu,83,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,thu,30,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,135,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,thu,97,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,management,married,university.degree,no,yes,no,cellular,may,thu,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,married,basic.6y,no,no,no,cellular,may,thu,586,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,thu,492,1,12,2,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +23,blue-collar,single,basic.4y,unknown,no,yes,cellular,may,thu,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +21,admin.,single,high.school,no,no,yes,cellular,may,thu,240,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,technician,married,professional.course,no,yes,no,cellular,may,thu,703,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,1106,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,management,single,university.degree,no,yes,no,telephone,may,thu,151,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,506,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.4y,no,no,no,cellular,may,thu,282,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +57,admin.,married,basic.9y,no,no,no,cellular,may,thu,563,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +30,technician,single,professional.course,no,yes,no,cellular,may,thu,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +41,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,174,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +50,services,divorced,high.school,no,yes,no,cellular,may,thu,199,15,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,services,single,high.school,no,yes,no,cellular,may,thu,437,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,unknown,yes,no,cellular,may,thu,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,386,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,thu,74,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,student,single,high.school,no,no,no,cellular,may,thu,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,111,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +53,admin.,married,high.school,no,no,no,cellular,may,thu,168,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,156,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,divorced,high.school,no,yes,no,cellular,may,thu,66,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,services,divorced,high.school,no,no,no,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +34,entrepreneur,married,high.school,no,yes,yes,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +42,admin.,married,high.school,no,yes,no,cellular,may,thu,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,thu,1020,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +25,student,single,high.school,no,yes,no,cellular,may,thu,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,services,divorced,high.school,no,yes,no,cellular,may,thu,202,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,management,single,university.degree,no,yes,no,telephone,may,thu,112,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,technician,married,university.degree,no,no,no,telephone,may,thu,154,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,thu,337,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,unknown,no,no,cellular,may,thu,1723,1,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +45,admin.,married,unknown,no,no,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,95,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,technician,single,professional.course,unknown,yes,yes,cellular,may,thu,246,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,management,single,university.degree,no,no,no,cellular,may,thu,162,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,services,single,professional.course,no,yes,no,cellular,may,thu,406,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +35,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,20,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,high.school,unknown,yes,no,cellular,may,thu,115,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +43,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,543,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,self-employed,single,university.degree,no,yes,no,cellular,may,thu,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,technician,married,university.degree,no,no,yes,cellular,may,thu,136,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,single,high.school,no,no,no,cellular,may,thu,138,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,thu,118,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,services,single,high.school,no,yes,no,cellular,may,thu,30,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,yes,no,cellular,may,thu,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,no,no,cellular,may,thu,466,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,professional.course,no,unknown,unknown,cellular,may,thu,110,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,thu,97,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +52,blue-collar,divorced,basic.6y,unknown,yes,no,cellular,may,thu,7,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,thu,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,management,divorced,university.degree,no,yes,no,cellular,may,thu,146,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,thu,16,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,high.school,no,yes,no,cellular,may,thu,150,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,services,single,university.degree,no,yes,no,cellular,may,thu,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,single,high.school,no,yes,no,cellular,may,thu,88,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,thu,277,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,services,divorced,high.school,no,no,no,cellular,may,thu,96,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,technician,single,professional.course,no,no,no,cellular,may,thu,175,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,no,no,cellular,may,thu,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,admin.,married,high.school,no,unknown,unknown,cellular,may,thu,430,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,student,single,high.school,no,unknown,unknown,cellular,may,thu,97,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,management,married,university.degree,no,no,no,cellular,may,thu,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,blue-collar,married,high.school,unknown,yes,no,cellular,may,thu,71,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +21,services,single,high.school,no,yes,no,cellular,may,thu,136,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,92,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,155,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,199,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +51,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,159,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +37,services,divorced,high.school,no,no,no,cellular,may,thu,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,single,university.degree,no,yes,no,cellular,may,thu,43,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,thu,70,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,334,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,self-employed,married,high.school,no,yes,no,cellular,may,thu,107,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,no,no,cellular,may,thu,806,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,technician,single,high.school,no,no,no,cellular,may,thu,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,admin.,single,university.degree,no,no,no,telephone,may,thu,217,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,may,thu,216,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,thu,143,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,management,single,basic.9y,no,yes,no,cellular,may,thu,106,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,226,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,management,single,basic.9y,no,yes,no,telephone,may,thu,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,services,single,basic.9y,no,yes,no,cellular,may,thu,64,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,thu,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,yes,no,cellular,may,thu,99,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,130,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,thu,256,1,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +35,blue-collar,married,high.school,no,yes,no,cellular,may,thu,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,technician,single,professional.course,no,yes,no,cellular,may,thu,285,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,thu,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,thu,691,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +27,technician,single,professional.course,no,no,no,cellular,may,thu,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,164,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,technician,single,high.school,no,no,yes,cellular,may,thu,1129,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +24,blue-collar,single,basic.4y,no,yes,yes,cellular,may,thu,109,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,university.degree,no,yes,yes,cellular,may,thu,444,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,admin.,divorced,high.school,no,yes,no,cellular,may,thu,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,technician,married,university.degree,no,yes,yes,cellular,may,thu,175,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,191,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +39,technician,married,professional.course,no,yes,no,cellular,may,thu,292,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,may,thu,239,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,59,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,471,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +46,services,married,high.school,no,yes,no,cellular,may,thu,182,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,933,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +32,management,married,high.school,no,unknown,unknown,cellular,may,thu,396,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,married,university.degree,no,yes,no,cellular,may,thu,432,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,single,basic.9y,no,yes,yes,cellular,may,thu,224,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +33,blue-collar,married,basic.9y,unknown,no,no,cellular,may,thu,616,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +42,technician,married,professional.course,no,yes,yes,cellular,may,thu,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,basic.9y,no,yes,no,cellular,may,thu,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,admin.,single,high.school,no,yes,no,cellular,may,thu,685,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +54,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,423,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,65,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,unknown,unknown,unknown,cellular,may,thu,551,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +58,entrepreneur,divorced,professional.course,no,yes,no,cellular,may,thu,165,5,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +51,blue-collar,married,basic.4y,no,yes,yes,cellular,may,thu,668,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,student,single,university.degree,no,yes,no,cellular,may,thu,42,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,married,high.school,no,no,no,cellular,may,thu,177,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,high.school,no,yes,yes,cellular,may,thu,99,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,108,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,services,married,high.school,no,yes,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,thu,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,services,married,high.school,no,yes,no,cellular,may,thu,117,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +57,services,divorced,basic.4y,no,no,no,cellular,may,thu,161,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,blue-collar,single,high.school,no,yes,no,cellular,may,thu,330,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,technician,single,professional.course,no,no,no,cellular,may,thu,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +53,services,married,basic.6y,no,yes,no,cellular,may,thu,24,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,married,high.school,no,no,no,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,student,single,high.school,no,yes,no,cellular,may,thu,143,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,entrepreneur,married,basic.9y,unknown,yes,yes,cellular,may,thu,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,88,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,157,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +40,technician,single,professional.course,unknown,yes,no,cellular,may,thu,111,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +54,self-employed,divorced,professional.course,no,yes,no,cellular,may,thu,553,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,student,single,basic.9y,no,yes,no,telephone,may,thu,25,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,may,thu,433,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,services,divorced,high.school,no,no,yes,cellular,may,thu,632,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,115,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,management,single,university.degree,no,no,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,housemaid,single,high.school,no,yes,no,cellular,may,thu,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.6y,no,yes,yes,cellular,may,thu,246,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,single,basic.6y,no,yes,no,cellular,may,thu,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,basic.9y,no,yes,no,cellular,may,thu,479,1,11,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +30,technician,married,university.degree,no,yes,no,cellular,may,thu,46,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,services,divorced,basic.9y,no,unknown,unknown,cellular,may,thu,67,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,high.school,no,yes,no,cellular,may,thu,888,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,185,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,married,professional.course,no,no,no,cellular,may,thu,1071,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +35,admin.,married,university.degree,no,no,no,cellular,may,thu,229,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,divorced,university.degree,no,unknown,unknown,telephone,may,thu,213,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,thu,293,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,telephone,may,thu,46,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,technician,married,university.degree,no,no,yes,cellular,may,thu,169,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +41,technician,married,professional.course,no,no,yes,cellular,may,thu,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,thu,284,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,thu,76,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,high.school,no,no,yes,cellular,may,thu,151,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,management,married,university.degree,no,yes,no,telephone,may,thu,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,technician,single,professional.course,no,yes,no,cellular,may,thu,56,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,thu,1060,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +24,entrepreneur,single,university.degree,no,no,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,thu,332,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,thu,1543,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,blue-collar,married,basic.6y,unknown,no,yes,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,24,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +34,unemployed,married,basic.9y,no,yes,no,cellular,may,thu,218,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,admin.,divorced,basic.9y,no,yes,no,cellular,may,thu,688,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +26,admin.,single,university.degree,no,yes,no,cellular,may,thu,400,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,services,married,high.school,no,yes,no,cellular,may,thu,164,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,123,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,services,single,high.school,no,no,no,cellular,may,thu,99,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,362,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,entrepreneur,married,professional.course,no,no,yes,cellular,may,thu,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,502,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,thu,444,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,thu,366,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,services,single,high.school,no,yes,no,cellular,may,thu,367,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +40,technician,single,professional.course,unknown,yes,no,cellular,may,thu,17,8,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,thu,464,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,technician,single,professional.course,no,yes,yes,cellular,may,thu,158,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,technician,single,professional.course,no,no,no,telephone,may,thu,29,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,entrepreneur,married,university.degree,unknown,yes,yes,cellular,may,thu,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,admin.,married,university.degree,unknown,no,yes,cellular,may,thu,183,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +41,admin.,divorced,high.school,unknown,yes,yes,cellular,may,thu,380,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,entrepreneur,married,university.degree,no,yes,no,cellular,may,thu,113,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,technician,single,professional.course,no,yes,no,cellular,may,thu,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,blue-collar,married,basic.6y,unknown,no,yes,telephone,may,thu,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,535,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,blue-collar,unknown,basic.4y,no,unknown,unknown,cellular,may,thu,610,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,entrepreneur,married,university.degree,no,yes,yes,cellular,may,thu,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,blue-collar,married,basic.6y,no,no,no,cellular,may,thu,43,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,299,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +42,technician,married,professional.course,no,yes,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +51,technician,married,professional.course,no,unknown,unknown,cellular,may,thu,1462,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,married,professional.course,no,yes,yes,cellular,may,thu,162,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,basic.9y,no,no,no,cellular,may,thu,304,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,blue-collar,single,unknown,no,yes,no,cellular,may,thu,487,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,technician,married,professional.course,no,yes,no,cellular,may,thu,251,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,services,single,university.degree,no,yes,no,cellular,may,thu,261,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,management,single,university.degree,no,yes,no,cellular,may,thu,8,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +45,self-employed,married,university.degree,no,yes,no,cellular,may,thu,171,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,thu,112,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,self-employed,married,basic.9y,no,yes,no,cellular,may,thu,374,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,professional.course,no,yes,no,cellular,may,thu,60,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +37,technician,married,high.school,unknown,no,yes,cellular,may,thu,102,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,176,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,divorced,university.degree,no,yes,no,cellular,may,thu,241,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,may,thu,566,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +31,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,303,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,married,professional.course,no,yes,no,cellular,may,thu,649,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,student,single,high.school,no,yes,no,cellular,may,thu,959,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +31,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,thu,353,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,married,university.degree,no,no,no,telephone,may,thu,72,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,337,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,thu,93,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,university.degree,no,no,yes,cellular,may,thu,546,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,thu,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +54,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,532,2,6,2,success,-1.8,92.893,-46.2,1.266,5099.1,yes +31,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,204,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +52,technician,married,basic.6y,unknown,no,no,cellular,may,thu,152,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,267,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,divorced,high.school,no,yes,no,cellular,may,thu,406,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,single,high.school,no,yes,no,cellular,may,thu,1094,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +26,admin.,single,university.degree,no,yes,no,cellular,may,thu,320,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,single,basic.9y,unknown,no,no,cellular,may,thu,884,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +29,technician,single,high.school,unknown,yes,no,cellular,may,thu,410,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,services,single,professional.course,no,no,no,telephone,may,thu,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,technician,single,high.school,no,no,no,cellular,may,thu,198,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,thu,241,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +47,blue-collar,divorced,basic.9y,no,no,no,cellular,may,thu,16,8,6,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,basic.9y,unknown,no,no,cellular,may,thu,460,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +37,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,604,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +39,management,married,basic.4y,unknown,yes,no,telephone,may,thu,427,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +45,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,high.school,no,no,no,cellular,may,thu,350,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.6y,no,no,yes,cellular,may,thu,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,may,thu,176,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,admin.,married,high.school,no,yes,no,cellular,may,thu,118,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,single,high.school,no,no,no,cellular,may,thu,387,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,services,single,basic.4y,unknown,yes,yes,cellular,may,thu,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,technician,single,university.degree,no,no,no,cellular,may,thu,336,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,single,high.school,no,yes,no,cellular,may,thu,205,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,135,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,single,basic.4y,unknown,yes,no,telephone,may,thu,42,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,blue-collar,married,unknown,unknown,no,yes,cellular,may,thu,428,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,technician,single,high.school,no,yes,no,cellular,may,thu,240,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +60,retired,married,high.school,no,no,no,cellular,may,thu,512,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,entrepreneur,single,basic.9y,unknown,yes,yes,cellular,may,thu,75,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,thu,88,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,thu,41,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,married,basic.6y,unknown,yes,no,telephone,may,thu,27,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,technician,married,basic.9y,no,yes,no,cellular,may,thu,181,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,thu,306,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,divorced,university.degree,no,no,no,telephone,may,thu,90,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,entrepreneur,married,university.degree,no,no,no,cellular,may,thu,136,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +46,blue-collar,married,basic.4y,no,no,no,cellular,may,thu,154,2,12,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,305,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,management,married,university.degree,unknown,no,no,cellular,may,thu,190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,blue-collar,married,basic.9y,no,no,no,telephone,may,thu,47,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,married,university.degree,no,yes,yes,cellular,may,thu,172,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,thu,170,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.9y,no,no,no,cellular,may,thu,204,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,technician,single,professional.course,no,yes,no,cellular,may,thu,294,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,self-employed,single,university.degree,no,no,no,cellular,may,thu,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,high.school,no,yes,no,cellular,may,thu,173,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,high.school,no,no,no,cellular,may,thu,62,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,yes,telephone,may,thu,113,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,blue-collar,married,high.school,no,no,no,cellular,may,thu,136,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +44,technician,married,professional.course,no,yes,yes,cellular,may,thu,292,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,blue-collar,married,basic.4y,no,no,yes,cellular,may,thu,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,technician,married,high.school,no,yes,no,cellular,may,thu,90,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,blue-collar,married,high.school,no,no,no,cellular,may,thu,144,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +24,management,married,university.degree,no,no,no,telephone,may,thu,28,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,no,no,yes,cellular,may,thu,178,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,services,single,basic.4y,unknown,yes,yes,cellular,may,thu,306,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,admin.,married,high.school,no,no,yes,cellular,may,thu,386,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,unemployed,married,basic.9y,unknown,yes,yes,cellular,may,thu,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,493,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,high.school,no,yes,yes,telephone,may,thu,33,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,services,single,high.school,unknown,yes,no,cellular,may,thu,452,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,basic.9y,no,yes,yes,cellular,may,thu,167,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,blue-collar,married,basic.6y,no,yes,no,cellular,may,thu,125,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,services,married,high.school,no,no,no,cellular,may,thu,185,10,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,341,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,services,married,high.school,no,yes,no,cellular,may,thu,223,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,entrepreneur,single,university.degree,no,yes,no,cellular,may,thu,415,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +20,blue-collar,single,high.school,no,yes,no,cellular,may,thu,908,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,married,high.school,no,no,no,cellular,may,thu,166,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +55,admin.,divorced,university.degree,unknown,no,no,cellular,may,thu,168,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,student,single,unknown,no,no,no,cellular,may,thu,486,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +23,admin.,single,high.school,no,no,no,cellular,may,thu,67,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,technician,single,basic.9y,no,no,no,telephone,may,thu,167,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +25,blue-collar,single,high.school,unknown,no,yes,cellular,may,thu,338,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +24,services,married,high.school,no,no,no,cellular,may,thu,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +21,student,single,high.school,unknown,yes,no,cellular,may,thu,142,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +32,admin.,married,university.degree,no,yes,no,telephone,may,thu,151,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,may,thu,384,7,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,services,married,high.school,no,no,no,cellular,may,thu,192,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,admin.,single,high.school,no,yes,no,cellular,may,thu,212,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,single,basic.6y,unknown,no,no,cellular,may,thu,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,blue-collar,married,basic.9y,no,yes,no,cellular,may,thu,308,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,may,thu,54,11,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,services,single,high.school,no,no,yes,telephone,may,thu,30,6,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,thu,340,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +35,services,single,high.school,no,no,yes,telephone,may,thu,225,7,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +58,entrepreneur,divorced,professional.course,no,yes,no,telephone,may,thu,346,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.4y,unknown,no,no,cellular,may,thu,197,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,thu,290,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,married,university.degree,no,yes,yes,cellular,may,thu,8,9,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,basic.6y,unknown,yes,no,cellular,may,thu,72,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,yes,yes,telephone,may,thu,382,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +57,retired,married,basic.6y,no,no,no,cellular,may,thu,100,3,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +59,management,married,basic.4y,unknown,unknown,unknown,cellular,may,thu,165,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,student,single,university.degree,no,no,yes,cellular,may,thu,647,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +25,management,married,university.degree,no,no,no,cellular,may,thu,506,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,housemaid,single,unknown,no,yes,yes,cellular,may,fri,140,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,168,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,management,single,basic.9y,no,yes,no,cellular,may,fri,253,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,fri,195,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,unknown,no,yes,no,cellular,may,fri,235,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,fri,165,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,unknown,no,no,no,cellular,may,fri,68,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,services,divorced,high.school,unknown,yes,no,cellular,may,fri,133,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,blue-collar,married,professional.course,no,no,yes,cellular,may,fri,100,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,676,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +26,blue-collar,single,high.school,no,no,no,cellular,may,fri,49,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,fri,153,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +21,services,single,high.school,no,no,no,cellular,may,fri,103,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,19,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,divorced,professional.course,no,yes,yes,cellular,may,fri,296,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,single,high.school,no,no,no,cellular,may,fri,145,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,fri,69,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,single,high.school,no,yes,no,telephone,may,fri,26,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +23,admin.,single,unknown,no,yes,no,telephone,may,fri,17,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,blue-collar,married,basic.9y,no,unknown,unknown,cellular,may,fri,323,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,services,single,high.school,no,yes,yes,cellular,may,fri,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,460,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,admin.,married,high.school,no,yes,yes,cellular,may,fri,111,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,admin.,single,university.degree,no,no,no,cellular,may,fri,165,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,admin.,single,high.school,no,yes,yes,cellular,may,fri,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,fri,113,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,technician,single,university.degree,no,no,no,telephone,may,fri,12,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,entrepreneur,married,high.school,no,yes,no,cellular,may,fri,9,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,technician,single,university.degree,no,yes,no,telephone,may,fri,14,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +24,blue-collar,married,basic.9y,no,unknown,unknown,telephone,may,fri,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,management,single,professional.course,no,no,no,cellular,may,fri,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,667,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +27,admin.,married,university.degree,no,yes,no,cellular,may,fri,670,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +29,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,115,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,14,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,high.school,no,yes,no,telephone,may,fri,289,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,technician,married,professional.course,no,yes,no,cellular,may,fri,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,self-employed,single,professional.course,no,yes,no,telephone,may,fri,10,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,354,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,admin.,single,high.school,no,yes,no,cellular,may,fri,236,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,single,basic.9y,no,no,no,cellular,may,fri,62,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,single,unknown,no,yes,no,cellular,may,fri,61,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,103,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,management,married,university.degree,no,no,no,cellular,may,fri,172,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,basic.6y,unknown,yes,yes,cellular,may,fri,306,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +40,admin.,divorced,high.school,no,yes,no,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,778,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +45,entrepreneur,married,basic.9y,no,yes,no,telephone,may,fri,39,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,high.school,no,no,no,cellular,may,fri,1181,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,entrepreneur,single,university.degree,no,no,no,cellular,may,fri,124,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,single,unknown,no,yes,yes,cellular,may,fri,162,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,technician,married,basic.9y,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,married,basic.6y,no,yes,no,cellular,may,fri,16,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,fri,347,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,entrepreneur,single,university.degree,no,yes,yes,cellular,may,fri,233,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,services,married,university.degree,no,no,no,cellular,may,fri,136,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,fri,655,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +35,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,196,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,entrepreneur,single,university.degree,no,yes,no,cellular,may,fri,452,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,university.degree,no,no,no,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,university.degree,no,yes,no,cellular,may,fri,33,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,admin.,married,high.school,no,no,no,cellular,may,fri,35,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,fri,227,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,may,fri,197,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,entrepreneur,married,basic.9y,unknown,yes,no,cellular,may,fri,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,may,fri,191,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,management,married,university.degree,no,yes,yes,cellular,may,fri,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,single,high.school,no,yes,no,cellular,may,fri,642,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,management,married,university.degree,no,yes,no,cellular,may,fri,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,blue-collar,single,basic.4y,unknown,yes,no,cellular,may,fri,73,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,services,married,high.school,no,no,no,cellular,may,fri,551,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +29,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,607,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,divorced,basic.9y,no,no,no,cellular,may,fri,409,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +30,management,married,university.degree,no,no,no,cellular,may,fri,67,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,11,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +22,technician,single,university.degree,no,no,no,cellular,may,fri,382,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +27,technician,single,unknown,no,no,no,cellular,may,fri,7,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,high.school,no,yes,no,cellular,may,fri,144,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,services,single,high.school,no,no,no,cellular,may,fri,123,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,admin.,married,high.school,no,yes,no,cellular,may,fri,270,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +45,admin.,married,university.degree,no,yes,no,cellular,may,fri,160,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,single,university.degree,no,no,no,cellular,may,fri,208,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,entrepreneur,married,professional.course,no,yes,no,cellular,may,fri,311,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +45,admin.,married,university.degree,no,yes,yes,cellular,may,fri,300,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +45,admin.,married,university.degree,no,yes,no,cellular,may,fri,259,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,high.school,no,no,no,cellular,may,fri,760,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +39,technician,divorced,high.school,no,yes,no,cellular,may,fri,21,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,divorced,professional.course,no,yes,no,cellular,may,fri,128,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,single,basic.6y,no,no,yes,telephone,may,fri,146,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,admin.,married,high.school,no,no,no,cellular,may,fri,71,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,169,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +56,management,married,university.degree,unknown,yes,yes,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,blue-collar,married,high.school,no,yes,no,cellular,may,fri,198,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,302,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +46,services,married,high.school,unknown,yes,no,cellular,may,fri,6,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,entrepreneur,divorced,unknown,no,no,no,telephone,may,fri,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,services,married,high.school,no,yes,no,cellular,may,fri,49,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,entrepreneur,divorced,unknown,no,no,no,cellular,may,fri,242,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,124,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,high.school,no,yes,no,cellular,may,fri,1452,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,entrepreneur,divorced,unknown,no,yes,no,cellular,may,fri,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,services,married,high.school,no,no,no,cellular,may,fri,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,retired,single,basic.9y,no,no,no,cellular,may,fri,16,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,unknown,unknown,no,no,cellular,may,fri,67,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,241,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +45,services,married,high.school,unknown,yes,no,cellular,may,fri,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,7,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,432,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,technician,married,professional.course,no,yes,no,cellular,may,fri,153,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +50,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,67,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,married,high.school,no,yes,no,cellular,may,fri,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,72,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +52,self-employed,divorced,university.degree,no,yes,no,cellular,may,fri,158,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,admin.,married,high.school,no,yes,no,cellular,may,fri,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,fri,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,blue-collar,divorced,basic.4y,no,yes,no,telephone,may,fri,367,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +56,services,married,high.school,unknown,yes,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +56,services,married,high.school,unknown,no,no,cellular,may,fri,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,self-employed,married,professional.course,unknown,yes,no,cellular,may,fri,50,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,self-employed,married,professional.course,unknown,no,no,cellular,may,fri,160,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,divorced,professional.course,no,no,no,cellular,may,fri,64,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,612,1,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +56,services,married,high.school,unknown,no,no,cellular,may,fri,310,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,may,fri,7,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +25,technician,single,basic.9y,no,yes,no,cellular,may,fri,14,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +56,services,married,high.school,unknown,yes,no,cellular,may,fri,373,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,divorced,university.degree,no,no,no,cellular,may,fri,55,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +59,admin.,divorced,university.degree,no,no,no,cellular,may,fri,58,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,fri,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,13,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,services,married,basic.6y,no,yes,no,cellular,may,fri,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +56,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,520,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,divorced,professional.course,no,yes,no,cellular,may,fri,1190,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +35,services,single,high.school,no,unknown,unknown,cellular,may,fri,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,self-employed,married,professional.course,unknown,unknown,unknown,cellular,may,fri,665,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +40,entrepreneur,married,high.school,no,no,no,cellular,may,fri,132,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,391,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,fri,26,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +46,services,divorced,basic.4y,no,no,no,cellular,may,fri,493,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,admin.,married,high.school,unknown,yes,no,cellular,may,fri,41,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +59,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,899,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +36,technician,married,professional.course,no,yes,no,cellular,may,fri,157,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,technician,single,professional.course,no,yes,no,cellular,may,fri,282,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,8,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,services,married,basic.6y,no,no,no,cellular,may,fri,101,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +53,services,married,basic.6y,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +46,admin.,married,high.school,no,yes,no,cellular,may,fri,39,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,unemployed,married,university.degree,no,unknown,unknown,cellular,may,fri,34,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,single,basic.4y,no,yes,no,telephone,may,fri,23,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,management,married,university.degree,no,yes,no,cellular,may,fri,217,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +55,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,77,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,married,basic.6y,no,unknown,unknown,telephone,may,fri,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,married,professional.course,no,yes,no,cellular,may,fri,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,technician,single,professional.course,no,yes,no,telephone,may,fri,8,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,fri,24,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,48,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +35,management,single,university.degree,no,yes,no,cellular,may,fri,233,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,fri,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,single,high.school,no,yes,no,cellular,may,fri,326,5,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +52,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,283,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,fri,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,58,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,181,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,divorced,high.school,no,no,yes,cellular,may,fri,301,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +44,self-employed,married,university.degree,no,yes,no,cellular,may,fri,151,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +45,blue-collar,single,high.school,no,yes,no,cellular,may,fri,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,services,single,basic.6y,unknown,yes,no,cellular,may,fri,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,divorced,basic.9y,no,unknown,unknown,cellular,may,fri,148,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,housemaid,married,high.school,unknown,yes,no,cellular,may,fri,106,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +50,services,married,high.school,no,yes,yes,cellular,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +58,admin.,married,basic.4y,unknown,no,no,cellular,may,fri,901,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +45,blue-collar,single,high.school,no,no,no,cellular,may,fri,358,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,blue-collar,married,university.degree,no,yes,no,cellular,may,fri,1286,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,management,married,basic.6y,unknown,no,yes,cellular,may,fri,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,744,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +55,management,married,basic.6y,unknown,yes,no,cellular,may,fri,127,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,admin.,married,high.school,no,no,yes,cellular,may,fri,55,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +50,services,married,high.school,no,no,no,cellular,may,fri,454,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,entrepreneur,married,high.school,no,yes,yes,cellular,may,fri,485,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +35,blue-collar,single,basic.4y,no,no,no,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,self-employed,single,university.degree,no,no,no,cellular,may,fri,99,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,single,basic.6y,unknown,yes,no,telephone,may,fri,9,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,married,high.school,no,no,no,cellular,may,fri,123,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,basic.4y,no,yes,yes,cellular,may,fri,102,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,282,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,services,single,basic.6y,unknown,no,no,cellular,may,fri,984,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +51,admin.,married,high.school,no,yes,no,cellular,may,fri,514,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,technician,divorced,high.school,no,unknown,unknown,cellular,may,fri,224,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +50,admin.,married,professional.course,unknown,yes,yes,cellular,may,fri,151,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,divorced,high.school,no,no,no,cellular,may,fri,25,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,admin.,single,high.school,no,yes,no,cellular,may,fri,7,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,services,divorced,high.school,no,yes,no,cellular,may,fri,82,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,unemployed,married,university.degree,no,yes,yes,cellular,may,fri,298,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,self-employed,single,university.degree,no,no,no,cellular,may,fri,386,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,may,fri,457,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,fri,18,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,entrepreneur,married,university.degree,no,unknown,unknown,cellular,may,fri,416,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +30,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,management,married,university.degree,no,no,no,cellular,may,fri,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,services,single,professional.course,no,yes,no,cellular,may,fri,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,management,single,university.degree,no,yes,no,cellular,may,fri,637,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +39,admin.,married,university.degree,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,housemaid,married,high.school,unknown,yes,no,cellular,may,fri,14,8,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,services,single,basic.9y,unknown,yes,no,telephone,may,fri,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,single,high.school,no,yes,no,cellular,may,fri,34,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,fri,272,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,high.school,no,no,yes,cellular,may,fri,48,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,fri,301,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +53,admin.,divorced,basic.9y,no,no,yes,cellular,may,fri,164,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,523,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +44,admin.,married,basic.9y,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +38,services,divorced,high.school,no,yes,no,cellular,may,fri,52,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,blue-collar,single,high.school,no,no,no,cellular,may,fri,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,36,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,no,yes,cellular,may,fri,56,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,fri,174,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +48,admin.,married,high.school,no,no,no,cellular,may,fri,322,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,311,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +59,retired,divorced,basic.4y,no,no,no,cellular,may,fri,290,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +59,retired,divorced,basic.4y,no,yes,no,cellular,may,fri,27,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +58,management,married,university.degree,no,yes,yes,cellular,may,fri,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,single,university.degree,no,yes,yes,cellular,may,fri,173,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,134,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,married,unknown,no,yes,yes,cellular,may,fri,171,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,married,unknown,no,yes,yes,cellular,may,fri,256,1,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,married,high.school,no,yes,no,telephone,may,fri,26,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +53,services,married,university.degree,no,no,yes,cellular,may,fri,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,285,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +25,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,109,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,high.school,no,yes,no,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,technician,single,basic.9y,no,yes,no,cellular,may,fri,109,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,730,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +32,blue-collar,single,basic.6y,unknown,no,no,cellular,may,fri,19,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +57,management,married,basic.4y,unknown,yes,no,cellular,may,fri,10,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,178,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,technician,single,unknown,no,no,yes,cellular,may,fri,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,single,high.school,no,no,no,telephone,may,fri,71,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,fri,16,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +53,services,married,university.degree,no,no,no,telephone,may,fri,45,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,married,high.school,no,yes,no,cellular,may,fri,22,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,entrepreneur,divorced,unknown,no,no,no,cellular,may,fri,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +29,admin.,single,high.school,no,yes,no,cellular,may,fri,792,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +33,services,married,high.school,no,yes,no,cellular,may,fri,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,technician,married,basic.9y,no,yes,no,cellular,may,fri,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +47,services,married,high.school,no,yes,no,cellular,may,fri,142,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,admin.,married,high.school,no,yes,no,cellular,may,fri,45,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,10,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,services,married,high.school,no,unknown,unknown,cellular,may,fri,333,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,technician,married,professional.course,no,no,no,cellular,may,fri,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,management,married,university.degree,no,yes,no,cellular,may,fri,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,management,divorced,university.degree,no,unknown,unknown,cellular,may,fri,423,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,admin.,married,high.school,no,yes,no,cellular,may,fri,358,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,single,high.school,no,no,no,cellular,may,fri,576,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +34,services,divorced,high.school,no,yes,no,cellular,may,fri,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,services,divorced,high.school,no,no,no,cellular,may,fri,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,services,single,basic.9y,no,yes,no,cellular,may,fri,79,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,669,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +53,admin.,married,high.school,no,no,no,cellular,may,fri,456,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,services,married,high.school,no,no,yes,cellular,may,fri,676,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,87,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,services,single,high.school,no,no,no,cellular,may,fri,472,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +38,services,divorced,high.school,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,unemployed,married,university.degree,no,yes,no,telephone,may,fri,354,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,management,married,university.degree,no,no,no,cellular,may,fri,117,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,265,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,university.degree,no,yes,yes,cellular,may,fri,693,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +36,entrepreneur,married,basic.9y,no,yes,no,cellular,may,fri,251,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,fri,98,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,unemployed,single,high.school,no,no,no,cellular,may,fri,13,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,technician,single,professional.course,no,unknown,unknown,cellular,may,fri,14,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,management,married,university.degree,no,no,no,cellular,may,fri,268,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,high.school,no,no,no,cellular,may,fri,144,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +49,entrepreneur,divorced,basic.9y,no,no,no,cellular,may,fri,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,university.degree,no,yes,yes,cellular,may,fri,138,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,may,fri,1015,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +54,blue-collar,married,basic.4y,no,yes,yes,cellular,may,fri,192,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +43,management,married,university.degree,no,yes,no,cellular,may,fri,663,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +44,entrepreneur,single,university.degree,no,yes,no,cellular,may,fri,210,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +38,services,married,basic.6y,unknown,yes,no,cellular,may,fri,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +48,services,married,basic.9y,unknown,no,no,cellular,may,fri,18,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,retired,divorced,university.degree,no,yes,yes,cellular,may,fri,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,married,high.school,no,yes,no,cellular,may,fri,81,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,fri,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,technician,single,university.degree,no,yes,yes,cellular,may,fri,437,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +45,retired,married,basic.6y,unknown,no,yes,cellular,may,fri,102,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,high.school,no,yes,no,cellular,may,fri,217,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,63,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,services,divorced,high.school,no,yes,yes,cellular,may,fri,562,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +30,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,services,single,unknown,no,yes,no,cellular,may,fri,189,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,services,single,high.school,no,no,no,cellular,may,fri,212,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,admin.,married,high.school,unknown,yes,no,cellular,may,fri,500,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,divorced,high.school,unknown,no,yes,cellular,may,fri,172,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,technician,single,professional.course,no,no,yes,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,technician,divorced,professional.course,no,unknown,unknown,cellular,may,fri,327,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,fri,16,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,may,fri,894,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +42,services,married,basic.9y,no,yes,no,cellular,may,fri,152,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +45,self-employed,divorced,university.degree,no,yes,no,cellular,may,fri,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +45,self-employed,divorced,university.degree,no,no,yes,cellular,may,fri,133,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,admin.,married,high.school,unknown,no,no,cellular,may,fri,585,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +42,management,married,university.degree,no,yes,no,cellular,may,fri,95,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,technician,divorced,professional.course,no,yes,no,cellular,may,fri,56,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,admin.,single,professional.course,no,no,no,cellular,may,fri,564,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,technician,divorced,professional.course,no,yes,no,cellular,may,fri,188,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +22,services,married,high.school,no,yes,no,cellular,may,fri,48,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,married,unknown,unknown,yes,no,cellular,may,fri,79,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +40,management,divorced,university.degree,no,no,no,cellular,may,fri,342,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,professional.course,no,no,yes,cellular,may,fri,6,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,170,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,admin.,single,university.degree,no,yes,no,cellular,may,fri,119,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,may,fri,80,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,technician,married,high.school,no,yes,yes,cellular,may,fri,659,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +49,self-employed,married,high.school,no,no,no,cellular,may,fri,532,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +39,technician,divorced,high.school,no,yes,no,telephone,may,fri,15,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,services,single,high.school,unknown,no,no,cellular,may,fri,54,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,management,married,university.degree,no,yes,no,cellular,may,fri,837,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +36,services,divorced,university.degree,no,no,no,cellular,may,fri,67,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,77,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.6y,no,yes,no,cellular,may,fri,358,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,fri,303,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +47,services,divorced,high.school,no,yes,no,cellular,may,fri,47,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,married,high.school,no,no,no,cellular,may,fri,228,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,832,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +54,management,married,university.degree,no,no,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,services,married,basic.6y,no,yes,no,cellular,may,fri,394,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,31,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +44,management,married,university.degree,no,no,no,cellular,may,fri,1380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,unemployed,married,basic.9y,no,yes,no,cellular,may,fri,201,3,10,1,success,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,married,basic.6y,unknown,yes,no,cellular,may,fri,679,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +57,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,199,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,495,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,fri,141,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +54,blue-collar,married,basic.4y,no,no,yes,cellular,may,fri,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,82,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,unemployed,married,university.degree,no,yes,no,cellular,may,fri,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +51,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,830,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +48,admin.,married,high.school,unknown,yes,no,cellular,may,fri,611,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +30,blue-collar,single,high.school,no,yes,yes,cellular,may,fri,86,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +58,admin.,married,basic.4y,unknown,no,yes,cellular,may,fri,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +21,student,single,high.school,no,no,no,cellular,may,fri,42,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,blue-collar,married,basic.9y,unknown,no,no,cellular,may,fri,956,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +31,admin.,single,university.degree,no,no,no,cellular,may,fri,229,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,may,fri,175,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,757,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,services,married,high.school,no,yes,no,cellular,may,fri,521,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,entrepreneur,married,high.school,no,yes,no,cellular,may,fri,264,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,99,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,83,1,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +20,blue-collar,single,basic.9y,unknown,yes,no,telephone,may,fri,87,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +52,admin.,married,university.degree,no,yes,no,cellular,may,fri,401,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +60,admin.,divorced,high.school,unknown,yes,no,cellular,may,fri,301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,management,married,university.degree,no,yes,no,cellular,may,fri,13,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,technician,divorced,unknown,unknown,no,no,cellular,may,fri,184,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,services,single,university.degree,no,no,no,cellular,may,fri,200,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,services,married,basic.9y,no,no,no,cellular,may,fri,42,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,167,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,married,basic.6y,no,no,no,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,single,professional.course,no,yes,no,cellular,may,fri,11,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,fri,167,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,retired,married,high.school,no,yes,no,cellular,may,fri,237,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,management,married,university.degree,no,no,no,cellular,may,fri,173,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +42,admin.,married,basic.9y,unknown,yes,no,cellular,may,fri,98,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,single,high.school,no,no,no,cellular,may,fri,165,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,blue-collar,single,high.school,no,yes,no,cellular,may,fri,858,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +25,blue-collar,married,basic.4y,no,no,no,cellular,may,fri,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,married,basic.6y,unknown,no,no,cellular,may,fri,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,406,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,married,high.school,unknown,yes,no,cellular,may,fri,1012,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +37,admin.,single,high.school,no,no,no,cellular,may,fri,13,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,divorced,high.school,no,yes,yes,cellular,may,fri,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,160,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,372,2,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.4y,no,no,yes,cellular,may,fri,206,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,university.degree,no,no,yes,cellular,may,fri,137,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +44,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,611,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +29,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,13,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,single,basic.9y,unknown,yes,no,cellular,may,fri,219,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,services,married,high.school,no,yes,no,cellular,may,fri,320,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +44,blue-collar,married,high.school,no,yes,no,cellular,may,fri,223,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,57,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +59,technician,married,unknown,unknown,no,no,cellular,may,fri,739,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +58,management,married,university.degree,no,yes,no,cellular,may,fri,109,2,12,1,success,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,married,unknown,no,no,no,cellular,may,fri,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,221,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +45,entrepreneur,divorced,university.degree,no,unknown,unknown,cellular,may,fri,61,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +46,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,fri,124,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +21,student,single,high.school,unknown,no,no,cellular,may,fri,885,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +28,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,1111,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +24,technician,single,university.degree,no,yes,no,cellular,may,fri,117,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +58,services,married,basic.6y,no,yes,no,cellular,may,fri,44,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,yes,no,cellular,may,fri,187,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,married,high.school,no,yes,no,cellular,may,fri,50,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,unknown,no,no,no,cellular,may,fri,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,unemployed,single,high.school,no,no,no,cellular,may,fri,10,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,admin.,married,high.school,unknown,no,no,cellular,may,fri,270,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,basic.6y,no,yes,no,cellular,may,fri,135,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,services,single,high.school,no,yes,no,telephone,may,fri,31,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,management,single,university.degree,no,no,no,cellular,may,fri,296,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,blue-collar,married,basic.9y,no,yes,no,telephone,may,fri,22,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,blue-collar,married,professional.course,no,no,no,cellular,may,fri,1357,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +35,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,212,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,high.school,no,yes,no,cellular,may,fri,150,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,technician,single,professional.course,no,no,no,cellular,may,fri,582,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,divorced,basic.4y,no,no,no,cellular,may,fri,709,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +29,blue-collar,divorced,high.school,no,no,no,cellular,may,fri,199,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,no,no,cellular,may,fri,102,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +26,services,married,high.school,no,yes,no,cellular,may,fri,140,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,services,married,high.school,no,yes,no,cellular,may,fri,15,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,married,high.school,no,no,no,cellular,may,fri,61,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +49,management,married,university.degree,no,no,no,cellular,may,fri,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,fri,152,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,blue-collar,single,basic.9y,no,yes,yes,cellular,may,fri,245,9,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,basic.9y,no,no,no,cellular,may,fri,406,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +24,technician,single,professional.course,no,no,yes,cellular,may,fri,23,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,university.degree,unknown,yes,no,cellular,may,fri,297,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,197,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,single,basic.6y,no,yes,yes,cellular,may,fri,63,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,services,single,high.school,no,yes,no,cellular,may,fri,103,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +49,entrepreneur,divorced,basic.9y,no,yes,no,cellular,may,fri,427,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +46,admin.,married,high.school,no,yes,yes,cellular,may,fri,80,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,services,single,high.school,no,yes,yes,cellular,may,fri,255,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,single,professional.course,no,yes,no,cellular,may,fri,8,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,high.school,no,no,yes,cellular,may,fri,284,15,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,admin.,married,basic.6y,no,no,no,cellular,may,fri,550,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +56,entrepreneur,married,university.degree,no,yes,yes,cellular,may,fri,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +54,retired,divorced,university.degree,no,yes,no,cellular,may,fri,193,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,technician,single,high.school,no,yes,yes,cellular,may,fri,124,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +31,self-employed,divorced,basic.9y,no,yes,no,cellular,may,fri,12,10,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,professional.course,no,yes,yes,cellular,may,fri,134,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,married,professional.course,no,yes,yes,cellular,may,fri,10,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,divorced,basic.4y,no,no,no,cellular,may,fri,17,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,no,no,cellular,may,fri,895,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,yes,no,cellular,may,fri,212,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,high.school,no,unknown,unknown,cellular,may,fri,43,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,admin.,married,university.degree,no,yes,no,cellular,may,fri,364,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +44,admin.,married,high.school,no,no,no,cellular,may,fri,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,122,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,basic.9y,unknown,no,no,telephone,may,fri,134,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,services,single,high.school,no,no,no,cellular,may,fri,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,self-employed,married,basic.9y,no,yes,no,cellular,may,fri,144,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +36,management,married,university.degree,no,yes,yes,telephone,may,fri,16,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,admin.,single,high.school,no,no,no,cellular,may,fri,13,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +60,retired,divorced,high.school,unknown,no,no,cellular,may,fri,781,4,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,professional.course,no,yes,yes,cellular,may,fri,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,self-employed,single,high.school,no,yes,yes,cellular,may,fri,67,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,fri,266,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,technician,single,professional.course,no,no,no,cellular,may,fri,411,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +42,management,married,university.degree,no,no,no,cellular,may,fri,391,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,admin.,single,basic.6y,no,yes,no,telephone,may,fri,195,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,high.school,no,no,yes,telephone,may,fri,74,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +20,technician,single,professional.course,unknown,no,no,cellular,may,fri,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,married,high.school,no,yes,no,cellular,may,fri,340,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,fri,350,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +49,self-employed,married,high.school,no,no,no,cellular,may,fri,309,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,single,high.school,no,no,no,cellular,may,fri,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,136,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +51,blue-collar,single,illiterate,unknown,yes,no,cellular,may,fri,259,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,fri,223,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,technician,single,university.degree,no,yes,yes,cellular,may,fri,215,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,admin.,single,basic.9y,no,yes,yes,cellular,may,fri,156,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,entrepreneur,married,professional.course,no,no,no,cellular,may,fri,233,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,59,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,university.degree,unknown,yes,no,cellular,may,fri,104,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,single,university.degree,no,no,no,telephone,may,fri,49,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,divorced,basic.4y,no,no,no,cellular,may,fri,167,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,113,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +51,admin.,married,high.school,no,yes,yes,cellular,may,fri,1002,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +21,student,single,university.degree,no,yes,no,cellular,may,fri,48,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,technician,married,basic.9y,no,yes,no,cellular,may,fri,54,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +47,technician,divorced,university.degree,no,no,no,cellular,may,fri,306,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,fri,61,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,single,high.school,no,yes,yes,cellular,may,fri,20,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +23,technician,single,high.school,no,yes,no,cellular,may,fri,16,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +43,admin.,married,high.school,no,no,no,cellular,may,fri,880,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +35,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,69,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,married,basic.6y,no,no,no,cellular,may,fri,218,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,18,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,47,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,admin.,single,high.school,no,yes,no,cellular,may,fri,333,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +41,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,102,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,single,high.school,no,no,no,cellular,may,fri,64,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,fri,101,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,fri,800,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,technician,single,professional.course,no,yes,no,cellular,may,fri,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +38,entrepreneur,married,basic.9y,no,yes,yes,cellular,may,fri,476,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,self-employed,married,professional.course,no,no,yes,telephone,may,fri,65,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,management,married,university.degree,no,no,no,cellular,may,fri,262,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +47,blue-collar,married,high.school,no,yes,no,cellular,may,fri,934,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +26,entrepreneur,married,professional.course,no,no,no,telephone,may,fri,75,10,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +22,services,single,high.school,no,no,no,cellular,may,fri,51,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,blue-collar,divorced,basic.9y,no,yes,yes,cellular,may,fri,208,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,professional.course,no,no,no,cellular,may,fri,53,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,may,fri,162,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,basic.9y,no,yes,no,cellular,may,fri,34,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,may,fri,73,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,technician,single,professional.course,no,no,no,cellular,may,fri,22,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +49,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,172,2,9,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +52,self-employed,divorced,university.degree,no,yes,no,telephone,may,fri,258,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,single,high.school,no,no,yes,cellular,may,fri,71,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,self-employed,single,high.school,no,yes,yes,cellular,may,fri,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,blue-collar,single,basic.6y,no,no,no,cellular,may,fri,92,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.9y,no,yes,no,cellular,may,fri,655,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +29,admin.,single,high.school,no,no,no,cellular,may,fri,138,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +57,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,fri,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,management,divorced,unknown,no,yes,no,cellular,may,fri,200,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,married,basic.6y,no,yes,no,cellular,may,fri,69,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +33,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,204,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,divorced,basic.9y,unknown,yes,yes,cellular,may,fri,25,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,basic.4y,no,yes,no,cellular,may,fri,28,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +24,services,single,basic.9y,no,yes,yes,cellular,may,fri,68,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,admin.,married,professional.course,no,yes,no,cellular,may,fri,109,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,fri,1223,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +23,blue-collar,single,professional.course,no,yes,no,cellular,may,fri,136,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +53,admin.,married,high.school,no,no,no,cellular,may,fri,101,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,admin.,married,high.school,no,yes,no,cellular,may,fri,126,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,single,basic.9y,no,no,no,telephone,may,fri,137,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +39,blue-collar,married,basic.4y,no,unknown,unknown,telephone,may,fri,155,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +53,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,509,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,admin.,divorced,high.school,no,no,no,cellular,may,fri,143,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,641,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,single,basic.6y,unknown,yes,no,cellular,may,fri,415,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +54,management,married,university.degree,no,no,no,cellular,may,fri,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,fri,211,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +27,technician,married,university.degree,no,yes,no,cellular,may,fri,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,entrepreneur,married,basic.9y,unknown,no,no,cellular,may,fri,22,5,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +34,admin.,single,high.school,no,no,no,cellular,may,fri,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,fri,1871,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +24,services,single,high.school,no,yes,yes,cellular,may,fri,69,2,999,2,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,admin.,single,university.degree,no,yes,yes,cellular,may,fri,63,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,high.school,no,no,no,cellular,may,fri,1068,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +58,admin.,divorced,high.school,unknown,no,no,cellular,may,fri,315,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +42,blue-collar,married,basic.4y,no,yes,no,cellular,may,fri,58,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,married,high.school,no,no,no,cellular,may,fri,22,8,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +50,entrepreneur,married,high.school,no,yes,yes,cellular,may,fri,1326,6,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +34,blue-collar,married,basic.4y,unknown,no,no,cellular,may,fri,149,7,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +22,admin.,single,basic.9y,no,yes,yes,cellular,may,fri,34,10,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,technician,single,university.degree,no,no,no,cellular,may,fri,204,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +48,blue-collar,married,basic.9y,no,no,no,cellular,may,fri,44,9,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +47,entrepreneur,married,university.degree,no,no,no,cellular,may,fri,376,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +38,blue-collar,divorced,basic.4y,unknown,no,no,cellular,may,fri,31,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +40,technician,married,university.degree,no,yes,yes,cellular,may,fri,133,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +35,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,fri,439,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +32,technician,single,unknown,no,yes,yes,cellular,may,fri,157,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +32,admin.,single,unknown,no,yes,yes,cellular,may,fri,38,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +45,entrepreneur,divorced,university.degree,no,no,no,telephone,may,fri,462,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +32,admin.,single,professional.course,no,yes,yes,telephone,may,fri,73,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +26,services,married,high.school,no,yes,no,cellular,may,fri,104,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,single,high.school,no,no,no,cellular,may,fri,504,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,blue-collar,single,basic.9y,no,no,no,cellular,may,fri,121,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +39,technician,married,professional.course,no,no,no,cellular,may,fri,49,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +37,services,divorced,professional.course,no,no,no,cellular,may,fri,258,2,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +41,management,married,unknown,no,yes,no,cellular,may,fri,163,5,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +24,admin.,single,basic.9y,no,yes,no,telephone,may,fri,12,6,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +28,services,single,basic.9y,no,no,yes,cellular,may,fri,126,2,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +28,technician,single,university.degree,no,no,yes,telephone,may,fri,166,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +25,admin.,single,university.degree,no,yes,no,cellular,may,fri,11,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +43,blue-collar,divorced,basic.9y,unknown,yes,no,cellular,may,fri,59,4,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +31,technician,single,university.degree,no,yes,no,cellular,may,fri,1313,7,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +50,admin.,single,high.school,no,no,yes,cellular,may,fri,623,8,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +26,admin.,single,high.school,no,yes,no,cellular,may,fri,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +30,admin.,divorced,university.degree,no,yes,no,cellular,may,fri,1598,4,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,yes +42,self-employed,married,professional.course,unknown,no,no,cellular,may,fri,385,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +33,admin.,single,high.school,no,no,no,cellular,may,fri,57,11,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,no +55,technician,married,professional.course,no,no,yes,cellular,may,fri,543,3,999,1,failure,-1.8,92.893,-46.2,1.25,5099.1,no +35,technician,divorced,professional.course,no,no,no,cellular,may,fri,692,3,999,0,nonexistent,-1.8,92.893,-46.2,1.25,5099.1,yes +45,blue-collar,single,high.school,unknown,no,yes,cellular,may,mon,102,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,technician,married,professional.course,no,no,no,cellular,may,mon,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,unemployed,married,professional.course,no,yes,no,telephone,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +50,housemaid,married,basic.9y,no,yes,no,cellular,may,mon,126,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +39,technician,single,professional.course,no,yes,no,cellular,may,mon,87,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,yes,no,telephone,may,mon,15,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,technician,single,university.degree,no,no,no,cellular,may,mon,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,may,mon,722,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +45,blue-collar,single,high.school,unknown,no,no,cellular,may,mon,9,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +48,admin.,divorced,university.degree,no,no,no,cellular,may,mon,17,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,7,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,divorced,professional.course,no,no,no,cellular,may,mon,16,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,no,no,cellular,may,mon,201,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,married,university.degree,unknown,no,no,cellular,may,mon,113,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +25,admin.,single,university.degree,no,no,no,cellular,may,mon,8,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,536,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +29,admin.,divorced,professional.course,no,yes,yes,cellular,may,mon,58,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +48,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,28,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +49,blue-collar,divorced,professional.course,no,yes,no,cellular,may,mon,11,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,technician,divorced,basic.6y,no,unknown,unknown,cellular,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,unknown,no,no,cellular,may,mon,899,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +49,blue-collar,divorced,professional.course,no,no,no,cellular,may,mon,17,8,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +57,services,married,high.school,no,yes,yes,cellular,may,mon,473,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +36,admin.,married,high.school,unknown,no,no,cellular,may,mon,11,14,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,no,no,cellular,may,mon,114,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +22,technician,single,unknown,no,yes,no,cellular,may,mon,106,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,admin.,single,high.school,no,yes,no,cellular,may,mon,159,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,technician,single,high.school,unknown,yes,yes,cellular,may,mon,17,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,management,divorced,university.degree,no,no,no,cellular,may,mon,359,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,mon,17,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +39,self-employed,married,high.school,no,no,no,cellular,may,mon,11,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,70,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,yes,yes,telephone,may,mon,193,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,may,mon,116,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,blue-collar,married,basic.9y,no,no,no,cellular,may,mon,157,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,unknown,yes,no,cellular,may,mon,284,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +57,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,mon,73,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +40,admin.,single,high.school,no,no,no,cellular,may,mon,18,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +57,admin.,single,high.school,no,yes,no,telephone,may,mon,26,5,12,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,single,unknown,no,yes,no,cellular,may,mon,222,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,services,married,high.school,no,yes,no,cellular,may,mon,126,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +21,student,single,high.school,no,no,no,cellular,may,mon,97,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +44,services,married,high.school,no,yes,no,cellular,may,mon,144,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +35,housemaid,married,university.degree,no,yes,no,cellular,may,mon,59,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,services,single,university.degree,no,yes,no,cellular,may,mon,19,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +54,retired,divorced,professional.course,no,yes,no,cellular,may,mon,44,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,services,single,university.degree,no,yes,yes,cellular,may,mon,22,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +25,technician,single,professional.course,no,yes,no,cellular,may,mon,44,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +50,housemaid,married,basic.9y,no,yes,no,cellular,may,mon,16,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,divorced,basic.6y,no,no,no,cellular,may,mon,7,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,telephone,may,mon,21,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,yes,yes,cellular,may,mon,15,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,yes,yes,cellular,may,mon,30,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,divorced,high.school,no,no,no,cellular,may,mon,13,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,mon,8,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,201,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,management,married,university.degree,no,yes,no,cellular,may,mon,259,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,student,single,university.degree,no,yes,no,cellular,may,mon,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,divorced,basic.9y,no,yes,no,telephone,may,mon,51,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,unknown,yes,yes,cellular,may,mon,264,1,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +53,technician,divorced,unknown,no,yes,no,cellular,may,mon,35,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,admin.,divorced,high.school,no,yes,no,cellular,may,mon,10,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,services,married,high.school,no,no,no,cellular,may,mon,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,technician,single,university.degree,no,yes,no,cellular,may,mon,33,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,technician,married,university.degree,no,no,no,cellular,may,mon,30,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,student,single,high.school,no,no,no,cellular,may,mon,557,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +54,blue-collar,married,basic.4y,unknown,no,no,cellular,may,mon,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,admin.,married,university.degree,no,yes,yes,cellular,may,mon,173,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,services,married,high.school,no,yes,no,telephone,may,mon,87,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,unknown,yes,yes,cellular,may,mon,47,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,married,basic.9y,no,yes,yes,cellular,may,mon,97,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,admin.,single,university.degree,no,no,no,cellular,may,mon,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,blue-collar,single,high.school,unknown,yes,no,cellular,may,mon,29,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +31,admin.,married,university.degree,no,no,no,cellular,may,mon,213,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +28,admin.,single,university.degree,no,no,no,cellular,may,mon,192,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,management,married,high.school,no,no,no,cellular,may,mon,57,1,9,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,single,university.degree,no,yes,no,cellular,may,mon,16,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,admin.,single,university.degree,no,yes,no,cellular,may,mon,442,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +47,management,married,high.school,no,no,no,cellular,may,mon,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +23,blue-collar,single,high.school,no,yes,no,cellular,may,mon,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,410,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +23,blue-collar,single,high.school,no,yes,no,cellular,may,mon,158,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,mon,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,admin.,married,basic.6y,no,no,no,cellular,may,mon,217,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +39,admin.,single,professional.course,no,yes,no,cellular,may,mon,97,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,420,7,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +44,admin.,married,basic.6y,no,unknown,unknown,cellular,may,mon,608,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +28,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,mon,166,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,no,no,telephone,may,mon,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,technician,married,high.school,no,no,no,cellular,may,mon,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,university.degree,no,yes,no,cellular,may,mon,166,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,management,married,high.school,no,no,no,cellular,may,mon,97,1,999,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no +30,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,74,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,services,divorced,high.school,no,no,no,cellular,may,mon,15,9,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,management,married,high.school,no,no,no,cellular,may,mon,216,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,170,1,999,2,failure,-1.8,92.893,-46.2,1.244,5099.1,no +36,services,single,high.school,no,no,no,cellular,may,mon,288,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,married,high.school,no,yes,no,cellular,may,mon,17,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,admin.,single,university.degree,unknown,no,no,cellular,may,mon,220,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +44,entrepreneur,divorced,university.degree,no,yes,no,telephone,may,mon,28,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,married,high.school,no,yes,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,blue-collar,married,basic.9y,unknown,yes,no,cellular,may,mon,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,admin.,divorced,high.school,no,yes,no,cellular,may,mon,88,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +44,services,divorced,high.school,no,no,no,cellular,may,mon,903,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +52,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,248,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,university.degree,no,yes,no,cellular,may,mon,12,13,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,telephone,may,mon,52,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,155,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,unemployed,married,basic.4y,no,no,no,cellular,may,mon,205,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,divorced,high.school,no,yes,no,cellular,may,mon,63,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,blue-collar,married,professional.course,no,no,no,cellular,may,mon,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,185,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,married,high.school,unknown,no,no,cellular,may,mon,186,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,blue-collar,single,high.school,no,no,no,cellular,may,mon,222,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +48,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,284,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,technician,single,university.degree,no,no,no,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,self-employed,single,university.degree,no,no,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,management,divorced,high.school,no,no,no,cellular,may,mon,261,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +28,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,blue-collar,married,high.school,no,no,no,cellular,may,mon,11,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,42,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,mon,110,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,single,professional.course,no,yes,no,cellular,may,mon,1340,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +59,management,married,basic.4y,no,no,no,cellular,may,mon,455,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,single,high.school,no,yes,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,110,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,no,no,cellular,may,mon,170,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +29,technician,single,professional.course,no,yes,no,cellular,may,mon,245,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,married,high.school,no,no,no,cellular,may,mon,268,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,technician,single,high.school,no,yes,no,cellular,may,mon,108,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +29,technician,single,professional.course,no,yes,no,cellular,may,mon,487,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +33,technician,married,university.degree,no,yes,no,cellular,may,mon,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,admin.,single,high.school,unknown,yes,no,cellular,may,mon,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +25,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,may,mon,18,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +21,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,250,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +21,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,blue-collar,single,high.school,no,no,no,cellular,may,mon,2301,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +35,technician,divorced,university.degree,no,no,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,management,divorced,university.degree,no,yes,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +47,entrepreneur,married,professional.course,no,yes,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,management,married,university.degree,no,no,yes,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,management,divorced,university.degree,no,no,no,cellular,may,mon,493,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,295,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,single,university.degree,unknown,no,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,no,no,telephone,may,mon,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,services,single,university.degree,no,yes,yes,cellular,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,unemployed,married,basic.9y,no,yes,no,telephone,may,mon,152,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,blue-collar,married,high.school,unknown,no,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,technician,divorced,high.school,no,no,no,cellular,may,mon,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,services,divorced,high.school,no,yes,no,cellular,may,mon,252,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,technician,divorced,high.school,no,no,no,cellular,may,mon,40,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,156,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,services,married,high.school,unknown,yes,no,cellular,may,mon,126,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,services,divorced,high.school,no,yes,no,cellular,may,mon,55,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,blue-collar,married,basic.9y,unknown,yes,yes,cellular,may,mon,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,134,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,divorced,basic.6y,no,yes,no,cellular,may,mon,18,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,entrepreneur,married,university.degree,unknown,yes,no,cellular,may,mon,98,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +58,self-employed,married,university.degree,no,yes,no,cellular,may,mon,379,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,blue-collar,married,high.school,no,no,no,cellular,may,mon,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,technician,divorced,basic.6y,no,yes,no,cellular,may,mon,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,632,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,may,mon,98,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,single,professional.course,no,no,no,cellular,may,mon,843,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +50,admin.,divorced,basic.4y,no,yes,no,cellular,may,mon,8,11,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,services,married,university.degree,no,unknown,unknown,cellular,may,mon,132,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,services,married,high.school,no,no,no,cellular,may,mon,261,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,self-employed,married,university.degree,no,no,yes,cellular,may,mon,133,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,services,married,high.school,no,yes,yes,cellular,may,mon,398,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,divorced,professional.course,no,no,no,cellular,may,mon,287,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,unemployed,divorced,basic.6y,no,no,no,cellular,may,mon,208,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,unemployed,single,university.degree,no,yes,no,cellular,may,mon,434,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,blue-collar,divorced,basic.4y,no,yes,no,cellular,may,mon,119,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,self-employed,divorced,university.degree,no,no,no,cellular,may,mon,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,technician,married,professional.course,no,no,yes,cellular,may,mon,191,2,12,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +23,blue-collar,single,high.school,no,no,no,cellular,may,mon,380,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,blue-collar,married,professional.course,no,yes,no,cellular,may,mon,115,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,admin.,married,university.degree,no,no,no,cellular,may,mon,325,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,mon,167,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,admin.,divorced,university.degree,no,no,yes,cellular,may,mon,63,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,admin.,single,university.degree,no,no,no,cellular,may,mon,21,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +49,retired,married,high.school,no,no,no,cellular,may,mon,47,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +42,technician,single,university.degree,no,no,yes,cellular,may,mon,9,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,mon,565,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +45,admin.,divorced,university.degree,no,no,no,cellular,may,mon,507,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +27,admin.,single,university.degree,no,no,no,telephone,may,mon,82,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +55,admin.,divorced,unknown,unknown,yes,no,cellular,may,mon,105,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,technician,single,professional.course,no,yes,no,cellular,may,mon,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,technician,divorced,professional.course,no,no,no,cellular,may,mon,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,management,married,university.degree,no,no,no,cellular,may,mon,546,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,management,divorced,university.degree,no,no,no,cellular,may,mon,79,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,may,mon,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +29,technician,single,university.degree,no,no,no,cellular,may,mon,74,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,services,single,high.school,no,yes,no,cellular,may,mon,229,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +33,services,married,high.school,no,no,yes,cellular,may,mon,600,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +32,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,156,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,university.degree,no,yes,no,cellular,may,mon,114,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,may,mon,435,7,2,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,married,professional.course,no,yes,yes,cellular,may,mon,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,admin.,married,basic.6y,no,yes,no,cellular,may,mon,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,management,married,university.degree,no,no,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,services,single,high.school,no,no,no,cellular,may,mon,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,management,single,high.school,no,no,no,cellular,may,mon,184,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,management,single,high.school,no,no,no,cellular,may,mon,233,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,may,mon,110,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,management,single,high.school,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +30,technician,single,professional.course,no,yes,yes,cellular,may,mon,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,technician,single,university.degree,no,yes,no,cellular,may,mon,177,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,blue-collar,married,high.school,no,no,yes,telephone,may,mon,21,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,services,single,high.school,no,no,no,cellular,may,mon,700,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +35,admin.,divorced,high.school,no,yes,no,cellular,may,mon,163,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,services,single,high.school,no,yes,no,cellular,may,mon,91,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,technician,married,university.degree,no,yes,no,cellular,may,mon,78,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +21,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,239,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,mon,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,married,high.school,no,no,no,cellular,may,mon,87,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,married,university.degree,unknown,yes,no,cellular,may,mon,121,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +21,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,37,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,unemployed,married,basic.4y,no,no,no,cellular,may,mon,1008,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +48,services,married,high.school,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +40,admin.,single,high.school,no,yes,no,cellular,may,mon,24,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +40,admin.,single,high.school,no,yes,no,cellular,may,mon,213,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,blue-collar,divorced,basic.9y,no,yes,no,cellular,may,mon,380,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,mon,153,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,high.school,no,yes,yes,cellular,may,mon,192,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,technician,single,professional.course,no,yes,no,cellular,may,mon,66,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,mon,57,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,technician,married,professional.course,no,yes,yes,cellular,may,mon,525,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +26,student,single,high.school,no,no,no,cellular,may,mon,123,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,unemployed,married,professional.course,no,no,no,cellular,may,mon,276,4,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +56,retired,married,high.school,no,no,no,cellular,may,mon,317,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,105,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +38,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,178,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,technician,single,university.degree,no,yes,no,cellular,may,mon,612,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +34,blue-collar,married,basic.6y,unknown,yes,no,cellular,may,mon,316,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,may,mon,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,married,university.degree,no,no,yes,cellular,may,mon,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,mon,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,admin.,divorced,university.degree,unknown,yes,no,cellular,may,mon,442,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +43,technician,married,professional.course,no,yes,no,cellular,may,mon,618,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +24,student,single,high.school,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,management,married,university.degree,no,no,no,cellular,may,mon,182,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +55,services,married,high.school,no,no,no,cellular,may,mon,336,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +58,management,married,university.degree,no,no,no,cellular,may,mon,248,1,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +58,management,married,university.degree,no,yes,no,cellular,may,mon,504,1,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +53,management,divorced,professional.course,no,yes,no,cellular,may,mon,82,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,university.degree,no,yes,no,cellular,may,mon,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,married,university.degree,no,yes,no,cellular,may,mon,78,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,management,single,university.degree,unknown,yes,no,cellular,may,mon,61,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,technician,single,high.school,no,yes,no,cellular,may,mon,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,1010,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,management,married,high.school,no,yes,no,cellular,may,mon,180,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +50,housemaid,married,basic.9y,no,no,no,cellular,may,mon,207,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,retired,divorced,university.degree,no,no,no,cellular,may,mon,46,6,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,cellular,may,mon,432,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +56,technician,single,professional.course,no,yes,no,cellular,may,mon,517,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +37,self-employed,single,basic.4y,no,yes,no,cellular,may,mon,180,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +43,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,465,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,98,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,single,university.degree,no,yes,no,cellular,may,mon,801,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +33,blue-collar,single,high.school,no,no,no,cellular,may,mon,599,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,cellular,may,mon,15,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +26,services,single,basic.9y,no,no,no,cellular,may,mon,18,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,married,high.school,no,yes,yes,cellular,may,mon,196,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +34,self-employed,single,university.degree,no,yes,yes,cellular,may,mon,309,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,housemaid,married,university.degree,no,unknown,unknown,cellular,may,mon,61,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,admin.,single,university.degree,no,yes,no,cellular,may,mon,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,services,married,professional.course,no,no,no,cellular,may,mon,336,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +40,admin.,single,high.school,no,yes,yes,cellular,may,mon,104,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,98,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,services,single,high.school,no,yes,no,cellular,may,mon,236,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +50,admin.,married,high.school,no,yes,yes,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,services,single,high.school,no,yes,yes,cellular,may,mon,665,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,blue-collar,divorced,basic.4y,no,no,no,cellular,may,mon,827,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +40,entrepreneur,married,university.degree,no,no,no,cellular,may,mon,181,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,admin.,single,university.degree,no,yes,yes,cellular,may,mon,9,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +42,services,single,high.school,no,yes,no,cellular,may,mon,36,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,admin.,single,high.school,no,no,no,cellular,may,mon,16,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,single,university.degree,no,no,no,cellular,may,mon,8,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,single,university.degree,no,yes,yes,cellular,may,mon,11,5,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +27,admin.,divorced,high.school,no,yes,no,cellular,may,mon,166,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,single,high.school,no,unknown,unknown,cellular,may,mon,630,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,blue-collar,single,high.school,no,yes,no,cellular,may,mon,33,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,227,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,blue-collar,single,professional.course,no,no,no,cellular,may,mon,375,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,mon,241,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,190,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +35,technician,single,professional.course,no,yes,no,cellular,may,mon,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,yes,cellular,may,mon,412,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +39,self-employed,married,high.school,no,yes,no,cellular,may,mon,31,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +48,services,married,high.school,no,yes,no,cellular,may,mon,173,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +48,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,92,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +45,services,married,high.school,no,no,no,cellular,may,mon,166,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +53,management,married,university.degree,no,no,no,cellular,may,mon,368,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,blue-collar,married,basic.4y,unknown,yes,no,cellular,may,mon,1027,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,221,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +26,student,single,high.school,no,yes,no,cellular,may,mon,113,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,technician,married,professional.course,no,yes,no,cellular,may,mon,577,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,student,single,unknown,unknown,yes,no,cellular,may,mon,567,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,management,married,university.degree,no,yes,no,cellular,may,mon,12,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,mon,428,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,mon,767,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,142,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,technician,single,university.degree,no,no,no,cellular,may,mon,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,blue-collar,single,basic.9y,no,yes,no,cellular,may,mon,61,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,695,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,239,2,11,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,unknown,yes,no,cellular,may,mon,1434,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +37,self-employed,single,basic.4y,no,no,yes,cellular,may,mon,297,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,professional.course,no,yes,no,cellular,may,mon,202,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +44,unemployed,married,basic.9y,no,no,no,cellular,may,mon,194,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +36,services,single,high.school,no,yes,no,cellular,may,mon,566,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +48,services,married,unknown,no,no,no,cellular,may,mon,486,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,may,mon,207,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +42,technician,single,university.degree,no,yes,no,cellular,may,mon,179,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,entrepreneur,single,university.degree,no,no,no,cellular,may,mon,637,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +38,technician,single,basic.9y,no,no,no,cellular,may,mon,572,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,services,divorced,high.school,no,yes,no,cellular,may,mon,217,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,single,professional.course,no,yes,yes,cellular,may,mon,13,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,high.school,no,yes,no,cellular,may,mon,112,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +49,technician,married,high.school,unknown,no,no,cellular,may,mon,222,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,no,cellular,may,mon,466,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +47,services,married,high.school,no,no,no,cellular,may,mon,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,single,high.school,no,no,no,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +22,technician,single,basic.9y,no,no,no,telephone,may,mon,267,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,divorced,high.school,no,yes,no,telephone,may,mon,54,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +32,services,married,high.school,unknown,yes,no,cellular,may,mon,536,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +33,admin.,married,university.degree,no,yes,yes,telephone,may,mon,895,12,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +49,retired,married,high.school,no,yes,no,cellular,may,mon,83,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,services,married,high.school,no,yes,no,cellular,may,mon,11,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,admin.,married,high.school,no,unknown,unknown,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,services,married,high.school,no,yes,no,cellular,may,mon,32,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,unknown,yes,no,telephone,may,mon,54,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,mon,6,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,410,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,admin.,single,university.degree,no,no,no,cellular,may,mon,53,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,married,high.school,no,yes,no,cellular,may,mon,4,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,technician,single,professional.course,no,unknown,unknown,cellular,may,mon,30,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,divorced,high.school,no,yes,no,telephone,may,mon,23,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,married,high.school,no,yes,no,telephone,may,mon,27,10,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +51,technician,married,high.school,no,yes,no,cellular,may,mon,170,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,married,professional.course,no,no,no,cellular,may,mon,453,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +23,admin.,single,high.school,no,no,no,cellular,may,mon,16,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,mon,324,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,technician,single,university.degree,no,yes,no,cellular,may,mon,663,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,admin.,single,high.school,no,no,yes,telephone,may,mon,36,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,admin.,married,high.school,no,no,no,cellular,may,mon,14,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +24,technician,married,professional.course,no,yes,no,cellular,may,mon,342,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +26,student,single,high.school,no,no,no,cellular,may,mon,291,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,128,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,mon,22,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,blue-collar,single,basic.9y,no,unknown,unknown,cellular,may,mon,10,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,mon,82,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,admin.,single,university.degree,no,no,no,cellular,may,mon,146,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,entrepreneur,single,university.degree,no,yes,no,cellular,may,mon,9,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +24,management,single,university.degree,no,no,no,cellular,may,mon,64,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,student,single,high.school,no,yes,no,cellular,may,mon,18,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +38,technician,single,basic.9y,no,yes,no,cellular,may,mon,29,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +23,services,married,basic.9y,unknown,yes,no,cellular,may,mon,20,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,mon,26,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +27,unemployed,married,high.school,no,yes,no,cellular,may,mon,11,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +29,technician,single,university.degree,no,no,no,cellular,may,mon,50,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,admin.,single,university.degree,no,yes,yes,cellular,may,mon,22,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,single,professional.course,no,no,no,cellular,may,mon,687,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +47,entrepreneur,married,professional.course,no,unknown,unknown,cellular,may,mon,44,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,technician,married,professional.course,no,yes,no,cellular,may,mon,638,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +56,technician,single,professional.course,no,yes,no,cellular,may,mon,80,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +36,admin.,single,university.degree,no,no,no,telephone,may,mon,12,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +56,blue-collar,married,basic.4y,no,no,no,cellular,may,mon,197,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +31,blue-collar,single,high.school,no,yes,no,cellular,may,mon,126,2,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +35,admin.,single,university.degree,no,yes,no,cellular,may,mon,424,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +28,admin.,single,university.degree,no,yes,no,cellular,may,mon,28,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,admin.,divorced,university.degree,unknown,yes,yes,cellular,may,mon,121,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +33,admin.,single,university.degree,no,no,no,cellular,may,mon,305,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,management,married,high.school,no,no,no,cellular,may,mon,236,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,married,university.degree,no,yes,no,cellular,may,mon,232,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,divorced,high.school,no,yes,yes,cellular,may,mon,80,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +55,admin.,divorced,unknown,unknown,no,no,cellular,may,mon,178,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,admin.,single,university.degree,no,no,yes,cellular,may,mon,11,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +47,services,divorced,high.school,no,yes,no,cellular,may,mon,953,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +44,blue-collar,single,basic.9y,no,no,no,cellular,may,mon,267,4,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,no +41,unemployed,married,professional.course,no,yes,no,cellular,may,mon,34,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,technician,divorced,professional.course,no,yes,no,cellular,may,mon,214,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,management,divorced,university.degree,no,yes,no,telephone,may,mon,56,9,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +30,services,married,university.degree,no,yes,no,cellular,may,mon,109,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +37,management,divorced,university.degree,no,yes,no,cellular,may,mon,1173,3,9,1,success,-1.8,92.893,-46.2,1.244,5099.1,yes +31,technician,married,university.degree,no,yes,no,telephone,may,mon,45,4,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +26,entrepreneur,single,high.school,no,yes,no,cellular,may,mon,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +32,admin.,married,high.school,no,yes,no,cellular,may,mon,171,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +57,admin.,single,high.school,no,unknown,unknown,telephone,may,mon,102,7,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +43,admin.,divorced,high.school,no,yes,no,telephone,may,mon,150,8,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +58,admin.,married,university.degree,no,yes,no,cellular,may,mon,1359,3,999,1,failure,-1.8,92.893,-46.2,1.244,5099.1,yes +43,blue-collar,married,unknown,unknown,no,no,cellular,may,mon,715,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +41,technician,single,high.school,no,yes,no,cellular,may,mon,263,3,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +25,unemployed,married,university.degree,no,no,no,cellular,may,mon,32,8,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,no +55,admin.,married,university.degree,no,yes,no,cellular,may,mon,8,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +53,blue-collar,married,professional.course,no,no,yes,cellular,may,mon,28,6,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +46,services,single,professional.course,unknown,no,yes,cellular,may,mon,390,5,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +32,services,married,high.school,unknown,no,no,cellular,may,mon,642,3,10,1,success,-1.8,92.893,-46.2,1.244,5099.1,yes +32,blue-collar,married,basic.9y,unknown,no,no,cellular,may,mon,1880,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,no +52,admin.,divorced,basic.9y,no,no,yes,cellular,may,mon,639,2,999,0,nonexistent,-1.8,92.893,-46.2,1.244,5099.1,yes +40,technician,single,professional.course,no,yes,no,cellular,may,fri,317,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes +44,technician,married,professional.course,no,yes,no,cellular,may,fri,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +43,entrepreneur,married,professional.course,no,yes,yes,cellular,may,fri,114,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +38,services,married,high.school,no,yes,no,cellular,may,fri,324,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes +81,retired,divorced,unknown,unknown,yes,yes,cellular,may,fri,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +45,admin.,single,university.degree,no,no,no,cellular,may,fri,582,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes +35,technician,divorced,professional.course,no,yes,no,cellular,may,fri,394,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +35,technician,divorced,professional.course,no,no,no,cellular,may,fri,169,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +26,technician,single,university.degree,no,no,no,cellular,may,fri,199,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes +35,technician,divorced,professional.course,no,no,no,cellular,may,fri,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +35,admin.,married,high.school,no,yes,no,cellular,may,fri,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,796,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes +34,admin.,married,university.degree,no,no,no,cellular,may,fri,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +45,admin.,married,unknown,no,no,no,cellular,may,fri,78,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +45,admin.,married,unknown,no,yes,no,cellular,may,fri,271,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +39,technician,single,university.degree,no,yes,no,cellular,may,fri,150,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +39,technician,single,university.degree,no,yes,no,cellular,may,fri,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +40,management,married,high.school,no,yes,yes,cellular,may,fri,230,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +40,management,married,high.school,no,yes,no,cellular,may,fri,94,7,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +71,housemaid,married,unknown,no,yes,no,cellular,may,fri,122,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +36,admin.,married,professional.course,no,yes,yes,cellular,may,fri,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +23,student,single,basic.9y,no,no,yes,cellular,may,fri,563,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,single,university.degree,no,no,no,cellular,may,fri,86,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,fri,120,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,fri,680,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +58,retired,married,basic.9y,no,no,yes,cellular,may,fri,235,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +19,student,single,basic.9y,no,yes,no,cellular,may,fri,491,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +83,retired,married,basic.9y,no,yes,yes,cellular,may,fri,74,1,3,3,failure,-1.8,92.893,-46.2,1.259,5099.1,no +30,admin.,married,university.degree,no,yes,no,cellular,may,fri,158,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,fri,431,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +49,admin.,married,university.degree,no,yes,no,cellular,may,fri,168,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +49,admin.,married,university.degree,no,no,no,telephone,may,fri,152,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +66,housemaid,married,high.school,no,yes,no,cellular,may,fri,210,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,fri,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +37,technician,married,university.degree,no,yes,yes,cellular,may,fri,239,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +57,admin.,married,basic.6y,no,yes,no,cellular,may,fri,100,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +57,admin.,married,basic.6y,no,no,no,cellular,may,fri,259,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +32,technician,single,university.degree,no,no,no,cellular,may,fri,44,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +40,technician,single,professional.course,no,yes,no,cellular,may,fri,320,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +40,technician,single,professional.course,no,no,yes,cellular,may,fri,807,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +55,admin.,married,university.degree,no,no,no,cellular,may,fri,190,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +46,unknown,single,unknown,no,yes,yes,cellular,may,fri,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +18,student,single,high.school,no,no,no,cellular,may,fri,271,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,yes +18,student,single,high.school,no,yes,no,cellular,may,fri,251,1,1,2,success,-1.8,92.893,-46.2,1.259,5099.1,no +48,entrepreneur,married,university.degree,no,yes,no,cellular,may,fri,316,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +57,admin.,married,university.degree,no,yes,no,cellular,may,fri,554,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +62,technician,married,professional.course,no,yes,no,cellular,may,fri,181,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +29,admin.,unknown,university.degree,no,no,no,cellular,may,fri,264,2,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +43,technician,married,high.school,no,yes,no,cellular,may,fri,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +75,retired,divorced,basic.4y,no,yes,yes,cellular,may,fri,83,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +46,technician,married,university.degree,no,no,no,cellular,may,fri,566,7,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +43,technician,married,high.school,no,no,no,cellular,may,fri,223,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes +38,admin.,married,university.degree,no,yes,yes,cellular,may,fri,80,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +26,student,single,professional.course,no,no,yes,cellular,may,fri,182,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +28,technician,single,professional.course,no,no,no,cellular,may,fri,198,1,3,1,success,-1.8,92.893,-46.2,1.259,5099.1,yes +31,services,single,high.school,no,no,no,cellular,may,fri,293,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +28,admin.,single,university.degree,no,yes,no,cellular,may,fri,50,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +27,admin.,married,high.school,no,yes,no,cellular,may,fri,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +52,unemployed,single,basic.4y,no,yes,no,cellular,may,fri,169,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +40,management,married,high.school,no,no,no,cellular,may,fri,253,1,999,1,failure,-1.8,92.893,-46.2,1.259,5099.1,no +35,technician,married,university.degree,no,yes,yes,telephone,may,fri,231,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +49,admin.,married,university.degree,no,yes,no,cellular,may,fri,105,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +45,blue-collar,married,professional.course,no,yes,no,cellular,may,fri,157,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +30,admin.,married,university.degree,no,yes,yes,cellular,may,fri,449,4,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +59,technician,married,professional.course,no,yes,no,cellular,may,fri,43,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +59,self-employed,single,university.degree,no,yes,no,telephone,may,fri,249,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +37,admin.,married,university.degree,no,yes,no,cellular,may,fri,685,1,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +37,housemaid,single,university.degree,no,no,no,cellular,may,fri,288,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,yes +26,admin.,single,university.degree,no,yes,no,telephone,may,fri,23,2,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +34,admin.,single,university.degree,no,yes,yes,cellular,may,fri,46,3,999,0,nonexistent,-1.8,92.893,-46.2,1.259,5099.1,no +48,services,married,high.school,no,no,no,cellular,may,mon,97,3,999,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no +46,admin.,single,high.school,no,yes,yes,cellular,may,mon,65,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +50,admin.,divorced,university.degree,no,yes,yes,cellular,may,mon,644,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +27,admin.,married,university.degree,no,no,yes,telephone,may,mon,86,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,186,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,yes,cellular,may,mon,582,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +26,admin.,single,university.degree,no,yes,no,cellular,may,mon,365,5,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +44,technician,married,basic.9y,no,yes,yes,cellular,may,mon,354,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,technician,married,university.degree,no,yes,yes,cellular,may,mon,101,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +24,admin.,single,university.degree,no,no,no,cellular,may,mon,174,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +36,self-employed,married,university.degree,no,no,no,cellular,may,mon,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +44,services,married,high.school,no,yes,yes,cellular,may,mon,283,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +53,technician,married,professional.course,no,no,no,cellular,may,mon,421,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +36,admin.,married,high.school,no,no,no,cellular,may,mon,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +33,blue-collar,married,basic.9y,no,yes,yes,cellular,may,mon,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +58,housemaid,married,basic.4y,no,no,no,cellular,may,mon,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +33,unemployed,married,high.school,no,yes,yes,cellular,may,mon,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +44,blue-collar,single,professional.course,no,yes,no,cellular,may,mon,64,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +44,blue-collar,single,professional.course,no,no,no,cellular,may,mon,104,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +54,management,married,university.degree,no,no,no,cellular,may,mon,397,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +36,admin.,single,university.degree,no,no,no,cellular,may,mon,327,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +56,retired,married,high.school,no,yes,no,cellular,may,mon,106,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +29,admin.,married,university.degree,no,no,no,cellular,may,mon,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +55,unemployed,married,basic.9y,no,no,yes,cellular,may,mon,296,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +27,admin.,single,university.degree,no,yes,yes,cellular,may,mon,179,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +52,entrepreneur,married,basic.6y,no,yes,no,cellular,may,mon,69,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +62,retired,single,university.degree,no,yes,yes,cellular,may,mon,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +42,entrepreneur,married,university.degree,no,yes,no,cellular,may,mon,265,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +37,blue-collar,single,professional.course,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +46,admin.,single,university.degree,no,no,no,cellular,may,mon,344,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +56,admin.,divorced,university.degree,no,yes,no,cellular,may,mon,867,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +46,admin.,single,university.degree,no,no,no,cellular,may,mon,70,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +46,admin.,single,university.degree,no,no,no,cellular,may,mon,269,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +46,admin.,single,university.degree,no,no,yes,cellular,may,mon,195,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +46,admin.,single,university.degree,no,yes,no,cellular,may,mon,92,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +56,retired,married,high.school,no,no,yes,cellular,may,mon,613,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,915,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +54,admin.,single,university.degree,no,yes,no,cellular,may,mon,485,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +54,admin.,single,university.degree,no,no,no,cellular,may,mon,337,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,185,1,2,1,success,-1.8,92.893,-46.2,1.264,5099.1,no +43,blue-collar,married,basic.9y,no,no,yes,cellular,may,mon,487,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,yes +26,student,single,basic.9y,no,yes,no,cellular,may,mon,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +32,admin.,single,university.degree,unknown,yes,no,cellular,may,mon,157,4,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +25,admin.,married,university.degree,no,unknown,unknown,cellular,may,mon,612,7,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +27,admin.,single,university.degree,no,no,no,cellular,may,mon,160,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +26,unknown,single,basic.9y,no,yes,yes,cellular,may,mon,64,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,no +32,admin.,divorced,high.school,no,no,no,cellular,may,mon,111,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +37,technician,married,university.degree,no,yes,no,cellular,may,mon,288,1,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,yes +36,admin.,married,university.degree,no,no,yes,cellular,may,mon,305,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,admin.,married,university.degree,no,yes,yes,cellular,may,mon,77,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +58,housemaid,married,basic.4y,no,yes,no,cellular,may,mon,144,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,self-employed,married,university.degree,no,no,yes,cellular,may,mon,159,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +33,unemployed,married,high.school,no,yes,no,cellular,may,mon,74,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +26,student,single,university.degree,no,no,yes,cellular,may,mon,115,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,admin.,married,university.degree,no,yes,no,cellular,may,mon,1064,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +50,admin.,divorced,university.degree,no,no,yes,cellular,may,mon,213,4,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +36,self-employed,married,university.degree,no,yes,no,cellular,may,mon,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,self-employed,married,university.degree,no,no,no,cellular,may,mon,54,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +46,unemployed,married,basic.9y,no,yes,no,cellular,may,mon,205,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,no,telephone,may,mon,180,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +61,retired,married,basic.9y,no,no,no,cellular,may,mon,324,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,mon,159,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +60,admin.,married,high.school,no,no,yes,telephone,may,mon,87,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,mon,226,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +29,admin.,married,university.degree,no,yes,no,cellular,may,mon,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +34,technician,single,professional.course,no,no,yes,cellular,may,mon,217,1,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +35,admin.,married,university.degree,no,yes,no,cellular,may,mon,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +43,technician,divorced,professional.course,no,yes,no,cellular,may,mon,143,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +42,technician,married,professional.course,no,no,no,cellular,may,mon,377,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +30,admin.,single,high.school,no,yes,no,cellular,may,mon,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +27,management,single,university.degree,no,yes,no,cellular,may,mon,115,2,3,1,success,-1.8,92.893,-46.2,1.264,5099.1,no +31,services,single,university.degree,no,no,no,cellular,may,mon,262,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +78,retired,married,high.school,no,yes,no,cellular,may,mon,754,2,3,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no +55,self-employed,married,university.degree,no,yes,no,cellular,may,mon,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +42,technician,married,professional.course,no,no,no,cellular,may,mon,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +32,admin.,married,university.degree,no,no,no,cellular,may,mon,166,3,12,2,failure,-1.8,92.893,-46.2,1.264,5099.1,no +41,admin.,married,high.school,no,yes,yes,cellular,may,mon,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +46,admin.,married,university.degree,no,yes,no,telephone,may,mon,243,4,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +54,blue-collar,married,basic.4y,no,unknown,unknown,cellular,may,mon,352,3,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +47,admin.,divorced,high.school,no,yes,no,cellular,may,mon,142,4,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,no +28,self-employed,single,university.degree,no,no,yes,cellular,may,mon,315,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,yes +29,technician,single,university.degree,no,no,no,cellular,may,mon,170,1,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +28,technician,single,high.school,no,yes,no,telephone,may,mon,100,3,999,0,nonexistent,-1.8,92.893,-46.2,1.264,5099.1,no +36,self-employed,married,university.degree,no,yes,no,cellular,may,mon,414,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +34,technician,single,professional.course,no,yes,no,cellular,may,mon,601,2,999,1,failure,-1.8,92.893,-46.2,1.264,5099.1,yes +38,management,married,university.degree,no,yes,no,cellular,may,tue,111,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,tue,164,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +44,blue-collar,married,professional.course,no,yes,yes,cellular,may,tue,133,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,self-employed,married,university.degree,no,no,no,cellular,may,tue,105,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +52,services,married,high.school,no,yes,no,cellular,may,tue,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,university.degree,no,no,yes,cellular,may,tue,527,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +26,admin.,single,university.degree,no,no,no,cellular,may,tue,135,4,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,self-employed,married,university.degree,no,no,no,cellular,may,tue,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,blue-collar,single,professional.course,no,no,no,cellular,may,tue,314,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,married,university.degree,no,no,no,cellular,may,tue,65,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +59,self-employed,married,university.degree,no,yes,no,cellular,may,tue,61,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,management,married,high.school,no,yes,no,cellular,may,tue,78,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +49,blue-collar,married,basic.9y,no,no,no,cellular,may,tue,135,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +60,retired,married,university.degree,no,yes,no,cellular,may,tue,133,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +32,admin.,married,university.degree,no,yes,no,cellular,may,tue,293,2,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +65,retired,married,unknown,no,no,no,cellular,may,tue,318,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +30,housemaid,married,high.school,no,yes,no,cellular,may,tue,84,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,tue,309,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,tue,111,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,119,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,tue,1078,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +35,admin.,married,high.school,no,yes,no,cellular,may,tue,159,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +58,management,married,university.degree,no,yes,no,cellular,may,tue,640,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +39,admin.,married,high.school,no,no,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,482,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +39,admin.,married,high.school,no,yes,no,cellular,may,tue,217,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,yes,no,cellular,may,tue,71,5,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,student,single,high.school,no,yes,yes,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +36,admin.,single,university.degree,no,yes,no,cellular,may,tue,260,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +40,student,single,high.school,no,yes,no,cellular,may,tue,333,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +55,retired,married,high.school,no,yes,no,cellular,may,tue,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +55,retired,married,high.school,no,no,no,cellular,may,tue,256,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +51,retired,married,high.school,no,yes,no,cellular,may,tue,302,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +61,unknown,single,basic.4y,no,yes,yes,cellular,may,tue,131,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +61,unknown,single,basic.4y,no,yes,no,cellular,may,tue,154,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,university.degree,no,yes,yes,cellular,may,tue,500,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,married,high.school,no,no,no,cellular,may,tue,172,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +61,unknown,single,basic.4y,no,yes,no,cellular,may,tue,574,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +55,housemaid,married,professional.course,no,yes,no,telephone,may,tue,137,5,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,tue,244,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,no,no,cellular,may,tue,134,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +29,self-employed,married,university.degree,no,no,no,cellular,may,tue,376,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,university.degree,no,no,no,cellular,may,tue,911,1,2,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +24,technician,single,professional.course,no,no,no,telephone,may,tue,240,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,admin.,married,high.school,no,no,no,telephone,may,tue,122,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +45,admin.,divorced,university.degree,no,no,no,cellular,may,tue,167,1,9,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +45,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,351,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,married,university.degree,no,yes,no,cellular,may,tue,165,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +28,technician,single,university.degree,no,yes,no,cellular,may,tue,326,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,unemployed,single,high.school,no,no,yes,cellular,may,tue,58,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +55,entrepreneur,married,professional.course,no,yes,no,cellular,may,tue,56,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,university.degree,no,yes,no,cellular,may,tue,145,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +31,admin.,married,high.school,no,yes,no,cellular,may,tue,208,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,yes +29,self-employed,married,university.degree,no,no,no,cellular,may,tue,94,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +35,management,single,university.degree,no,no,no,cellular,may,tue,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,admin.,single,university.degree,no,no,no,cellular,may,tue,171,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +53,technician,married,professional.course,unknown,yes,no,cellular,may,tue,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,3509,2,3,2,success,-1.8,92.893,-46.2,1.266,5099.1,no +54,admin.,divorced,professional.course,no,yes,no,cellular,may,tue,81,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +59,retired,married,basic.4y,no,no,no,cellular,may,tue,128,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,no,no,cellular,may,tue,304,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,married,professional.course,no,no,no,cellular,may,tue,55,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,divorced,university.degree,no,no,no,cellular,may,tue,140,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,services,married,high.school,no,yes,no,cellular,may,tue,83,1,1,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +37,entrepreneur,single,basic.9y,no,yes,no,cellular,may,tue,222,1,2,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +36,services,married,high.school,no,yes,no,cellular,may,tue,145,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +36,admin.,married,high.school,no,no,no,telephone,may,tue,1346,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,admin.,single,university.degree,no,no,no,cellular,may,tue,118,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +42,admin.,married,university.degree,no,no,no,cellular,may,tue,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +42,admin.,married,university.degree,no,yes,no,cellular,may,tue,251,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +31,technician,single,university.degree,no,yes,yes,cellular,may,tue,69,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +22,student,single,high.school,no,no,no,cellular,may,tue,245,2,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,high.school,no,yes,no,cellular,may,tue,135,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,single,university.degree,no,yes,no,cellular,may,tue,88,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,admin.,single,university.degree,no,yes,no,cellular,may,tue,125,1,999,2,failure,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,university.degree,no,yes,no,cellular,may,tue,228,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +22,student,single,high.school,no,yes,yes,cellular,may,tue,131,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,390,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +42,services,married,high.school,no,yes,no,cellular,may,tue,132,6,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +28,admin.,single,university.degree,no,yes,no,cellular,may,tue,187,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,married,university.degree,no,yes,no,cellular,may,tue,139,1,1,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,married,university.degree,no,yes,no,cellular,may,tue,109,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +36,services,married,high.school,no,yes,no,cellular,may,tue,161,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,married,university.degree,no,yes,no,cellular,may,tue,445,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +36,admin.,married,basic.9y,no,yes,no,cellular,may,tue,100,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +27,services,married,university.degree,no,no,no,cellular,may,tue,223,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,management,single,university.degree,no,yes,yes,cellular,may,tue,141,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,149,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +32,technician,married,professional.course,no,yes,no,cellular,may,tue,579,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,136,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,323,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,technician,single,university.degree,no,no,no,cellular,may,tue,197,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,tue,222,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +34,housemaid,married,university.degree,no,yes,no,cellular,may,tue,58,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +48,blue-collar,married,high.school,no,no,no,cellular,may,tue,407,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +48,blue-collar,married,high.school,no,no,no,cellular,may,tue,252,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,university.degree,no,no,no,cellular,may,tue,80,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,management,single,university.degree,no,yes,no,cellular,may,tue,112,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +33,technician,married,university.degree,no,no,no,cellular,may,tue,87,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,university.degree,no,yes,no,cellular,may,tue,427,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +31,admin.,married,university.degree,no,no,no,cellular,may,tue,176,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +21,student,single,high.school,no,yes,no,cellular,may,tue,226,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +28,services,married,basic.9y,no,no,no,cellular,may,tue,396,3,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +22,technician,single,unknown,no,no,no,cellular,may,tue,192,1,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,yes +42,services,married,high.school,no,yes,yes,cellular,may,tue,103,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,technician,single,professional.course,no,yes,no,cellular,may,tue,260,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,blue-collar,single,university.degree,no,yes,no,cellular,may,tue,139,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +52,services,married,high.school,no,yes,no,telephone,may,tue,108,4,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +51,admin.,divorced,university.degree,no,no,no,cellular,may,tue,91,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +51,admin.,divorced,university.degree,no,yes,no,cellular,may,tue,41,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +37,technician,single,professional.course,no,no,no,cellular,may,tue,89,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +25,admin.,single,university.degree,no,yes,yes,cellular,may,tue,82,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,admin.,single,university.degree,no,no,no,cellular,may,tue,132,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +49,admin.,single,university.degree,no,yes,no,cellular,may,tue,147,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +49,admin.,single,university.degree,no,no,no,cellular,may,tue,362,1,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +29,admin.,married,university.degree,no,yes,no,cellular,may,tue,212,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +38,technician,married,university.degree,no,yes,no,cellular,may,tue,118,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +39,admin.,married,high.school,no,no,no,cellular,may,tue,264,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +59,self-employed,married,university.degree,no,no,no,cellular,may,tue,94,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +23,student,single,basic.6y,no,yes,no,cellular,may,tue,258,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +59,self-employed,married,university.degree,no,no,no,cellular,may,tue,137,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +26,student,single,unknown,no,yes,no,cellular,may,tue,189,2,999,1,failure,-1.8,92.893,-46.2,1.266,5099.1,no +30,admin.,single,high.school,no,yes,no,cellular,may,tue,245,3,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,253,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +27,services,married,university.degree,no,no,no,cellular,may,tue,752,2,3,1,success,-1.8,92.893,-46.2,1.266,5099.1,no +29,technician,single,high.school,no,no,yes,cellular,may,tue,185,1,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,yes +32,admin.,single,university.degree,no,unknown,unknown,cellular,may,tue,129,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +47,retired,divorced,university.degree,no,no,no,cellular,may,tue,175,2,999,0,nonexistent,-1.8,92.893,-46.2,1.266,5099.1,no +27,admin.,single,university.degree,no,yes,no,cellular,may,wed,480,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,wed,532,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +30,technician,single,professional.course,no,no,no,cellular,may,wed,229,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +25,admin.,single,university.degree,no,yes,yes,cellular,may,wed,163,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +34,services,married,high.school,no,no,no,cellular,may,wed,71,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +54,admin.,divorced,university.degree,no,unknown,unknown,cellular,may,wed,161,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +42,technician,married,professional.course,no,no,no,cellular,may,wed,82,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +30,admin.,married,university.degree,no,no,no,cellular,may,wed,121,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +31,admin.,single,high.school,no,no,no,cellular,may,wed,439,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +54,unemployed,married,basic.9y,no,no,no,cellular,may,wed,193,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +34,admin.,married,university.degree,no,yes,yes,cellular,may,wed,242,1,7,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +30,technician,married,professional.course,no,no,no,cellular,may,wed,188,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +47,management,married,high.school,no,no,no,cellular,may,wed,282,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +39,admin.,single,high.school,no,yes,no,cellular,may,wed,130,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +25,student,single,professional.course,no,yes,no,cellular,may,wed,483,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,116,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +54,unemployed,married,basic.9y,no,no,no,telephone,may,wed,108,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,81,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +31,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,128,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +30,management,married,university.degree,no,no,no,cellular,may,wed,283,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +50,admin.,divorced,university.degree,no,yes,yes,cellular,may,wed,155,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +35,admin.,single,university.degree,no,yes,no,cellular,may,wed,138,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,services,single,high.school,no,no,no,cellular,may,wed,119,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +34,admin.,married,university.degree,no,yes,no,telephone,may,wed,93,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +52,admin.,married,university.degree,no,yes,yes,cellular,may,wed,159,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +37,blue-collar,married,basic.9y,no,yes,no,cellular,may,wed,133,2,1,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +56,technician,married,basic.4y,no,no,no,cellular,may,wed,776,3,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +24,admin.,single,university.degree,no,yes,no,cellular,may,wed,140,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +31,admin.,married,university.degree,no,yes,no,cellular,may,wed,136,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +68,retired,married,university.degree,no,yes,yes,cellular,may,wed,145,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,224,7,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,wed,95,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +29,management,married,university.degree,no,yes,no,cellular,may,wed,281,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,yes +38,housemaid,married,university.degree,no,yes,no,cellular,may,wed,90,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +38,management,single,university.degree,no,no,no,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +20,student,single,high.school,no,yes,no,cellular,may,wed,297,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,admin.,single,university.degree,no,yes,no,telephone,may,wed,76,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,self-employed,single,university.degree,no,no,no,cellular,may,wed,119,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +33,admin.,single,university.degree,no,yes,no,cellular,may,wed,200,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +25,admin.,single,university.degree,no,no,no,cellular,may,wed,114,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +61,blue-collar,married,basic.4y,no,yes,no,cellular,may,wed,113,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +61,blue-collar,married,basic.4y,no,no,no,cellular,may,wed,62,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,wed,1576,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,blue-collar,single,high.school,no,no,no,cellular,may,wed,329,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +41,blue-collar,married,basic.9y,no,yes,yes,cellular,may,wed,107,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +41,technician,married,professional.course,no,yes,yes,cellular,may,wed,204,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,self-employed,married,university.degree,no,no,no,cellular,may,wed,367,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +66,unknown,divorced,unknown,unknown,yes,no,cellular,may,wed,82,2,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +40,technician,single,university.degree,no,no,no,telephone,may,wed,146,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,student,single,high.school,no,no,no,cellular,may,wed,424,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,admin.,single,university.degree,no,yes,no,cellular,may,wed,412,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +32,admin.,single,university.degree,no,no,no,cellular,may,wed,103,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +38,management,married,university.degree,no,no,no,telephone,may,wed,165,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +26,self-employed,single,university.degree,no,no,no,cellular,may,wed,161,1,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +52,admin.,married,university.degree,no,no,no,cellular,may,wed,242,2,7,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +56,retired,married,university.degree,no,no,no,cellular,may,wed,108,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +45,technician,married,professional.course,no,yes,no,cellular,may,wed,207,5,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +37,blue-collar,married,basic.9y,no,no,no,cellular,may,wed,73,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +30,student,single,high.school,no,yes,no,cellular,may,wed,156,4,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +40,admin.,single,university.degree,no,yes,no,cellular,may,wed,112,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,self-employed,single,university.degree,no,no,no,cellular,may,wed,78,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +43,admin.,single,university.degree,no,yes,no,cellular,may,wed,110,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,admin.,single,university.degree,no,no,no,cellular,may,wed,183,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,student,single,high.school,no,yes,no,cellular,may,wed,223,3,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,yes +61,blue-collar,married,basic.4y,no,no,yes,cellular,may,wed,74,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,blue-collar,single,basic.9y,no,yes,no,cellular,may,wed,123,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,unemployed,married,university.degree,no,no,no,cellular,may,wed,76,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +24,technician,single,professional.course,no,unknown,unknown,cellular,may,wed,311,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +32,services,married,high.school,no,yes,no,telephone,may,wed,628,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +88,retired,divorced,basic.4y,no,yes,no,cellular,may,wed,128,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +53,self-employed,married,university.degree,no,no,yes,cellular,may,wed,141,3,6,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +34,admin.,married,university.degree,no,no,no,cellular,may,wed,89,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +47,admin.,married,high.school,no,no,no,cellular,may,wed,99,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,admin.,single,high.school,no,no,no,cellular,may,wed,236,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +34,admin.,married,university.degree,no,yes,no,cellular,may,wed,99,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +38,management,married,university.degree,no,yes,no,cellular,may,wed,187,2,2,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +32,technician,married,university.degree,no,yes,no,telephone,may,wed,186,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +36,technician,married,professional.course,no,yes,no,telephone,may,wed,86,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +48,technician,married,basic.6y,no,yes,no,cellular,may,thu,158,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +30,management,married,university.degree,no,no,no,cellular,may,thu,162,7,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +24,management,single,university.degree,no,yes,no,cellular,may,thu,513,9,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,yes +66,unknown,married,basic.4y,no,yes,yes,cellular,may,thu,110,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,681,6,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,admin.,married,university.degree,no,no,no,cellular,may,thu,322,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,thu,210,2,3,1,success,-1.8,92.893,-46.2,1.27,5099.1,no +27,technician,single,university.degree,no,yes,no,cellular,may,thu,568,8,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +37,entrepreneur,divorced,university.degree,no,yes,no,cellular,may,thu,294,2,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +24,student,single,unknown,no,yes,no,cellular,may,thu,558,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +23,student,single,high.school,no,yes,no,cellular,may,thu,77,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +22,student,single,basic.9y,no,no,no,cellular,may,thu,85,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,student,single,high.school,no,no,no,cellular,may,thu,93,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +24,management,single,university.degree,no,no,no,cellular,may,thu,121,6,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +42,housemaid,married,high.school,no,yes,no,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +32,admin.,married,university.degree,no,yes,yes,cellular,may,thu,135,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +52,admin.,divorced,university.degree,no,yes,yes,cellular,may,thu,414,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,admin.,married,high.school,no,yes,no,cellular,may,thu,60,2,999,2,failure,-1.8,92.893,-46.2,1.27,5099.1,no +53,technician,divorced,high.school,no,yes,no,cellular,may,thu,151,4,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +28,technician,single,university.degree,no,no,no,cellular,may,thu,68,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +23,student,single,high.school,no,no,no,cellular,may,thu,361,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +41,unemployed,married,university.degree,no,no,no,cellular,may,thu,142,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +26,technician,single,university.degree,no,yes,no,cellular,may,thu,174,4,2,1,success,-1.8,92.893,-46.2,1.27,5099.1,yes +24,management,single,university.degree,no,yes,no,cellular,may,thu,45,4,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +37,entrepreneur,divorced,university.degree,no,no,yes,cellular,may,thu,95,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +45,admin.,divorced,professional.course,no,yes,yes,telephone,may,thu,44,1,999,1,failure,-1.8,92.893,-46.2,1.27,5099.1,no +40,blue-collar,married,basic.4y,no,yes,no,cellular,may,thu,61,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +28,services,single,high.school,no,no,no,telephone,may,thu,32,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +45,services,married,high.school,no,yes,yes,cellular,may,thu,141,3,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +35,admin.,married,high.school,no,yes,yes,cellular,may,thu,81,2,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +37,entrepreneur,divorced,university.degree,no,yes,yes,telephone,may,thu,71,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +27,technician,single,university.degree,no,no,no,cellular,may,thu,68,1,999,0,nonexistent,-1.8,92.893,-46.2,1.27,5099.1,no +60,admin.,married,university.degree,no,yes,no,cellular,jun,mon,324,3,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes +29,admin.,single,high.school,no,yes,no,cellular,jun,mon,295,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +32,technician,married,professional.course,no,yes,no,cellular,jun,mon,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +45,unemployed,married,basic.9y,no,yes,no,cellular,jun,mon,201,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +35,blue-collar,single,professional.course,no,no,no,cellular,jun,mon,71,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +35,blue-collar,single,professional.course,no,yes,no,cellular,jun,mon,264,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +46,admin.,divorced,university.degree,no,yes,no,cellular,jun,mon,110,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +24,student,single,high.school,unknown,no,no,cellular,jun,mon,190,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +53,admin.,divorced,high.school,no,yes,no,cellular,jun,mon,70,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +32,admin.,married,university.degree,no,yes,no,cellular,jun,mon,103,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes +27,admin.,single,university.degree,no,yes,yes,cellular,jun,mon,331,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +37,entrepreneur,married,basic.6y,no,yes,no,cellular,jun,mon,377,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,unemployed,single,university.degree,no,yes,no,cellular,jun,mon,205,1,4,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes +36,technician,single,university.degree,no,yes,no,cellular,jun,mon,287,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +33,admin.,married,university.degree,no,yes,no,cellular,jun,mon,346,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +52,admin.,single,university.degree,no,no,yes,cellular,jun,mon,212,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +29,admin.,married,high.school,no,yes,no,cellular,jun,mon,263,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,technician,married,university.degree,no,yes,no,cellular,jun,mon,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +45,unemployed,married,basic.9y,no,yes,no,cellular,jun,mon,129,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +29,admin.,single,university.degree,no,yes,no,cellular,jun,mon,154,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +41,admin.,married,university.degree,no,no,no,cellular,jun,mon,175,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +22,student,single,basic.6y,no,yes,no,cellular,jun,mon,814,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +58,admin.,married,university.degree,no,yes,no,cellular,jun,mon,65,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +25,technician,married,university.degree,no,no,no,cellular,jun,mon,67,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +57,retired,married,professional.course,no,yes,no,cellular,jun,mon,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +52,admin.,single,university.degree,no,yes,no,cellular,jun,mon,327,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +28,admin.,single,university.degree,no,no,no,cellular,jun,mon,69,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes +28,admin.,single,university.degree,no,yes,no,cellular,jun,mon,353,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +47,management,married,university.degree,no,no,no,cellular,jun,mon,210,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +31,services,married,basic.9y,no,yes,no,telephone,jun,mon,277,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +32,technician,married,professional.course,no,unknown,unknown,cellular,jun,mon,210,2,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes +41,technician,married,university.degree,no,yes,yes,cellular,jun,mon,244,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +31,services,married,basic.9y,no,no,no,cellular,jun,mon,84,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +31,services,married,basic.9y,no,yes,no,cellular,jun,mon,208,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +31,services,married,basic.9y,no,yes,no,cellular,jun,mon,326,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,technician,married,university.degree,no,no,no,cellular,jun,mon,59,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +30,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,285,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +57,admin.,married,university.degree,no,yes,no,cellular,jun,mon,161,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +39,admin.,married,university.degree,no,no,no,cellular,jun,mon,165,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +27,admin.,married,university.degree,no,unknown,unknown,cellular,jun,mon,459,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +59,retired,married,professional.course,no,yes,yes,cellular,jun,mon,1460,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +32,technician,single,university.degree,no,no,no,cellular,jun,mon,1048,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +57,blue-collar,divorced,basic.4y,no,no,no,cellular,jun,mon,233,1,12,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +33,admin.,married,university.degree,no,no,no,cellular,jun,mon,335,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +37,admin.,married,university.degree,no,yes,yes,cellular,jun,mon,412,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +45,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,177,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +24,student,single,university.degree,no,no,no,cellular,jun,mon,223,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +65,retired,married,basic.9y,no,no,no,cellular,jun,mon,579,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +33,services,single,high.school,no,no,no,cellular,jun,mon,144,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +65,housemaid,married,basic.4y,no,no,no,cellular,jun,mon,145,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +30,technician,single,basic.9y,no,no,no,cellular,jun,mon,93,1,12,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +49,management,married,university.degree,no,yes,no,telephone,jun,mon,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +49,management,married,university.degree,no,no,no,cellular,jun,mon,164,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +49,management,married,university.degree,no,yes,no,cellular,jun,mon,128,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +49,management,married,university.degree,no,yes,no,cellular,jun,mon,339,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +44,housemaid,married,university.degree,no,no,no,cellular,jun,mon,223,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +34,admin.,single,university.degree,no,no,no,cellular,jun,mon,62,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +34,admin.,single,university.degree,no,no,no,cellular,jun,mon,151,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +24,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jun,mon,128,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +31,blue-collar,married,basic.9y,unknown,yes,no,cellular,jun,mon,388,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +55,admin.,married,high.school,no,no,no,cellular,jun,mon,180,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +77,management,single,basic.9y,no,no,no,cellular,jun,mon,84,2,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +38,blue-collar,divorced,university.degree,no,yes,yes,cellular,jun,mon,87,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +30,admin.,married,university.degree,no,no,no,telephone,jun,mon,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +36,management,married,university.degree,no,unknown,unknown,telephone,jun,mon,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +27,admin.,married,university.degree,no,yes,no,cellular,jun,mon,761,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +43,admin.,married,high.school,unknown,yes,no,cellular,jun,mon,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +21,student,single,high.school,no,yes,no,cellular,jun,mon,202,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,admin.,married,university.degree,no,no,no,cellular,jun,mon,174,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,yes +33,unemployed,single,university.degree,no,no,no,telephone,jun,mon,89,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +31,technician,married,unknown,no,yes,no,cellular,jun,mon,84,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +56,retired,divorced,university.degree,no,yes,no,cellular,jun,mon,164,1,3,1,success,-2.9,92.963,-40.8,1.266,5076.2,no +27,technician,married,professional.course,no,yes,no,cellular,jun,mon,492,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +29,admin.,single,university.degree,no,no,no,cellular,jun,mon,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,unemployed,married,university.degree,unknown,yes,no,cellular,jun,mon,450,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +49,management,married,university.degree,no,no,no,cellular,jun,mon,215,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +45,unemployed,married,basic.9y,no,no,no,cellular,jun,mon,232,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +36,self-employed,married,university.degree,no,no,yes,cellular,jun,mon,284,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,yes +32,admin.,single,university.degree,no,yes,no,cellular,jun,mon,253,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +47,management,married,university.degree,no,yes,no,cellular,jun,mon,352,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +58,retired,divorced,professional.course,no,yes,no,cellular,jun,mon,470,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +28,student,single,high.school,no,yes,no,cellular,jun,mon,1144,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +49,management,married,university.degree,no,yes,no,telephone,jun,mon,336,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +37,services,single,high.school,no,yes,no,cellular,jun,mon,195,3,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +28,self-employed,single,university.degree,no,no,no,cellular,jun,mon,373,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +34,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,78,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +65,housemaid,married,basic.4y,no,no,no,cellular,jun,mon,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +72,admin.,married,university.degree,no,yes,no,cellular,jun,mon,134,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +31,admin.,single,university.degree,no,yes,no,cellular,jun,mon,181,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +31,services,single,university.degree,no,yes,no,telephone,jun,mon,55,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +28,self-employed,single,university.degree,no,yes,yes,cellular,jun,mon,187,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +55,retired,divorced,university.degree,no,yes,no,cellular,jun,mon,113,2,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +32,blue-collar,unknown,basic.9y,no,yes,no,cellular,jun,mon,314,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,yes +39,admin.,married,university.degree,no,yes,no,cellular,jun,mon,206,1,999,1,failure,-2.9,92.963,-40.8,1.266,5076.2,no +43,admin.,married,high.school,unknown,yes,no,cellular,jun,mon,288,1,999,0,nonexistent,-2.9,92.963,-40.8,1.266,5076.2,no +25,admin.,single,university.degree,no,yes,no,cellular,jun,tue,93,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +53,services,married,unknown,no,yes,no,cellular,jun,tue,327,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +26,technician,single,professional.course,no,yes,no,cellular,jun,tue,163,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +28,management,married,basic.6y,no,no,yes,cellular,jun,tue,111,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +52,unknown,married,professional.course,unknown,yes,no,cellular,jun,tue,149,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +37,technician,single,university.degree,no,yes,no,cellular,jun,tue,96,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +67,admin.,married,basic.4y,unknown,no,no,cellular,jun,tue,466,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +21,management,single,university.degree,no,unknown,unknown,cellular,jun,tue,106,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +26,technician,divorced,university.degree,no,yes,no,cellular,jun,tue,101,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,257,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +26,admin.,single,high.school,no,no,no,cellular,jun,tue,479,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +26,technician,divorced,university.degree,no,no,no,cellular,jun,tue,437,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,198,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +58,retired,divorced,high.school,no,no,yes,cellular,jun,tue,143,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +43,blue-collar,married,basic.9y,no,yes,no,cellular,jun,tue,395,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +40,admin.,single,high.school,no,yes,no,cellular,jun,tue,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +40,admin.,single,high.school,no,yes,no,cellular,jun,tue,154,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +27,student,single,basic.9y,no,yes,yes,cellular,jun,tue,107,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +58,retired,divorced,high.school,no,yes,no,cellular,jun,tue,663,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +32,admin.,single,high.school,no,yes,no,cellular,jun,tue,350,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +35,services,married,high.school,no,yes,yes,cellular,jun,tue,126,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +39,admin.,married,professional.course,no,yes,yes,cellular,jun,tue,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +31,admin.,single,university.degree,no,yes,no,cellular,jun,tue,282,2,13,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +47,management,married,basic.9y,no,yes,no,cellular,jun,tue,118,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no +48,technician,married,high.school,no,yes,no,cellular,jun,tue,115,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +59,retired,divorced,university.degree,no,no,no,cellular,jun,tue,368,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,yes,no,cellular,jun,tue,62,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,unknown,unknown,cellular,jun,tue,96,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,no,no,cellular,jun,tue,294,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +67,admin.,married,basic.4y,unknown,yes,no,cellular,jun,tue,177,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,married,university.degree,no,yes,no,cellular,jun,tue,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,married,university.degree,no,yes,no,cellular,jun,tue,690,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +32,services,single,professional.course,no,yes,no,cellular,jun,tue,297,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no +32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,384,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +32,admin.,married,university.degree,no,no,no,cellular,jun,tue,596,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +37,technician,single,university.degree,no,no,no,cellular,jun,tue,654,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +49,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,144,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +49,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,88,1,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,no +52,unknown,married,professional.course,unknown,yes,no,telephone,jun,tue,50,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +31,admin.,single,university.degree,no,no,no,cellular,jun,tue,99,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +43,admin.,divorced,university.degree,no,yes,no,cellular,jun,tue,418,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +41,entrepreneur,married,high.school,no,yes,no,cellular,jun,tue,169,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +27,student,married,university.degree,no,no,no,cellular,jun,tue,59,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +34,technician,married,university.degree,no,yes,no,cellular,jun,tue,195,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +31,blue-collar,single,basic.9y,no,yes,yes,cellular,jun,tue,103,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,yes +32,technician,single,high.school,no,no,no,cellular,jun,tue,430,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +33,admin.,single,high.school,no,yes,no,cellular,jun,tue,167,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +52,services,divorced,basic.4y,no,yes,no,cellular,jun,tue,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +24,student,single,high.school,no,no,no,cellular,jun,tue,253,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +24,student,single,high.school,no,no,no,cellular,jun,tue,225,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no +25,admin.,single,university.degree,no,no,no,cellular,jun,tue,417,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +52,unknown,married,professional.course,unknown,yes,yes,cellular,jun,tue,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +41,technician,married,professional.course,no,no,no,cellular,jun,tue,160,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +32,services,married,high.school,no,unknown,unknown,cellular,jun,tue,172,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +27,self-employed,single,professional.course,no,no,no,cellular,jun,tue,162,2,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no +34,services,married,high.school,no,yes,no,cellular,jun,tue,136,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no +41,technician,single,university.degree,no,no,no,telephone,jun,tue,270,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +34,services,single,high.school,no,no,yes,cellular,jun,tue,92,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +27,self-employed,single,university.degree,no,no,no,cellular,jun,tue,271,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,no,no,cellular,jun,tue,200,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +47,management,married,basic.9y,no,no,no,cellular,jun,tue,309,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +37,unemployed,unknown,university.degree,no,no,no,cellular,jun,tue,100,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +26,admin.,single,university.degree,no,unknown,unknown,cellular,jun,tue,271,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +29,unemployed,single,high.school,no,no,no,cellular,jun,tue,189,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +79,retired,married,high.school,no,unknown,unknown,cellular,jun,tue,61,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +79,retired,married,high.school,no,yes,yes,cellular,jun,tue,163,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,single,high.school,no,yes,no,cellular,jun,tue,74,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,82,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +23,student,single,high.school,no,no,no,telephone,jun,tue,108,4,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +43,admin.,married,university.degree,no,yes,no,cellular,jun,tue,91,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +43,admin.,married,university.degree,no,no,yes,cellular,jun,tue,310,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +32,admin.,married,university.degree,no,yes,no,cellular,jun,tue,712,1,3,2,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +32,admin.,married,university.degree,no,no,no,cellular,jun,tue,74,1,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +29,admin.,single,university.degree,no,yes,no,telephone,jun,tue,128,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +52,services,divorced,basic.4y,no,yes,no,cellular,jun,tue,80,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,tue,392,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +27,services,single,professional.course,no,yes,no,cellular,jun,tue,392,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +32,admin.,single,university.degree,no,yes,no,cellular,jun,tue,369,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +31,management,married,university.degree,no,no,no,cellular,jun,tue,217,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +30,unemployed,married,professional.course,no,yes,no,cellular,jun,tue,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +30,unemployed,married,professional.course,no,yes,yes,cellular,jun,tue,495,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +38,admin.,divorced,high.school,no,yes,no,cellular,jun,tue,116,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +41,technician,married,professional.course,no,unknown,unknown,cellular,jun,tue,318,1,4,3,success,-2.9,92.963,-40.8,1.262,5076.2,yes +33,management,single,university.degree,no,unknown,unknown,cellular,jun,tue,73,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +28,admin.,single,high.school,no,yes,no,cellular,jun,tue,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +28,admin.,single,high.school,no,yes,no,cellular,jun,tue,359,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +34,technician,married,university.degree,no,no,no,cellular,jun,tue,116,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +24,technician,single,professional.course,no,yes,no,cellular,jun,tue,211,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +59,admin.,married,unknown,no,no,no,cellular,jun,tue,245,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +26,admin.,married,high.school,no,yes,yes,cellular,jun,tue,142,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +35,admin.,married,high.school,no,yes,yes,cellular,jun,tue,444,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,jun,tue,251,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +56,management,married,university.degree,no,yes,yes,cellular,jun,tue,673,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +24,unknown,single,university.degree,no,no,no,cellular,jun,tue,119,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,yes +24,unknown,single,university.degree,no,yes,yes,cellular,jun,tue,134,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +24,unknown,single,university.degree,no,yes,no,cellular,jun,tue,74,1,3,2,success,-2.9,92.963,-40.8,1.262,5076.2,no +24,unknown,single,university.degree,no,yes,no,cellular,jun,tue,728,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +24,unknown,single,university.degree,no,no,no,cellular,jun,tue,263,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +27,admin.,single,university.degree,no,no,yes,cellular,jun,tue,154,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +24,unknown,single,university.degree,no,yes,yes,cellular,jun,tue,696,1,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no +23,blue-collar,single,basic.9y,no,no,no,cellular,jun,tue,159,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +41,technician,single,university.degree,no,yes,no,cellular,jun,tue,118,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,yes,yes,cellular,jun,tue,1210,4,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +31,admin.,single,university.degree,no,no,yes,cellular,jun,tue,210,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +23,student,single,high.school,no,no,no,cellular,jun,tue,310,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +30,admin.,single,university.degree,no,no,no,cellular,jun,tue,482,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +30,admin.,single,university.degree,no,yes,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +47,technician,divorced,high.school,no,yes,no,cellular,jun,tue,221,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +30,self-employed,single,university.degree,no,no,no,cellular,jun,tue,147,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +44,admin.,single,university.degree,no,no,no,cellular,jun,tue,924,2,4,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +44,admin.,divorced,university.degree,no,yes,yes,cellular,jun,tue,130,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +33,admin.,single,high.school,no,no,no,cellular,jun,tue,53,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +29,management,divorced,basic.9y,no,yes,no,cellular,jun,tue,72,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +28,technician,single,professional.course,no,yes,no,cellular,jun,tue,318,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +34,services,single,high.school,no,no,no,telephone,jun,tue,306,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +33,housemaid,unknown,university.degree,no,no,no,cellular,jun,tue,77,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +27,self-employed,single,university.degree,no,yes,no,cellular,jun,tue,112,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +37,admin.,married,university.degree,no,yes,no,cellular,jun,tue,80,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +37,admin.,married,high.school,no,yes,yes,cellular,jun,tue,123,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +31,management,married,university.degree,no,no,no,cellular,jun,tue,212,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +40,admin.,married,university.degree,no,yes,no,cellular,jun,tue,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +47,management,married,basic.9y,no,yes,no,cellular,jun,tue,181,3,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +34,admin.,single,university.degree,no,yes,no,cellular,jun,tue,96,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +47,management,married,basic.9y,no,no,no,cellular,jun,tue,132,4,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +30,technician,single,professional.course,no,yes,no,cellular,jun,tue,76,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +38,entrepreneur,married,professional.course,no,yes,yes,cellular,jun,tue,262,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +30,admin.,married,university.degree,no,no,no,cellular,jun,tue,250,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +43,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,146,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +33,technician,married,professional.course,no,no,no,cellular,jun,tue,189,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +53,services,married,unknown,no,yes,no,cellular,jun,tue,501,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +46,entrepreneur,married,high.school,no,no,no,cellular,jun,tue,69,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +40,admin.,married,university.degree,no,no,no,cellular,jun,tue,269,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +46,unemployed,married,basic.9y,no,yes,no,cellular,jun,tue,236,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +32,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,102,4,999,2,failure,-2.9,92.963,-40.8,1.262,5076.2,no +36,admin.,married,university.degree,unknown,yes,yes,cellular,jun,tue,308,1,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,no +24,technician,single,professional.course,no,no,no,cellular,jun,tue,122,2,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,no +58,retired,divorced,high.school,no,yes,no,cellular,jun,tue,145,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +55,retired,married,basic.4y,no,no,no,cellular,jun,tue,130,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +25,blue-collar,single,professional.course,no,yes,no,cellular,jun,tue,179,2,3,1,success,-2.9,92.963,-40.8,1.262,5076.2,yes +24,technician,single,high.school,no,yes,no,cellular,jun,tue,142,2,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +44,management,married,university.degree,no,yes,no,cellular,jun,tue,71,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,no +55,retired,married,basic.4y,no,no,no,cellular,jun,tue,553,2,3,4,failure,-2.9,92.963,-40.8,1.262,5076.2,no +31,management,married,university.degree,no,yes,no,cellular,jun,tue,305,1,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +31,technician,single,professional.course,no,no,no,cellular,jun,tue,163,1,999,1,failure,-2.9,92.963,-40.8,1.262,5076.2,yes +33,admin.,single,university.degree,no,no,no,cellular,jun,tue,541,3,999,0,nonexistent,-2.9,92.963,-40.8,1.262,5076.2,yes +28,technician,single,professional.course,no,yes,no,cellular,jun,wed,209,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +43,admin.,married,university.degree,no,yes,no,cellular,jun,wed,262,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +38,technician,single,university.degree,no,yes,no,telephone,jun,wed,225,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,admin.,married,high.school,no,no,no,telephone,jun,wed,206,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +40,blue-collar,divorced,professional.course,no,no,no,cellular,jun,wed,115,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +24,blue-collar,single,basic.9y,no,yes,no,cellular,jun,wed,406,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,244,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +31,services,married,high.school,no,no,no,cellular,jun,wed,592,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +47,admin.,single,university.degree,no,no,no,cellular,jun,wed,78,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +26,retired,single,high.school,no,unknown,unknown,cellular,jun,wed,508,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +59,retired,married,professional.course,no,yes,no,telephone,jun,wed,437,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +24,blue-collar,single,basic.9y,no,unknown,unknown,cellular,jun,wed,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +59,retired,married,professional.course,no,no,no,cellular,jun,wed,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +59,retired,married,professional.course,no,yes,no,cellular,jun,wed,68,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +53,blue-collar,divorced,basic.6y,no,yes,no,cellular,jun,wed,123,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,jun,wed,313,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +31,admin.,single,high.school,no,no,no,cellular,jun,wed,137,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +53,technician,divorced,university.degree,no,no,no,cellular,jun,wed,705,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +26,student,single,professional.course,no,yes,no,cellular,jun,wed,96,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +28,admin.,single,high.school,no,no,no,cellular,jun,wed,198,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +37,services,married,high.school,no,yes,no,cellular,jun,wed,200,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +40,blue-collar,divorced,professional.course,no,no,no,cellular,jun,wed,210,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +40,management,divorced,university.degree,no,yes,no,cellular,jun,wed,117,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +58,blue-collar,married,basic.4y,no,yes,no,cellular,jun,wed,110,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +38,technician,married,university.degree,no,yes,no,cellular,jun,wed,171,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +36,admin.,married,university.degree,no,no,no,cellular,jun,wed,334,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +37,self-employed,married,professional.course,no,no,no,cellular,jun,wed,321,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +28,student,single,high.school,no,yes,no,cellular,jun,wed,296,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +58,management,married,basic.4y,no,yes,no,cellular,jun,wed,86,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +20,student,single,unknown,no,yes,no,cellular,jun,wed,213,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +29,admin.,single,university.degree,no,yes,yes,telephone,jun,wed,252,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,technician,single,professional.course,no,no,no,cellular,jun,wed,411,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +29,admin.,married,high.school,no,yes,no,cellular,jun,wed,37,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +28,admin.,single,university.degree,no,yes,no,cellular,jun,wed,593,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +29,technician,single,university.degree,no,yes,no,cellular,jun,wed,101,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +34,technician,married,professional.course,no,yes,no,cellular,jun,wed,302,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +29,technician,single,university.degree,no,yes,no,cellular,jun,wed,138,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,technician,single,university.degree,no,yes,no,cellular,jun,wed,165,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,blue-collar,single,high.school,no,yes,no,cellular,jun,wed,88,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,services,single,high.school,no,no,no,telephone,jun,wed,116,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +59,blue-collar,married,basic.4y,unknown,no,no,cellular,jun,wed,340,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +48,admin.,married,university.degree,no,yes,no,cellular,jun,wed,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +31,services,married,high.school,no,yes,no,cellular,jun,wed,591,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +33,blue-collar,married,professional.course,no,yes,no,cellular,jun,wed,88,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,blue-collar,married,professional.course,no,yes,no,cellular,jun,wed,90,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,services,single,basic.6y,no,no,no,cellular,jun,wed,385,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +39,admin.,married,university.degree,no,no,no,cellular,jun,wed,2219,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +33,blue-collar,married,professional.course,no,unknown,unknown,cellular,jun,wed,240,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,university.degree,no,no,no,cellular,jun,wed,174,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +57,entrepreneur,married,basic.4y,no,yes,no,cellular,jun,wed,467,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,107,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,divorced,university.degree,no,yes,no,cellular,jun,wed,238,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +39,management,married,university.degree,no,yes,no,cellular,jun,wed,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,admin.,married,high.school,no,yes,no,cellular,jun,wed,342,1,10,1,success,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,married,university.degree,no,unknown,unknown,cellular,jun,wed,113,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +56,retired,married,university.degree,no,yes,no,cellular,jun,wed,252,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,no +33,admin.,single,high.school,no,no,no,cellular,jun,wed,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +20,student,single,high.school,no,yes,yes,cellular,jun,wed,74,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +38,admin.,divorced,high.school,no,no,no,cellular,jun,wed,65,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +61,admin.,married,university.degree,no,yes,no,cellular,jun,wed,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +38,technician,married,university.degree,no,yes,no,cellular,jun,wed,273,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +38,technician,married,university.degree,no,no,no,cellular,jun,wed,539,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +40,services,married,high.school,unknown,no,no,cellular,jun,wed,157,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +38,admin.,divorced,high.school,no,yes,no,cellular,jun,wed,1361,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,jun,wed,254,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,no +21,admin.,single,high.school,no,yes,no,cellular,jun,wed,180,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +48,admin.,married,university.degree,no,yes,no,cellular,jun,wed,447,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +26,student,single,university.degree,unknown,yes,no,cellular,jun,wed,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,services,single,high.school,no,no,no,cellular,jun,wed,136,6,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no +32,technician,married,university.degree,no,yes,no,cellular,jun,wed,123,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +37,admin.,married,university.degree,no,no,no,cellular,jun,wed,167,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +24,student,single,high.school,no,yes,no,cellular,jun,wed,74,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +26,technician,single,professional.course,no,yes,no,cellular,jun,wed,80,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +26,technician,single,professional.course,no,yes,no,cellular,jun,wed,102,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,214,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +36,management,single,university.degree,no,yes,no,cellular,jun,wed,300,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +29,admin.,married,high.school,no,no,no,cellular,jun,wed,200,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +42,self-employed,married,university.degree,no,yes,no,cellular,jun,wed,436,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +34,management,married,university.degree,no,yes,yes,telephone,jun,wed,192,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,management,married,university.degree,no,yes,no,cellular,jun,wed,97,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +50,admin.,single,basic.9y,no,yes,no,cellular,jun,wed,343,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +47,admin.,single,university.degree,no,yes,no,cellular,jun,wed,156,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +50,admin.,single,basic.9y,no,unknown,unknown,cellular,jun,wed,699,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +23,student,single,high.school,no,no,no,cellular,jun,wed,200,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +24,services,single,high.school,no,no,no,cellular,jun,wed,150,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +54,management,married,university.degree,no,yes,no,cellular,jun,wed,42,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,services,single,high.school,no,yes,yes,cellular,jun,wed,431,2,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +56,management,married,university.degree,no,yes,no,cellular,jun,wed,175,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,technician,single,university.degree,no,yes,yes,cellular,jun,wed,124,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,single,university.degree,no,no,no,cellular,jun,wed,656,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +54,admin.,married,university.degree,no,no,no,cellular,jun,wed,77,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +40,entrepreneur,married,basic.6y,no,no,no,cellular,jun,wed,837,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +29,services,single,high.school,no,no,no,cellular,jun,wed,725,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +27,blue-collar,single,basic.6y,no,yes,no,cellular,jun,wed,334,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +57,housemaid,divorced,high.school,no,no,yes,telephone,jun,wed,230,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +69,entrepreneur,married,high.school,no,no,no,cellular,jun,wed,144,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,single,university.degree,no,yes,no,cellular,jun,wed,617,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +69,entrepreneur,married,high.school,no,no,no,cellular,jun,wed,140,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +69,entrepreneur,married,high.school,no,yes,no,cellular,jun,wed,178,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +31,admin.,married,high.school,no,no,no,cellular,jun,wed,161,1,2,1,success,-2.9,92.963,-40.8,1.26,5076.2,no +29,technician,married,university.degree,no,no,no,cellular,jun,wed,150,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +61,admin.,married,university.degree,unknown,yes,no,cellular,jun,wed,1076,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +26,admin.,single,university.degree,no,yes,no,cellular,jun,wed,213,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +35,admin.,single,university.degree,no,yes,no,cellular,jun,wed,266,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +52,admin.,married,university.degree,no,yes,yes,cellular,jun,wed,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +26,student,single,university.degree,unknown,no,no,cellular,jun,wed,78,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +54,admin.,single,high.school,no,no,no,cellular,jun,wed,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,technician,single,university.degree,no,yes,yes,cellular,jun,wed,203,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +42,admin.,single,university.degree,no,unknown,unknown,telephone,jun,wed,34,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,technician,married,professional.course,no,no,no,cellular,jun,wed,595,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +33,management,divorced,university.degree,no,yes,no,cellular,jun,wed,63,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +21,student,single,high.school,no,no,no,cellular,jun,wed,295,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,management,divorced,university.degree,no,yes,no,cellular,jun,wed,187,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +56,management,married,university.degree,no,yes,no,telephone,jun,wed,218,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +35,admin.,married,university.degree,no,no,no,cellular,jun,thu,510,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +25,unemployed,married,high.school,no,no,no,cellular,jun,thu,125,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +55,unknown,married,university.degree,no,yes,no,cellular,jun,thu,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +62,unknown,married,professional.course,no,no,no,cellular,jun,thu,277,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +53,blue-collar,married,basic.6y,no,yes,no,cellular,jun,thu,328,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +51,unemployed,married,basic.6y,no,yes,no,cellular,jun,thu,262,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +51,unemployed,married,basic.6y,no,no,no,cellular,jun,thu,280,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +45,admin.,single,university.degree,no,yes,no,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +53,housemaid,married,high.school,no,yes,no,cellular,jun,thu,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,single,university.degree,no,yes,no,cellular,jun,thu,106,1,3,2,success,-2.9,92.963,-40.8,1.26,5076.2,no +29,technician,single,university.degree,no,no,no,cellular,jun,thu,176,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no +51,unemployed,married,basic.6y,no,yes,no,cellular,jun,thu,79,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,university.degree,no,yes,yes,cellular,jun,thu,449,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,married,basic.9y,no,yes,no,cellular,jun,thu,111,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +26,admin.,single,university.degree,no,no,yes,cellular,jun,thu,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +54,admin.,married,university.degree,no,yes,no,cellular,jun,thu,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +21,student,single,high.school,no,no,no,cellular,jun,thu,400,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,married,professional.course,no,yes,no,cellular,jun,thu,80,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,services,single,high.school,no,yes,no,cellular,jun,thu,217,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +42,admin.,married,university.degree,no,no,no,cellular,jun,thu,160,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,single,university.degree,no,no,no,cellular,jun,thu,144,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +24,admin.,single,high.school,no,no,no,cellular,jun,thu,352,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +21,services,single,professional.course,no,yes,yes,cellular,jun,thu,787,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,single,university.degree,no,no,no,cellular,jun,thu,323,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +50,technician,single,professional.course,no,yes,yes,cellular,jun,thu,78,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +50,technician,single,professional.course,no,yes,yes,cellular,jun,thu,160,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +22,student,single,high.school,no,yes,yes,cellular,jun,thu,221,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +25,services,single,high.school,no,yes,no,cellular,jun,thu,239,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +36,management,married,university.degree,no,yes,no,cellular,jun,thu,156,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +36,management,married,university.degree,no,no,no,cellular,jun,thu,194,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,admin.,married,university.degree,no,yes,no,cellular,jun,thu,105,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +36,technician,married,basic.9y,no,yes,no,cellular,jun,thu,390,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,married,university.degree,no,yes,no,cellular,jun,thu,96,2,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +25,student,single,university.degree,no,no,yes,cellular,jun,thu,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +31,admin.,married,university.degree,no,no,no,cellular,jun,thu,81,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +35,self-employed,married,university.degree,no,yes,no,cellular,jun,thu,269,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,admin.,married,university.degree,no,no,yes,cellular,jun,thu,327,3,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +28,admin.,single,high.school,no,yes,yes,cellular,jun,thu,296,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +53,housemaid,married,high.school,no,no,yes,cellular,jun,thu,147,1,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +35,admin.,married,university.degree,no,no,no,cellular,jun,thu,121,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,admin.,single,university.degree,no,yes,no,cellular,jun,thu,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +26,blue-collar,single,professional.course,no,yes,no,cellular,jun,thu,77,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +53,unknown,married,professional.course,no,no,no,cellular,jun,thu,217,2,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,no +30,technician,single,professional.course,no,no,no,cellular,jun,thu,137,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +26,student,single,university.degree,no,yes,no,cellular,jun,thu,112,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +34,technician,married,professional.course,no,no,no,cellular,jun,thu,218,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,self-employed,single,professional.course,no,yes,no,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,management,single,university.degree,no,yes,no,cellular,jun,thu,1161,1,4,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +38,technician,single,professional.course,no,yes,no,cellular,jun,thu,113,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +38,technician,single,professional.course,no,no,no,cellular,jun,thu,138,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,technician,single,university.degree,no,no,no,cellular,jun,thu,442,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +52,admin.,married,university.degree,no,yes,no,cellular,jun,thu,352,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,single,professional.course,no,unknown,unknown,cellular,jun,thu,246,1,7,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +42,services,divorced,high.school,no,yes,no,telephone,jun,thu,143,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,university.degree,no,no,no,telephone,jun,thu,247,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,services,divorced,high.school,no,yes,yes,cellular,jun,thu,437,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,admin.,married,university.degree,no,yes,no,cellular,jun,thu,216,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +53,blue-collar,married,basic.9y,no,no,yes,cellular,jun,thu,578,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +24,student,single,high.school,no,unknown,unknown,cellular,jun,thu,282,3,999,2,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +42,admin.,married,university.degree,no,yes,no,cellular,jun,thu,156,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,management,single,university.degree,no,yes,no,cellular,jun,thu,66,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +28,admin.,married,university.degree,no,yes,no,cellular,jun,thu,73,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +53,blue-collar,married,basic.6y,no,no,no,cellular,jun,thu,592,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +32,management,married,high.school,no,yes,yes,cellular,jun,thu,119,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +35,admin.,married,university.degree,no,no,yes,telephone,jun,thu,125,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,jun,thu,114,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +22,student,single,high.school,no,no,yes,telephone,jun,thu,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +34,management,married,university.degree,no,yes,no,telephone,jun,thu,111,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +50,blue-collar,married,basic.9y,no,yes,no,cellular,jun,thu,117,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,admin.,single,university.degree,no,unknown,unknown,cellular,jun,thu,101,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +31,admin.,single,high.school,no,unknown,unknown,cellular,jun,thu,105,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +34,admin.,single,high.school,no,no,yes,cellular,jun,thu,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +31,management,single,university.degree,no,no,no,cellular,jun,thu,1094,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +52,blue-collar,single,basic.9y,no,no,no,cellular,jun,fri,174,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +44,admin.,married,university.degree,no,yes,no,cellular,jun,fri,133,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +29,technician,married,high.school,no,no,no,cellular,jun,fri,397,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +27,blue-collar,married,high.school,no,yes,no,cellular,jun,fri,264,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +46,housemaid,single,university.degree,no,yes,yes,cellular,jun,fri,324,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +45,admin.,married,unknown,no,no,no,cellular,jun,fri,155,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +49,admin.,divorced,high.school,no,yes,no,cellular,jun,fri,169,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +30,admin.,single,university.degree,no,no,no,cellular,jun,fri,275,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +30,admin.,single,university.degree,no,no,yes,cellular,jun,fri,199,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +32,admin.,single,university.degree,no,no,no,cellular,jun,fri,255,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +28,admin.,single,university.degree,no,yes,no,cellular,jun,fri,232,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +32,admin.,single,university.degree,no,no,no,cellular,jun,fri,462,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,136,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +56,admin.,married,basic.9y,no,yes,no,cellular,jun,fri,146,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +24,admin.,single,university.degree,no,no,no,cellular,jun,fri,255,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +45,entrepreneur,married,university.degree,no,yes,no,cellular,jun,fri,247,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +24,student,single,high.school,no,yes,no,telephone,jun,fri,109,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +50,entrepreneur,married,basic.9y,no,no,no,telephone,jun,fri,227,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +27,admin.,single,university.degree,no,no,no,cellular,jun,fri,398,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +51,technician,married,basic.9y,no,no,no,telephone,jun,fri,302,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +28,technician,single,professional.course,no,yes,yes,cellular,jun,fri,149,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +25,student,married,university.degree,no,no,no,cellular,jun,fri,191,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +49,unemployed,married,professional.course,no,no,no,cellular,jun,fri,317,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +59,admin.,married,university.degree,unknown,yes,no,cellular,jun,fri,1543,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +31,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,207,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +21,student,single,university.degree,no,no,no,cellular,jun,fri,493,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +51,technician,single,university.degree,no,yes,no,cellular,jun,fri,509,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,77,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +55,housemaid,married,unknown,no,no,no,cellular,jun,fri,133,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +32,technician,single,professional.course,no,yes,no,cellular,jun,fri,329,1,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no +51,technician,single,university.degree,no,no,no,cellular,jun,fri,657,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +29,technician,married,high.school,no,yes,no,cellular,jun,fri,365,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +28,admin.,single,university.degree,no,yes,no,cellular,jun,fri,188,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +46,technician,married,professional.course,no,no,no,telephone,jun,fri,215,1,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +37,admin.,married,university.degree,no,yes,no,telephone,jun,fri,145,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +51,admin.,single,university.degree,no,no,no,cellular,jun,fri,159,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +37,student,single,unknown,no,no,no,cellular,jun,fri,99,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +31,technician,married,university.degree,no,yes,no,cellular,jun,fri,276,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +29,admin.,single,high.school,no,yes,no,cellular,jun,fri,213,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +37,student,single,unknown,no,no,yes,cellular,jun,fri,604,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +21,blue-collar,single,basic.4y,no,no,no,telephone,jun,fri,153,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +48,admin.,married,university.degree,no,yes,no,telephone,jun,fri,522,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +26,admin.,single,high.school,no,no,no,cellular,jun,fri,76,2,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +31,unemployed,divorced,unknown,no,yes,no,cellular,jun,fri,227,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,jun,fri,471,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +30,admin.,single,university.degree,no,no,no,cellular,jun,fri,92,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +27,admin.,single,university.degree,no,yes,no,telephone,jun,fri,329,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +30,admin.,married,unknown,no,yes,no,cellular,jun,fri,207,2,4,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +51,admin.,single,university.degree,no,yes,yes,cellular,jun,fri,263,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +25,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,57,2,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +28,student,single,high.school,no,yes,no,cellular,jun,fri,577,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +25,technician,single,university.degree,no,yes,no,cellular,jun,fri,271,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no +54,admin.,married,high.school,no,no,no,cellular,jun,fri,455,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +25,technician,single,basic.9y,no,yes,no,cellular,jun,fri,103,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +52,admin.,married,university.degree,no,yes,no,cellular,jun,fri,333,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +35,technician,married,professional.course,no,yes,no,telephone,jun,fri,366,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +20,student,single,high.school,no,yes,no,cellular,jun,fri,201,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +30,technician,single,university.degree,no,yes,no,cellular,jun,fri,166,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +29,services,married,university.degree,no,no,yes,cellular,jun,fri,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +32,admin.,single,university.degree,no,yes,no,cellular,jun,fri,58,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +34,admin.,single,high.school,no,no,no,cellular,jun,fri,548,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +29,student,single,professional.course,no,no,no,cellular,jun,fri,95,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +27,admin.,single,university.degree,no,no,no,cellular,jun,fri,96,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +45,admin.,married,unknown,no,no,no,cellular,jun,fri,438,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +30,self-employed,married,university.degree,no,yes,no,cellular,jun,fri,138,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +31,management,married,university.degree,no,no,no,telephone,jun,fri,614,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +52,management,married,university.degree,no,no,no,telephone,jun,fri,303,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +21,services,single,high.school,no,no,no,cellular,jun,fri,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +53,admin.,single,university.degree,no,yes,no,cellular,jun,fri,304,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +36,technician,single,professional.course,no,no,no,cellular,jun,fri,146,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +36,technician,single,professional.course,no,yes,no,cellular,jun,fri,126,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +30,management,single,university.degree,no,no,yes,cellular,jun,fri,244,7,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +29,technician,married,high.school,no,no,no,cellular,jun,fri,157,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +51,technician,single,university.degree,no,no,no,cellular,jun,fri,151,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +25,technician,single,basic.9y,no,no,no,telephone,jun,fri,800,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +26,admin.,single,high.school,no,yes,yes,cellular,jun,fri,200,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +33,admin.,single,university.degree,no,no,no,telephone,jun,fri,113,1,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +25,admin.,divorced,university.degree,no,no,no,cellular,jun,mon,143,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +52,technician,married,professional.course,no,no,no,cellular,jun,mon,130,5,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +45,services,single,unknown,no,no,no,cellular,jun,mon,58,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +29,admin.,single,university.degree,no,yes,no,cellular,jun,mon,97,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +36,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,86,1,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +36,management,married,unknown,no,no,no,cellular,jun,mon,98,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +32,management,single,university.degree,no,no,no,cellular,jun,mon,257,2,3,1,success,-2.9,92.963,-40.8,1.281,5076.2,yes +32,management,single,university.degree,no,no,no,cellular,jun,mon,152,2,3,1,success,-2.9,92.963,-40.8,1.281,5076.2,no +28,services,single,basic.9y,no,yes,yes,cellular,jun,mon,252,5,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +27,blue-collar,single,high.school,no,yes,no,cellular,jun,mon,148,2,4,1,success,-2.9,92.963,-40.8,1.281,5076.2,yes +53,retired,single,basic.4y,no,yes,no,cellular,jun,mon,107,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +32,student,single,university.degree,no,yes,no,cellular,jun,mon,197,2,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,no +31,admin.,single,university.degree,no,no,no,cellular,jun,mon,127,3,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,no +27,admin.,single,university.degree,no,no,no,cellular,jun,mon,138,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +43,blue-collar,married,basic.6y,no,yes,no,cellular,jun,mon,458,6,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +25,student,single,unknown,no,no,no,cellular,jun,mon,301,3,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +33,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +22,blue-collar,single,basic.9y,no,yes,no,cellular,jun,mon,84,2,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,no +47,admin.,single,university.degree,no,yes,no,cellular,jun,mon,243,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +36,management,married,university.degree,no,no,no,cellular,jun,mon,200,4,999,0,nonexistent,-2.9,92.963,-40.8,1.281,5076.2,yes +43,blue-collar,married,basic.6y,no,yes,no,cellular,jun,mon,131,4,999,1,failure,-2.9,92.963,-40.8,1.281,5076.2,yes +31,services,married,unknown,no,yes,no,cellular,jun,tue,98,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +25,admin.,single,university.degree,no,yes,yes,cellular,jun,tue,431,3,4,1,success,-2.9,92.963,-40.8,1.286,5076.2,no +30,self-employed,single,university.degree,no,yes,yes,cellular,jun,tue,106,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +44,self-employed,married,university.degree,no,no,no,cellular,jun,tue,234,2,3,1,success,-2.9,92.963,-40.8,1.286,5076.2,yes +29,admin.,single,high.school,no,yes,yes,cellular,jun,tue,100,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +57,management,married,university.degree,no,yes,no,cellular,jun,tue,337,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +22,admin.,single,university.degree,no,unknown,unknown,cellular,jun,tue,835,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +35,services,single,university.degree,no,unknown,unknown,cellular,jun,tue,67,2,999,1,failure,-2.9,92.963,-40.8,1.286,5076.2,no +49,services,married,high.school,no,no,no,cellular,jun,tue,239,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes +29,admin.,single,university.degree,no,no,no,cellular,jun,tue,160,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes +38,technician,married,professional.course,no,yes,no,cellular,jun,tue,993,4,3,1,success,-2.9,92.963,-40.8,1.286,5076.2,yes +48,services,married,high.school,no,yes,yes,cellular,jun,tue,217,3,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +25,unemployed,married,university.degree,no,no,no,cellular,jun,tue,529,2,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes +32,entrepreneur,married,basic.4y,no,yes,no,cellular,jun,tue,183,2,999,1,failure,-2.9,92.963,-40.8,1.286,5076.2,yes +27,student,single,unknown,no,yes,no,cellular,jun,tue,103,4,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,no +25,admin.,single,unknown,no,no,no,telephone,jun,tue,221,7,999,0,nonexistent,-2.9,92.963,-40.8,1.286,5076.2,yes +25,self-employed,single,university.degree,no,no,no,cellular,jun,fri,105,4,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,no +22,technician,single,university.degree,no,yes,no,cellular,jun,fri,127,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +33,student,single,unknown,no,no,no,telephone,jun,fri,137,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +54,blue-collar,married,basic.9y,no,no,no,cellular,jun,fri,258,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +54,blue-collar,married,basic.9y,no,yes,no,cellular,jun,fri,239,2,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,yes +26,management,single,university.degree,no,yes,no,cellular,jun,fri,230,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +55,retired,married,high.school,no,yes,yes,cellular,jun,fri,186,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +25,self-employed,single,university.degree,no,yes,no,cellular,jun,fri,382,5,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +26,self-employed,single,university.degree,no,yes,no,cellular,jun,fri,175,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +22,self-employed,single,university.degree,no,yes,yes,cellular,jun,fri,126,6,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,yes +22,technician,single,university.degree,no,yes,no,cellular,jun,fri,163,4,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,yes +50,admin.,married,university.degree,no,yes,no,cellular,jun,fri,95,7,999,1,failure,-2.9,92.963,-40.8,1.268,5076.2,yes +44,blue-collar,married,professional.course,no,yes,no,cellular,jun,fri,336,3,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no +55,retired,married,high.school,no,yes,no,cellular,jun,fri,136,3,3,1,success,-2.9,92.963,-40.8,1.268,5076.2,no +52,entrepreneur,married,high.school,no,yes,no,cellular,jun,fri,177,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +60,retired,married,basic.6y,no,unknown,unknown,cellular,jun,fri,110,2,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +33,management,married,university.degree,no,yes,no,cellular,jun,fri,139,5,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +31,admin.,single,high.school,no,no,no,cellular,jun,fri,39,3,999,0,nonexistent,-2.9,92.963,-40.8,1.268,5076.2,no +25,admin.,single,university.degree,no,no,no,telephone,jun,mon,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +59,retired,married,basic.4y,no,yes,no,telephone,jun,mon,263,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +64,retired,married,unknown,no,yes,no,cellular,jun,mon,294,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +32,management,married,university.degree,no,yes,no,cellular,jun,mon,54,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +33,unemployed,married,university.degree,no,yes,no,cellular,jun,mon,579,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +28,admin.,single,high.school,no,no,no,cellular,jun,mon,491,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,technician,divorced,university.degree,no,yes,no,cellular,jun,mon,532,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +40,unemployed,married,basic.9y,no,no,no,cellular,jun,mon,143,3,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +33,blue-collar,divorced,unknown,no,no,no,cellular,jun,mon,84,5,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +52,technician,married,professional.course,no,yes,no,cellular,jun,mon,268,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +20,technician,single,unknown,no,no,no,cellular,jun,mon,441,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,admin.,married,high.school,no,no,no,cellular,jun,mon,439,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +44,services,married,unknown,no,no,yes,cellular,jun,mon,151,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +57,retired,married,basic.4y,no,no,yes,cellular,jun,mon,292,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +35,entrepreneur,divorced,university.degree,no,yes,no,cellular,jun,mon,92,2,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +41,admin.,single,university.degree,no,yes,no,cellular,jun,mon,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +28,admin.,single,university.degree,no,no,no,cellular,jun,mon,114,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +22,services,single,high.school,no,yes,no,cellular,jun,mon,147,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +22,services,single,high.school,no,yes,yes,cellular,jun,mon,181,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +22,student,single,unknown,no,yes,no,cellular,jun,mon,139,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +35,entrepreneur,divorced,university.degree,no,yes,no,telephone,jun,mon,351,6,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +46,admin.,divorced,high.school,no,yes,no,cellular,jun,mon,372,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +34,admin.,married,high.school,no,no,no,cellular,jun,mon,135,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,admin.,married,university.degree,no,yes,no,cellular,jun,mon,288,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +23,admin.,single,high.school,no,no,no,cellular,jun,mon,92,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +36,self-employed,single,university.degree,no,no,no,cellular,jun,mon,177,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +27,services,single,university.degree,no,yes,no,cellular,jun,mon,41,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,high.school,no,yes,no,cellular,jun,mon,415,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +29,admin.,single,high.school,no,no,yes,cellular,jun,mon,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +31,blue-collar,married,university.degree,no,yes,no,cellular,jun,mon,382,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +34,housemaid,single,basic.4y,no,no,no,cellular,jun,mon,157,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,technician,single,basic.9y,no,no,no,cellular,jun,mon,24,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +74,retired,married,basic.4y,no,yes,no,cellular,jun,mon,257,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +32,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,104,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +32,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +57,management,married,unknown,no,no,no,cellular,jun,mon,112,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +30,services,single,high.school,no,yes,no,cellular,jun,mon,181,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +34,blue-collar,married,basic.4y,no,yes,no,cellular,jun,mon,88,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +57,unemployed,married,basic.4y,no,yes,no,cellular,jun,mon,284,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +57,unemployed,married,basic.4y,no,no,no,cellular,jun,mon,651,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +24,student,single,unknown,no,yes,no,cellular,jun,mon,220,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +24,blue-collar,single,unknown,no,no,yes,cellular,jun,mon,188,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +41,unemployed,single,basic.4y,no,no,no,cellular,jun,mon,170,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,married,high.school,no,no,no,cellular,jun,mon,155,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,yes +24,admin.,single,university.degree,no,yes,yes,cellular,jun,mon,74,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,admin.,single,high.school,no,no,no,cellular,jun,mon,95,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +28,admin.,single,university.degree,no,yes,no,cellular,jun,mon,333,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +52,self-employed,married,university.degree,no,yes,no,cellular,jun,mon,322,1,3,1,success,-2.9,92.963,-40.8,1.26,5076.2,yes +22,services,single,high.school,no,yes,no,telephone,jun,mon,94,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +23,admin.,single,university.degree,no,no,no,cellular,jun,mon,60,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +26,technician,single,professional.course,no,no,no,cellular,jun,mon,175,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +43,admin.,married,university.degree,no,no,no,cellular,jun,mon,108,1,999,1,failure,-2.9,92.963,-40.8,1.26,5076.2,no +32,technician,married,university.degree,no,no,no,cellular,jun,mon,60,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +30,technician,married,university.degree,no,no,no,cellular,jun,mon,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +29,admin.,single,high.school,no,yes,yes,cellular,jun,mon,89,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +34,blue-collar,married,basic.4y,no,yes,no,cellular,jun,mon,75,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,technician,single,professional.course,no,yes,no,cellular,jun,mon,29,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +42,management,single,university.degree,no,unknown,unknown,cellular,jun,mon,83,4,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +26,admin.,married,high.school,no,no,no,cellular,jun,mon,79,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +21,admin.,single,high.school,no,no,no,cellular,jun,mon,173,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +22,student,single,unknown,no,no,no,cellular,jun,mon,77,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +38,admin.,single,university.degree,no,yes,no,cellular,jun,mon,318,3,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +25,admin.,single,professional.course,no,yes,no,cellular,jun,mon,205,2,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,no +37,technician,married,professional.course,no,no,no,cellular,jun,mon,129,1,999,0,nonexistent,-2.9,92.963,-40.8,1.26,5076.2,yes +49,unemployed,married,professional.course,no,yes,no,cellular,jun,tue,298,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +35,management,married,university.degree,no,no,no,cellular,jun,tue,136,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +53,housemaid,married,basic.4y,no,no,yes,cellular,jun,tue,263,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +29,services,single,professional.course,no,yes,no,telephone,jun,tue,161,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +53,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,245,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +57,admin.,married,university.degree,no,no,no,cellular,jun,tue,214,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +56,admin.,married,university.degree,no,yes,no,cellular,jun,tue,202,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +48,housemaid,married,high.school,no,no,no,cellular,jun,tue,399,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +40,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,355,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +43,admin.,married,university.degree,no,yes,no,cellular,jun,tue,281,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,jun,tue,250,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +35,management,married,university.degree,no,yes,no,cellular,jun,tue,66,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +50,self-employed,married,professional.course,no,yes,no,cellular,jun,tue,102,1,999,1,failure,-2.9,92.963,-40.8,1.252,5076.2,no +25,admin.,married,university.degree,no,yes,no,telephone,jun,tue,64,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +40,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,459,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +46,admin.,single,university.degree,no,no,no,cellular,jun,tue,119,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +49,unemployed,married,professional.course,no,no,no,cellular,jun,tue,229,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +43,admin.,married,university.degree,no,yes,no,telephone,jun,tue,30,1,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +58,retired,married,basic.4y,no,yes,no,cellular,jun,tue,79,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +55,management,married,university.degree,no,yes,no,cellular,jun,tue,114,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +44,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,276,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +31,technician,married,professional.course,no,yes,no,cellular,jun,tue,404,3,11,2,failure,-2.9,92.963,-40.8,1.252,5076.2,no +57,retired,married,basic.4y,no,yes,yes,cellular,jun,tue,162,3,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,yes +36,technician,single,professional.course,no,yes,no,cellular,jun,tue,569,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +44,unemployed,single,basic.4y,no,yes,no,telephone,jun,tue,55,2,999,0,nonexistent,-2.9,92.963,-40.8,1.252,5076.2,no +25,technician,married,professional.course,no,yes,no,cellular,jun,tue,551,4,999,1,failure,-2.9,92.963,-40.8,1.252,5076.2,yes +24,admin.,single,university.degree,no,yes,no,cellular,jun,wed,65,3,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no +32,admin.,single,university.degree,no,yes,yes,cellular,jun,wed,49,2,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no +26,self-employed,single,university.degree,no,yes,no,cellular,jun,wed,181,2,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no +40,self-employed,single,university.degree,no,no,yes,cellular,jun,wed,54,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no +29,unemployed,single,basic.4y,no,no,yes,cellular,jun,wed,243,3,3,2,success,-2.9,92.963,-40.8,1.244,5076.2,yes +28,student,single,unknown,no,no,no,cellular,jun,wed,208,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no +24,admin.,single,university.degree,no,yes,no,cellular,jun,wed,151,7,999,1,failure,-2.9,92.963,-40.8,1.244,5076.2,no +32,services,married,professional.course,no,no,no,cellular,jun,wed,94,6,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no +34,admin.,married,university.degree,no,no,no,telephone,jun,wed,84,4,999,0,nonexistent,-2.9,92.963,-40.8,1.244,5076.2,no +25,student,single,university.degree,no,yes,yes,cellular,jun,thu,393,2,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes +56,self-employed,married,university.degree,no,yes,no,telephone,jun,thu,390,15,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no +29,admin.,single,university.degree,no,no,yes,cellular,jun,thu,813,4,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes +56,self-employed,married,university.degree,no,yes,no,cellular,jun,thu,88,3,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no +56,self-employed,married,university.degree,no,no,no,cellular,jun,thu,754,3,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,no +53,admin.,married,university.degree,no,no,yes,telephone,jun,thu,1603,10,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes +27,entrepreneur,single,university.degree,no,no,no,cellular,jun,thu,133,2,999,1,failure,-2.9,92.963,-40.8,1.235,5076.2,no +49,admin.,married,university.degree,no,no,no,cellular,jun,thu,259,2,999,0,nonexistent,-2.9,92.963,-40.8,1.235,5076.2,yes +25,student,single,university.degree,no,no,yes,telephone,jun,thu,280,6,999,1,failure,-2.9,92.963,-40.8,1.235,5076.2,yes +32,technician,married,high.school,no,no,yes,cellular,jun,fri,112,4,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,no +47,technician,married,professional.course,no,yes,no,cellular,jun,fri,63,5,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,no +32,technician,married,high.school,no,yes,no,telephone,jun,fri,293,5,999,1,failure,-2.9,92.963,-40.8,1.224,5076.2,yes +39,student,single,unknown,no,yes,no,cellular,jun,fri,474,3,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,yes +31,technician,single,university.degree,no,yes,yes,cellular,jun,fri,241,5,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no +38,services,married,basic.9y,no,no,no,cellular,jun,fri,140,2,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no +38,services,married,basic.9y,no,no,yes,telephone,jun,fri,177,2,999,0,nonexistent,-2.9,92.963,-40.8,1.224,5076.2,no +40,management,married,university.degree,no,yes,no,cellular,jun,mon,295,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,yes +25,admin.,married,university.degree,no,yes,no,cellular,jun,mon,457,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +55,admin.,married,high.school,no,yes,no,cellular,jun,mon,177,5,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,no +58,retired,married,professional.course,no,yes,yes,telephone,jun,mon,100,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +48,admin.,married,university.degree,no,yes,no,cellular,jun,mon,136,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,no +60,retired,divorced,basic.4y,no,no,no,cellular,jun,mon,111,5,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +55,blue-collar,married,basic.9y,no,no,no,cellular,jun,mon,271,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +47,housemaid,single,professional.course,no,yes,no,cellular,jun,mon,67,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,no +40,blue-collar,married,professional.course,no,no,no,telephone,jun,mon,883,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,yes +53,admin.,married,university.degree,no,no,yes,cellular,jun,mon,115,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +50,admin.,married,university.degree,no,no,no,cellular,jun,mon,269,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,yes +42,admin.,single,university.degree,no,yes,no,cellular,jun,mon,570,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +41,technician,divorced,university.degree,no,no,no,cellular,jun,mon,238,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +32,technician,single,professional.course,no,no,no,cellular,jun,mon,524,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +32,technician,single,professional.course,no,yes,yes,cellular,jun,mon,187,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +49,technician,single,professional.course,no,yes,no,cellular,jun,mon,68,1,3,1,success,-2.9,92.963,-40.8,1.215,5076.2,no +45,admin.,married,basic.9y,no,yes,no,telephone,jun,mon,60,2,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +39,admin.,married,university.degree,no,no,no,cellular,jun,mon,208,1,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +39,admin.,married,university.degree,no,no,no,cellular,jun,mon,459,1,999,1,failure,-2.9,92.963,-40.8,1.215,5076.2,yes +51,admin.,married,university.degree,no,no,no,telephone,jun,mon,295,3,999,0,nonexistent,-2.9,92.963,-40.8,1.215,5076.2,no +24,student,single,unknown,no,yes,yes,cellular,jun,tue,124,1,999,1,failure,-2.9,92.963,-40.8,1.206,5076.2,no +36,admin.,single,high.school,no,yes,no,cellular,jun,tue,248,1,999,1,failure,-2.9,92.963,-40.8,1.206,5076.2,no +45,technician,married,professional.course,no,yes,yes,cellular,jun,tue,191,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no +30,student,single,unknown,no,no,no,cellular,jun,tue,205,3,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no +36,services,married,university.degree,no,no,yes,cellular,jun,tue,255,2,3,1,success,-2.9,92.963,-40.8,1.206,5076.2,yes +47,blue-collar,married,professional.course,no,no,yes,cellular,jun,tue,971,2,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no +45,self-employed,single,basic.9y,no,yes,no,cellular,jun,tue,201,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no +24,technician,single,professional.course,no,no,no,cellular,jun,tue,227,1,4,1,success,-2.9,92.963,-40.8,1.206,5076.2,yes +47,admin.,married,university.degree,no,yes,yes,cellular,jun,tue,140,1,999,0,nonexistent,-2.9,92.963,-40.8,1.206,5076.2,no +38,technician,single,university.degree,no,yes,no,cellular,jun,tue,128,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +45,technician,divorced,university.degree,no,no,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +42,services,married,university.degree,no,unknown,unknown,cellular,jun,tue,122,1,999,1,failure,-2.9,92.963,-40.8,1.099,5076.2,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,jun,tue,108,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +38,admin.,single,university.degree,no,no,no,cellular,jun,tue,103,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +38,admin.,single,university.degree,no,yes,no,telephone,jun,tue,42,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +36,entrepreneur,single,basic.4y,no,no,no,cellular,jun,tue,185,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes +36,entrepreneur,single,basic.4y,no,no,no,cellular,jun,tue,166,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +31,blue-collar,single,high.school,no,yes,no,cellular,jun,tue,160,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,no +64,management,married,university.degree,no,no,no,cellular,jun,tue,205,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes +33,housemaid,married,university.degree,no,no,no,cellular,jun,tue,224,1,999,0,nonexistent,-2.9,92.963,-40.8,1.099,5076.2,yes +50,admin.,married,high.school,no,no,no,cellular,jul,wed,140,3,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes +51,retired,married,basic.4y,no,no,no,cellular,jul,wed,1057,1,13,1,success,-2.9,92.469,-33.6,1.085,5076.2,no +56,management,married,professional.course,no,no,no,cellular,jul,wed,291,2,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,no +59,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,92,1,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,no +55,management,married,university.degree,no,no,yes,cellular,jul,wed,260,2,3,1,success,-2.9,92.469,-33.6,1.085,5076.2,yes +51,admin.,single,high.school,no,yes,no,telephone,jul,wed,372,1,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes +61,admin.,married,university.degree,no,yes,yes,telephone,jul,wed,261,4,999,0,nonexistent,-2.9,92.469,-33.6,1.085,5076.2,yes +24,self-employed,single,unknown,no,no,yes,cellular,jul,thu,342,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +51,housemaid,married,basic.4y,no,yes,yes,cellular,jul,thu,97,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no +34,admin.,married,university.degree,no,yes,no,telephone,jul,thu,248,3,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +45,admin.,married,university.degree,no,no,no,cellular,jul,thu,74,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +45,admin.,married,university.degree,no,no,no,cellular,jul,thu,252,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +45,admin.,married,university.degree,no,no,no,cellular,jul,thu,252,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +50,admin.,married,university.degree,no,no,no,cellular,jul,thu,356,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +60,admin.,married,university.degree,no,yes,no,telephone,jul,thu,363,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +59,blue-collar,divorced,basic.4y,no,yes,no,cellular,jul,thu,218,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +59,blue-collar,divorced,basic.4y,no,no,no,cellular,jul,thu,367,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +58,retired,married,professional.course,no,no,yes,cellular,jul,thu,82,1,3,1,success,-2.9,92.469,-33.6,1.072,5076.2,no +63,retired,divorced,university.degree,no,yes,yes,cellular,jul,thu,146,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no +51,technician,married,professional.course,no,no,no,cellular,jul,thu,566,1,13,1,success,-2.9,92.469,-33.6,1.072,5076.2,yes +46,admin.,single,university.degree,no,yes,no,cellular,jul,thu,309,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +46,entrepreneur,married,university.degree,no,yes,no,cellular,jul,thu,396,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +43,technician,single,university.degree,no,no,no,cellular,jul,thu,109,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +51,technician,married,university.degree,no,yes,no,cellular,jul,thu,226,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +54,management,married,unknown,no,yes,no,cellular,jul,thu,154,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no +56,entrepreneur,married,unknown,no,yes,no,cellular,jul,thu,129,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +63,retired,divorced,university.degree,no,no,yes,cellular,jul,thu,317,1,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no +60,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,229,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +38,technician,single,university.degree,no,yes,no,cellular,jul,thu,98,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +47,housemaid,married,basic.6y,unknown,no,yes,cellular,jul,thu,148,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +58,technician,married,university.degree,unknown,yes,no,cellular,jul,thu,160,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +32,self-employed,single,university.degree,no,no,no,cellular,jul,thu,590,1,999,2,failure,-2.9,92.469,-33.6,1.072,5076.2,no +32,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,940,1,14,1,success,-2.9,92.469,-33.6,1.072,5076.2,yes +36,unemployed,married,basic.9y,no,no,no,cellular,jul,thu,153,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,no +29,technician,married,professional.course,no,no,no,cellular,jul,thu,86,2,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,no +56,entrepreneur,married,unknown,no,yes,no,cellular,jul,thu,478,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +32,self-employed,single,university.degree,no,no,no,cellular,jul,thu,276,2,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +50,admin.,married,university.degree,no,yes,no,cellular,jul,thu,567,5,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +60,housemaid,married,basic.4y,no,yes,no,cellular,jul,thu,503,2,5,2,success,-2.9,92.469,-33.6,1.072,5076.2,yes +51,technician,married,professional.course,no,yes,no,cellular,jul,thu,135,2,999,1,failure,-2.9,92.469,-33.6,1.072,5076.2,yes +46,admin.,divorced,high.school,no,yes,no,telephone,jul,thu,176,1,999,0,nonexistent,-2.9,92.469,-33.6,1.072,5076.2,yes +57,retired,divorced,basic.9y,no,yes,no,cellular,jul,fri,247,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +56,admin.,divorced,unknown,no,yes,no,telephone,jul,fri,353,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +21,unemployed,single,high.school,no,yes,no,cellular,jul,fri,203,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +29,admin.,single,high.school,no,no,no,cellular,jul,fri,446,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +36,admin.,married,high.school,no,yes,no,cellular,jul,fri,122,1,999,1,failure,-2.9,92.469,-33.6,1.059,5076.2,no +47,blue-collar,married,professional.course,no,yes,no,cellular,jul,fri,175,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +29,technician,single,university.degree,no,no,no,cellular,jul,fri,1007,6,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +57,unknown,married,basic.6y,no,no,no,cellular,jul,fri,64,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +48,admin.,divorced,university.degree,no,yes,no,cellular,jul,fri,409,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +35,admin.,single,high.school,no,yes,no,cellular,jul,fri,147,2,14,2,failure,-2.9,92.469,-33.6,1.059,5076.2,no +56,retired,married,high.school,no,yes,no,cellular,jul,fri,603,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +30,admin.,married,university.degree,no,no,no,cellular,jul,fri,438,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +57,retired,divorced,basic.9y,no,no,no,cellular,jul,fri,897,3,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +53,technician,married,high.school,no,yes,no,cellular,jul,fri,531,3,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,jul,fri,704,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +29,technician,single,university.degree,no,yes,no,cellular,jul,fri,473,1,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +47,technician,married,professional.course,no,no,no,telephone,jul,fri,320,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +28,admin.,single,university.degree,no,yes,no,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +75,retired,married,basic.4y,no,yes,yes,cellular,jul,fri,67,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +58,admin.,married,high.school,no,yes,no,cellular,jul,fri,318,4,999,1,failure,-2.9,92.469,-33.6,1.059,5076.2,no +34,admin.,married,high.school,no,no,no,cellular,jul,fri,59,7,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +35,technician,married,university.degree,no,yes,no,cellular,jul,fri,236,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,no +56,retired,married,high.school,no,yes,yes,cellular,jul,fri,308,2,999,0,nonexistent,-2.9,92.469,-33.6,1.059,5076.2,yes +46,admin.,single,university.degree,no,yes,no,cellular,jul,mon,413,5,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no +43,entrepreneur,single,unknown,no,no,no,cellular,jul,mon,96,3,999,1,failure,-2.9,92.469,-33.6,1.048,5076.2,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,mon,202,4,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes +25,student,single,unknown,no,no,no,telephone,jul,mon,116,3,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no +30,admin.,single,university.degree,no,no,yes,cellular,jul,mon,207,2,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,no +23,student,single,high.school,no,no,no,cellular,jul,mon,270,3,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes +37,admin.,married,university.degree,no,yes,no,cellular,jul,mon,227,2,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes +28,services,single,university.degree,no,yes,no,cellular,jul,mon,316,4,999,0,nonexistent,-2.9,92.469,-33.6,1.048,5076.2,yes +53,admin.,married,high.school,no,no,no,cellular,jul,tue,964,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,yes +33,management,married,university.degree,no,yes,no,cellular,jul,tue,429,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +41,admin.,married,university.degree,no,yes,no,cellular,jul,tue,826,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no +38,admin.,married,university.degree,no,yes,no,cellular,jul,tue,422,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +42,admin.,divorced,university.degree,no,no,no,cellular,jul,tue,94,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +37,admin.,married,high.school,no,no,no,cellular,jul,tue,106,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +25,student,single,unknown,unknown,yes,no,cellular,jul,tue,371,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +50,admin.,married,high.school,no,yes,no,cellular,jul,tue,98,2,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no +46,admin.,divorced,high.school,no,unknown,unknown,cellular,jul,tue,297,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +30,self-employed,single,university.degree,no,yes,no,cellular,jul,tue,185,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +26,services,single,high.school,no,yes,no,cellular,jul,tue,407,1,13,1,success,-2.9,92.469,-33.6,1.044,5076.2,yes +31,services,single,university.degree,no,no,no,telephone,jul,tue,82,2,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no +25,student,single,high.school,no,yes,no,cellular,jul,tue,112,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,no +29,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,611,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +26,unemployed,single,high.school,no,yes,no,cellular,jul,tue,445,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +23,student,single,high.school,no,yes,no,cellular,jul,tue,682,2,13,1,success,-2.9,92.469,-33.6,1.044,5076.2,yes +26,services,single,high.school,no,no,no,cellular,jul,tue,180,2,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +46,admin.,divorced,high.school,no,no,no,cellular,jul,tue,282,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +45,technician,married,high.school,no,no,no,cellular,jul,tue,58,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +26,services,single,high.school,no,yes,no,cellular,jul,tue,98,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +23,student,single,high.school,no,no,no,cellular,jul,tue,370,1,999,1,failure,-2.9,92.469,-33.6,1.044,5076.2,yes +42,blue-collar,married,high.school,no,yes,no,cellular,jul,tue,148,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +31,technician,married,university.degree,no,no,no,cellular,jul,tue,404,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +38,technician,single,university.degree,no,yes,no,cellular,jul,tue,321,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +26,student,single,high.school,no,yes,no,cellular,jul,tue,432,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +27,admin.,single,unknown,no,yes,no,telephone,jul,tue,876,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +25,student,single,unknown,no,no,no,cellular,jul,tue,170,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +33,admin.,married,high.school,no,no,no,telephone,jul,tue,257,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +27,admin.,single,university.degree,no,no,no,cellular,jul,tue,207,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +40,admin.,married,university.degree,no,yes,no,cellular,jul,tue,243,1,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,yes +44,technician,single,professional.course,no,yes,no,cellular,jul,tue,112,2,999,0,nonexistent,-2.9,92.469,-33.6,1.044,5076.2,no +31,admin.,single,high.school,no,yes,no,cellular,jul,wed,167,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,yes +42,technician,married,university.degree,no,no,no,cellular,jul,wed,361,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,yes +47,management,married,university.degree,no,yes,no,cellular,jul,wed,123,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +42,admin.,single,university.degree,no,no,no,cellular,jul,wed,268,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +29,technician,married,university.degree,no,yes,no,cellular,jul,wed,896,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +68,retired,married,basic.4y,no,yes,no,cellular,jul,wed,665,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +50,technician,married,professional.course,no,no,no,cellular,jul,wed,87,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +45,admin.,married,university.degree,no,no,no,cellular,jul,wed,194,1,13,1,success,-2.9,92.469,-33.6,1.029,5076.2,no +24,student,single,high.school,no,no,no,cellular,jul,wed,115,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no +41,admin.,married,university.degree,no,yes,no,cellular,jul,wed,181,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no +44,technician,married,professional.course,no,yes,no,cellular,jul,wed,188,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +20,student,single,high.school,no,no,no,cellular,jul,wed,625,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no +45,admin.,married,university.degree,no,yes,no,cellular,jul,wed,106,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +20,student,single,high.school,no,no,no,cellular,jul,wed,74,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +20,student,single,high.school,no,yes,no,cellular,jul,wed,349,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +28,unemployed,single,university.degree,no,unknown,unknown,telephone,jul,wed,167,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +36,technician,single,high.school,no,yes,no,cellular,jul,wed,243,1,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no +69,services,married,unknown,no,no,no,telephone,jul,wed,396,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +30,self-employed,single,university.degree,no,yes,no,cellular,jul,wed,90,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +44,blue-collar,single,unknown,no,yes,no,telephone,jul,wed,576,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +43,admin.,divorced,university.degree,no,no,no,cellular,jul,wed,281,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +42,blue-collar,married,basic.6y,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +42,admin.,single,university.degree,no,yes,yes,cellular,jul,wed,122,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +32,admin.,single,professional.course,no,yes,no,cellular,jul,wed,72,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +27,student,single,high.school,no,no,yes,cellular,jul,wed,537,2,999,1,failure,-2.9,92.469,-33.6,1.029,5076.2,no +42,technician,married,university.degree,no,no,yes,cellular,jul,wed,430,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,wed,210,5,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +59,admin.,married,high.school,no,yes,no,cellular,jul,wed,286,2,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +40,technician,married,high.school,no,yes,no,cellular,jul,wed,475,3,3,1,success,-2.9,92.469,-33.6,1.029,5076.2,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,153,1,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +36,technician,married,professional.course,no,yes,no,cellular,jul,wed,182,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,wed,97,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,yes +38,admin.,married,high.school,no,yes,yes,telephone,jul,wed,64,3,999,0,nonexistent,-2.9,92.469,-33.6,1.029,5076.2,no +29,student,single,high.school,no,yes,no,cellular,jul,thu,253,2,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,yes +33,technician,single,university.degree,no,yes,no,cellular,jul,thu,359,2,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,315,4,999,0,nonexistent,-2.9,92.469,-33.6,1.018,5076.2,no +23,blue-collar,single,high.school,no,no,no,cellular,jul,fri,104,2,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,yes +32,admin.,single,university.degree,no,yes,no,telephone,jul,fri,123,4,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,no +23,technician,single,professional.course,no,yes,no,telephone,jul,fri,336,4,999,0,nonexistent,-2.9,92.469,-33.6,1.007,5076.2,yes +29,technician,single,unknown,no,yes,yes,cellular,jul,mon,326,3,999,0,nonexistent,-2.9,92.469,-33.6,0.996,5076.2,no +51,management,divorced,university.degree,no,yes,no,telephone,jul,wed,219,2,999,0,nonexistent,-2.9,92.469,-33.6,0.979,5076.2,no +26,admin.,single,university.degree,no,yes,no,cellular,jul,wed,226,2,999,0,nonexistent,-2.9,92.469,-33.6,0.979,5076.2,no +51,management,divorced,university.degree,no,no,no,cellular,jul,wed,166,7,999,1,failure,-2.9,92.469,-33.6,0.979,5076.2,no +45,admin.,married,university.degree,no,yes,no,telephone,jul,thu,58,3,999,0,nonexistent,-2.9,92.469,-33.6,0.969,5076.2,no +27,management,single,university.degree,no,yes,no,cellular,jul,mon,125,2,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,yes +37,services,married,high.school,no,yes,no,cellular,jul,mon,91,2,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,no +27,technician,single,university.degree,no,yes,no,cellular,jul,mon,258,3,999,0,nonexistent,-2.9,92.469,-33.6,0.944,5076.2,no +36,admin.,married,high.school,no,yes,no,telephone,jul,tue,305,7,999,0,nonexistent,-2.9,92.469,-33.6,0.937,5076.2,no +53,management,married,unknown,no,yes,yes,telephone,jul,tue,465,6,999,0,nonexistent,-2.9,92.469,-33.6,0.937,5076.2,no +35,entrepreneur,married,high.school,no,no,no,cellular,jul,wed,1084,4,999,0,nonexistent,-2.9,92.469,-33.6,0.933,5076.2,yes +33,admin.,divorced,university.degree,no,no,yes,cellular,jul,thu,106,3,999,0,nonexistent,-2.9,92.469,-33.6,0.927,5076.2,no +27,student,single,high.school,no,no,no,cellular,jul,thu,64,3,999,0,nonexistent,-2.9,92.469,-33.6,0.927,5076.2,no +51,admin.,married,university.degree,no,yes,no,cellular,jul,fri,139,5,999,0,nonexistent,-2.9,92.469,-33.6,0.921,5076.2,yes +51,admin.,married,university.degree,no,unknown,unknown,telephone,jul,fri,116,3,999,0,nonexistent,-2.9,92.469,-33.6,0.921,5076.2,no +50,self-employed,married,unknown,no,unknown,unknown,cellular,jul,mon,506,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no +38,admin.,single,university.degree,no,yes,no,telephone,jul,mon,195,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no +38,admin.,single,university.degree,no,yes,no,cellular,jul,mon,82,2,999,0,nonexistent,-2.9,92.469,-33.6,0.914,5076.2,no +26,technician,single,university.degree,no,yes,yes,cellular,jul,tue,105,2,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +30,student,single,university.degree,no,no,no,cellular,jul,tue,332,2,13,2,failure,-2.9,92.469,-33.6,0.908,5076.2,yes +44,admin.,divorced,high.school,no,no,yes,cellular,jul,tue,132,4,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +23,student,single,basic.9y,no,no,no,cellular,jul,tue,73,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +54,admin.,married,university.degree,no,no,yes,cellular,jul,tue,822,6,13,1,success,-2.9,92.469,-33.6,0.908,5076.2,yes +34,admin.,married,university.degree,no,no,yes,cellular,jul,tue,51,4,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no +26,admin.,single,university.degree,no,no,yes,cellular,jul,tue,148,4,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +54,admin.,married,university.degree,no,yes,no,cellular,jul,tue,72,2,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no +26,technician,single,university.degree,no,no,yes,cellular,jul,tue,67,5,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,no +27,admin.,married,university.degree,no,no,yes,cellular,jul,tue,99,6,999,1,failure,-2.9,92.469,-33.6,0.908,5076.2,yes +38,management,married,university.degree,no,no,no,cellular,jul,tue,486,5,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,yes +30,student,single,university.degree,no,no,no,cellular,jul,tue,109,3,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +31,admin.,single,high.school,no,no,yes,telephone,jul,tue,258,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +44,admin.,divorced,high.school,no,no,no,cellular,jul,tue,573,5,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,yes +47,admin.,married,university.degree,no,no,no,telephone,jul,tue,186,9,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +36,admin.,married,high.school,no,no,no,cellular,jul,tue,383,6,999,0,nonexistent,-2.9,92.469,-33.6,0.908,5076.2,no +58,management,married,university.degree,no,no,no,cellular,jul,wed,292,6,999,1,failure,-2.9,92.469,-33.6,0.903,5076.2,no +54,unemployed,married,university.degree,no,yes,yes,cellular,jul,thu,141,2,999,0,nonexistent,-2.9,92.469,-33.6,0.899,5076.2,no +41,admin.,married,high.school,no,no,no,cellular,aug,tue,151,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +32,services,married,high.school,no,no,no,cellular,aug,tue,205,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +61,self-employed,divorced,high.school,no,no,no,cellular,aug,tue,92,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +48,management,married,university.degree,no,yes,no,cellular,aug,tue,313,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +42,admin.,married,university.degree,no,yes,no,cellular,aug,tue,576,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +61,retired,married,professional.course,no,no,no,cellular,aug,tue,219,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +36,admin.,single,high.school,no,yes,no,cellular,aug,tue,320,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,138,1,15,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +18,student,single,basic.9y,no,yes,no,cellular,aug,tue,642,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +47,admin.,divorced,university.degree,no,yes,yes,cellular,aug,tue,185,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +52,management,married,university.degree,no,no,no,cellular,aug,tue,600,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +29,student,single,high.school,no,unknown,unknown,cellular,aug,tue,505,1,4,3,success,-2.9,92.201,-31.4,0.884,5076.2,yes +64,unemployed,married,university.degree,no,yes,no,cellular,aug,tue,248,1,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,no +26,technician,single,university.degree,no,yes,no,cellular,aug,tue,204,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +51,management,married,university.degree,no,yes,no,cellular,aug,tue,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +21,student,single,high.school,no,yes,yes,cellular,aug,tue,220,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +51,management,married,university.degree,no,yes,no,cellular,aug,tue,249,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +21,student,single,high.school,no,no,no,cellular,aug,tue,259,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +42,technician,single,unknown,no,yes,no,cellular,aug,tue,158,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +72,retired,divorced,university.degree,no,no,no,cellular,aug,tue,270,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +72,retired,divorced,university.degree,no,no,no,cellular,aug,tue,370,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +34,technician,single,professional.course,no,yes,no,cellular,aug,tue,251,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +24,student,single,high.school,no,yes,no,cellular,aug,tue,79,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +17,student,single,unknown,no,yes,no,cellular,aug,wed,432,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,no +34,technician,single,professional.course,no,no,no,cellular,aug,wed,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +59,admin.,married,high.school,no,yes,no,cellular,aug,wed,1019,2,2,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +34,technician,single,professional.course,no,no,no,cellular,aug,wed,211,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +40,admin.,married,university.degree,no,no,no,cellular,aug,wed,397,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +37,technician,married,professional.course,no,yes,no,cellular,aug,wed,414,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +57,technician,married,high.school,no,yes,yes,cellular,aug,wed,290,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +59,admin.,married,high.school,no,yes,no,cellular,aug,wed,277,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +52,management,married,university.degree,no,no,no,cellular,aug,wed,206,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +46,unknown,married,unknown,no,no,yes,cellular,aug,wed,299,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +43,services,divorced,basic.6y,no,yes,no,cellular,aug,wed,40,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +27,management,single,university.degree,no,yes,no,cellular,aug,wed,106,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +20,student,single,high.school,no,no,yes,cellular,aug,wed,254,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +59,retired,married,unknown,no,unknown,unknown,cellular,aug,wed,177,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +32,services,single,high.school,no,yes,yes,cellular,aug,wed,253,1,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes +37,admin.,married,high.school,no,no,no,cellular,aug,wed,179,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +39,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,394,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +59,retired,divorced,university.degree,no,yes,yes,cellular,aug,wed,526,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +45,unemployed,divorced,basic.4y,no,yes,no,cellular,aug,wed,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +45,unemployed,divorced,basic.4y,no,no,yes,telephone,aug,wed,416,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +46,admin.,married,high.school,no,no,no,telephone,aug,wed,231,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +59,retired,married,unknown,no,no,no,cellular,aug,wed,385,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +43,services,divorced,basic.6y,no,yes,no,telephone,aug,wed,813,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +37,technician,married,professional.course,no,no,no,cellular,aug,wed,157,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes +56,entrepreneur,married,high.school,no,yes,no,cellular,aug,wed,131,5,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +42,unemployed,married,unknown,no,no,no,cellular,aug,thu,175,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +46,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,99,5,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,331,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +37,admin.,married,university.degree,no,no,no,cellular,aug,thu,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +52,retired,divorced,university.degree,no,yes,yes,cellular,aug,thu,155,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +70,retired,married,basic.4y,unknown,yes,no,cellular,aug,thu,320,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +32,technician,married,university.degree,no,no,yes,cellular,aug,thu,975,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +63,retired,married,basic.4y,no,no,no,telephone,aug,thu,49,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +42,unemployed,married,unknown,no,yes,no,telephone,aug,thu,280,7,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +52,technician,married,professional.course,no,no,no,cellular,aug,thu,126,6,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +57,management,married,university.degree,no,yes,no,cellular,aug,thu,107,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +60,self-employed,divorced,university.degree,no,no,no,cellular,aug,thu,90,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +59,housemaid,married,basic.4y,no,yes,no,cellular,aug,thu,121,6,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +32,technician,married,university.degree,no,yes,no,cellular,aug,thu,148,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no +37,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,thu,161,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +63,retired,married,basic.4y,no,no,no,cellular,aug,thu,87,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +37,admin.,married,university.degree,no,no,no,cellular,aug,thu,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +28,student,single,unknown,no,yes,no,cellular,aug,thu,111,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +52,retired,divorced,university.degree,no,no,no,cellular,aug,thu,427,1,15,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +45,technician,single,university.degree,no,no,no,cellular,aug,thu,146,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +58,retired,married,high.school,no,no,no,cellular,aug,thu,144,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +79,retired,married,unknown,no,no,no,cellular,aug,thu,86,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +53,technician,married,professional.course,no,yes,no,cellular,aug,thu,190,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +53,technician,married,professional.course,no,yes,no,cellular,aug,thu,100,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +24,student,single,high.school,no,no,no,cellular,aug,thu,355,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +74,retired,married,high.school,no,no,no,cellular,aug,thu,472,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +54,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,131,2,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +74,retired,married,high.school,no,no,no,cellular,aug,thu,174,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +74,retired,married,high.school,no,yes,no,cellular,aug,thu,1452,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +58,unemployed,divorced,professional.course,no,no,yes,cellular,aug,thu,142,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +74,retired,married,high.school,no,no,no,cellular,aug,thu,135,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +42,unemployed,married,unknown,no,yes,yes,cellular,aug,thu,250,4,4,2,success,-2.9,92.201,-31.4,0.883,5076.2,yes +35,admin.,single,university.degree,no,yes,no,cellular,aug,thu,789,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +31,technician,divorced,professional.course,no,yes,no,cellular,aug,thu,310,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +35,admin.,single,university.degree,no,yes,no,telephone,aug,thu,338,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +35,admin.,single,university.degree,no,yes,no,cellular,aug,thu,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +60,entrepreneur,married,unknown,no,no,no,cellular,aug,thu,130,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +35,admin.,single,university.degree,no,no,no,cellular,aug,thu,250,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +35,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,471,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +25,technician,single,university.degree,no,yes,no,telephone,aug,thu,256,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +44,admin.,married,university.degree,no,yes,no,cellular,aug,thu,254,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +76,retired,married,basic.4y,no,yes,no,cellular,aug,thu,550,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,345,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +32,technician,single,professional.course,no,no,no,cellular,aug,fri,169,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,358,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +29,admin.,single,university.degree,no,yes,no,cellular,aug,fri,107,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +38,admin.,single,university.degree,no,yes,no,cellular,aug,fri,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +51,technician,married,professional.course,no,yes,no,telephone,aug,fri,115,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +82,retired,married,university.degree,no,no,no,cellular,aug,fri,79,2,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no +33,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,79,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes +38,admin.,single,university.degree,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +32,technician,single,professional.course,no,yes,no,telephone,aug,fri,107,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no +32,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,131,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +29,admin.,single,university.degree,no,no,no,cellular,aug,fri,289,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +75,retired,married,basic.4y,no,no,yes,cellular,aug,fri,714,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +25,admin.,single,university.degree,no,yes,no,cellular,aug,fri,255,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +34,admin.,married,university.degree,no,no,no,cellular,aug,fri,78,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +32,technician,single,professional.course,no,no,no,cellular,aug,fri,87,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +46,housemaid,married,high.school,no,yes,no,cellular,aug,fri,258,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +51,housemaid,married,unknown,no,no,no,cellular,aug,fri,273,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes +32,unemployed,single,university.degree,no,yes,no,cellular,aug,fri,88,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no +70,retired,married,basic.4y,no,yes,no,cellular,aug,fri,530,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +24,student,single,high.school,no,no,no,cellular,aug,fri,292,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +24,student,single,high.school,no,yes,no,cellular,aug,fri,456,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +41,services,single,university.degree,no,yes,no,cellular,aug,fri,142,1,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes +41,services,single,university.degree,no,yes,no,cellular,aug,fri,325,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +33,admin.,single,high.school,no,yes,no,cellular,aug,fri,1088,3,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +48,unemployed,single,basic.9y,no,no,no,cellular,aug,fri,173,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +54,technician,married,university.degree,no,yes,no,cellular,aug,fri,325,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,no +73,retired,married,basic.4y,no,no,no,cellular,aug,fri,453,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +48,entrepreneur,married,university.degree,no,no,yes,cellular,aug,fri,295,2,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes +73,retired,married,basic.9y,no,no,no,cellular,aug,fri,239,1,15,1,success,-2.9,92.201,-31.4,0.881,5076.2,no +58,admin.,married,university.degree,no,no,no,telephone,aug,fri,121,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +73,retired,married,basic.4y,no,yes,no,cellular,aug,fri,305,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +23,student,single,high.school,no,yes,no,cellular,aug,fri,136,1,999,3,failure,-2.9,92.201,-31.4,0.881,5076.2,no +36,management,married,university.degree,no,yes,no,cellular,aug,fri,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,fri,83,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,fri,70,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +33,blue-collar,married,basic.9y,no,no,no,cellular,aug,fri,99,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,fri,262,1,4,2,success,-2.9,92.201,-31.4,0.881,5076.2,yes +28,admin.,single,university.degree,no,yes,no,cellular,aug,fri,119,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no +51,housemaid,married,unknown,no,yes,no,cellular,aug,fri,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +28,admin.,married,university.degree,no,yes,no,cellular,aug,fri,140,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no +36,services,married,basic.9y,no,yes,no,cellular,aug,fri,215,1,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes +51,housemaid,married,unknown,no,yes,yes,cellular,aug,fri,268,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +36,services,married,basic.9y,no,yes,no,cellular,aug,fri,221,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,yes +59,unemployed,married,professional.course,no,yes,no,cellular,aug,fri,378,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,no +29,admin.,single,high.school,no,yes,no,cellular,aug,fri,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +29,admin.,single,high.school,no,no,no,cellular,aug,fri,384,1,4,3,success,-2.9,92.201,-31.4,0.881,5076.2,no +30,self-employed,married,university.degree,no,yes,yes,cellular,aug,fri,390,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +29,admin.,single,high.school,no,no,no,cellular,aug,fri,88,1,999,2,failure,-2.9,92.201,-31.4,0.881,5076.2,no +73,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,135,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +27,blue-collar,unknown,high.school,no,no,no,cellular,aug,fri,192,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,yes +29,admin.,single,high.school,no,no,no,cellular,aug,fri,130,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +76,retired,married,university.degree,no,no,no,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +29,admin.,single,high.school,no,yes,no,cellular,aug,fri,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,no +31,admin.,married,university.degree,no,yes,no,cellular,aug,fri,353,2,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +33,admin.,single,high.school,no,yes,no,cellular,aug,fri,182,2,999,1,failure,-2.9,92.201,-31.4,0.881,5076.2,yes +48,admin.,divorced,university.degree,no,yes,no,cellular,aug,fri,103,1,4,1,success,-2.9,92.201,-31.4,0.881,5076.2,no +43,admin.,single,high.school,no,yes,no,cellular,aug,fri,231,3,999,0,nonexistent,-2.9,92.201,-31.4,0.881,5076.2,yes +54,unemployed,married,university.degree,no,no,no,telephone,aug,mon,122,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +44,entrepreneur,married,basic.4y,no,unknown,unknown,cellular,aug,mon,111,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +46,blue-collar,married,professional.course,no,no,no,telephone,aug,mon,255,3,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +35,services,single,university.degree,no,unknown,unknown,cellular,aug,mon,419,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +36,management,married,university.degree,no,no,no,cellular,aug,mon,1225,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +40,blue-collar,divorced,basic.9y,no,no,no,cellular,aug,mon,54,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +36,management,married,university.degree,no,no,no,telephone,aug,mon,328,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +52,admin.,married,university.degree,no,no,no,cellular,aug,mon,268,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +38,technician,married,professional.course,no,no,no,cellular,aug,mon,923,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +41,admin.,married,high.school,no,no,no,cellular,aug,mon,88,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +27,student,single,high.school,no,no,no,cellular,aug,mon,131,1,3,2,success,-2.9,92.201,-31.4,0.884,5076.2,no +38,admin.,single,high.school,no,yes,yes,cellular,aug,mon,167,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +64,retired,married,university.degree,no,no,no,telephone,aug,mon,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +36,admin.,divorced,university.degree,no,no,no,cellular,aug,mon,559,1,5,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +36,admin.,divorced,university.degree,no,yes,no,cellular,aug,mon,146,2,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +37,technician,married,university.degree,no,yes,no,cellular,aug,mon,187,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +65,retired,married,basic.6y,no,no,no,cellular,aug,mon,161,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +66,admin.,married,university.degree,no,no,no,cellular,aug,mon,489,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +19,student,single,basic.9y,no,no,no,cellular,aug,mon,120,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +40,blue-collar,married,high.school,no,yes,no,cellular,aug,mon,158,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +40,admin.,married,university.degree,no,no,no,cellular,aug,mon,246,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +33,admin.,married,high.school,no,yes,no,cellular,aug,mon,252,1,6,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +43,self-employed,divorced,university.degree,no,no,no,telephone,aug,mon,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +43,self-employed,divorced,university.degree,no,no,no,cellular,aug,mon,1529,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +63,housemaid,married,basic.4y,no,yes,no,telephone,aug,mon,235,1,6,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +35,admin.,married,high.school,no,no,no,cellular,aug,mon,155,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +31,admin.,married,high.school,no,no,yes,cellular,aug,mon,155,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,yes +33,technician,single,basic.9y,no,yes,yes,cellular,aug,mon,289,1,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,yes +36,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,153,2,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +32,entrepreneur,married,unknown,no,no,no,cellular,aug,mon,352,2,999,2,failure,-2.9,92.201,-31.4,0.884,5076.2,no +69,retired,married,professional.course,no,yes,no,telephone,aug,mon,411,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +35,admin.,single,high.school,no,yes,yes,cellular,aug,mon,107,4,2,3,success,-2.9,92.201,-31.4,0.884,5076.2,no +21,admin.,single,university.degree,no,yes,no,cellular,aug,mon,89,2,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +19,student,single,basic.9y,no,yes,no,telephone,aug,mon,85,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +46,blue-collar,married,professional.course,no,no,no,telephone,aug,mon,151,3,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +19,student,single,basic.9y,no,no,no,cellular,aug,mon,96,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +32,student,married,professional.course,no,yes,no,cellular,aug,mon,540,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +44,unknown,married,university.degree,no,yes,no,cellular,aug,mon,263,2,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +39,technician,married,professional.course,no,yes,no,cellular,aug,mon,247,1,4,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +40,management,married,university.degree,no,no,no,cellular,aug,mon,162,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +40,management,married,university.degree,no,no,yes,cellular,aug,mon,121,1,999,1,failure,-2.9,92.201,-31.4,0.884,5076.2,no +52,admin.,married,university.degree,no,yes,no,cellular,aug,mon,179,3,4,2,success,-2.9,92.201,-31.4,0.884,5076.2,yes +67,retired,married,professional.course,no,yes,yes,cellular,aug,mon,71,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,no +57,entrepreneur,married,professional.course,no,yes,no,telephone,aug,mon,157,1,3,1,success,-2.9,92.201,-31.4,0.884,5076.2,no +37,blue-collar,married,basic.9y,no,no,no,cellular,aug,mon,213,1,999,0,nonexistent,-2.9,92.201,-31.4,0.884,5076.2,yes +37,blue-collar,married,basic.9y,no,no,no,cellular,aug,tue,373,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +34,technician,single,professional.course,no,yes,no,cellular,aug,tue,1416,2,12,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +35,technician,married,university.degree,no,yes,no,cellular,aug,tue,425,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +58,technician,married,professional.course,no,no,no,cellular,aug,tue,48,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +43,services,married,high.school,no,yes,no,telephone,aug,tue,329,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +70,housemaid,divorced,basic.4y,no,no,no,telephone,aug,tue,90,3,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +34,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,265,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +69,retired,married,high.school,no,yes,no,cellular,aug,tue,151,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +59,technician,single,basic.6y,no,no,no,telephone,aug,tue,181,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +49,management,divorced,university.degree,no,yes,yes,cellular,aug,tue,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,265,1,4,3,success,-2.9,92.201,-31.4,0.883,5076.2,yes +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,157,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +50,management,married,university.degree,no,no,no,cellular,aug,tue,89,3,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no +31,admin.,single,university.degree,no,no,no,telephone,aug,tue,387,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +45,services,married,high.school,no,no,no,cellular,aug,tue,249,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +60,retired,married,high.school,no,no,no,cellular,aug,tue,123,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,156,1,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no +30,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,155,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,no +31,admin.,single,university.degree,no,yes,yes,telephone,aug,tue,115,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +58,technician,married,professional.course,no,no,no,cellular,aug,tue,704,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +33,admin.,single,high.school,no,yes,no,cellular,aug,tue,136,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +26,student,single,professional.course,no,yes,no,cellular,aug,tue,176,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +35,self-employed,married,university.degree,no,yes,no,telephone,aug,tue,88,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +59,retired,married,high.school,no,yes,no,cellular,aug,tue,85,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +29,technician,single,professional.course,no,yes,yes,cellular,aug,tue,110,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +50,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,1398,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +61,entrepreneur,married,university.degree,unknown,yes,no,cellular,aug,tue,651,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +52,management,married,high.school,no,yes,yes,cellular,aug,tue,167,1,10,4,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +52,management,married,high.school,no,no,no,cellular,aug,tue,408,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +42,admin.,single,university.degree,no,no,no,cellular,aug,tue,982,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +85,retired,married,professional.course,no,no,no,cellular,aug,tue,140,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +27,admin.,single,university.degree,no,yes,no,cellular,aug,tue,168,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +27,admin.,single,university.degree,no,yes,no,cellular,aug,tue,287,1,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,no +49,technician,married,professional.course,no,yes,no,cellular,aug,tue,75,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +30,admin.,married,university.degree,no,no,no,cellular,aug,tue,139,3,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +69,entrepreneur,married,university.degree,no,yes,no,cellular,aug,tue,93,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,tue,225,1,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no +33,student,single,unknown,no,yes,yes,cellular,aug,tue,203,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +41,admin.,single,university.degree,no,yes,no,cellular,aug,tue,280,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +54,admin.,single,university.degree,unknown,yes,no,cellular,aug,tue,159,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +60,admin.,married,professional.course,no,no,no,cellular,aug,tue,66,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +57,admin.,married,university.degree,no,yes,no,cellular,aug,tue,149,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +35,admin.,married,university.degree,no,no,yes,cellular,aug,tue,349,1,999,3,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +35,admin.,single,university.degree,no,no,yes,cellular,aug,tue,371,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +80,retired,married,illiterate,unknown,yes,yes,cellular,aug,tue,125,1,6,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +26,admin.,single,university.degree,no,no,no,cellular,aug,tue,221,1,15,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +67,retired,married,university.degree,no,no,no,cellular,aug,tue,201,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +56,retired,married,high.school,no,yes,yes,cellular,aug,tue,97,1,3,2,success,-2.9,92.201,-31.4,0.883,5076.2,no +59,admin.,divorced,professional.course,no,yes,no,telephone,aug,tue,91,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +44,management,married,university.degree,no,no,no,cellular,aug,tue,175,2,999,2,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +47,admin.,married,university.degree,no,yes,no,cellular,aug,tue,526,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +58,technician,married,professional.course,no,yes,no,cellular,aug,tue,89,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +59,admin.,divorced,professional.course,no,no,no,cellular,aug,tue,206,1,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +59,admin.,divorced,professional.course,no,no,no,cellular,aug,tue,477,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +69,blue-collar,married,unknown,no,yes,no,cellular,aug,tue,400,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +59,admin.,divorced,professional.course,no,no,no,telephone,aug,tue,198,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +59,admin.,divorced,professional.course,no,unknown,unknown,cellular,aug,tue,203,1,4,1,success,-2.9,92.201,-31.4,0.883,5076.2,yes +34,admin.,divorced,university.degree,no,no,no,cellular,aug,tue,267,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +30,admin.,married,university.degree,no,yes,no,cellular,aug,tue,120,3,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,no +50,blue-collar,married,unknown,no,yes,yes,cellular,aug,tue,589,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,yes +70,retired,married,high.school,no,yes,no,cellular,aug,tue,162,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +59,blue-collar,married,basic.4y,no,no,no,cellular,aug,tue,163,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +58,admin.,married,university.degree,no,no,no,cellular,aug,tue,373,4,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +49,admin.,married,university.degree,no,yes,no,cellular,aug,tue,464,2,999,1,failure,-2.9,92.201,-31.4,0.883,5076.2,yes +35,technician,single,university.degree,no,yes,no,cellular,aug,tue,113,3,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +57,management,married,university.degree,no,yes,no,cellular,aug,tue,71,1,5,2,failure,-2.9,92.201,-31.4,0.883,5076.2,no +21,unemployed,single,high.school,no,yes,no,telephone,aug,tue,172,2,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +57,management,married,university.degree,no,no,no,cellular,aug,tue,162,1,999,0,nonexistent,-2.9,92.201,-31.4,0.883,5076.2,no +42,management,divorced,unknown,no,yes,no,cellular,aug,wed,266,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +66,retired,married,unknown,no,no,no,cellular,aug,wed,68,3,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +62,management,married,university.degree,no,yes,yes,cellular,aug,wed,345,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,1117,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +60,management,married,university.degree,no,no,no,cellular,aug,wed,159,4,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +31,services,single,university.degree,no,yes,no,telephone,aug,wed,701,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,429,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +36,admin.,divorced,university.degree,no,no,yes,cellular,aug,wed,623,2,6,2,success,-2.9,92.201,-31.4,0.879,5076.2,yes +66,retired,unknown,basic.9y,no,yes,no,cellular,aug,wed,340,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +42,management,divorced,unknown,no,yes,no,cellular,aug,wed,137,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes +31,blue-collar,single,university.degree,no,no,no,cellular,aug,wed,174,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +48,admin.,married,high.school,no,no,no,cellular,aug,wed,74,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +25,admin.,single,high.school,no,yes,yes,cellular,aug,wed,121,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +26,student,single,basic.9y,no,no,no,telephone,aug,wed,127,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +26,student,single,basic.9y,no,yes,no,cellular,aug,wed,182,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes +49,admin.,married,high.school,no,yes,no,cellular,aug,wed,668,2,15,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes +26,student,single,basic.9y,no,no,no,telephone,aug,wed,449,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +49,admin.,married,high.school,no,yes,no,cellular,aug,wed,90,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +26,student,single,basic.9y,no,yes,no,cellular,aug,wed,582,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +25,self-employed,single,university.degree,no,no,no,cellular,aug,wed,169,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +34,blue-collar,married,high.school,no,yes,no,cellular,aug,wed,115,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +45,blue-collar,single,basic.9y,no,yes,no,cellular,aug,wed,249,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +27,admin.,single,university.degree,no,no,no,cellular,aug,wed,1336,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +45,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,150,1,3,2,success,-2.9,92.201,-31.4,0.879,5076.2,no +74,retired,married,university.degree,no,yes,no,cellular,aug,wed,239,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +36,admin.,married,university.degree,no,yes,no,cellular,aug,wed,90,1,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no +42,management,divorced,unknown,no,no,no,cellular,aug,wed,251,2,15,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no +32,technician,married,professional.course,no,yes,no,cellular,aug,wed,641,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +60,retired,married,university.degree,no,no,no,cellular,aug,wed,576,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +40,management,married,university.degree,no,unknown,unknown,cellular,aug,wed,699,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +56,admin.,married,basic.9y,no,yes,no,cellular,aug,wed,73,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes +66,retired,married,unknown,no,no,no,cellular,aug,wed,147,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +27,admin.,single,university.degree,no,yes,no,cellular,aug,wed,398,4,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +37,blue-collar,single,professional.course,no,yes,no,cellular,aug,wed,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +59,technician,married,university.degree,no,no,no,cellular,aug,wed,119,4,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +32,technician,single,professional.course,no,no,no,cellular,aug,wed,313,2,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +29,services,married,high.school,no,yes,no,cellular,aug,wed,90,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +48,entrepreneur,divorced,high.school,no,no,no,cellular,aug,wed,307,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +38,admin.,married,university.degree,no,no,no,cellular,aug,wed,236,1,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +20,student,single,basic.4y,no,yes,no,cellular,aug,wed,131,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +20,student,single,basic.4y,no,yes,no,cellular,aug,wed,267,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +27,unemployed,single,high.school,no,no,no,cellular,aug,wed,93,1,4,3,success,-2.9,92.201,-31.4,0.879,5076.2,no +33,services,married,high.school,no,yes,no,cellular,aug,wed,417,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +36,admin.,single,university.degree,no,yes,no,cellular,aug,wed,87,1,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no +54,housemaid,married,university.degree,no,no,no,cellular,aug,wed,77,3,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +36,admin.,single,university.degree,no,no,no,cellular,aug,wed,82,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +66,retired,unknown,basic.9y,no,yes,no,cellular,aug,wed,810,3,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,yes +36,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,161,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +66,technician,married,professional.course,no,yes,no,telephone,aug,wed,150,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +35,blue-collar,single,basic.9y,no,no,no,cellular,aug,wed,305,3,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,wed,202,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,wed,332,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +28,admin.,single,university.degree,no,no,no,cellular,aug,wed,153,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +44,admin.,married,university.degree,no,yes,no,cellular,aug,wed,113,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +56,admin.,married,basic.9y,no,no,no,cellular,aug,wed,338,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,yes +32,admin.,married,high.school,no,no,no,cellular,aug,wed,96,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +29,blue-collar,single,high.school,no,yes,no,cellular,aug,wed,71,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +41,services,married,high.school,no,unknown,unknown,cellular,aug,wed,301,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +33,admin.,single,university.degree,no,unknown,unknown,cellular,aug,wed,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,192,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +45,admin.,married,university.degree,no,no,no,cellular,aug,wed,363,1,4,2,success,-2.9,92.201,-31.4,0.879,5076.2,no +44,admin.,married,university.degree,no,no,no,cellular,aug,wed,96,2,4,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +28,student,single,high.school,no,yes,no,cellular,aug,wed,188,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +66,retired,married,basic.6y,unknown,yes,no,cellular,aug,wed,124,1,1,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +66,retired,married,basic.6y,unknown,no,no,cellular,aug,wed,174,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +32,technician,married,professional.course,no,yes,no,cellular,aug,wed,44,1,3,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,222,2,999,2,failure,-2.9,92.201,-31.4,0.879,5076.2,no +42,technician,married,professional.course,no,yes,no,cellular,aug,wed,246,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +42,technician,married,professional.course,no,no,no,cellular,aug,wed,96,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +44,admin.,married,university.degree,no,no,no,cellular,aug,wed,120,1,999,1,failure,-2.9,92.201,-31.4,0.879,5076.2,no +37,management,single,university.degree,no,yes,no,cellular,aug,wed,243,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +42,technician,married,professional.course,no,yes,yes,cellular,aug,wed,543,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +28,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,wed,227,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +28,technician,single,professional.course,no,no,yes,cellular,aug,wed,162,1,3,1,success,-2.9,92.201,-31.4,0.879,5076.2,no +38,admin.,married,high.school,no,no,no,cellular,aug,wed,289,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,yes +74,retired,married,professional.course,no,no,no,cellular,aug,wed,298,1,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +76,retired,married,basic.4y,no,no,no,cellular,aug,wed,331,2,999,0,nonexistent,-2.9,92.201,-31.4,0.879,5076.2,no +29,admin.,married,university.degree,no,no,no,cellular,aug,thu,111,5,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,thu,489,5,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +27,admin.,single,high.school,no,no,yes,cellular,aug,thu,255,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +37,technician,single,university.degree,no,yes,yes,cellular,aug,thu,73,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +33,technician,married,university.degree,no,yes,no,cellular,aug,thu,101,4,999,2,failure,-2.9,92.201,-31.4,0.873,5076.2,no +23,student,single,high.school,no,yes,no,cellular,aug,thu,784,3,15,3,failure,-2.9,92.201,-31.4,0.873,5076.2,yes +36,unemployed,married,university.degree,no,no,no,cellular,aug,thu,222,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +22,student,single,high.school,no,yes,no,cellular,aug,thu,425,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +30,admin.,married,university.degree,no,yes,no,telephone,aug,thu,181,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +29,admin.,single,university.degree,no,yes,yes,cellular,aug,thu,254,3,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes +41,admin.,married,high.school,no,yes,no,cellular,aug,thu,1175,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +31,blue-collar,married,professional.course,no,no,no,cellular,aug,thu,414,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,102,1,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,200,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +30,services,single,high.school,no,yes,no,cellular,aug,thu,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +36,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,220,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +88,retired,divorced,basic.4y,no,yes,no,cellular,aug,thu,402,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +39,admin.,married,high.school,no,no,no,cellular,aug,thu,315,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes +39,management,married,university.degree,no,no,no,cellular,aug,thu,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +39,admin.,married,university.degree,unknown,yes,no,cellular,aug,thu,368,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +45,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,150,3,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +34,housemaid,married,university.degree,no,no,no,cellular,aug,thu,485,3,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +32,blue-collar,single,basic.9y,no,yes,no,cellular,aug,thu,282,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +74,retired,married,basic.4y,no,no,no,cellular,aug,thu,307,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,399,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes +46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,164,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +62,retired,married,university.degree,unknown,yes,yes,cellular,aug,thu,791,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +34,housemaid,married,university.degree,no,no,yes,cellular,aug,thu,1152,2,6,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +36,admin.,married,university.degree,no,no,no,cellular,aug,thu,138,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +36,unemployed,married,university.degree,no,yes,no,cellular,aug,thu,138,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +38,management,married,university.degree,no,yes,no,cellular,aug,thu,328,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +33,admin.,single,university.degree,no,yes,no,cellular,aug,thu,72,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +24,student,single,high.school,no,no,no,cellular,aug,thu,136,1,999,2,failure,-2.9,92.201,-31.4,0.873,5076.2,no +39,unemployed,married,high.school,no,no,no,cellular,aug,thu,192,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +34,self-employed,married,university.degree,no,no,no,cellular,aug,thu,78,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +20,student,single,high.school,no,no,no,cellular,aug,thu,347,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +46,technician,married,basic.6y,no,yes,no,cellular,aug,thu,464,4,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +81,retired,married,basic.6y,no,no,no,cellular,aug,thu,189,2,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +43,technician,married,university.degree,no,no,no,cellular,aug,thu,160,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +22,student,single,basic.6y,no,yes,no,cellular,aug,thu,293,2,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,yes +34,management,married,university.degree,no,no,no,cellular,aug,thu,233,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +32,services,married,high.school,no,yes,no,cellular,aug,thu,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +36,services,married,high.school,no,yes,yes,cellular,aug,thu,227,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes +32,services,married,high.school,no,no,no,cellular,aug,thu,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +34,self-employed,single,university.degree,no,no,no,telephone,aug,thu,57,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +24,technician,single,professional.course,no,no,no,cellular,aug,thu,129,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +28,unemployed,single,university.degree,no,no,yes,cellular,aug,thu,74,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +27,technician,single,university.degree,no,no,no,cellular,aug,thu,103,1,4,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +46,admin.,married,university.degree,no,yes,no,telephone,aug,thu,213,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +76,retired,married,basic.6y,no,no,yes,cellular,aug,thu,284,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +64,unknown,married,unknown,no,yes,yes,cellular,aug,thu,219,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +40,admin.,married,high.school,no,no,no,cellular,aug,thu,477,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +35,admin.,single,high.school,no,no,yes,cellular,aug,thu,73,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +74,retired,married,professional.course,no,yes,no,cellular,aug,thu,204,3,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,yes +41,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,726,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +41,blue-collar,married,basic.9y,no,no,no,cellular,aug,thu,75,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +76,retired,married,university.degree,no,yes,no,cellular,aug,thu,344,1,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +48,self-employed,married,university.degree,no,no,no,cellular,aug,thu,135,1,4,3,success,-2.9,92.201,-31.4,0.873,5076.2,no +25,admin.,single,university.degree,no,no,yes,cellular,aug,thu,112,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +25,admin.,single,university.degree,no,no,yes,cellular,aug,thu,99,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +21,student,single,high.school,no,no,no,cellular,aug,thu,185,2,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,no +39,admin.,married,basic.9y,unknown,no,no,cellular,aug,thu,371,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,143,1,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +44,unemployed,married,high.school,no,yes,no,telephone,aug,thu,99,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,146,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +44,unemployed,married,high.school,no,yes,no,cellular,aug,thu,284,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +33,services,married,high.school,no,no,no,cellular,aug,thu,738,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +29,management,married,university.degree,no,yes,no,cellular,aug,thu,75,1,4,2,success,-2.9,92.201,-31.4,0.873,5076.2,no +39,blue-collar,married,basic.6y,no,no,no,cellular,aug,thu,320,2,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,yes +73,retired,married,professional.course,no,yes,no,cellular,aug,thu,135,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +36,technician,married,professional.course,no,yes,no,cellular,aug,thu,92,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +22,student,single,high.school,no,no,no,cellular,aug,thu,53,2,3,1,success,-2.9,92.201,-31.4,0.873,5076.2,no +33,services,married,high.school,no,unknown,unknown,cellular,aug,thu,240,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +57,admin.,single,high.school,no,yes,no,cellular,aug,thu,479,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +62,retired,married,university.degree,unknown,no,no,cellular,aug,thu,154,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +21,student,single,high.school,no,no,no,cellular,aug,thu,236,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +72,retired,divorced,basic.4y,no,yes,yes,cellular,aug,thu,238,2,999,1,failure,-2.9,92.201,-31.4,0.873,5076.2,no +31,technician,married,university.degree,no,no,no,cellular,aug,thu,158,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,aug,thu,275,1,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +43,unemployed,married,high.school,no,no,no,cellular,aug,thu,319,4,3,2,success,-2.9,92.201,-31.4,0.873,5076.2,no +36,management,married,basic.6y,no,yes,yes,cellular,aug,thu,354,3,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,yes +36,admin.,married,university.degree,no,no,no,cellular,aug,thu,126,2,999,0,nonexistent,-2.9,92.201,-31.4,0.873,5076.2,no +28,unemployed,married,professional.course,no,yes,no,telephone,aug,fri,275,6,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +17,student,single,basic.9y,no,yes,no,cellular,aug,fri,182,2,999,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no +26,student,single,professional.course,no,yes,no,cellular,aug,fri,150,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +43,management,married,basic.9y,no,yes,yes,cellular,aug,fri,233,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +61,retired,married,basic.9y,no,yes,no,telephone,aug,fri,176,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +39,technician,married,university.degree,no,yes,no,cellular,aug,fri,156,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +62,retired,married,unknown,no,no,no,cellular,aug,fri,172,4,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +70,retired,married,professional.course,no,no,no,cellular,aug,fri,185,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +45,unemployed,married,basic.9y,no,no,no,cellular,aug,fri,126,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +43,management,married,basic.9y,no,yes,no,cellular,aug,fri,180,1,6,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no +29,blue-collar,married,basic.4y,no,yes,no,cellular,aug,fri,98,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +48,management,divorced,university.degree,no,no,no,cellular,aug,fri,117,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +35,technician,married,professional.course,no,yes,no,cellular,aug,fri,225,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +61,management,married,university.degree,no,yes,no,cellular,aug,fri,209,2,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,yes +24,student,single,high.school,unknown,yes,no,cellular,aug,fri,319,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +33,blue-collar,single,basic.9y,no,no,no,cellular,aug,fri,257,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +32,blue-collar,married,basic.9y,no,yes,yes,cellular,aug,fri,230,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +42,management,married,university.degree,no,yes,no,cellular,aug,fri,436,1,13,1,success,-2.9,92.201,-31.4,0.869,5076.2,yes +36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,415,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +36,unemployed,single,university.degree,no,no,no,cellular,aug,fri,260,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +17,student,single,basic.9y,no,yes,no,cellular,aug,fri,92,3,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,no +54,admin.,married,university.degree,no,yes,no,cellular,aug,fri,326,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +25,student,single,high.school,no,no,no,cellular,aug,fri,253,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +25,student,single,high.school,no,yes,no,cellular,aug,fri,78,1,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +48,admin.,single,university.degree,no,yes,no,cellular,aug,fri,260,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +20,student,single,high.school,no,no,no,cellular,aug,fri,190,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +63,blue-collar,married,basic.4y,no,yes,yes,cellular,aug,fri,107,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +58,blue-collar,divorced,basic.4y,no,no,no,cellular,aug,fri,186,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +55,retired,married,basic.4y,no,yes,no,cellular,aug,fri,137,1,3,1,success,-2.9,92.201,-31.4,0.869,5076.2,yes +35,admin.,single,high.school,no,yes,no,cellular,aug,fri,105,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +71,retired,married,basic.4y,no,yes,no,cellular,aug,fri,125,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +25,services,single,high.school,no,no,no,cellular,aug,fri,553,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +70,retired,married,professional.course,no,yes,no,cellular,aug,fri,94,4,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +28,unemployed,married,professional.course,no,no,no,cellular,aug,fri,276,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +46,technician,married,professional.course,no,yes,no,cellular,aug,fri,182,6,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes +42,technician,married,professional.course,no,yes,no,cellular,aug,fri,100,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +26,student,single,high.school,no,no,no,cellular,aug,fri,482,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +35,admin.,married,university.degree,no,no,no,cellular,aug,fri,201,1,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +32,admin.,married,university.degree,no,yes,no,cellular,aug,fri,88,5,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +38,self-employed,divorced,high.school,no,no,no,cellular,aug,fri,391,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes +28,unemployed,married,professional.course,no,yes,no,cellular,aug,fri,190,3,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes +17,student,single,basic.9y,no,unknown,unknown,cellular,aug,fri,498,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,yes +31,admin.,married,university.degree,no,no,no,cellular,aug,fri,880,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +63,retired,divorced,basic.4y,no,yes,no,cellular,aug,fri,153,2,3,1,success,-2.9,92.201,-31.4,0.869,5076.2,no +29,blue-collar,single,basic.6y,no,no,no,cellular,aug,fri,260,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +37,entrepreneur,married,basic.6y,no,yes,no,cellular,aug,fri,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +25,technician,single,university.degree,no,yes,no,cellular,aug,fri,142,2,999,1,failure,-2.9,92.201,-31.4,0.869,5076.2,no +61,retired,married,basic.9y,no,no,no,cellular,aug,fri,99,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +70,retired,married,professional.course,no,no,no,cellular,aug,fri,70,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +28,unemployed,married,professional.course,no,no,no,telephone,aug,fri,140,11,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +31,entrepreneur,single,university.degree,no,yes,no,cellular,aug,fri,211,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,yes +35,technician,married,university.degree,no,no,no,cellular,aug,fri,224,3,999,0,nonexistent,-2.9,92.201,-31.4,0.869,5076.2,no +20,student,single,high.school,no,no,no,telephone,aug,fri,159,2,4,2,success,-2.9,92.201,-31.4,0.869,5076.2,no +35,management,married,high.school,no,yes,yes,cellular,aug,fri,313,4,999,2,failure,-2.9,92.201,-31.4,0.869,5076.2,no +22,student,single,basic.9y,no,no,no,telephone,aug,mon,297,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +68,retired,married,basic.4y,no,no,no,cellular,aug,mon,110,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no +62,management,divorced,high.school,no,no,no,cellular,aug,mon,405,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +65,retired,married,high.school,no,no,no,cellular,aug,mon,80,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no +26,admin.,single,university.degree,no,yes,no,cellular,aug,mon,138,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +76,retired,married,professional.course,no,no,no,cellular,aug,mon,308,1,15,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes +66,retired,married,unknown,no,no,no,cellular,aug,mon,43,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no +23,technician,single,university.degree,no,yes,no,cellular,aug,mon,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +43,management,married,university.degree,no,no,no,cellular,aug,mon,75,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +72,retired,divorced,basic.4y,no,no,no,cellular,aug,mon,152,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +73,retired,married,basic.4y,no,no,no,cellular,aug,mon,348,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +67,retired,married,professional.course,no,yes,yes,cellular,aug,mon,186,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +80,retired,married,high.school,no,no,no,telephone,aug,mon,199,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +60,admin.,married,university.degree,no,no,no,cellular,aug,mon,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +33,technician,married,university.degree,no,yes,no,cellular,aug,mon,551,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +23,student,single,high.school,no,no,no,cellular,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +23,student,single,high.school,no,no,no,cellular,aug,mon,80,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +25,admin.,single,university.degree,no,no,no,cellular,aug,mon,286,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +25,admin.,single,university.degree,no,yes,no,cellular,aug,mon,163,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes +33,unemployed,single,university.degree,no,no,no,cellular,aug,mon,156,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +65,retired,married,high.school,no,yes,yes,cellular,aug,mon,97,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +34,technician,married,university.degree,no,no,no,cellular,aug,mon,220,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +34,technician,married,university.degree,no,no,no,cellular,aug,mon,473,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +31,admin.,single,university.degree,no,no,no,telephone,aug,mon,122,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +34,technician,single,professional.course,no,no,no,cellular,aug,mon,237,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no +31,technician,married,university.degree,no,no,no,cellular,aug,mon,109,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no +26,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,115,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +43,management,married,university.degree,no,no,no,telephone,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +50,blue-collar,married,basic.4y,no,no,no,cellular,aug,mon,123,2,15,1,success,-2.9,92.201,-31.4,0.861,5076.2,no +30,services,single,high.school,no,no,no,cellular,aug,mon,366,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +28,admin.,single,university.degree,no,yes,no,cellular,aug,mon,343,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes +34,technician,married,professional.course,no,no,no,cellular,aug,mon,123,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +48,technician,married,high.school,no,yes,no,cellular,aug,mon,711,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +44,admin.,single,university.degree,no,no,no,cellular,aug,mon,207,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes +18,student,single,basic.6y,no,yes,no,cellular,aug,mon,628,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +23,technician,married,professional.course,no,yes,no,cellular,aug,mon,341,1,3,2,success,-2.9,92.201,-31.4,0.861,5076.2,yes +27,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,mon,130,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,no +27,self-employed,single,university.degree,no,no,no,cellular,aug,mon,241,2,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +28,admin.,single,university.degree,no,no,no,cellular,aug,mon,192,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +28,admin.,single,university.degree,no,yes,no,cellular,aug,mon,340,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,yes +28,admin.,single,university.degree,no,unknown,unknown,cellular,aug,mon,148,1,999,2,failure,-2.9,92.201,-31.4,0.861,5076.2,no +41,admin.,single,high.school,no,yes,no,cellular,aug,mon,606,1,6,1,success,-2.9,92.201,-31.4,0.861,5076.2,yes +29,management,single,university.degree,no,no,no,cellular,aug,mon,300,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +74,retired,married,basic.9y,no,yes,no,cellular,aug,mon,156,1,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes +46,entrepreneur,married,high.school,no,yes,no,cellular,aug,mon,109,1,999,0,nonexistent,-2.9,92.201,-31.4,0.861,5076.2,no +22,student,single,professional.course,no,yes,no,cellular,aug,mon,162,2,999,1,failure,-2.9,92.201,-31.4,0.861,5076.2,yes +29,unemployed,single,university.degree,no,yes,no,cellular,aug,tue,33,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +67,retired,married,basic.6y,no,no,no,cellular,aug,tue,460,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +36,admin.,single,university.degree,no,no,no,cellular,aug,tue,278,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +65,housemaid,divorced,basic.4y,no,yes,no,cellular,aug,tue,212,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +31,admin.,single,high.school,no,yes,no,cellular,aug,tue,243,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +61,retired,married,university.degree,no,no,no,telephone,aug,tue,249,2,3,1,success,-2.9,92.201,-31.4,0.859,5076.2,yes +63,retired,married,university.degree,no,no,no,cellular,aug,tue,177,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +34,admin.,single,university.degree,no,yes,no,telephone,aug,tue,205,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +34,admin.,single,university.degree,no,no,yes,cellular,aug,tue,543,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no +33,admin.,married,high.school,no,no,no,cellular,aug,tue,147,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no +33,admin.,married,high.school,no,no,yes,cellular,aug,tue,113,1,6,2,success,-2.9,92.201,-31.4,0.859,5076.2,no +26,admin.,single,university.degree,no,yes,no,telephone,aug,tue,215,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +47,admin.,single,university.degree,no,yes,no,cellular,aug,tue,161,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +49,technician,married,university.degree,no,no,no,cellular,aug,tue,90,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +32,technician,single,university.degree,no,yes,yes,cellular,aug,tue,96,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +56,management,married,university.degree,no,no,no,telephone,aug,tue,108,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +59,management,married,university.degree,no,yes,no,cellular,aug,tue,210,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no +61,retired,married,university.degree,no,yes,no,cellular,aug,tue,101,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,tue,360,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +37,admin.,married,university.degree,no,no,yes,cellular,aug,tue,66,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no +37,admin.,married,university.degree,no,yes,no,cellular,aug,tue,148,1,999,2,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +35,technician,married,university.degree,no,unknown,unknown,cellular,aug,tue,117,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +32,services,married,high.school,no,no,no,cellular,aug,tue,363,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +71,retired,married,basic.4y,unknown,unknown,unknown,cellular,aug,tue,216,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +50,admin.,married,university.degree,no,no,no,cellular,aug,tue,587,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +34,technician,married,professional.course,no,no,no,cellular,aug,tue,193,1,13,1,success,-2.9,92.201,-31.4,0.859,5076.2,yes +56,management,married,university.degree,no,yes,no,cellular,aug,tue,370,2,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +33,blue-collar,divorced,basic.4y,no,yes,no,cellular,aug,tue,395,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +20,student,single,high.school,no,yes,no,cellular,aug,tue,532,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +64,retired,married,high.school,unknown,no,no,cellular,aug,tue,301,1,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,yes +29,admin.,single,university.degree,no,yes,no,cellular,aug,tue,307,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +65,retired,married,basic.4y,no,yes,no,cellular,aug,tue,197,2,999,1,failure,-2.9,92.201,-31.4,0.859,5076.2,no +63,retired,married,university.degree,no,no,no,telephone,aug,tue,280,3,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +35,technician,married,professional.course,no,no,no,cellular,aug,tue,441,1,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,yes +35,admin.,single,university.degree,no,no,no,telephone,aug,tue,396,3,999,0,nonexistent,-2.9,92.201,-31.4,0.859,5076.2,no +26,admin.,single,high.school,no,no,no,cellular,aug,wed,431,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +38,technician,married,university.degree,no,yes,no,cellular,aug,wed,220,5,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +74,retired,divorced,basic.4y,no,yes,no,cellular,aug,wed,536,1,13,1,success,-2.9,92.201,-31.4,0.854,5076.2,yes +33,admin.,married,high.school,no,yes,no,cellular,aug,wed,206,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +33,admin.,married,high.school,no,yes,no,telephone,aug,wed,578,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +62,unemployed,married,high.school,no,yes,no,cellular,aug,wed,250,1,999,1,failure,-2.9,92.201,-31.4,0.854,5076.2,no +80,retired,married,basic.4y,no,no,no,cellular,aug,wed,207,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +26,technician,single,university.degree,no,yes,yes,cellular,aug,wed,65,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +38,technician,married,university.degree,no,yes,no,cellular,aug,wed,238,4,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,768,2,999,2,failure,-2.9,92.201,-31.4,0.854,5076.2,yes +37,admin.,married,university.degree,no,no,no,cellular,aug,wed,225,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +56,housemaid,divorced,basic.4y,no,no,no,cellular,aug,wed,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +20,student,single,basic.9y,no,no,no,cellular,aug,wed,98,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +32,technician,single,university.degree,no,yes,no,cellular,aug,wed,240,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,173,1,1,1,success,-2.9,92.201,-31.4,0.854,5076.2,yes +55,unknown,married,university.degree,no,yes,no,cellular,aug,wed,164,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +26,admin.,single,high.school,no,yes,no,telephone,aug,wed,170,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +74,retired,married,university.degree,no,yes,yes,cellular,aug,wed,232,3,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +33,admin.,single,university.degree,no,yes,no,cellular,aug,wed,67,1,3,1,success,-2.9,92.201,-31.4,0.854,5076.2,no +73,retired,married,basic.4y,unknown,no,no,cellular,aug,wed,76,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +64,retired,married,basic.4y,no,yes,no,cellular,aug,wed,145,1,3,2,success,-2.9,92.201,-31.4,0.854,5076.2,yes +32,admin.,married,university.degree,no,yes,no,telephone,aug,wed,328,1,999,1,failure,-2.9,92.201,-31.4,0.854,5076.2,no +34,admin.,single,university.degree,no,no,no,cellular,aug,wed,195,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +34,unemployed,single,university.degree,no,no,no,cellular,aug,wed,484,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +33,admin.,married,high.school,no,no,no,cellular,aug,wed,321,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +54,technician,married,basic.9y,no,no,no,cellular,aug,wed,196,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +35,admin.,married,university.degree,no,no,yes,cellular,aug,wed,65,5,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +32,admin.,married,university.degree,no,yes,no,cellular,aug,wed,80,2,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,no +66,retired,married,basic.4y,no,yes,yes,telephone,aug,wed,82,3,999,3,failure,-2.9,92.201,-31.4,0.854,5076.2,no +33,admin.,single,university.degree,no,no,no,cellular,aug,wed,338,1,999,0,nonexistent,-2.9,92.201,-31.4,0.854,5076.2,yes +40,admin.,divorced,high.school,no,yes,no,cellular,aug,thu,262,2,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +37,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,329,3,9,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes +25,admin.,single,university.degree,no,yes,no,telephone,aug,thu,84,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +66,retired,married,basic.6y,no,yes,no,cellular,aug,thu,267,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes +36,technician,single,professional.course,no,yes,no,cellular,aug,thu,474,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes +34,admin.,single,university.degree,no,yes,no,cellular,aug,thu,377,6,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes +27,admin.,single,university.degree,no,yes,no,cellular,aug,thu,97,2,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +35,blue-collar,divorced,high.school,no,no,no,cellular,aug,thu,151,1,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes +37,student,single,unknown,no,no,no,cellular,aug,thu,928,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +62,admin.,married,university.degree,no,no,no,cellular,aug,thu,68,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +32,management,single,university.degree,no,no,no,cellular,aug,thu,149,1,3,2,success,-2.9,92.201,-31.4,0.851,5076.2,yes +38,services,single,high.school,no,yes,no,cellular,aug,thu,83,5,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +74,retired,married,basic.9y,no,no,no,cellular,aug,thu,188,2,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +71,retired,single,university.degree,no,yes,no,cellular,aug,thu,217,1,6,2,failure,-2.9,92.201,-31.4,0.851,5076.2,yes +29,admin.,married,university.degree,no,yes,no,cellular,aug,thu,69,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +29,admin.,married,university.degree,no,no,no,cellular,aug,thu,131,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +24,admin.,single,university.degree,no,no,no,cellular,aug,thu,147,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +24,admin.,single,university.degree,no,yes,no,cellular,aug,thu,158,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes +45,self-employed,married,university.degree,no,no,yes,cellular,aug,thu,157,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +26,admin.,single,university.degree,no,no,no,cellular,aug,thu,99,1,999,1,failure,-2.9,92.201,-31.4,0.851,5076.2,no +25,student,single,university.degree,no,no,no,cellular,aug,thu,184,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes +38,admin.,divorced,professional.course,no,no,no,cellular,aug,thu,201,2,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +28,technician,single,professional.course,no,yes,no,cellular,aug,thu,64,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +28,technician,single,professional.course,no,yes,no,cellular,aug,thu,63,2,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes +28,technician,single,professional.course,no,yes,no,cellular,aug,thu,78,3,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,yes +25,student,single,university.degree,no,no,no,cellular,aug,thu,75,1,999,0,nonexistent,-2.9,92.201,-31.4,0.851,5076.2,no +34,technician,single,unknown,no,yes,no,cellular,aug,thu,320,2,3,1,success,-2.9,92.201,-31.4,0.851,5076.2,yes +51,management,married,high.school,no,yes,yes,cellular,aug,fri,228,4,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +53,admin.,married,university.degree,no,no,no,cellular,aug,fri,139,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +64,retired,married,unknown,no,yes,yes,cellular,aug,fri,89,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +64,retired,married,university.degree,no,no,no,cellular,aug,fri,102,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +64,retired,married,university.degree,no,yes,yes,cellular,aug,fri,146,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +76,retired,married,basic.4y,no,yes,no,cellular,aug,fri,406,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +76,retired,married,basic.4y,no,no,no,cellular,aug,fri,61,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +61,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,374,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +61,retired,married,basic.4y,no,yes,no,cellular,aug,fri,168,1,15,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes +61,retired,married,basic.4y,no,yes,yes,cellular,aug,fri,69,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +58,retired,married,university.degree,no,yes,no,cellular,aug,fri,92,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +36,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,96,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +62,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,64,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +87,retired,divorced,basic.4y,no,no,no,cellular,aug,fri,273,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +39,student,single,unknown,no,yes,no,telephone,aug,fri,104,2,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +54,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,204,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,yes +54,technician,divorced,university.degree,no,no,no,cellular,aug,fri,90,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +24,student,single,high.school,no,yes,no,cellular,aug,fri,200,1,6,4,failure,-2.9,92.201,-31.4,0.849,5076.2,no +24,student,single,high.school,no,yes,no,cellular,aug,fri,53,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +24,student,single,high.school,no,yes,yes,cellular,aug,fri,44,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +24,student,single,high.school,no,yes,yes,cellular,aug,fri,298,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,no +24,student,single,high.school,no,no,no,cellular,aug,fri,276,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +34,unemployed,single,professional.course,no,no,no,cellular,aug,fri,531,2,2,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes +54,admin.,married,university.degree,no,yes,no,cellular,aug,fri,91,2,3,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes +55,management,married,university.degree,no,no,no,cellular,aug,fri,72,1,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +62,admin.,married,university.degree,no,yes,no,cellular,aug,fri,116,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +79,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,126,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes +30,blue-collar,married,high.school,no,yes,no,cellular,aug,fri,252,1,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +36,admin.,single,high.school,no,yes,no,cellular,aug,fri,159,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes +64,retired,married,unknown,no,yes,no,cellular,aug,fri,171,3,999,1,failure,-2.9,92.201,-31.4,0.849,5076.2,no +39,admin.,married,university.degree,no,yes,yes,cellular,aug,fri,343,2,14,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes +35,admin.,married,university.degree,no,yes,no,cellular,aug,fri,419,5,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,no +64,retired,married,unknown,no,no,no,cellular,aug,fri,252,4,999,0,nonexistent,-2.9,92.201,-31.4,0.849,5076.2,yes +24,student,single,unknown,no,yes,yes,cellular,aug,fri,744,1,3,2,success,-2.9,92.201,-31.4,0.849,5076.2,yes +24,student,single,unknown,no,yes,no,cellular,aug,fri,438,1,6,1,success,-2.9,92.201,-31.4,0.849,5076.2,yes +70,retired,married,university.degree,no,yes,no,cellular,aug,mon,73,3,999,1,failure,-2.9,92.201,-31.4,0.843,5076.2,no +34,admin.,married,university.degree,no,no,no,cellular,aug,mon,62,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +54,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,323,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,227,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +74,retired,married,basic.4y,unknown,yes,no,cellular,aug,mon,467,2,6,1,success,-2.9,92.201,-31.4,0.843,5076.2,yes +47,housemaid,married,university.degree,no,yes,no,cellular,aug,mon,232,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,yes +38,unemployed,single,high.school,no,yes,no,cellular,aug,mon,712,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,yes +66,retired,married,university.degree,no,no,yes,cellular,aug,mon,315,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +69,housemaid,married,basic.4y,no,no,no,telephone,aug,mon,420,4,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +58,retired,married,university.degree,no,yes,no,telephone,aug,mon,100,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +88,retired,married,university.degree,no,yes,no,cellular,aug,mon,401,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +40,admin.,married,university.degree,no,yes,no,cellular,aug,mon,55,1,999,2,failure,-2.9,92.201,-31.4,0.843,5076.2,no +57,retired,married,university.degree,no,yes,no,cellular,aug,mon,349,1,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +47,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,143,2,999,0,nonexistent,-2.9,92.201,-31.4,0.843,5076.2,no +64,retired,married,basic.9y,no,yes,no,cellular,aug,mon,79,2,3,1,success,-2.9,92.201,-31.4,0.843,5076.2,no +57,retired,married,university.degree,no,no,no,cellular,aug,mon,497,2,999,1,failure,-2.9,92.201,-31.4,0.843,5076.2,no +49,technician,divorced,high.school,no,no,no,cellular,aug,tue,109,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +25,admin.,single,university.degree,no,no,no,telephone,aug,tue,103,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +66,retired,married,basic.4y,unknown,yes,no,cellular,aug,tue,142,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes +81,retired,married,high.school,no,no,no,cellular,aug,tue,50,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +44,technician,divorced,high.school,no,no,no,cellular,aug,tue,188,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +43,services,married,high.school,no,no,yes,cellular,aug,tue,79,2,3,2,success,-2.9,92.201,-31.4,0.838,5076.2,no +38,student,single,unknown,no,yes,yes,cellular,aug,tue,158,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +63,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,511,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,yes +51,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,192,1,6,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes +58,retired,married,high.school,no,no,no,cellular,aug,tue,585,4,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +51,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,133,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no +51,admin.,divorced,high.school,no,no,no,cellular,aug,tue,83,1,6,2,failure,-2.9,92.201,-31.4,0.838,5076.2,no +54,technician,married,professional.course,no,yes,no,cellular,aug,tue,41,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +63,technician,married,unknown,no,yes,no,cellular,aug,tue,173,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +63,technician,married,unknown,no,yes,no,cellular,aug,tue,279,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no +63,technician,married,unknown,no,no,no,cellular,aug,tue,47,1,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no +64,unknown,married,unknown,no,no,no,cellular,aug,tue,275,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +58,retired,married,high.school,no,no,no,cellular,aug,tue,130,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes +54,retired,married,professional.course,unknown,no,no,cellular,aug,tue,76,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +63,housemaid,married,basic.4y,no,no,no,cellular,aug,tue,479,1,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes +54,retired,married,professional.course,unknown,no,no,cellular,aug,tue,95,2,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes +60,housemaid,divorced,professional.course,no,yes,no,cellular,aug,tue,186,3,999,1,failure,-2.9,92.201,-31.4,0.838,5076.2,no +62,retired,married,professional.course,no,yes,no,cellular,aug,tue,531,3,6,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes +58,retired,married,high.school,no,no,no,cellular,aug,tue,360,5,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,no +58,retired,married,high.school,no,yes,no,cellular,aug,tue,242,6,3,1,success,-2.9,92.201,-31.4,0.838,5076.2,yes +53,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,159,2,3,1,success,-2.9,92.201,-31.4,0.838,5076.2,no +56,services,single,high.school,no,no,yes,cellular,aug,tue,555,3,999,0,nonexistent,-2.9,92.201,-31.4,0.838,5076.2,yes +43,admin.,married,high.school,no,yes,no,cellular,aug,tue,291,2,3,2,success,-2.9,92.201,-31.4,0.838,5076.2,yes +43,admin.,married,university.degree,no,no,yes,cellular,aug,tue,161,3,13,1,success,-2.9,92.201,-31.4,0.838,5076.2,no +67,retired,divorced,university.degree,no,yes,no,cellular,aug,wed,89,5,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no +27,admin.,single,high.school,no,no,no,telephone,aug,wed,415,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes +49,entrepreneur,single,university.degree,no,yes,no,cellular,aug,wed,78,6,5,1,success,-2.9,92.201,-31.4,0.834,5076.2,no +42,retired,divorced,illiterate,no,no,no,telephone,aug,wed,128,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes +59,technician,married,professional.course,no,yes,no,telephone,aug,wed,240,3,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no +57,retired,married,university.degree,no,yes,no,cellular,aug,wed,187,1,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no +59,technician,married,professional.course,no,yes,no,cellular,aug,wed,210,4,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes +28,admin.,married,university.degree,no,yes,no,cellular,aug,wed,75,1,999,1,failure,-2.9,92.201,-31.4,0.834,5076.2,no +80,retired,married,basic.4y,no,yes,no,cellular,aug,wed,323,1,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,yes +80,retired,married,basic.4y,no,yes,no,cellular,aug,wed,76,1,3,2,success,-2.9,92.201,-31.4,0.834,5076.2,no +78,retired,married,basic.4y,no,no,yes,cellular,aug,wed,103,1,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no +56,housemaid,married,basic.4y,no,yes,no,cellular,aug,wed,359,3,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no +42,retired,divorced,illiterate,no,no,no,cellular,aug,wed,146,4,999,0,nonexistent,-2.9,92.201,-31.4,0.834,5076.2,no +28,student,single,unknown,no,no,no,cellular,aug,thu,700,4,999,1,failure,-2.9,92.201,-31.4,0.829,5076.2,yes +24,self-employed,single,university.degree,no,no,no,cellular,aug,thu,64,3,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +71,retired,married,university.degree,no,no,no,cellular,aug,thu,148,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +71,retired,married,university.degree,no,yes,no,cellular,aug,thu,1112,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +59,admin.,single,university.degree,no,no,no,cellular,aug,thu,259,3,15,1,success,-2.9,92.201,-31.4,0.829,5076.2,yes +46,housemaid,married,basic.4y,no,unknown,unknown,cellular,aug,thu,154,2,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +51,admin.,married,university.degree,no,yes,no,cellular,aug,thu,212,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,yes +46,admin.,married,university.degree,no,yes,no,cellular,aug,thu,445,3,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,yes +50,admin.,married,university.degree,no,no,yes,cellular,aug,thu,460,1,15,2,failure,-2.9,92.201,-31.4,0.829,5076.2,yes +46,self-employed,married,university.degree,no,yes,no,cellular,aug,thu,148,2,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +58,retired,divorced,high.school,no,no,no,cellular,aug,thu,398,2,999,1,failure,-2.9,92.201,-31.4,0.829,5076.2,yes +31,admin.,single,university.degree,no,no,no,cellular,aug,thu,81,1,3,1,success,-2.9,92.201,-31.4,0.829,5076.2,yes +42,admin.,divorced,university.degree,no,yes,no,cellular,aug,thu,294,1,999,0,nonexistent,-2.9,92.201,-31.4,0.829,5076.2,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,fri,118,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +36,housemaid,single,university.degree,no,unknown,unknown,cellular,aug,fri,119,2,3,1,success,-2.9,92.201,-31.4,0.825,5076.2,no +59,retired,married,unknown,no,no,no,cellular,aug,fri,109,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +48,management,married,university.degree,unknown,yes,no,cellular,aug,fri,207,3,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no +45,services,married,high.school,no,yes,no,cellular,aug,fri,67,3,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no +28,student,single,unknown,no,yes,no,telephone,aug,fri,268,3,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +27,student,single,university.degree,no,yes,no,cellular,aug,fri,630,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +25,student,single,unknown,unknown,yes,no,cellular,aug,fri,50,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +25,student,single,unknown,unknown,no,no,cellular,aug,fri,248,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +25,student,single,unknown,unknown,yes,no,cellular,aug,fri,121,1,15,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no +25,student,single,unknown,unknown,yes,no,cellular,aug,fri,90,1,999,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no +25,student,single,unknown,unknown,yes,no,cellular,aug,fri,81,1,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,no +24,student,single,high.school,no,no,no,cellular,aug,fri,65,1,999,2,failure,-2.9,92.201,-31.4,0.825,5076.2,no +24,student,single,high.school,no,yes,no,telephone,aug,fri,359,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +33,admin.,married,high.school,no,no,no,cellular,aug,fri,207,3,15,1,success,-2.9,92.201,-31.4,0.825,5076.2,yes +43,technician,single,professional.course,no,no,no,cellular,aug,fri,255,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +26,student,single,high.school,no,no,no,cellular,aug,fri,133,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +55,entrepreneur,divorced,basic.9y,no,yes,no,cellular,aug,fri,622,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,yes +26,student,single,university.degree,no,no,yes,cellular,aug,fri,173,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,yes +62,retired,married,professional.course,no,yes,yes,cellular,aug,fri,517,2,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,yes +44,admin.,married,high.school,no,no,no,cellular,aug,fri,283,1,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +34,technician,married,university.degree,no,yes,no,cellular,aug,fri,94,3,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +28,student,single,professional.course,no,no,no,cellular,aug,fri,36,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +44,management,married,unknown,no,yes,no,cellular,aug,fri,247,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +26,student,single,high.school,no,yes,no,cellular,aug,fri,155,2,6,2,failure,-2.9,92.201,-31.4,0.825,5076.2,yes +72,unknown,married,unknown,no,yes,yes,cellular,aug,fri,207,8,999,1,failure,-2.9,92.201,-31.4,0.825,5076.2,yes +45,technician,married,high.school,no,yes,no,cellular,aug,fri,368,2,999,0,nonexistent,-2.9,92.201,-31.4,0.825,5076.2,no +30,student,married,university.degree,no,no,no,cellular,aug,mon,98,2,3,2,success,-2.9,92.201,-31.4,0.821,5076.2,yes +51,technician,married,professional.course,no,yes,no,cellular,aug,mon,72,2,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no +40,technician,married,high.school,no,yes,no,cellular,aug,mon,69,2,999,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no +26,self-employed,single,university.degree,no,yes,no,cellular,aug,mon,102,2,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no +40,technician,married,high.school,no,no,no,cellular,aug,mon,115,3,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +73,retired,married,university.degree,no,no,no,telephone,aug,mon,245,4,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +36,admin.,married,high.school,no,no,no,cellular,aug,mon,54,5,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +73,retired,married,basic.4y,no,unknown,unknown,cellular,aug,mon,160,3,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,yes +38,technician,married,professional.course,no,unknown,unknown,telephone,aug,mon,473,2,9,1,success,-2.9,92.201,-31.4,0.821,5076.2,yes +36,technician,single,professional.course,no,yes,no,cellular,aug,mon,62,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no +73,retired,divorced,high.school,no,yes,no,cellular,aug,mon,114,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +40,technician,married,high.school,no,yes,no,cellular,aug,mon,83,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +30,student,married,university.degree,no,yes,no,cellular,aug,mon,186,3,3,1,success,-2.9,92.201,-31.4,0.821,5076.2,yes +29,admin.,single,university.degree,no,yes,yes,cellular,aug,mon,121,12,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,81,1,999,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no +53,admin.,married,university.degree,no,yes,no,cellular,aug,mon,267,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,yes +38,admin.,married,high.school,no,yes,no,cellular,aug,mon,106,1,999,1,failure,-2.9,92.201,-31.4,0.821,5076.2,no +38,admin.,married,high.school,no,yes,no,cellular,aug,mon,470,1,6,2,failure,-2.9,92.201,-31.4,0.821,5076.2,yes +33,self-employed,married,university.degree,no,yes,no,cellular,aug,mon,98,3,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +31,management,married,university.degree,no,yes,yes,cellular,aug,mon,271,2,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,yes +59,self-employed,married,university.degree,no,yes,no,telephone,aug,mon,139,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +63,retired,married,university.degree,no,yes,no,cellular,aug,mon,79,1,6,2,failure,-2.9,92.201,-31.4,0.821,5076.2,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,mon,89,1,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +31,management,married,university.degree,no,yes,no,cellular,aug,mon,197,2,999,0,nonexistent,-2.9,92.201,-31.4,0.821,5076.2,no +53,admin.,married,university.degree,unknown,yes,no,cellular,sep,tue,81,5,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +32,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,69,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +52,admin.,married,unknown,no,no,no,telephone,sep,tue,97,5,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +39,entrepreneur,married,basic.6y,no,yes,no,cellular,sep,tue,265,2,16,1,success,-3.4,92.379,-29.8,0.819,5017.5,yes +32,admin.,single,university.degree,no,yes,no,cellular,sep,tue,157,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +36,admin.,married,university.degree,no,yes,yes,cellular,sep,tue,28,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +52,admin.,married,unknown,no,no,no,telephone,sep,tue,513,13,14,2,failure,-3.4,92.379,-29.8,0.819,5017.5,no +35,entrepreneur,married,high.school,no,no,no,cellular,sep,tue,91,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +48,technician,married,basic.9y,no,no,no,cellular,sep,tue,99,3,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,no +27,management,single,university.degree,no,yes,no,cellular,sep,tue,137,2,4,2,success,-3.4,92.379,-29.8,0.819,5017.5,no +38,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,115,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +38,admin.,single,university.degree,no,yes,no,telephone,sep,tue,490,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +28,management,single,university.degree,no,yes,no,cellular,sep,tue,76,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +28,management,single,university.degree,no,yes,no,cellular,sep,tue,368,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +51,blue-collar,married,professional.course,no,yes,no,cellular,sep,tue,86,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +52,technician,married,professional.course,no,yes,yes,cellular,sep,tue,77,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,no +33,admin.,married,high.school,no,yes,no,cellular,sep,tue,212,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes +54,admin.,married,unknown,no,yes,no,cellular,sep,tue,82,1,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes +79,retired,married,basic.9y,no,no,no,cellular,sep,tue,181,1,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,yes +39,entrepreneur,married,basic.6y,no,yes,no,cellular,sep,tue,531,2,999,0,nonexistent,-3.4,92.379,-29.8,0.819,5017.5,yes +39,entrepreneur,married,basic.6y,no,no,no,cellular,sep,tue,106,4,16,2,failure,-3.4,92.379,-29.8,0.819,5017.5,no +45,admin.,married,university.degree,no,unknown,unknown,cellular,sep,tue,55,6,999,1,failure,-3.4,92.379,-29.8,0.819,5017.5,no +19,student,single,basic.9y,no,yes,no,cellular,sep,wed,207,2,999,1,failure,-3.4,92.379,-29.8,0.813,5017.5,no +37,admin.,married,university.degree,no,yes,no,cellular,sep,wed,140,2,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes +34,technician,married,professional.course,no,yes,no,cellular,sep,wed,233,2,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes +60,admin.,married,professional.course,no,yes,yes,telephone,sep,wed,61,3,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,no +40,unemployed,married,university.degree,no,yes,yes,cellular,sep,wed,172,4,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,no +34,technician,married,professional.course,no,yes,yes,cellular,sep,wed,121,3,999,0,nonexistent,-3.4,92.379,-29.8,0.813,5017.5,yes +60,unemployed,married,basic.6y,no,yes,no,cellular,sep,thu,95,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,no +18,student,single,unknown,no,no,no,cellular,sep,thu,385,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes +18,student,single,unknown,no,yes,no,cellular,sep,thu,114,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +25,admin.,single,university.degree,no,yes,no,cellular,sep,thu,420,1,1,1,success,-3.4,92.379,-29.8,0.809,5017.5,no +26,admin.,single,university.degree,no,yes,no,telephone,sep,thu,471,1,7,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes +72,retired,married,unknown,no,no,no,cellular,sep,thu,60,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +60,management,married,university.degree,no,yes,yes,telephone,sep,thu,225,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +32,admin.,married,university.degree,no,no,no,cellular,sep,thu,444,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,yes +46,technician,married,professional.course,no,yes,yes,cellular,sep,thu,144,2,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no +60,retired,married,professional.course,no,yes,no,cellular,sep,thu,104,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no +60,retired,married,professional.course,no,yes,no,cellular,sep,thu,365,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes +44,admin.,married,university.degree,no,yes,no,cellular,sep,thu,331,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,yes +44,admin.,married,university.degree,no,yes,no,cellular,sep,thu,259,1,14,1,success,-3.4,92.379,-29.8,0.809,5017.5,no +63,unknown,married,unknown,no,yes,no,cellular,sep,thu,268,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no +40,unknown,single,unknown,no,no,no,cellular,sep,thu,224,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,yes +43,technician,married,high.school,no,yes,no,cellular,sep,thu,531,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +43,technician,married,high.school,no,yes,yes,cellular,sep,thu,167,1,3,2,success,-3.4,92.379,-29.8,0.809,5017.5,no +26,student,single,unknown,no,no,no,cellular,sep,thu,81,1,999,1,failure,-3.4,92.379,-29.8,0.809,5017.5,no +26,student,single,unknown,no,yes,yes,cellular,sep,thu,733,1,3,1,success,-3.4,92.379,-29.8,0.809,5017.5,yes +18,student,single,unknown,no,unknown,unknown,cellular,sep,thu,72,2,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +71,retired,married,basic.4y,no,yes,no,telephone,sep,thu,2055,1,999,0,nonexistent,-3.4,92.379,-29.8,0.809,5017.5,no +35,services,divorced,high.school,no,yes,no,cellular,sep,fri,56,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +35,admin.,married,university.degree,no,yes,yes,cellular,sep,fri,73,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +61,retired,married,basic.9y,no,yes,yes,cellular,sep,fri,104,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +59,management,married,university.degree,no,yes,no,cellular,sep,fri,328,2,3,1,success,-3.4,92.379,-29.8,0.803,5017.5,yes +38,technician,married,professional.course,no,yes,no,cellular,sep,fri,166,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +51,technician,married,professional.course,no,no,yes,cellular,sep,fri,520,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes +53,technician,married,professional.course,no,yes,yes,cellular,sep,fri,730,1,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,yes +26,management,single,university.degree,no,no,no,cellular,sep,fri,351,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +41,management,married,basic.6y,no,no,no,cellular,sep,fri,181,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +53,technician,married,professional.course,no,yes,no,telephone,sep,fri,384,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +83,retired,married,unknown,no,yes,no,cellular,sep,fri,369,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +45,admin.,single,high.school,no,no,no,cellular,sep,fri,204,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +40,admin.,divorced,high.school,no,yes,no,telephone,sep,fri,101,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +32,admin.,married,university.degree,no,yes,no,cellular,sep,fri,205,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +50,admin.,married,high.school,no,yes,yes,cellular,sep,fri,128,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +76,management,married,unknown,no,no,no,cellular,sep,fri,113,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +76,management,married,unknown,no,no,no,cellular,sep,fri,879,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes +39,blue-collar,married,basic.9y,no,yes,no,cellular,sep,fri,293,1,3,1,success,-3.4,92.379,-29.8,0.803,5017.5,yes +72,retired,married,basic.4y,no,no,no,cellular,sep,fri,230,1,3,2,success,-3.4,92.379,-29.8,0.803,5017.5,yes +18,student,single,unknown,no,yes,no,cellular,sep,fri,563,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes +31,admin.,single,university.degree,no,no,no,cellular,sep,fri,123,3,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +28,student,single,high.school,no,no,no,cellular,sep,fri,555,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes +71,retired,married,professional.course,no,no,no,cellular,sep,fri,313,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +63,management,married,unknown,no,yes,no,cellular,sep,fri,156,2,999,2,failure,-3.4,92.379,-29.8,0.803,5017.5,no +50,admin.,married,high.school,no,yes,no,cellular,sep,fri,434,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,yes +39,technician,married,basic.9y,no,no,no,cellular,sep,fri,171,2,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,no +46,admin.,married,high.school,no,yes,yes,cellular,sep,fri,154,3,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +55,admin.,single,university.degree,no,yes,no,cellular,sep,fri,93,2,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +47,admin.,married,university.degree,no,no,no,cellular,sep,fri,639,3,999,1,failure,-3.4,92.379,-29.8,0.803,5017.5,no +31,admin.,single,university.degree,no,yes,no,cellular,sep,fri,112,7,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +54,admin.,married,university.degree,no,no,yes,cellular,sep,fri,172,1,999,0,nonexistent,-3.4,92.379,-29.8,0.803,5017.5,no +28,admin.,married,university.degree,no,yes,yes,cellular,sep,mon,589,3,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,no +45,housemaid,single,basic.4y,no,no,no,telephone,sep,mon,569,4,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes +59,admin.,married,unknown,no,yes,yes,cellular,sep,mon,281,3,3,1,success,-3.4,92.379,-29.8,0.797,5017.5,yes +61,retired,married,university.degree,no,no,no,cellular,sep,mon,350,1,3,2,success,-3.4,92.379,-29.8,0.797,5017.5,yes +59,admin.,married,unknown,no,no,yes,cellular,sep,mon,295,4,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes +45,housemaid,single,basic.4y,no,yes,no,cellular,sep,mon,219,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes +41,admin.,married,university.degree,no,yes,no,cellular,sep,mon,182,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +30,management,married,university.degree,no,yes,no,telephone,sep,mon,221,1,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,no +48,technician,married,professional.course,no,yes,no,cellular,sep,mon,669,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +41,admin.,married,university.degree,no,no,no,cellular,sep,mon,133,3,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +54,technician,married,professional.course,no,no,no,cellular,sep,mon,99,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +54,technician,married,professional.course,no,yes,no,telephone,sep,mon,289,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +25,blue-collar,single,basic.9y,no,no,no,cellular,sep,mon,92,1,999,2,failure,-3.4,92.379,-29.8,0.797,5017.5,no +28,technician,married,high.school,no,yes,no,cellular,sep,mon,89,1,4,1,success,-3.4,92.379,-29.8,0.797,5017.5,no +41,admin.,married,university.degree,no,yes,no,cellular,sep,mon,97,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +52,technician,married,professional.course,no,yes,yes,cellular,sep,mon,211,1,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes +45,admin.,married,university.degree,no,no,no,cellular,sep,mon,394,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +45,admin.,married,university.degree,no,no,no,cellular,sep,mon,587,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes +61,retired,married,university.degree,no,no,no,telephone,sep,mon,147,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +25,self-employed,single,university.degree,no,yes,no,cellular,sep,mon,510,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +45,admin.,married,university.degree,no,no,no,cellular,sep,mon,351,1,3,2,success,-3.4,92.379,-29.8,0.797,5017.5,yes +28,services,single,university.degree,no,yes,no,cellular,sep,mon,274,1,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +41,admin.,married,university.degree,no,no,no,cellular,sep,mon,800,2,999,1,failure,-3.4,92.379,-29.8,0.797,5017.5,yes +46,blue-collar,married,professional.course,no,no,no,cellular,sep,mon,98,2,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +39,admin.,married,university.degree,no,no,no,cellular,sep,mon,57,2,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,no +30,admin.,single,university.degree,no,no,no,cellular,sep,mon,199,6,999,0,nonexistent,-3.4,92.379,-29.8,0.797,5017.5,yes +68,retired,married,basic.4y,no,no,no,telephone,sep,tue,201,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,no +30,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,145,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +43,technician,married,professional.course,no,no,no,cellular,sep,tue,293,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +49,admin.,married,high.school,no,no,no,cellular,sep,tue,495,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes +71,retired,married,basic.4y,no,yes,no,cellular,sep,tue,206,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +66,management,divorced,university.degree,no,no,no,cellular,sep,tue,679,1,1,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes +76,retired,divorced,basic.4y,no,no,no,cellular,sep,tue,221,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no +39,self-employed,divorced,high.school,no,no,no,cellular,sep,tue,261,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes +30,self-employed,single,university.degree,no,no,no,cellular,sep,tue,169,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +29,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,445,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +63,retired,married,unknown,no,yes,yes,cellular,sep,tue,167,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,no +43,technician,married,high.school,no,yes,no,cellular,sep,tue,260,1,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes +75,retired,married,unknown,no,no,no,cellular,sep,tue,191,1,999,1,failure,-3.4,92.379,-29.8,0.788,5017.5,yes +24,student,single,basic.9y,no,unknown,unknown,cellular,sep,tue,137,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +71,retired,married,basic.4y,no,no,no,cellular,sep,tue,76,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no +39,self-employed,divorced,high.school,no,no,no,cellular,sep,tue,108,2,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,yes +18,student,single,unknown,no,no,no,telephone,sep,tue,401,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no +30,self-employed,single,university.degree,no,yes,no,cellular,sep,tue,191,1,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,no +35,services,married,high.school,no,no,no,cellular,sep,tue,421,2,3,1,success,-3.4,92.379,-29.8,0.788,5017.5,no +34,technician,married,professional.course,no,yes,yes,telephone,sep,tue,376,2,999,0,nonexistent,-3.4,92.379,-29.8,0.788,5017.5,yes +53,technician,married,unknown,no,no,no,cellular,sep,wed,121,2,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +30,admin.,married,university.degree,no,yes,yes,cellular,sep,wed,475,5,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +69,retired,married,basic.9y,no,yes,no,cellular,sep,wed,71,1,5,1,success,-3.4,92.379,-29.8,0.781,5017.5,no +58,retired,married,basic.4y,no,no,no,cellular,sep,wed,394,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +58,retired,married,basic.4y,no,no,no,telephone,sep,wed,180,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +36,services,married,high.school,no,yes,yes,cellular,sep,wed,569,3,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +78,unknown,married,unknown,no,yes,no,cellular,sep,wed,95,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +78,unknown,married,unknown,no,yes,no,cellular,sep,wed,234,1,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,yes +46,admin.,married,high.school,no,yes,no,cellular,sep,wed,408,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +91,retired,married,university.degree,no,yes,yes,cellular,sep,wed,837,1,999,2,failure,-3.4,92.379,-29.8,0.781,5017.5,no +62,retired,married,university.degree,no,yes,no,cellular,sep,wed,105,3,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,no +27,admin.,single,university.degree,no,yes,yes,cellular,sep,wed,345,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +27,admin.,single,university.degree,no,no,no,cellular,sep,wed,397,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,yes +36,unemployed,married,unknown,unknown,no,no,cellular,sep,wed,344,1,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,yes +32,self-employed,single,university.degree,no,yes,no,cellular,sep,wed,372,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +62,retired,married,university.degree,no,no,no,telephone,sep,wed,595,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +29,admin.,single,university.degree,no,yes,no,cellular,sep,wed,307,2,999,1,failure,-3.4,92.379,-29.8,0.781,5017.5,no +58,housemaid,divorced,basic.4y,no,yes,yes,cellular,sep,wed,511,1,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +32,student,married,high.school,no,no,no,telephone,sep,wed,277,5,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +91,retired,married,university.degree,no,no,yes,cellular,sep,wed,223,2,999,0,nonexistent,-3.4,92.379,-29.8,0.781,5017.5,no +76,retired,married,basic.4y,no,yes,no,cellular,sep,wed,259,2,3,1,success,-3.4,92.379,-29.8,0.781,5017.5,yes +56,admin.,married,university.degree,no,yes,no,cellular,sep,thu,169,2,3,2,success,-3.4,92.379,-29.8,0.778,5017.5,yes +56,entrepreneur,married,university.degree,no,yes,no,cellular,sep,thu,105,2,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no +42,management,married,basic.6y,no,yes,no,cellular,sep,thu,84,3,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,yes +25,admin.,single,high.school,no,no,no,cellular,sep,thu,185,1,3,1,success,-3.4,92.379,-29.8,0.778,5017.5,yes +59,management,married,unknown,no,yes,no,cellular,sep,thu,107,1,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no +56,admin.,married,high.school,no,no,no,cellular,sep,thu,276,1,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,no +42,management,married,basic.6y,no,yes,no,telephone,sep,thu,230,3,999,0,nonexistent,-3.4,92.379,-29.8,0.778,5017.5,yes +31,technician,married,professional.course,no,yes,no,cellular,sep,fri,90,4,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +69,retired,married,high.school,no,no,no,cellular,sep,fri,346,3,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +69,retired,married,university.degree,no,yes,no,cellular,sep,fri,324,8,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +57,management,married,basic.4y,no,yes,no,cellular,sep,fri,122,2,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no +73,retired,married,basic.4y,no,yes,no,cellular,sep,fri,96,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +34,admin.,single,university.degree,no,no,no,cellular,sep,fri,260,3,3,2,success,-3.4,92.379,-29.8,0.773,5017.5,yes +49,admin.,divorced,university.degree,no,yes,no,cellular,sep,fri,283,3,3,1,success,-3.4,92.379,-29.8,0.773,5017.5,yes +53,housemaid,married,basic.4y,no,yes,no,cellular,sep,fri,129,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +36,admin.,single,university.degree,no,yes,no,cellular,sep,fri,339,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no +36,admin.,married,university.degree,no,yes,no,cellular,sep,fri,355,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +43,admin.,single,high.school,no,yes,no,cellular,sep,fri,212,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +76,retired,married,university.degree,no,yes,no,cellular,sep,fri,336,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no +28,admin.,single,university.degree,no,yes,no,cellular,sep,fri,91,1,1,3,success,-3.4,92.379,-29.8,0.773,5017.5,yes +73,retired,married,basic.4y,no,yes,no,cellular,sep,fri,158,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +40,unemployed,married,professional.course,no,no,yes,telephone,sep,fri,91,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +38,admin.,single,high.school,no,yes,no,cellular,sep,fri,113,1,999,1,failure,-3.4,92.379,-29.8,0.773,5017.5,no +31,admin.,single,high.school,no,yes,no,cellular,sep,fri,210,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +36,admin.,single,university.degree,no,yes,no,cellular,sep,fri,100,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +69,retired,married,high.school,no,no,no,cellular,sep,fri,240,1,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +71,retired,married,unknown,no,yes,no,cellular,sep,fri,658,4,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +34,admin.,married,university.degree,no,no,no,telephone,sep,fri,290,2,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,yes +40,unemployed,married,professional.course,no,yes,no,cellular,sep,fri,155,3,999,0,nonexistent,-3.4,92.379,-29.8,0.773,5017.5,no +47,management,married,university.degree,no,yes,no,cellular,sep,mon,323,1,3,2,success,-3.4,92.379,-29.8,0.771,5017.5,yes +30,self-employed,married,university.degree,no,yes,no,telephone,sep,mon,103,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no +83,retired,married,unknown,no,yes,no,cellular,sep,mon,75,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no +39,admin.,married,high.school,no,no,no,cellular,sep,mon,85,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no +41,technician,married,professional.course,no,yes,no,cellular,sep,mon,394,2,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no +46,unemployed,married,university.degree,no,yes,yes,cellular,sep,mon,161,1,999,0,nonexistent,-3.4,92.379,-29.8,0.771,5017.5,no +62,entrepreneur,married,university.degree,no,no,no,cellular,sep,tue,170,1,999,1,failure,-3.4,92.379,-29.8,0.77,5017.5,yes +62,entrepreneur,married,university.degree,no,yes,no,telephone,sep,tue,722,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes +70,retired,married,basic.4y,no,no,no,cellular,sep,tue,150,1,3,2,success,-3.4,92.379,-29.8,0.77,5017.5,yes +59,retired,married,basic.4y,no,yes,no,cellular,sep,tue,458,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes +49,blue-collar,married,basic.4y,no,yes,no,cellular,sep,tue,133,2,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,no +70,admin.,married,basic.4y,no,no,no,cellular,sep,tue,1962,1,999,2,failure,-3.4,92.379,-29.8,0.77,5017.5,yes +29,admin.,single,high.school,no,yes,no,cellular,sep,tue,107,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes +27,admin.,married,university.degree,no,yes,no,cellular,sep,tue,173,2,6,2,failure,-3.4,92.379,-29.8,0.77,5017.5,yes +24,technician,married,university.degree,no,yes,yes,cellular,sep,tue,89,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes +21,student,single,basic.9y,no,unknown,unknown,cellular,sep,tue,875,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes +51,services,married,high.school,no,yes,no,cellular,sep,tue,208,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no +27,admin.,single,university.degree,no,yes,no,cellular,sep,tue,126,2,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,yes +70,admin.,married,basic.4y,no,yes,yes,cellular,sep,tue,91,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes +24,admin.,single,university.degree,no,no,no,cellular,sep,tue,106,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes +53,technician,married,professional.course,no,no,no,cellular,sep,tue,103,1,999,1,failure,-3.4,92.379,-29.8,0.77,5017.5,no +53,technician,married,professional.course,no,no,no,cellular,sep,tue,925,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,yes +66,admin.,married,university.degree,no,no,no,cellular,sep,tue,39,1,999,0,nonexistent,-3.4,92.379,-29.8,0.77,5017.5,no +69,unknown,married,university.degree,no,yes,yes,cellular,sep,tue,109,2,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no +47,admin.,divorced,high.school,no,yes,no,cellular,sep,tue,188,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no +70,admin.,married,basic.4y,no,no,no,cellular,sep,tue,111,1,3,1,success,-3.4,92.379,-29.8,0.77,5017.5,no +38,admin.,single,university.degree,unknown,yes,no,cellular,sep,wed,153,1,3,1,success,-3.4,92.379,-29.8,0.768,5017.5,yes +31,self-employed,married,university.degree,no,no,no,cellular,sep,wed,106,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no +31,self-employed,married,university.degree,no,no,no,cellular,sep,wed,152,1,3,1,success,-3.4,92.379,-29.8,0.768,5017.5,yes +49,unemployed,married,high.school,no,no,no,cellular,sep,wed,169,1,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no +49,unemployed,married,high.school,no,yes,no,cellular,sep,wed,177,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no +32,technician,married,university.degree,no,no,no,telephone,sep,wed,994,3,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no +49,unemployed,married,high.school,no,no,no,cellular,sep,wed,292,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,yes +49,unemployed,married,high.school,no,no,no,cellular,sep,wed,387,1,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,yes +60,retired,divorced,high.school,no,no,no,cellular,sep,wed,99,2,999,2,failure,-3.4,92.379,-29.8,0.768,5017.5,no +51,unemployed,married,high.school,no,yes,no,cellular,sep,wed,657,2,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no +32,technician,married,university.degree,no,no,no,cellular,sep,wed,246,3,999,0,nonexistent,-3.4,92.379,-29.8,0.768,5017.5,no +50,blue-collar,married,basic.6y,no,yes,no,cellular,sep,wed,92,3,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no +63,retired,married,professional.course,no,no,no,telephone,sep,wed,134,3,999,1,failure,-3.4,92.379,-29.8,0.768,5017.5,no +43,self-employed,married,high.school,no,yes,no,cellular,sep,thu,613,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,no +36,admin.,married,high.school,no,yes,no,cellular,sep,thu,192,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,no +36,admin.,married,high.school,no,no,no,cellular,sep,thu,543,1,999,0,nonexistent,-3.4,92.379,-29.8,0.766,5017.5,yes +46,self-employed,divorced,high.school,no,no,no,cellular,sep,fri,267,2,999,1,failure,-3.4,92.379,-29.8,0.762,5017.5,yes +56,unemployed,married,professional.course,no,no,no,cellular,sep,fri,323,3,6,1,success,-3.4,92.379,-29.8,0.762,5017.5,yes +52,admin.,married,university.degree,no,no,no,cellular,sep,fri,1104,2,999,0,nonexistent,-3.4,92.379,-29.8,0.762,5017.5,yes +56,unemployed,married,professional.course,no,no,no,cellular,sep,fri,1551,1,999,2,failure,-3.4,92.379,-29.8,0.762,5017.5,no +37,technician,married,university.degree,no,yes,no,telephone,sep,tue,773,1,3,2,success,-3.4,92.379,-29.8,0.755,5017.5,yes +39,services,married,high.school,no,no,no,cellular,sep,tue,65,1,999,0,nonexistent,-3.4,92.379,-29.8,0.755,5017.5,yes +60,self-employed,divorced,university.degree,no,no,no,cellular,sep,tue,83,1,3,1,success,-3.4,92.379,-29.8,0.755,5017.5,yes +47,admin.,divorced,high.school,no,yes,no,cellular,sep,tue,159,1,999,1,failure,-3.4,92.379,-29.8,0.755,5017.5,no +44,technician,married,professional.course,no,yes,no,cellular,sep,tue,173,1,4,1,success,-3.4,92.379,-29.8,0.755,5017.5,yes +22,services,single,professional.course,no,yes,yes,cellular,sep,tue,239,1,3,2,success,-3.4,92.379,-29.8,0.755,5017.5,yes +22,services,single,professional.course,no,yes,yes,cellular,sep,tue,369,1,999,0,nonexistent,-3.4,92.379,-29.8,0.755,5017.5,yes +50,technician,married,university.degree,no,yes,yes,cellular,sep,wed,1353,2,999,0,nonexistent,-3.4,92.379,-29.8,0.749,5017.5,no +63,housemaid,married,basic.4y,no,yes,no,cellular,sep,wed,299,1,3,1,success,-3.4,92.379,-29.8,0.749,5017.5,yes +35,technician,married,university.degree,no,yes,yes,cellular,sep,thu,62,3,999,0,nonexistent,-3.4,92.379,-29.8,0.743,5017.5,no +60,retired,divorced,professional.course,no,yes,no,cellular,sep,thu,63,1,999,2,failure,-3.4,92.379,-29.8,0.743,5017.5,no +60,retired,divorced,professional.course,no,yes,yes,cellular,sep,thu,794,1,999,0,nonexistent,-3.4,92.379,-29.8,0.743,5017.5,no +33,technician,single,basic.9y,no,no,no,cellular,sep,fri,105,2,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +54,blue-collar,married,basic.4y,no,no,no,cellular,sep,fri,49,2,999,1,failure,-3.4,92.379,-29.8,0.741,5017.5,no +53,admin.,divorced,university.degree,no,yes,yes,cellular,sep,fri,168,2,999,1,failure,-3.4,92.379,-29.8,0.741,5017.5,no +61,management,married,university.degree,no,yes,no,cellular,sep,fri,491,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +70,retired,married,high.school,no,yes,no,cellular,sep,fri,144,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +61,management,married,university.degree,no,no,no,cellular,sep,fri,105,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +70,retired,divorced,university.degree,no,yes,no,cellular,sep,fri,692,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,yes +68,retired,single,university.degree,no,yes,no,cellular,sep,fri,81,1,3,1,success,-3.4,92.379,-29.8,0.741,5017.5,no +70,retired,divorced,university.degree,no,no,no,cellular,sep,fri,399,2,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +68,retired,single,university.degree,no,yes,no,cellular,sep,fri,139,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +33,technician,single,basic.9y,no,yes,no,cellular,sep,fri,114,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +45,admin.,married,university.degree,no,yes,no,cellular,sep,fri,64,1,999,2,failure,-3.4,92.379,-29.8,0.741,5017.5,no +53,blue-collar,married,basic.4y,no,yes,no,cellular,sep,fri,85,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +62,self-employed,married,university.degree,unknown,no,no,cellular,sep,fri,74,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +62,self-employed,married,university.degree,unknown,yes,no,cellular,sep,fri,79,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,no +81,retired,married,basic.4y,no,yes,no,cellular,sep,fri,210,1,999,0,nonexistent,-3.4,92.379,-29.8,0.741,5017.5,yes +68,retired,single,university.degree,no,no,no,cellular,sep,mon,500,2,999,1,failure,-3.4,92.379,-29.8,0.739,5017.5,no +30,admin.,married,university.degree,no,no,no,cellular,sep,mon,294,2,6,1,success,-3.4,92.379,-29.8,0.739,5017.5,yes +68,retired,single,university.degree,no,yes,no,telephone,sep,mon,80,3,999,0,nonexistent,-3.4,92.379,-29.8,0.739,5017.5,no +43,services,married,basic.6y,no,no,no,cellular,sep,tue,115,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no +43,services,married,basic.6y,no,no,no,cellular,sep,tue,159,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,yes +43,services,married,basic.6y,no,yes,no,cellular,sep,tue,79,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no +30,unemployed,single,high.school,no,yes,no,cellular,sep,tue,75,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,no +70,housemaid,divorced,basic.4y,no,no,no,cellular,sep,tue,213,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,no +70,housemaid,divorced,basic.4y,no,yes,no,cellular,sep,tue,161,1,999,0,nonexistent,-3.4,92.379,-29.8,0.75,5017.5,no +56,management,divorced,university.degree,no,no,no,cellular,sep,tue,277,1,999,1,failure,-3.4,92.379,-29.8,0.75,5017.5,yes +37,housemaid,divorced,high.school,no,no,no,cellular,sep,wed,134,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no +61,retired,married,high.school,no,yes,no,cellular,sep,wed,117,1,3,1,success,-3.4,92.379,-29.8,0.753,5017.5,yes +35,technician,married,professional.course,no,yes,no,cellular,sep,wed,195,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no +55,unemployed,married,university.degree,no,yes,yes,cellular,sep,wed,585,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,no +35,admin.,married,university.degree,no,yes,no,telephone,sep,wed,234,1,999,0,nonexistent,-3.4,92.379,-29.8,0.753,5017.5,yes +37,unknown,single,university.degree,no,yes,yes,cellular,sep,wed,78,1,999,1,failure,-3.4,92.379,-29.8,0.753,5017.5,no +37,unknown,single,university.degree,no,no,no,cellular,sep,wed,314,1,1,1,success,-3.4,92.379,-29.8,0.753,5017.5,no +50,management,married,university.degree,no,yes,no,cellular,oct,thu,305,2,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes +37,admin.,single,university.degree,no,yes,no,cellular,oct,thu,447,3,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,yes +59,technician,single,basic.6y,no,no,no,cellular,oct,thu,86,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no +31,admin.,married,university.degree,no,yes,no,cellular,oct,thu,760,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +35,admin.,married,high.school,no,yes,no,cellular,oct,thu,194,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes +35,admin.,married,high.school,no,no,no,cellular,oct,thu,302,1,4,2,success,-3.4,92.431,-26.9,0.754,5017.5,no +36,admin.,married,university.degree,no,yes,no,cellular,oct,thu,66,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +69,retired,married,university.degree,no,yes,no,cellular,oct,thu,199,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +65,admin.,married,university.degree,no,yes,no,cellular,oct,thu,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +49,technician,divorced,unknown,no,no,no,cellular,oct,thu,56,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no +49,technician,divorced,unknown,no,no,no,cellular,oct,thu,237,1,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no +49,technician,divorced,unknown,no,yes,no,cellular,oct,thu,168,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,no +78,retired,married,basic.9y,no,yes,no,telephone,oct,thu,321,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +32,admin.,married,university.degree,no,yes,no,cellular,oct,thu,177,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +50,management,married,university.degree,no,yes,no,telephone,oct,thu,258,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,no +71,retired,married,basic.4y,no,no,no,cellular,oct,thu,250,2,999,2,failure,-3.4,92.431,-26.9,0.754,5017.5,no +29,admin.,single,university.degree,no,yes,no,cellular,oct,thu,99,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +51,technician,married,professional.course,no,yes,no,cellular,oct,thu,67,6,6,3,failure,-3.4,92.431,-26.9,0.754,5017.5,no +49,technician,divorced,unknown,no,yes,yes,cellular,oct,thu,81,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +23,unemployed,single,basic.9y,no,yes,no,cellular,oct,thu,238,1,4,1,success,-3.4,92.431,-26.9,0.754,5017.5,yes +38,admin.,married,high.school,no,yes,no,cellular,oct,thu,82,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,no +71,retired,married,basic.4y,no,yes,no,cellular,oct,thu,137,1,999,1,failure,-3.4,92.431,-26.9,0.754,5017.5,yes +26,technician,single,university.degree,no,yes,no,cellular,oct,thu,152,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +54,management,divorced,university.degree,unknown,yes,no,cellular,oct,thu,214,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,no +75,retired,divorced,basic.4y,unknown,yes,no,cellular,oct,thu,502,1,999,0,nonexistent,-3.4,92.431,-26.9,0.754,5017.5,yes +83,retired,married,professional.course,no,yes,no,cellular,oct,fri,849,2,4,1,success,-3.4,92.431,-26.9,0.752,5017.5,yes +28,unemployed,single,basic.4y,no,yes,yes,cellular,oct,fri,462,1,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no +63,retired,married,basic.6y,no,yes,no,cellular,oct,fri,91,2,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no +28,unemployed,single,basic.4y,no,yes,no,cellular,oct,fri,160,2,4,1,success,-3.4,92.431,-26.9,0.752,5017.5,no +71,retired,married,basic.9y,no,no,no,cellular,oct,fri,131,2,999,0,nonexistent,-3.4,92.431,-26.9,0.752,5017.5,no +82,retired,married,university.degree,no,yes,no,cellular,oct,tue,215,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes +45,blue-collar,married,professional.course,no,no,no,cellular,oct,tue,117,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +68,retired,married,high.school,no,yes,no,cellular,oct,tue,88,1,999,2,failure,-3.4,92.431,-26.9,0.744,5017.5,no +37,housemaid,single,university.degree,no,yes,no,cellular,oct,tue,89,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no +43,management,single,university.degree,no,yes,no,cellular,oct,tue,205,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +43,management,single,university.degree,no,no,no,cellular,oct,tue,408,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no +69,retired,divorced,professional.course,no,no,no,cellular,oct,tue,144,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes +82,retired,married,university.degree,no,yes,yes,cellular,oct,tue,63,1,999,1,failure,-3.4,92.431,-26.9,0.744,5017.5,no +82,retired,married,university.degree,no,yes,no,cellular,oct,tue,526,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,96,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +65,retired,married,high.school,no,yes,no,cellular,oct,tue,384,2,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes +80,retired,divorced,basic.4y,no,no,no,cellular,oct,tue,125,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +41,technician,married,professional.course,no,yes,no,cellular,oct,tue,304,2,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +27,admin.,married,high.school,no,no,no,cellular,oct,tue,572,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +56,unknown,married,basic.4y,no,yes,no,cellular,oct,tue,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,no +56,unknown,married,basic.4y,no,no,no,cellular,oct,tue,480,1,2,2,success,-3.4,92.431,-26.9,0.744,5017.5,yes +37,housemaid,single,university.degree,no,no,no,cellular,oct,tue,296,3,999,0,nonexistent,-3.4,92.431,-26.9,0.744,5017.5,yes +36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,133,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +63,retired,married,high.school,no,yes,no,cellular,oct,wed,323,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +30,unemployed,single,high.school,no,yes,yes,cellular,oct,wed,953,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +50,unknown,married,unknown,no,no,no,cellular,oct,wed,209,1,8,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +35,admin.,married,university.degree,no,no,no,cellular,oct,wed,371,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +86,retired,divorced,basic.4y,no,unknown,unknown,cellular,oct,wed,130,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +48,management,married,university.degree,no,yes,yes,cellular,oct,wed,157,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +34,self-employed,married,university.degree,no,no,no,cellular,oct,wed,201,1,5,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +58,technician,married,basic.4y,no,no,yes,cellular,oct,wed,867,2,4,2,success,-3.4,92.431,-26.9,0.74,5017.5,no +38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,90,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +60,admin.,married,unknown,no,yes,no,cellular,oct,wed,290,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +48,management,married,university.degree,no,no,no,cellular,oct,wed,81,1,6,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes +48,management,married,university.degree,no,yes,no,cellular,oct,wed,294,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +48,management,married,university.degree,no,no,no,cellular,oct,wed,301,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +35,technician,married,university.degree,no,yes,no,telephone,oct,wed,73,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +38,admin.,married,university.degree,no,no,no,cellular,oct,wed,180,2,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +58,technician,married,basic.4y,no,yes,no,telephone,oct,wed,88,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +53,admin.,married,unknown,no,yes,no,cellular,oct,wed,73,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +58,technician,married,basic.4y,no,yes,no,cellular,oct,wed,525,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +32,admin.,married,university.degree,no,yes,yes,cellular,oct,wed,223,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +63,retired,married,high.school,no,no,no,cellular,oct,wed,335,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,yes +63,retired,married,high.school,no,no,no,cellular,oct,wed,1386,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +41,technician,married,professional.course,no,no,no,cellular,oct,thu,173,2,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +48,admin.,married,high.school,no,no,no,cellular,oct,thu,113,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +69,technician,married,professional.course,no,yes,no,cellular,oct,thu,189,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +42,management,divorced,unknown,no,yes,no,cellular,oct,thu,148,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +42,management,divorced,unknown,no,yes,no,telephone,oct,thu,259,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +42,management,divorced,unknown,no,no,no,cellular,oct,thu,78,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +77,retired,divorced,unknown,no,no,no,cellular,oct,thu,97,2,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +54,management,divorced,university.degree,no,yes,no,cellular,oct,thu,234,2,6,1,success,-3.4,92.431,-26.9,0.741,5017.5,yes +36,technician,married,professional.course,unknown,no,no,cellular,oct,thu,667,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,yes +37,management,single,basic.9y,no,no,no,cellular,oct,thu,137,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,yes +69,technician,married,professional.course,no,yes,no,cellular,oct,thu,676,1,999,0,nonexistent,-3.4,92.431,-26.9,0.741,5017.5,no +42,management,single,university.degree,no,no,no,cellular,oct,fri,1106,2,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes +29,unemployed,divorced,high.school,no,no,no,cellular,oct,mon,181,2,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no +59,technician,married,university.degree,no,no,no,cellular,oct,mon,268,1,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,no +42,management,single,university.degree,no,yes,no,cellular,oct,mon,105,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes +42,management,single,university.degree,no,no,no,cellular,oct,mon,134,1,6,1,success,-3.4,92.431,-26.9,0.743,5017.5,no +59,technician,married,university.degree,no,yes,no,cellular,oct,mon,511,3,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,yes +42,management,single,university.degree,no,yes,no,cellular,oct,mon,138,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes +75,retired,married,basic.9y,no,no,no,cellular,oct,mon,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no +36,admin.,married,university.degree,no,yes,yes,cellular,oct,mon,78,1,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,yes +29,unemployed,divorced,high.school,no,no,no,cellular,oct,mon,92,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,no +42,management,single,university.degree,no,no,no,cellular,oct,mon,146,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes +33,blue-collar,married,basic.4y,no,yes,no,telephone,oct,mon,99,3,3,1,success,-3.4,92.431,-26.9,0.743,5017.5,no +77,retired,married,university.degree,no,no,yes,cellular,oct,mon,348,1,999,0,nonexistent,-3.4,92.431,-26.9,0.743,5017.5,yes +70,retired,married,university.degree,no,yes,no,cellular,oct,mon,837,2,999,1,failure,-3.4,92.431,-26.9,0.743,5017.5,no +38,technician,divorced,professional.course,no,no,yes,cellular,oct,tue,135,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no +32,admin.,married,professional.course,no,yes,no,cellular,oct,tue,435,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +44,technician,married,basic.9y,no,yes,no,cellular,oct,tue,306,1,2,1,success,-3.4,92.431,-26.9,0.742,5017.5,no +48,admin.,married,basic.6y,no,no,no,cellular,oct,tue,61,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +80,retired,married,basic.4y,no,yes,yes,cellular,oct,tue,78,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no +71,retired,single,university.degree,no,unknown,unknown,cellular,oct,tue,98,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +71,retired,single,university.degree,no,yes,no,cellular,oct,tue,167,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +71,retired,single,university.degree,no,no,no,telephone,oct,tue,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +26,student,single,basic.9y,no,unknown,unknown,cellular,oct,tue,92,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no +30,management,married,university.degree,no,no,no,cellular,oct,tue,411,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +35,student,single,university.degree,no,yes,no,cellular,oct,tue,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +30,management,married,university.degree,no,yes,no,cellular,oct,tue,1226,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +80,retired,married,basic.4y,no,no,no,cellular,oct,tue,242,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,yes +45,blue-collar,single,basic.9y,no,no,no,cellular,oct,tue,845,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no +33,unemployed,married,high.school,no,no,yes,cellular,oct,tue,227,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +58,unemployed,married,basic.9y,no,no,yes,cellular,oct,tue,49,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no +55,technician,married,professional.course,no,yes,no,cellular,oct,tue,182,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +55,technician,married,professional.course,no,no,no,cellular,oct,tue,213,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +55,technician,married,professional.course,no,no,no,cellular,oct,tue,285,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +48,technician,married,professional.course,no,no,yes,telephone,oct,tue,200,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +32,admin.,married,professional.course,no,yes,no,cellular,oct,tue,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +32,admin.,married,professional.course,no,no,yes,cellular,oct,tue,221,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes +22,student,single,high.school,no,yes,no,cellular,oct,tue,210,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes +26,student,single,basic.9y,no,yes,no,cellular,oct,tue,75,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no +27,technician,single,unknown,no,no,no,cellular,oct,tue,404,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +56,admin.,married,basic.9y,no,yes,no,cellular,oct,tue,1573,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no +17,student,single,unknown,no,no,yes,cellular,oct,tue,896,1,2,2,success,-3.4,92.431,-26.9,0.742,5017.5,yes +33,unemployed,married,high.school,no,yes,yes,cellular,oct,tue,301,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +45,blue-collar,single,basic.9y,no,no,yes,cellular,oct,tue,204,2,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes +26,student,single,basic.9y,no,yes,no,telephone,oct,tue,1003,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +48,admin.,married,basic.6y,no,yes,no,cellular,oct,tue,115,2,5,2,success,-3.4,92.431,-26.9,0.742,5017.5,no +80,retired,married,basic.4y,no,no,no,cellular,oct,tue,82,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +44,blue-collar,single,professional.course,no,no,no,cellular,oct,tue,123,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +71,retired,single,university.degree,no,no,no,telephone,oct,tue,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +28,technician,single,high.school,no,no,no,cellular,oct,wed,216,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes +28,technician,single,high.school,no,unknown,unknown,cellular,oct,wed,84,1,6,1,success,-3.4,92.431,-26.9,0.742,5017.5,yes +28,admin.,single,high.school,no,no,no,telephone,oct,wed,958,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +36,admin.,single,university.degree,no,no,no,cellular,oct,wed,146,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,no +71,retired,married,basic.9y,no,no,no,cellular,oct,wed,237,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +36,admin.,single,university.degree,no,yes,no,cellular,oct,wed,113,1,2,2,success,-3.4,92.431,-26.9,0.742,5017.5,no +74,retired,married,unknown,no,yes,yes,cellular,oct,wed,251,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +37,technician,married,university.degree,no,yes,no,cellular,oct,wed,364,1,999,1,failure,-3.4,92.431,-26.9,0.742,5017.5,yes +36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,104,1,999,2,failure,-3.4,92.431,-26.9,0.742,5017.5,no +37,blue-collar,single,professional.course,no,no,no,cellular,oct,wed,727,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +56,admin.,married,basic.9y,no,no,no,cellular,oct,wed,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +38,admin.,married,high.school,no,yes,no,cellular,oct,wed,108,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +35,technician,married,university.degree,no,yes,no,cellular,oct,wed,68,1,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +42,entrepreneur,married,basic.9y,no,no,no,cellular,oct,wed,122,3,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +34,management,married,university.degree,no,no,no,telephone,oct,wed,290,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,yes +28,technician,single,university.degree,no,yes,yes,cellular,oct,wed,166,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +36,admin.,married,university.degree,no,no,no,cellular,oct,wed,632,2,999,0,nonexistent,-3.4,92.431,-26.9,0.742,5017.5,no +36,unemployed,married,high.school,no,no,no,telephone,oct,thu,130,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +33,admin.,single,university.degree,no,no,no,cellular,oct,thu,441,5,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +37,blue-collar,married,basic.6y,no,yes,no,cellular,oct,thu,262,4,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +35,admin.,married,university.degree,no,yes,no,cellular,oct,thu,86,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +49,admin.,single,university.degree,no,no,no,cellular,oct,thu,73,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +28,student,single,high.school,no,no,no,telephone,oct,thu,280,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +34,technician,single,professional.course,no,no,no,cellular,oct,thu,138,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +30,self-employed,single,high.school,no,no,no,telephone,oct,thu,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +44,admin.,divorced,high.school,no,no,no,cellular,oct,thu,634,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +28,admin.,single,university.degree,no,yes,no,cellular,oct,thu,522,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +68,retired,married,professional.course,no,no,no,cellular,oct,thu,76,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,no +37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,244,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +37,blue-collar,married,basic.6y,no,yes,no,cellular,oct,thu,68,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +40,services,married,professional.course,no,yes,no,cellular,oct,thu,244,1,3,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes +28,student,single,unknown,no,yes,no,cellular,oct,thu,231,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +74,retired,married,professional.course,no,yes,no,cellular,oct,thu,96,2,3,1,success,-3.4,92.431,-26.9,0.74,5017.5,no +35,admin.,married,university.degree,no,yes,no,cellular,oct,thu,126,2,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +74,retired,married,basic.9y,no,yes,no,cellular,oct,thu,134,2,6,1,success,-3.4,92.431,-26.9,0.74,5017.5,yes +37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,246,5,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +37,blue-collar,married,basic.6y,no,no,no,cellular,oct,thu,128,2,6,3,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +33,admin.,single,university.degree,no,yes,no,telephone,oct,thu,166,3,6,2,success,-3.4,92.431,-26.9,0.74,5017.5,yes +25,admin.,single,university.degree,no,yes,yes,telephone,oct,thu,227,1,999,0,nonexistent,-3.4,92.431,-26.9,0.74,5017.5,no +37,management,single,university.degree,no,no,no,cellular,oct,thu,570,1,999,1,failure,-3.4,92.431,-26.9,0.74,5017.5,yes +83,retired,married,basic.9y,no,no,no,cellular,oct,fri,138,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +25,admin.,single,university.degree,no,yes,yes,cellular,oct,fri,115,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +28,services,married,basic.9y,no,yes,no,telephone,oct,fri,186,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +28,services,married,basic.9y,no,yes,no,cellular,oct,fri,847,1,2,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes +85,housemaid,divorced,basic.4y,unknown,yes,no,telephone,oct,fri,181,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +22,student,single,high.school,no,no,no,cellular,oct,fri,154,2,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +32,self-employed,married,professional.course,no,no,yes,cellular,oct,fri,55,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +25,admin.,single,university.degree,no,unknown,unknown,cellular,oct,fri,1580,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +39,technician,married,university.degree,no,no,no,cellular,oct,fri,170,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes +33,technician,married,professional.course,no,yes,no,cellular,oct,fri,154,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +40,admin.,married,university.degree,no,yes,yes,cellular,oct,fri,109,5,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +38,admin.,married,university.degree,no,yes,no,cellular,oct,fri,131,2,8,1,success,-3.4,92.431,-26.9,0.739,5017.5,no +39,technician,married,university.degree,no,yes,no,cellular,oct,fri,141,1,7,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no +39,admin.,single,high.school,no,no,no,cellular,oct,fri,95,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +39,admin.,single,high.school,no,yes,no,cellular,oct,fri,132,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +33,admin.,single,university.degree,no,yes,no,cellular,oct,fri,233,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +60,self-employed,married,university.degree,no,yes,no,telephone,oct,fri,128,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +33,self-employed,single,professional.course,no,yes,yes,telephone,oct,fri,193,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +26,admin.,single,university.degree,no,no,no,cellular,oct,fri,306,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +30,technician,single,professional.course,no,yes,no,telephone,oct,fri,169,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +36,services,married,high.school,no,yes,no,cellular,oct,fri,104,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no +36,services,married,high.school,no,no,no,cellular,oct,fri,141,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no +49,admin.,single,high.school,no,no,no,cellular,oct,fri,165,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +49,admin.,single,high.school,no,yes,no,telephone,oct,fri,434,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +28,admin.,single,university.degree,no,no,no,cellular,oct,fri,317,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +50,technician,married,professional.course,no,unknown,unknown,cellular,oct,fri,447,1,8,2,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +33,admin.,married,university.degree,no,no,no,cellular,oct,fri,130,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,yes +38,technician,married,university.degree,no,no,no,cellular,oct,fri,156,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +28,management,single,university.degree,no,no,no,cellular,oct,fri,324,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +62,retired,married,university.degree,unknown,no,no,cellular,oct,fri,717,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +34,management,married,university.degree,no,yes,no,cellular,oct,fri,87,1,2,1,success,-3.4,92.431,-26.9,0.739,5017.5,no +44,blue-collar,married,professional.course,no,no,no,cellular,oct,fri,283,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no +32,admin.,single,university.degree,no,no,no,cellular,oct,fri,147,2,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no +49,admin.,single,high.school,no,yes,no,cellular,oct,fri,136,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +36,admin.,married,university.degree,no,no,no,cellular,oct,fri,342,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,yes +36,management,married,basic.4y,no,no,no,cellular,oct,mon,143,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +70,retired,married,basic.4y,no,yes,no,cellular,oct,mon,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +34,admin.,single,university.degree,no,no,no,cellular,oct,mon,131,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +29,management,single,university.degree,no,no,no,cellular,oct,mon,94,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no +21,student,single,high.school,no,no,yes,cellular,oct,mon,238,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,98,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,599,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +60,retired,married,basic.4y,no,yes,no,cellular,oct,mon,1020,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +25,admin.,single,university.degree,no,yes,no,cellular,oct,mon,123,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +36,admin.,single,high.school,no,yes,no,cellular,oct,mon,113,1,6,1,success,-3.4,92.431,-26.9,0.739,5017.5,no +55,entrepreneur,married,professional.course,no,yes,no,cellular,oct,mon,534,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +60,retired,married,basic.4y,no,no,no,cellular,oct,mon,82,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +55,entrepreneur,married,professional.course,no,no,no,cellular,oct,mon,116,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +30,services,single,high.school,no,no,no,cellular,oct,mon,120,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +32,services,married,high.school,no,no,no,cellular,oct,mon,217,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +54,unemployed,divorced,high.school,no,no,yes,cellular,oct,mon,54,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +20,student,single,high.school,no,no,yes,cellular,oct,mon,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +36,management,married,basic.4y,no,yes,no,cellular,oct,mon,109,3,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +38,blue-collar,married,basic.9y,no,yes,no,cellular,oct,mon,167,3,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +30,services,single,high.school,no,yes,no,cellular,oct,mon,385,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +55,entrepreneur,married,professional.course,no,yes,no,telephone,oct,mon,323,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +41,blue-collar,married,basic.9y,no,no,no,cellular,oct,mon,79,1,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +41,blue-collar,married,basic.9y,no,no,no,cellular,oct,mon,104,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +55,entrepreneur,married,professional.course,no,yes,yes,cellular,oct,mon,233,1,999,2,failure,-3.4,92.431,-26.9,0.739,5017.5,no +65,retired,married,unknown,no,unknown,unknown,telephone,oct,mon,208,3,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +54,housemaid,married,professional.course,no,no,no,telephone,oct,mon,187,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +67,retired,married,professional.course,no,no,no,telephone,oct,mon,270,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +35,self-employed,single,university.degree,no,unknown,unknown,cellular,oct,mon,123,2,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,no +54,housemaid,married,professional.course,no,no,no,telephone,oct,mon,1745,3,999,1,failure,-3.4,92.431,-26.9,0.739,5017.5,no +21,student,single,high.school,no,no,no,cellular,oct,mon,328,1,999,0,nonexistent,-3.4,92.431,-26.9,0.739,5017.5,yes +51,entrepreneur,married,basic.4y,no,no,no,cellular,oct,tue,626,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no +59,housemaid,married,basic.4y,no,no,no,telephone,oct,tue,2187,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no +30,technician,married,professional.course,no,yes,no,cellular,oct,tue,59,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,164,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no +58,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,92,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,no +36,management,married,basic.6y,no,yes,no,cellular,oct,tue,332,1,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,yes +33,admin.,married,university.degree,no,yes,no,cellular,oct,tue,148,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes +31,admin.,married,university.degree,no,yes,no,cellular,oct,tue,107,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no +57,admin.,single,high.school,no,unknown,unknown,telephone,oct,tue,513,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes +31,services,single,professional.course,no,yes,no,telephone,oct,tue,373,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes +31,admin.,married,university.degree,no,yes,no,cellular,oct,tue,213,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes +60,technician,married,basic.4y,no,yes,no,cellular,oct,tue,595,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes +70,retired,married,basic.4y,no,yes,no,cellular,oct,tue,76,2,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no +59,housemaid,married,basic.4y,no,yes,no,cellular,oct,tue,518,2,6,1,success,-3.4,92.431,-26.9,0.737,5017.5,yes +53,entrepreneur,married,basic.4y,no,yes,no,telephone,oct,tue,251,2,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,no +30,technician,married,professional.course,no,yes,no,cellular,oct,tue,427,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes +24,management,single,university.degree,no,yes,no,cellular,oct,tue,676,2,999,1,failure,-3.4,92.431,-26.9,0.737,5017.5,yes +39,admin.,single,high.school,no,yes,no,cellular,oct,tue,386,1,999,0,nonexistent,-3.4,92.431,-26.9,0.737,5017.5,yes +44,admin.,married,university.degree,no,yes,no,cellular,oct,wed,192,3,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,828,1,999,1,failure,-3.4,92.431,-26.9,0.735,5017.5,yes +38,admin.,married,university.degree,no,yes,no,cellular,oct,wed,576,1,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +70,retired,married,high.school,no,yes,no,cellular,oct,wed,72,3,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +33,admin.,single,university.degree,no,no,yes,cellular,oct,wed,110,1,999,2,failure,-3.4,92.431,-26.9,0.735,5017.5,no +88,retired,divorced,basic.4y,no,yes,no,cellular,oct,wed,180,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +36,admin.,married,university.degree,no,yes,no,cellular,oct,wed,825,1,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +62,retired,divorced,university.degree,no,yes,no,telephone,oct,wed,129,3,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +44,admin.,married,university.degree,no,no,no,cellular,oct,wed,1206,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +32,admin.,married,university.degree,no,yes,no,cellular,oct,wed,467,2,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +88,retired,divorced,basic.4y,no,no,no,cellular,oct,wed,512,2,6,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +44,admin.,married,university.degree,no,yes,no,telephone,oct,wed,749,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes +36,admin.,married,university.degree,no,no,no,cellular,oct,wed,135,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes +54,admin.,divorced,university.degree,no,yes,no,cellular,oct,wed,164,2,6,2,success,-3.4,92.431,-26.9,0.735,5017.5,no +42,blue-collar,married,professional.course,no,yes,no,cellular,oct,wed,307,1,7,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +42,blue-collar,married,professional.course,no,no,no,cellular,oct,wed,287,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes +29,blue-collar,single,basic.9y,no,no,yes,cellular,oct,wed,107,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes +54,unemployed,married,basic.9y,no,yes,no,cellular,oct,wed,200,1,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,yes +34,technician,married,professional.course,no,yes,no,cellular,oct,wed,442,2,8,1,success,-3.4,92.431,-26.9,0.735,5017.5,yes +32,admin.,single,university.degree,no,yes,no,cellular,oct,wed,197,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +30,admin.,married,university.degree,no,yes,no,telephone,oct,wed,196,2,999,0,nonexistent,-3.4,92.431,-26.9,0.735,5017.5,no +37,unemployed,married,university.degree,no,yes,no,cellular,oct,thu,249,2,999,1,failure,-3.4,92.431,-26.9,0.733,5017.5,yes +35,unemployed,married,university.degree,no,no,no,cellular,oct,thu,360,5,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes +56,technician,married,basic.4y,no,no,no,cellular,oct,thu,257,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +33,services,married,high.school,no,yes,no,cellular,oct,thu,313,3,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes +71,management,married,university.degree,no,yes,no,cellular,oct,thu,127,3,999,2,failure,-3.4,92.431,-26.9,0.733,5017.5,yes +56,retired,married,professional.course,no,unknown,unknown,cellular,oct,thu,181,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +56,retired,married,professional.course,no,no,no,cellular,oct,thu,133,1,3,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +25,services,single,high.school,no,yes,no,cellular,oct,thu,287,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no +31,admin.,single,university.degree,no,no,no,cellular,oct,thu,334,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no +35,unemployed,married,university.degree,no,yes,no,cellular,oct,thu,391,2,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,no +45,technician,married,professional.course,no,no,no,cellular,oct,thu,504,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +30,admin.,single,university.degree,no,yes,no,telephone,oct,thu,1002,4,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes +56,technician,married,basic.4y,no,no,no,cellular,oct,thu,306,3,3,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +25,services,single,high.school,no,yes,no,cellular,oct,thu,260,2,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes +24,admin.,single,university.degree,no,yes,yes,telephone,oct,thu,97,1,999,0,nonexistent,-3.4,92.431,-26.9,0.733,5017.5,yes +30,admin.,single,university.degree,no,no,yes,cellular,oct,thu,102,1,999,1,failure,-3.4,92.431,-26.9,0.733,5017.5,no +35,unemployed,married,university.degree,no,no,no,cellular,oct,thu,344,1,6,1,success,-3.4,92.431,-26.9,0.733,5017.5,yes +24,student,single,unknown,no,no,no,cellular,oct,fri,114,4,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +61,management,married,university.degree,no,yes,no,cellular,oct,fri,336,2,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes +22,student,single,high.school,no,no,no,cellular,oct,fri,270,3,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes +64,admin.,married,high.school,no,yes,no,cellular,oct,fri,130,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes +23,technician,single,university.degree,no,yes,no,cellular,oct,fri,374,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes +21,student,single,high.school,no,yes,no,cellular,oct,fri,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes +32,unknown,single,high.school,no,yes,no,cellular,oct,fri,267,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +24,student,single,unknown,no,yes,no,cellular,oct,fri,460,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes +32,admin.,married,university.degree,no,yes,no,cellular,oct,fri,94,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +98,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,476,1,2,2,success,-3.4,92.431,-26.9,0.73,5017.5,yes +64,admin.,married,high.school,no,yes,no,cellular,oct,fri,427,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes +35,blue-collar,single,high.school,no,no,no,cellular,oct,fri,622,1,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,no +98,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,272,2,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,yes +22,student,single,basic.9y,no,no,no,cellular,oct,fri,438,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,yes +22,student,single,basic.9y,no,no,no,cellular,oct,fri,221,2,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes +26,admin.,single,university.degree,no,no,no,cellular,oct,fri,133,2,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,no +31,self-employed,single,university.degree,no,yes,no,cellular,oct,fri,91,1,999,1,failure,-3.4,92.431,-26.9,0.73,5017.5,no +31,self-employed,single,university.degree,no,no,no,cellular,oct,fri,76,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +29,admin.,single,high.school,no,yes,no,cellular,oct,fri,292,1,6,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes +34,admin.,married,university.degree,no,no,no,cellular,oct,fri,281,1,999,2,failure,-3.4,92.431,-26.9,0.73,5017.5,yes +37,blue-collar,married,basic.6y,no,unknown,unknown,cellular,oct,fri,93,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +37,blue-collar,married,basic.6y,no,no,no,telephone,oct,fri,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +26,admin.,single,high.school,no,no,no,telephone,oct,fri,257,2,4,1,success,-3.4,92.431,-26.9,0.73,5017.5,yes +61,management,married,university.degree,no,no,no,cellular,oct,fri,56,4,999,0,nonexistent,-3.4,92.431,-26.9,0.73,5017.5,no +33,admin.,single,high.school,no,yes,no,cellular,oct,mon,61,2,6,2,failure,-3.4,92.431,-26.9,0.731,5017.5,no +26,admin.,married,high.school,no,yes,yes,cellular,oct,mon,183,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +29,admin.,single,university.degree,no,no,no,cellular,oct,mon,87,2,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,no +29,technician,single,professional.course,no,yes,no,cellular,oct,mon,633,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +73,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,127,2,999,3,failure,-3.4,92.431,-26.9,0.731,5017.5,no +29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,110,2,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +50,management,married,basic.9y,no,no,no,cellular,oct,mon,151,2,6,2,failure,-3.4,92.431,-26.9,0.731,5017.5,no +29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,99,2,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,no +33,admin.,single,high.school,no,no,no,cellular,oct,mon,87,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +33,admin.,single,high.school,no,no,no,cellular,oct,mon,251,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,yes +30,unemployed,single,high.school,no,yes,no,cellular,oct,mon,67,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +26,admin.,married,high.school,no,yes,no,cellular,oct,mon,703,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,yes +26,admin.,married,high.school,no,yes,yes,cellular,oct,mon,126,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +42,management,married,university.degree,no,yes,no,cellular,oct,mon,355,1,999,1,failure,-3.4,92.431,-26.9,0.731,5017.5,yes +42,management,married,university.degree,no,yes,yes,cellular,oct,mon,298,1,999,0,nonexistent,-3.4,92.431,-26.9,0.731,5017.5,no +55,unemployed,married,basic.9y,no,yes,no,cellular,oct,tue,156,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +55,unemployed,married,basic.9y,no,no,no,cellular,oct,tue,131,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +32,admin.,single,university.degree,no,no,no,cellular,oct,tue,96,1,999,3,failure,-3.4,92.431,-26.9,0.728,5017.5,no +63,technician,married,professional.course,no,no,no,cellular,oct,tue,157,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +72,admin.,married,university.degree,unknown,no,yes,cellular,oct,tue,143,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes +71,retired,married,basic.4y,no,yes,yes,cellular,oct,tue,120,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no +71,retired,married,basic.4y,no,no,no,cellular,oct,tue,207,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +32,technician,single,university.degree,no,no,no,cellular,oct,tue,96,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,yes +52,housemaid,married,high.school,no,no,no,cellular,oct,tue,297,1,999,2,failure,-3.4,92.431,-26.9,0.728,5017.5,yes +68,retired,married,basic.4y,no,yes,no,cellular,oct,tue,102,1,6,2,success,-3.4,92.431,-26.9,0.728,5017.5,yes +45,blue-collar,married,university.degree,no,no,no,telephone,oct,tue,79,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +29,services,married,high.school,no,no,no,cellular,oct,tue,424,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,yes +33,services,single,high.school,no,no,no,cellular,oct,tue,137,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +65,housemaid,married,basic.4y,no,unknown,unknown,cellular,oct,tue,759,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +42,management,married,university.degree,no,no,no,telephone,oct,tue,83,1,3,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes +61,retired,married,high.school,no,no,no,telephone,oct,tue,515,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +22,student,single,basic.6y,no,yes,no,cellular,oct,tue,89,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +22,student,single,basic.6y,no,yes,no,cellular,oct,tue,88,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +30,technician,married,professional.course,no,yes,no,telephone,oct,tue,521,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +32,admin.,single,university.degree,no,yes,no,telephone,oct,tue,376,1,999,2,failure,-3.4,92.431,-26.9,0.728,5017.5,no +39,admin.,married,professional.course,no,no,no,telephone,oct,tue,219,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +63,technician,married,professional.course,no,yes,no,cellular,oct,tue,298,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +63,technician,married,professional.course,no,no,no,cellular,oct,tue,259,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +81,retired,married,university.degree,unknown,yes,yes,cellular,oct,tue,327,2,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no +65,housemaid,married,basic.4y,no,yes,no,cellular,oct,tue,253,2,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,no +44,technician,married,unknown,no,no,yes,cellular,oct,tue,139,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +31,management,married,university.degree,no,yes,no,cellular,oct,tue,255,3,4,1,success,-3.4,92.431,-26.9,0.728,5017.5,yes +68,retired,divorced,professional.course,no,yes,no,cellular,oct,tue,418,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +46,blue-collar,married,basic.9y,no,yes,no,cellular,oct,tue,65,1,999,1,failure,-3.4,92.431,-26.9,0.728,5017.5,no +33,services,single,high.school,no,yes,no,cellular,oct,tue,189,2,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,no +26,management,single,university.degree,no,yes,no,cellular,oct,tue,114,1,6,1,success,-3.4,92.431,-26.9,0.728,5017.5,no +28,admin.,single,high.school,no,yes,no,cellular,oct,tue,83,2,999,3,failure,-3.4,92.431,-26.9,0.728,5017.5,no +71,retired,married,basic.4y,no,no,no,cellular,oct,tue,353,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +21,student,single,high.school,no,no,no,cellular,oct,tue,113,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +32,technician,single,university.degree,no,yes,no,cellular,oct,tue,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.728,5017.5,yes +75,retired,married,basic.4y,no,no,no,cellular,oct,wed,113,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +81,housemaid,married,basic.4y,no,yes,no,cellular,oct,wed,246,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +60,management,married,professional.course,no,yes,no,cellular,oct,wed,219,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +61,blue-collar,married,high.school,no,no,no,cellular,oct,wed,108,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +63,retired,married,high.school,no,yes,no,cellular,oct,wed,96,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes +46,admin.,married,high.school,no,yes,no,cellular,oct,wed,143,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +46,admin.,married,high.school,no,yes,yes,telephone,oct,wed,149,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +35,admin.,married,university.degree,no,yes,no,cellular,oct,wed,300,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +40,admin.,married,high.school,no,yes,yes,cellular,oct,wed,73,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +35,management,married,university.degree,no,yes,no,cellular,oct,wed,1118,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +62,retired,married,high.school,no,no,no,cellular,oct,wed,210,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +45,admin.,married,high.school,no,yes,no,cellular,oct,wed,1092,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +58,unemployed,divorced,basic.9y,no,yes,no,telephone,oct,wed,509,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes +61,blue-collar,married,high.school,no,no,no,cellular,oct,wed,190,1,2,1,success,-3.4,92.431,-26.9,0.724,5017.5,no +32,admin.,single,university.degree,no,no,no,cellular,oct,wed,371,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,yes +34,unknown,single,university.degree,no,yes,no,telephone,oct,wed,182,2,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +24,technician,single,university.degree,no,no,no,cellular,oct,wed,197,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +30,admin.,married,university.degree,no,yes,no,cellular,oct,wed,133,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +40,management,married,university.degree,no,yes,no,telephone,oct,wed,172,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +73,retired,married,basic.4y,no,yes,no,telephone,oct,wed,185,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +34,unknown,single,university.degree,no,no,no,telephone,oct,wed,85,1,999,0,nonexistent,-3.4,92.431,-26.9,0.724,5017.5,no +40,admin.,married,high.school,no,no,no,cellular,oct,wed,524,3,999,1,failure,-3.4,92.431,-26.9,0.724,5017.5,yes +62,retired,married,high.school,no,no,no,cellular,oct,wed,207,1,6,1,success,-3.4,92.431,-26.9,0.724,5017.5,yes +54,retired,married,basic.4y,no,no,yes,cellular,oct,thu,164,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +24,student,single,high.school,no,yes,no,cellular,oct,thu,423,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +23,technician,married,professional.course,no,yes,yes,cellular,oct,thu,408,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +36,admin.,married,university.degree,no,no,no,cellular,oct,thu,343,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no +31,admin.,married,high.school,no,yes,no,cellular,oct,thu,269,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no +61,technician,married,professional.course,no,no,no,cellular,oct,thu,76,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +55,retired,married,basic.4y,no,yes,no,cellular,oct,thu,139,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +33,admin.,single,university.degree,no,no,no,cellular,oct,thu,410,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes +80,retired,divorced,high.school,no,yes,no,cellular,oct,thu,169,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +75,retired,divorced,basic.4y,no,no,no,cellular,oct,thu,247,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +31,entrepreneur,unknown,university.degree,no,no,no,cellular,oct,thu,164,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +31,admin.,married,high.school,no,no,no,cellular,oct,thu,142,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +53,admin.,divorced,high.school,no,no,no,cellular,oct,thu,209,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +58,retired,divorced,high.school,no,yes,no,cellular,oct,thu,76,4,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +30,technician,married,professional.course,no,yes,yes,cellular,oct,thu,1707,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +28,admin.,single,university.degree,no,no,no,cellular,oct,thu,72,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +72,retired,married,basic.6y,no,yes,yes,cellular,oct,thu,189,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +82,retired,single,basic.4y,no,yes,no,cellular,oct,thu,251,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +34,admin.,married,university.degree,no,no,no,cellular,oct,thu,401,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +69,retired,married,professional.course,no,no,yes,cellular,oct,thu,103,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no +32,self-employed,married,university.degree,no,yes,yes,cellular,oct,thu,679,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +67,admin.,married,basic.4y,unknown,no,no,cellular,oct,thu,299,2,2,2,success,-3.4,92.431,-26.9,0.722,5017.5,yes +48,technician,married,high.school,no,no,no,cellular,oct,thu,264,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +60,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,262,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +61,technician,married,professional.course,no,no,no,cellular,oct,thu,106,2,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes +48,technician,married,high.school,no,yes,no,cellular,oct,thu,215,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +48,technician,married,high.school,no,no,yes,cellular,oct,thu,288,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +67,retired,married,unknown,no,no,no,cellular,oct,thu,140,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +36,technician,married,university.degree,no,yes,yes,cellular,oct,thu,68,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +69,retired,married,basic.4y,no,yes,no,cellular,oct,thu,124,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +34,technician,single,university.degree,no,no,no,cellular,oct,thu,136,1,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,yes +32,admin.,single,university.degree,no,yes,no,telephone,oct,thu,220,3,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +51,blue-collar,married,basic.9y,no,yes,no,cellular,oct,thu,746,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +54,retired,married,basic.4y,no,no,no,cellular,oct,thu,377,1,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,yes +55,retired,married,basic.4y,no,no,no,cellular,oct,thu,250,1,999,2,failure,-3.4,92.431,-26.9,0.722,5017.5,no +55,retired,married,high.school,no,yes,no,cellular,oct,thu,424,2,7,1,success,-3.4,92.431,-26.9,0.722,5017.5,yes +61,technician,married,professional.course,no,no,no,cellular,oct,thu,174,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +82,retired,single,basic.4y,no,yes,no,cellular,oct,thu,185,2,999,0,nonexistent,-3.4,92.431,-26.9,0.722,5017.5,no +60,technician,married,basic.4y,no,yes,no,cellular,oct,thu,133,6,999,2,failure,-3.4,92.431,-26.9,0.722,5017.5,no +31,entrepreneur,unknown,university.degree,no,yes,no,telephone,oct,thu,157,4,999,1,failure,-3.4,92.431,-26.9,0.722,5017.5,no +78,retired,divorced,basic.6y,no,no,no,cellular,oct,fri,631,2,999,2,failure,-3.4,92.431,-26.9,0.72,5017.5,no +27,admin.,single,university.degree,no,yes,yes,telephone,oct,fri,70,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +78,retired,divorced,basic.6y,no,no,no,cellular,oct,fri,212,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +65,retired,married,basic.4y,no,no,no,cellular,oct,fri,176,5,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +26,student,single,high.school,no,no,no,cellular,oct,fri,373,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +37,admin.,single,university.degree,no,yes,no,telephone,oct,fri,62,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +24,blue-collar,married,basic.9y,no,yes,no,cellular,oct,fri,160,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +72,retired,married,basic.4y,no,no,no,cellular,oct,fri,155,1,6,1,success,-3.4,92.431,-26.9,0.72,5017.5,no +60,retired,married,basic.4y,unknown,yes,no,cellular,oct,fri,59,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +39,technician,single,university.degree,unknown,no,yes,cellular,oct,fri,125,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +39,technician,single,university.degree,unknown,yes,no,cellular,oct,fri,217,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +34,technician,single,university.degree,no,no,no,cellular,oct,fri,144,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +36,self-employed,single,university.degree,no,no,no,cellular,oct,fri,480,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +37,admin.,single,university.degree,no,yes,no,cellular,oct,fri,183,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +59,technician,married,basic.9y,no,no,no,cellular,oct,fri,445,1,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +25,student,single,high.school,no,no,no,cellular,oct,fri,294,1,999,1,failure,-3.4,92.431,-26.9,0.72,5017.5,yes +69,retired,married,basic.4y,no,yes,yes,cellular,oct,fri,257,3,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +18,student,single,basic.6y,no,no,yes,cellular,oct,fri,368,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +59,retired,divorced,basic.4y,no,yes,no,telephone,oct,fri,152,4,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +37,admin.,single,university.degree,no,no,no,cellular,oct,fri,416,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,yes +78,retired,divorced,basic.6y,no,no,no,telephone,oct,fri,177,2,999,0,nonexistent,-3.4,92.431,-26.9,0.72,5017.5,no +23,student,single,high.school,no,no,no,telephone,nov,mon,105,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +41,admin.,single,high.school,no,no,no,cellular,nov,mon,131,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no +34,admin.,single,high.school,no,yes,no,cellular,nov,mon,121,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes +37,admin.,married,high.school,no,yes,no,cellular,nov,mon,101,3,3,1,success,-3.4,92.649,-30.1,0.722,5017.5,no +37,admin.,divorced,high.school,no,no,no,cellular,nov,mon,131,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +36,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,69,4,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,91,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +35,management,single,university.degree,no,no,yes,cellular,nov,mon,75,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +21,student,single,basic.9y,no,no,no,cellular,nov,mon,59,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +34,technician,married,professional.course,no,yes,no,cellular,nov,mon,53,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no +60,housemaid,married,university.degree,no,yes,no,cellular,nov,mon,66,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +30,admin.,single,university.degree,no,no,no,cellular,nov,mon,106,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,yes +37,admin.,married,high.school,no,no,no,cellular,nov,mon,235,4,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +55,admin.,married,basic.9y,no,no,no,cellular,nov,mon,154,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +37,self-employed,married,professional.course,no,yes,yes,cellular,nov,mon,1024,1,5,1,success,-3.4,92.649,-30.1,0.722,5017.5,yes +64,housemaid,married,basic.4y,no,yes,no,cellular,nov,mon,173,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +37,blue-collar,single,high.school,no,yes,no,cellular,nov,mon,128,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +37,admin.,married,high.school,no,yes,no,telephone,nov,mon,459,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +37,admin.,married,high.school,no,yes,yes,cellular,nov,mon,272,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,204,1,7,1,success,-3.4,92.649,-30.1,0.722,5017.5,no +47,technician,divorced,high.school,no,yes,no,cellular,nov,mon,182,1,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes +32,admin.,married,university.degree,no,yes,yes,cellular,nov,mon,144,1,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +32,admin.,single,university.degree,no,unknown,unknown,telephone,nov,mon,143,3,7,1,success,-3.4,92.649,-30.1,0.722,5017.5,no +37,admin.,divorced,high.school,no,yes,yes,telephone,nov,mon,227,5,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,109,1,6,1,success,-3.4,92.649,-30.1,0.722,5017.5,no +24,student,single,professional.course,no,no,no,cellular,nov,mon,180,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no +50,admin.,married,high.school,no,no,no,telephone,nov,mon,117,5,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +45,blue-collar,married,high.school,no,yes,no,cellular,nov,mon,162,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,yes +34,admin.,single,high.school,no,yes,no,cellular,nov,mon,725,2,8,2,failure,-3.4,92.649,-30.1,0.722,5017.5,no +33,admin.,married,university.degree,no,yes,no,telephone,nov,mon,83,4,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +32,admin.,single,university.degree,no,no,no,cellular,nov,mon,85,2,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +34,technician,married,professional.course,no,yes,no,telephone,nov,mon,179,5,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,no +52,management,married,basic.6y,no,no,no,cellular,nov,mon,209,2,999,1,failure,-3.4,92.649,-30.1,0.722,5017.5,yes +37,admin.,married,high.school,no,no,yes,cellular,nov,mon,46,3,999,0,nonexistent,-3.4,92.649,-30.1,0.722,5017.5,no +71,retired,married,professional.course,no,yes,no,cellular,nov,tue,102,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +52,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,551,1,999,3,failure,-3.4,92.649,-30.1,0.72,5017.5,no +56,admin.,divorced,high.school,no,no,no,cellular,nov,tue,786,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no +67,self-employed,married,university.degree,no,yes,no,cellular,nov,tue,68,4,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,no +40,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,88,2,999,2,failure,-3.4,92.649,-30.1,0.72,5017.5,no +56,management,married,university.degree,no,unknown,unknown,cellular,nov,tue,289,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +32,admin.,single,high.school,no,no,no,cellular,nov,tue,1233,1,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,yes +36,admin.,single,university.degree,no,no,yes,cellular,nov,tue,187,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +79,retired,married,basic.4y,no,no,yes,cellular,nov,tue,149,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +56,housemaid,divorced,professional.course,no,yes,no,cellular,nov,tue,566,1,7,2,failure,-3.4,92.649,-30.1,0.72,5017.5,yes +27,unemployed,married,high.school,no,no,yes,cellular,nov,tue,222,3,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,no +30,unemployed,single,basic.9y,no,yes,no,cellular,nov,tue,537,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +27,blue-collar,single,basic.9y,no,no,no,cellular,nov,tue,217,1,999,2,failure,-3.4,92.649,-30.1,0.72,5017.5,yes +47,admin.,single,university.degree,no,no,no,cellular,nov,tue,193,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no +47,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,181,4,6,1,success,-3.4,92.649,-30.1,0.72,5017.5,yes +54,admin.,married,university.degree,no,yes,yes,cellular,nov,tue,215,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +22,technician,single,professional.course,no,yes,no,cellular,nov,tue,358,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +28,self-employed,married,professional.course,no,yes,no,cellular,nov,tue,179,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +32,admin.,married,high.school,no,yes,no,cellular,nov,tue,322,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,402,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,no +54,technician,married,basic.9y,no,no,no,cellular,nov,tue,284,2,999,1,failure,-3.4,92.649,-30.1,0.72,5017.5,yes +71,retired,married,professional.course,no,yes,yes,telephone,nov,tue,383,1,999,0,nonexistent,-3.4,92.649,-30.1,0.72,5017.5,yes +37,entrepreneur,divorced,high.school,no,yes,yes,cellular,nov,wed,258,2,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,90,2,999,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no +37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,116,4,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +37,entrepreneur,divorced,high.school,no,no,no,cellular,nov,wed,298,2,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +58,management,married,basic.4y,no,yes,no,cellular,nov,wed,70,5,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +54,blue-collar,married,basic.9y,no,no,no,cellular,nov,wed,138,1,7,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no +54,blue-collar,married,basic.9y,no,yes,yes,cellular,nov,wed,101,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +29,admin.,married,high.school,no,yes,no,cellular,nov,wed,85,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +28,admin.,married,high.school,no,yes,no,cellular,nov,wed,158,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +26,technician,single,professional.course,no,no,yes,cellular,nov,wed,358,1,9,2,failure,-3.4,92.649,-30.1,0.719,5017.5,yes +29,management,married,university.degree,no,yes,no,cellular,nov,wed,199,1,9,1,success,-3.4,92.649,-30.1,0.719,5017.5,no +26,admin.,married,high.school,no,no,yes,cellular,nov,wed,112,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +56,retired,married,university.degree,no,yes,no,cellular,nov,wed,156,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +51,technician,married,professional.course,no,no,no,cellular,nov,wed,272,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +62,admin.,divorced,university.degree,no,yes,no,cellular,nov,wed,572,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +58,management,married,basic.4y,no,no,no,cellular,nov,wed,88,2,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +29,technician,single,professional.course,no,unknown,unknown,cellular,nov,wed,257,2,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +32,blue-collar,married,basic.4y,no,no,no,cellular,nov,thu,96,3,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no +32,admin.,married,high.school,no,yes,no,telephone,nov,thu,143,3,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +73,retired,married,university.degree,no,no,yes,cellular,nov,thu,749,7,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +32,blue-collar,married,basic.4y,no,yes,no,telephone,nov,thu,111,8,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +34,admin.,single,university.degree,no,no,no,cellular,nov,thu,509,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +69,retired,married,basic.6y,no,yes,no,cellular,nov,thu,355,3,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +34,unemployed,single,university.degree,no,no,no,cellular,nov,fri,464,5,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes +37,admin.,married,high.school,no,yes,no,telephone,nov,fri,136,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +54,admin.,married,high.school,no,yes,no,cellular,nov,fri,402,1,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes +34,technician,married,university.degree,no,yes,no,cellular,nov,fri,312,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +34,technician,married,basic.9y,no,yes,no,cellular,nov,fri,126,2,999,2,failure,-3.4,92.649,-30.1,0.716,5017.5,no +54,admin.,married,university.degree,no,yes,no,cellular,nov,fri,455,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +53,management,divorced,university.degree,no,no,yes,cellular,nov,fri,368,2,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +56,technician,divorced,university.degree,no,no,no,cellular,nov,fri,178,2,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +69,retired,married,high.school,no,no,no,cellular,nov,mon,178,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +26,admin.,single,high.school,no,yes,no,cellular,nov,mon,262,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +26,admin.,single,high.school,no,unknown,unknown,cellular,nov,mon,347,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +27,student,single,university.degree,no,no,yes,cellular,nov,mon,118,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +57,admin.,married,high.school,no,yes,no,cellular,nov,mon,169,1,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes +25,admin.,single,university.degree,no,no,yes,cellular,nov,mon,165,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes +24,unemployed,married,high.school,no,yes,no,cellular,nov,mon,98,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +29,housemaid,single,university.degree,no,no,yes,telephone,nov,mon,201,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +22,student,single,professional.course,no,no,no,cellular,nov,mon,113,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +81,unknown,divorced,unknown,unknown,yes,no,cellular,nov,mon,161,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +41,management,married,university.degree,no,no,no,cellular,nov,mon,696,2,7,3,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +26,admin.,single,high.school,no,no,no,cellular,nov,mon,371,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no +81,unknown,divorced,unknown,unknown,yes,no,cellular,nov,mon,263,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +30,blue-collar,single,unknown,no,yes,no,telephone,nov,mon,235,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +29,housemaid,single,university.degree,no,no,no,cellular,nov,mon,257,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +76,retired,single,basic.4y,no,no,no,cellular,nov,mon,347,4,6,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +32,admin.,married,university.degree,no,no,no,cellular,nov,mon,178,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +38,admin.,married,university.degree,no,no,no,cellular,nov,tue,182,2,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +27,blue-collar,single,high.school,no,no,no,cellular,nov,tue,775,2,8,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +71,housemaid,married,basic.4y,no,yes,no,cellular,nov,tue,193,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +28,admin.,married,high.school,no,no,no,cellular,nov,tue,406,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +34,technician,married,professional.course,no,yes,no,cellular,nov,tue,336,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +61,management,married,university.degree,no,yes,no,cellular,nov,tue,147,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes +61,management,married,university.degree,no,yes,no,cellular,nov,tue,195,1,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +41,admin.,married,university.degree,no,no,no,telephone,nov,tue,234,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +57,technician,married,professional.course,no,no,no,cellular,nov,tue,564,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +71,retired,married,basic.4y,no,no,no,cellular,nov,tue,71,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,318,2,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes +38,admin.,married,university.degree,no,yes,no,cellular,nov,tue,64,1,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes +41,admin.,married,university.degree,no,yes,no,cellular,nov,tue,95,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +52,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,89,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes +25,student,single,high.school,no,no,no,telephone,nov,tue,345,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,344,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +30,admin.,single,university.degree,no,no,no,cellular,nov,tue,266,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +79,retired,married,basic.4y,no,no,yes,cellular,nov,tue,301,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +28,admin.,married,high.school,no,yes,no,cellular,nov,tue,254,5,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +54,technician,married,basic.9y,no,no,no,cellular,nov,tue,293,3,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +49,management,married,university.degree,no,no,yes,cellular,nov,tue,185,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +79,retired,married,basic.4y,no,yes,no,cellular,nov,tue,594,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +21,student,single,high.school,no,no,no,cellular,nov,tue,280,1,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no +52,admin.,divorced,university.degree,no,no,no,cellular,nov,tue,213,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +63,management,married,basic.4y,unknown,yes,no,cellular,nov,tue,131,4,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +52,admin.,divorced,university.degree,no,unknown,unknown,cellular,nov,tue,143,5,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +45,management,married,university.degree,no,no,no,telephone,nov,tue,208,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +45,admin.,single,university.degree,no,unknown,unknown,cellular,nov,tue,133,3,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +30,admin.,single,university.degree,no,yes,yes,cellular,nov,tue,98,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +37,services,married,high.school,no,no,no,cellular,nov,wed,516,2,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +72,retired,married,professional.course,no,yes,no,telephone,nov,wed,93,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +37,services,married,high.school,no,no,no,cellular,nov,wed,459,2,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +45,admin.,married,university.degree,no,no,yes,cellular,nov,wed,158,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +36,self-employed,divorced,basic.9y,no,no,no,cellular,nov,wed,133,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no +45,admin.,married,university.degree,no,no,yes,cellular,nov,wed,106,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +72,retired,married,basic.4y,no,yes,no,cellular,nov,wed,406,1,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +20,student,single,high.school,no,yes,no,cellular,nov,wed,166,1,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +25,technician,single,university.degree,no,no,yes,cellular,nov,wed,79,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +28,management,married,university.degree,no,no,no,cellular,nov,wed,69,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +72,retired,divorced,basic.6y,no,yes,no,cellular,nov,wed,199,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +45,technician,married,university.degree,no,yes,no,cellular,nov,wed,359,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +35,admin.,single,high.school,no,no,yes,cellular,nov,wed,98,2,7,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no +20,student,single,high.school,no,no,no,cellular,nov,wed,131,1,999,3,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +20,student,single,high.school,no,no,no,cellular,nov,wed,229,2,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes +20,student,single,high.school,no,no,no,cellular,nov,wed,187,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +36,management,married,university.degree,no,no,yes,cellular,nov,wed,166,3,3,3,success,-3.4,92.649,-30.1,0.715,5017.5,yes +72,retired,divorced,basic.6y,no,yes,no,cellular,nov,wed,244,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +37,services,married,high.school,no,no,yes,cellular,nov,wed,54,4,6,1,success,-3.4,92.649,-30.1,0.715,5017.5,no +45,admin.,married,university.degree,no,unknown,unknown,cellular,nov,wed,135,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +29,admin.,single,university.degree,no,no,yes,cellular,nov,wed,158,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +23,student,single,university.degree,no,yes,no,cellular,nov,wed,172,1,3,2,success,-3.4,92.649,-30.1,0.715,5017.5,yes +33,admin.,married,university.degree,no,yes,no,telephone,nov,wed,241,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +37,admin.,single,high.school,no,no,yes,cellular,nov,wed,248,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +53,housemaid,married,basic.4y,no,no,yes,telephone,nov,wed,513,1,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +38,admin.,married,university.degree,no,no,no,telephone,nov,thu,71,1,13,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +40,services,married,high.school,no,yes,no,cellular,nov,thu,90,3,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +29,student,single,professional.course,no,no,no,cellular,nov,thu,227,3,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +23,technician,single,professional.course,no,yes,no,cellular,nov,thu,116,5,9,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no +32,self-employed,married,university.degree,no,no,no,cellular,nov,thu,66,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +29,student,single,professional.course,no,yes,yes,cellular,nov,thu,123,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +67,retired,married,basic.4y,no,yes,no,cellular,nov,thu,39,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +40,admin.,married,university.degree,no,no,no,cellular,nov,thu,96,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +65,retired,single,university.degree,no,no,no,cellular,nov,thu,253,1,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +43,management,married,high.school,no,no,no,cellular,nov,thu,226,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +43,management,married,high.school,no,yes,no,cellular,nov,thu,177,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +25,admin.,married,unknown,no,no,no,cellular,nov,thu,241,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +25,admin.,married,high.school,no,yes,no,cellular,nov,thu,702,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +64,unemployed,married,basic.4y,no,yes,no,cellular,nov,thu,427,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +25,admin.,married,unknown,no,no,no,cellular,nov,thu,110,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +65,retired,single,university.degree,no,no,no,cellular,nov,thu,88,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +29,admin.,single,university.degree,no,no,no,cellular,nov,thu,134,2,9,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +38,admin.,married,university.degree,no,no,no,cellular,nov,thu,126,1,7,4,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +67,retired,married,basic.4y,no,yes,no,cellular,nov,thu,99,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +51,self-employed,single,basic.9y,no,yes,no,cellular,nov,thu,104,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +49,unemployed,married,professional.course,no,yes,no,telephone,nov,thu,226,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +34,admin.,single,university.degree,no,yes,no,cellular,nov,thu,89,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +34,admin.,single,university.degree,no,no,no,cellular,nov,thu,169,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +34,admin.,single,university.degree,no,no,no,cellular,nov,thu,135,1,6,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +78,retired,divorced,basic.4y,no,yes,no,cellular,nov,thu,463,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +56,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,150,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +56,blue-collar,divorced,basic.4y,no,no,no,cellular,nov,thu,134,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +32,self-employed,married,university.degree,no,yes,no,cellular,nov,thu,247,1,6,3,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +52,blue-collar,single,basic.9y,no,no,no,cellular,nov,thu,771,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +62,housemaid,married,basic.4y,no,yes,no,cellular,nov,thu,443,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +29,student,single,professional.course,no,yes,no,telephone,nov,thu,124,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +52,blue-collar,single,basic.9y,no,yes,no,cellular,nov,thu,191,3,9,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +66,retired,married,basic.4y,no,yes,yes,telephone,nov,thu,1127,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +28,admin.,single,university.degree,no,yes,no,cellular,nov,thu,189,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +56,management,divorced,unknown,no,yes,no,cellular,nov,thu,893,7,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +35,technician,single,professional.course,no,yes,no,cellular,nov,thu,192,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +49,unemployed,married,professional.course,no,yes,yes,cellular,nov,thu,366,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +32,self-employed,married,university.degree,no,no,no,cellular,nov,thu,707,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +60,unemployed,married,basic.4y,no,no,no,cellular,nov,thu,627,2,6,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +62,housemaid,married,university.degree,no,yes,no,cellular,nov,thu,237,1,3,3,success,-3.4,92.649,-30.1,0.714,5017.5,no +38,admin.,married,university.degree,no,no,no,telephone,nov,thu,411,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +29,admin.,single,high.school,no,yes,no,cellular,nov,fri,176,2,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +25,admin.,single,university.degree,no,no,no,cellular,nov,fri,350,5,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +26,admin.,married,high.school,no,yes,no,cellular,nov,fri,338,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +52,technician,married,professional.course,no,no,no,cellular,nov,fri,202,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +26,student,single,university.degree,no,no,no,cellular,nov,fri,181,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +26,blue-collar,single,high.school,no,yes,no,telephone,nov,fri,208,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +29,admin.,single,university.degree,no,no,no,cellular,nov,fri,122,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +32,admin.,single,university.degree,no,yes,no,telephone,nov,fri,2184,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +32,admin.,single,university.degree,no,yes,no,telephone,nov,fri,135,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +53,admin.,single,university.degree,no,yes,yes,telephone,nov,fri,212,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +80,retired,divorced,unknown,no,yes,yes,cellular,nov,fri,186,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +31,technician,married,unknown,no,no,no,cellular,nov,fri,498,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +21,student,single,university.degree,no,yes,no,cellular,nov,fri,180,3,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +65,retired,married,university.degree,no,no,no,cellular,nov,fri,226,1,3,3,success,-3.4,92.649,-30.1,0.714,5017.5,yes +43,technician,single,university.degree,no,no,yes,cellular,nov,fri,122,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +63,retired,married,unknown,no,no,no,telephone,nov,fri,137,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +31,admin.,single,high.school,no,no,no,cellular,nov,fri,122,4,999,3,failure,-3.4,92.649,-30.1,0.714,5017.5,no +29,technician,married,university.degree,no,yes,no,cellular,nov,fri,210,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +26,blue-collar,single,high.school,no,no,no,telephone,nov,fri,201,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,495,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,632,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +52,technician,married,professional.course,no,yes,no,cellular,nov,fri,259,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +27,admin.,single,university.degree,no,yes,no,cellular,nov,fri,264,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +39,management,single,university.degree,no,yes,no,cellular,nov,fri,239,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +77,retired,married,unknown,no,yes,no,cellular,nov,fri,381,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +77,retired,married,unknown,no,yes,no,cellular,nov,fri,193,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +31,admin.,single,high.school,no,no,no,telephone,nov,fri,53,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +31,services,married,high.school,no,no,no,telephone,nov,fri,271,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +41,management,married,unknown,no,no,yes,cellular,nov,fri,129,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +52,technician,married,professional.course,no,yes,no,telephone,nov,fri,332,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +55,blue-collar,married,basic.4y,no,no,no,cellular,nov,fri,227,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +78,retired,divorced,basic.4y,no,yes,no,cellular,nov,fri,182,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +18,student,single,high.school,no,no,no,cellular,nov,fri,256,2,7,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +40,technician,single,university.degree,no,yes,no,cellular,nov,mon,139,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +19,student,single,unknown,no,no,no,cellular,nov,mon,132,2,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no +40,technician,single,university.degree,no,no,no,cellular,nov,mon,141,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +25,student,single,high.school,no,yes,no,cellular,nov,mon,61,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +40,technician,single,university.degree,no,yes,no,cellular,nov,mon,95,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +40,technician,single,university.degree,no,no,no,cellular,nov,mon,130,1,7,2,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +25,admin.,single,university.degree,no,no,yes,cellular,nov,mon,295,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,yes +61,retired,married,basic.4y,no,yes,no,cellular,nov,mon,301,1,9,3,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +39,admin.,married,high.school,no,no,no,cellular,nov,mon,1011,1,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,124,5,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +64,retired,married,high.school,no,no,no,cellular,nov,mon,146,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +67,retired,married,basic.4y,no,no,no,telephone,nov,mon,167,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +50,admin.,married,university.degree,no,yes,no,cellular,nov,mon,183,1,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +75,housemaid,divorced,basic.4y,no,no,no,telephone,nov,mon,135,8,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,no +50,admin.,married,university.degree,no,no,no,cellular,nov,mon,176,1,7,2,success,-3.4,92.649,-30.1,0.714,5017.5,no +56,management,married,university.degree,no,yes,no,cellular,nov,mon,124,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,163,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,84,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +37,entrepreneur,married,university.degree,no,yes,no,cellular,nov,mon,843,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +35,self-employed,single,university.degree,no,yes,no,cellular,nov,mon,365,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +27,admin.,married,high.school,no,no,yes,cellular,nov,mon,62,7,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +25,admin.,single,university.degree,no,yes,no,telephone,nov,mon,107,2,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +30,blue-collar,single,high.school,no,unknown,unknown,cellular,nov,mon,235,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +26,admin.,married,high.school,no,yes,no,cellular,nov,mon,432,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +35,management,married,university.degree,no,yes,yes,cellular,nov,mon,244,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +38,admin.,married,high.school,no,yes,no,cellular,nov,mon,136,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +43,self-employed,married,high.school,no,no,no,cellular,nov,mon,137,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +54,services,married,basic.9y,no,yes,yes,cellular,nov,mon,175,3,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +30,admin.,married,high.school,no,unknown,unknown,cellular,nov,mon,104,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +30,blue-collar,single,high.school,no,no,no,cellular,nov,mon,250,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +35,management,married,university.degree,no,no,no,telephone,nov,mon,986,1,7,3,failure,-3.4,92.649,-30.1,0.714,5017.5,no +31,technician,married,university.degree,no,no,no,telephone,nov,mon,57,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +25,admin.,single,unknown,no,yes,no,telephone,nov,mon,643,4,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +66,retired,married,basic.4y,no,yes,no,cellular,nov,mon,175,1,7,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +64,retired,married,high.school,no,yes,no,cellular,nov,mon,79,4,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no +34,technician,married,professional.course,no,yes,no,cellular,nov,mon,93,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +30,blue-collar,single,high.school,no,no,no,cellular,nov,mon,94,1,999,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no +19,student,single,unknown,no,yes,no,cellular,nov,mon,380,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +25,admin.,single,unknown,no,yes,no,cellular,nov,mon,381,1,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +25,admin.,married,university.degree,no,yes,no,telephone,nov,mon,446,8,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +42,management,married,university.degree,no,yes,no,cellular,nov,mon,104,3,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,no +48,technician,married,professional.course,no,yes,no,cellular,nov,mon,69,5,3,2,success,-3.4,92.649,-30.1,0.714,5017.5,no +32,technician,married,university.degree,no,yes,no,cellular,nov,mon,77,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +72,retired,married,high.school,no,no,no,cellular,nov,mon,257,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +27,admin.,married,high.school,no,no,no,cellular,nov,mon,116,1,4,2,failure,-3.4,92.649,-30.1,0.714,5017.5,no +77,retired,divorced,basic.4y,no,yes,no,cellular,nov,mon,445,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +34,management,married,university.degree,no,no,no,cellular,nov,mon,75,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +72,retired,married,university.degree,no,no,no,cellular,nov,mon,111,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +40,technician,single,university.degree,no,no,no,cellular,nov,mon,105,2,3,1,success,-3.4,92.649,-30.1,0.714,5017.5,yes +40,technician,single,university.degree,no,no,no,cellular,nov,mon,984,5,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,yes +50,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,202,1,999,0,nonexistent,-3.4,92.649,-30.1,0.714,5017.5,no +68,retired,married,high.school,no,no,no,cellular,nov,mon,1248,2,999,1,failure,-3.4,92.649,-30.1,0.714,5017.5,yes +34,self-employed,single,university.degree,no,no,yes,telephone,nov,tue,85,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +47,management,married,basic.9y,no,yes,no,cellular,nov,tue,709,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +31,admin.,single,university.degree,no,yes,no,cellular,nov,tue,168,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +36,blue-collar,married,basic.9y,no,yes,no,cellular,nov,tue,320,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,no +35,management,married,university.degree,no,yes,no,cellular,nov,tue,209,1,999,2,failure,-3.4,92.649,-30.1,0.715,5017.5,yes +45,admin.,divorced,university.degree,no,yes,no,cellular,nov,tue,140,3,999,1,failure,-3.4,92.649,-30.1,0.715,5017.5,no +63,retired,married,basic.4y,no,yes,no,cellular,nov,tue,408,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,no +82,retired,divorced,basic.4y,no,yes,no,cellular,nov,tue,134,2,3,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +48,management,married,university.degree,no,yes,yes,cellular,nov,tue,747,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +53,admin.,married,university.degree,no,yes,no,cellular,nov,tue,409,2,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +43,admin.,married,university.degree,no,yes,no,telephone,nov,tue,135,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +34,housemaid,single,basic.4y,no,yes,no,cellular,nov,tue,393,4,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +43,admin.,married,university.degree,no,yes,no,cellular,nov,tue,255,1,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +26,admin.,single,university.degree,no,yes,no,cellular,nov,tue,309,3,7,1,success,-3.4,92.649,-30.1,0.715,5017.5,yes +66,retired,single,basic.4y,no,yes,no,cellular,nov,tue,525,3,999,0,nonexistent,-3.4,92.649,-30.1,0.715,5017.5,yes +40,unemployed,divorced,basic.4y,no,no,no,cellular,nov,tue,108,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +83,retired,divorced,basic.4y,no,no,no,cellular,nov,tue,242,1,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes +32,management,married,university.degree,no,no,no,cellular,nov,tue,107,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +35,management,married,university.degree,no,no,no,cellular,nov,tue,56,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,no +35,management,married,university.degree,no,no,no,cellular,nov,tue,190,3,7,3,failure,-3.4,92.649,-30.1,0.716,5017.5,no +34,admin.,divorced,high.school,no,no,no,cellular,nov,tue,492,2,6,3,success,-3.4,92.649,-30.1,0.716,5017.5,no +30,admin.,single,university.degree,no,yes,no,cellular,nov,tue,187,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +65,retired,married,basic.4y,no,no,yes,cellular,nov,tue,141,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +31,admin.,single,university.degree,no,no,no,cellular,nov,tue,166,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +83,retired,divorced,basic.4y,no,yes,yes,cellular,nov,tue,112,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +55,management,married,university.degree,no,yes,no,cellular,nov,tue,283,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +27,management,single,professional.course,no,yes,no,cellular,nov,tue,325,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +56,retired,married,university.degree,no,yes,no,cellular,nov,wed,968,2,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes +26,student,single,unknown,no,yes,no,cellular,nov,wed,92,2,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +24,student,single,unknown,no,yes,no,cellular,nov,wed,285,2,3,3,success,-3.4,92.649,-30.1,0.716,5017.5,yes +57,retired,married,basic.4y,no,yes,no,cellular,nov,wed,295,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,no +53,unknown,married,basic.9y,no,no,yes,cellular,nov,wed,242,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no +24,admin.,single,university.degree,no,yes,no,cellular,nov,wed,84,1,9,3,failure,-3.4,92.649,-30.1,0.716,5017.5,no +58,self-employed,married,university.degree,no,no,no,cellular,nov,wed,106,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +58,self-employed,married,university.degree,no,no,no,cellular,nov,wed,1092,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +32,admin.,single,high.school,no,no,no,cellular,nov,wed,421,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +94,retired,married,basic.9y,no,no,no,cellular,nov,wed,134,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no +22,student,single,unknown,no,no,no,cellular,nov,wed,87,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +31,technician,single,university.degree,no,no,no,cellular,nov,wed,372,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +78,retired,married,professional.course,no,yes,no,cellular,nov,wed,103,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +21,student,single,professional.course,no,no,no,telephone,nov,wed,250,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +55,management,married,university.degree,no,yes,no,cellular,nov,wed,99,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no +57,admin.,married,university.degree,no,no,no,cellular,nov,wed,182,1,3,2,success,-3.4,92.649,-30.1,0.716,5017.5,yes +61,retired,married,basic.4y,no,yes,no,cellular,nov,wed,234,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +58,retired,married,basic.4y,no,yes,no,cellular,nov,wed,487,1,999,2,failure,-3.4,92.649,-30.1,0.716,5017.5,yes +56,retired,married,university.degree,no,no,no,cellular,nov,wed,232,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +48,management,divorced,university.degree,no,yes,no,cellular,nov,wed,208,1,3,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +28,admin.,single,university.degree,no,yes,no,cellular,nov,wed,170,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +55,entrepreneur,married,university.degree,no,yes,no,cellular,nov,wed,87,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,no +56,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,wed,414,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes +28,technician,single,professional.course,no,yes,no,cellular,nov,wed,296,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,yes +86,retired,divorced,basic.4y,no,yes,no,cellular,nov,wed,237,1,999,1,failure,-3.4,92.649,-30.1,0.716,5017.5,no +27,technician,single,university.degree,no,no,yes,cellular,nov,wed,342,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +28,technician,single,professional.course,no,yes,no,cellular,nov,wed,238,2,6,1,success,-3.4,92.649,-30.1,0.716,5017.5,yes +25,technician,single,professional.course,no,yes,no,cellular,nov,wed,541,1,999,0,nonexistent,-3.4,92.649,-30.1,0.716,5017.5,yes +65,admin.,divorced,university.degree,no,no,no,cellular,nov,fri,142,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no +32,management,single,university.degree,no,yes,yes,cellular,nov,fri,92,2,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,no +78,retired,married,professional.course,no,no,no,cellular,nov,fri,319,2,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,yes +72,retired,married,basic.9y,unknown,yes,no,cellular,nov,fri,96,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no +77,retired,divorced,basic.4y,no,no,no,cellular,nov,fri,90,2,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no +67,retired,married,basic.4y,no,no,no,telephone,nov,fri,341,4,999,1,failure,-3.4,92.649,-30.1,0.718,5017.5,no +73,retired,married,university.degree,no,no,no,cellular,nov,fri,160,1,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,yes +31,blue-collar,married,basic.6y,no,yes,no,cellular,nov,fri,65,3,999,0,nonexistent,-3.4,92.649,-30.1,0.718,5017.5,no +38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,110,3,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,no +44,admin.,divorced,high.school,no,yes,no,telephone,nov,mon,1628,2,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,yes +38,admin.,married,university.degree,no,no,yes,telephone,nov,mon,337,3,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +38,admin.,married,university.degree,no,yes,no,cellular,nov,mon,210,3,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +62,blue-collar,married,basic.4y,no,yes,no,cellular,nov,mon,152,1,6,1,success,-3.4,92.649,-30.1,0.719,5017.5,no +81,housemaid,divorced,basic.4y,no,yes,no,cellular,nov,mon,151,6,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +62,blue-collar,married,basic.4y,no,no,no,cellular,nov,mon,123,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +62,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,152,1,999,0,nonexistent,-3.4,92.649,-30.1,0.719,5017.5,no +31,blue-collar,married,basic.6y,no,yes,no,cellular,nov,mon,107,1,999,2,failure,-3.4,92.649,-30.1,0.719,5017.5,no +62,blue-collar,married,basic.4y,no,yes,yes,cellular,nov,mon,113,1,999,1,failure,-3.4,92.649,-30.1,0.719,5017.5,no +60,admin.,married,unknown,unknown,yes,no,cellular,dec,wed,357,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes +38,technician,married,university.degree,no,yes,yes,cellular,dec,wed,310,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes +76,retired,married,university.degree,no,yes,no,cellular,dec,wed,258,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,no +54,unemployed,married,high.school,no,yes,no,cellular,dec,wed,346,1,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,yes +38,technician,married,university.degree,no,no,no,cellular,dec,wed,415,1,999,2,failure,-3,92.713,-33,0.721,5023.5,yes +42,blue-collar,married,basic.9y,no,yes,no,cellular,dec,wed,187,2,999,0,nonexistent,-3,92.713,-33,0.721,5023.5,no +30,technician,married,university.degree,no,yes,no,cellular,dec,thu,244,2,6,1,success,-3,92.713,-33,0.72,5023.5,yes +55,technician,married,high.school,no,yes,no,cellular,dec,thu,284,1,999,1,failure,-3,92.713,-33,0.72,5023.5,yes +58,unknown,married,basic.9y,no,yes,no,cellular,dec,thu,154,1,999,1,failure,-3,92.713,-33,0.72,5023.5,yes +83,retired,married,high.school,no,no,no,cellular,dec,thu,155,1,4,3,success,-3,92.713,-33,0.72,5023.5,yes +83,retired,married,high.school,no,yes,no,cellular,dec,thu,96,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no +64,admin.,married,university.degree,no,no,yes,cellular,dec,thu,1804,3,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no +60,retired,married,high.school,no,no,no,cellular,dec,thu,472,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,yes +64,management,divorced,university.degree,no,no,yes,cellular,dec,thu,421,1,999,1,failure,-3,92.713,-33,0.72,5023.5,no +40,blue-collar,married,professional.course,no,no,no,telephone,dec,thu,237,1,999,0,nonexistent,-3,92.713,-33,0.72,5023.5,no +53,admin.,married,university.degree,no,no,no,cellular,dec,thu,110,1,6,1,success,-3,92.713,-33,0.72,5023.5,no +48,admin.,married,high.school,unknown,no,yes,cellular,dec,thu,274,1,8,1,success,-3,92.713,-33,0.72,5023.5,yes +50,admin.,single,high.school,no,yes,no,telephone,dec,fri,705,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,yes +60,retired,married,university.degree,no,no,no,cellular,dec,fri,439,3,6,2,success,-3,92.713,-33,0.718,5023.5,yes +23,student,single,university.degree,no,yes,no,cellular,dec,fri,127,2,6,2,success,-3,92.713,-33,0.718,5023.5,no +48,management,married,university.degree,no,yes,no,cellular,dec,fri,377,5,999,1,failure,-3,92.713,-33,0.718,5023.5,no +25,admin.,single,university.degree,no,no,no,cellular,dec,fri,78,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no +60,retired,married,university.degree,no,yes,no,cellular,dec,fri,55,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no +46,admin.,married,university.degree,no,unknown,unknown,cellular,dec,fri,696,10,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,yes +25,admin.,single,university.degree,no,no,no,cellular,dec,fri,1139,2,4,1,success,-3,92.713,-33,0.718,5023.5,no +55,admin.,married,high.school,no,no,no,cellular,dec,fri,254,2,999,0,nonexistent,-3,92.713,-33,0.718,5023.5,no +80,retired,divorced,basic.4y,no,no,yes,cellular,dec,fri,720,5,999,1,failure,-3,92.713,-33,0.718,5023.5,no +48,admin.,married,university.degree,no,no,no,cellular,dec,mon,85,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +30,student,single,unknown,no,no,no,cellular,dec,mon,69,1,999,1,failure,-3,92.713,-33,0.717,5023.5,no +50,technician,married,high.school,no,yes,no,cellular,dec,mon,229,1,999,1,failure,-3,92.713,-33,0.717,5023.5,yes +49,housemaid,single,university.degree,no,no,yes,cellular,dec,mon,334,3,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +36,admin.,single,high.school,no,unknown,unknown,cellular,dec,mon,480,1,999,1,failure,-3,92.713,-33,0.717,5023.5,yes +54,blue-collar,married,high.school,no,no,no,cellular,dec,mon,344,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes +36,technician,single,professional.course,no,no,no,cellular,dec,mon,371,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +54,technician,divorced,university.degree,no,unknown,unknown,cellular,dec,mon,164,1,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +43,admin.,married,high.school,no,no,yes,cellular,dec,mon,415,2,8,2,failure,-3,92.713,-33,0.717,5023.5,yes +36,admin.,single,high.school,no,yes,no,telephone,dec,mon,358,6,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +47,admin.,married,university.degree,no,no,no,telephone,dec,mon,91,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +49,housemaid,single,university.degree,no,yes,no,cellular,dec,mon,583,2,6,1,success,-3,92.713,-33,0.717,5023.5,yes +47,admin.,married,university.degree,no,yes,yes,cellular,dec,mon,67,5,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +48,admin.,married,university.degree,no,yes,no,cellular,dec,mon,347,4,6,2,success,-3,92.713,-33,0.717,5023.5,no +50,technician,married,high.school,no,no,no,cellular,dec,mon,620,3,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes +38,technician,single,university.degree,no,yes,no,cellular,dec,mon,329,2,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,yes +73,retired,married,basic.4y,no,no,no,cellular,dec,mon,245,5,999,0,nonexistent,-3,92.713,-33,0.717,5023.5,no +38,unemployed,single,high.school,no,yes,no,cellular,dec,mon,1002,3,10,1,success,-3,92.713,-33,0.717,5023.5,no +54,admin.,divorced,university.degree,no,no,no,cellular,dec,wed,288,7,6,2,success,-3,92.713,-33,0.715,5023.5,yes +42,services,married,university.degree,no,no,no,cellular,dec,wed,179,1,6,1,success,-3,92.713,-33,0.715,5023.5,yes +29,student,single,high.school,no,no,no,cellular,dec,wed,390,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +64,retired,married,basic.4y,no,unknown,unknown,telephone,dec,wed,137,8,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +56,management,married,professional.course,no,no,no,cellular,dec,wed,124,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +30,student,single,unknown,no,no,no,cellular,dec,wed,343,1,4,2,success,-3,92.713,-33,0.715,5023.5,yes +31,self-employed,single,university.degree,no,no,no,cellular,dec,wed,854,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +32,admin.,married,high.school,no,yes,yes,cellular,dec,wed,479,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +86,retired,married,professional.course,no,no,no,telephone,dec,wed,343,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +41,self-employed,married,university.degree,no,unknown,unknown,telephone,dec,wed,595,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +26,admin.,single,university.degree,no,yes,no,telephone,dec,wed,395,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +65,management,married,unknown,no,no,no,cellular,dec,wed,456,2,9,1,success,-3,92.713,-33,0.715,5023.5,yes +32,student,married,high.school,no,yes,no,telephone,dec,wed,87,5,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +32,student,married,high.school,no,yes,no,telephone,dec,wed,135,3,999,1,failure,-3,92.713,-33,0.715,5023.5,no +70,retired,divorced,basic.9y,no,no,no,telephone,dec,wed,220,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +65,management,married,unknown,no,yes,no,telephone,dec,wed,207,3,999,1,failure,-3,92.713,-33,0.715,5023.5,yes +37,management,married,unknown,no,no,no,cellular,dec,wed,149,3,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +64,housemaid,married,basic.4y,no,yes,yes,cellular,dec,thu,336,5,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +56,retired,married,basic.4y,no,no,no,cellular,dec,thu,429,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +51,unemployed,divorced,high.school,no,no,no,cellular,dec,thu,112,2,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,no +55,admin.,married,professional.course,no,yes,no,cellular,dec,thu,798,1,9,2,success,-3,92.713,-33,0.714,5023.5,yes +29,unemployed,married,basic.4y,no,no,no,telephone,dec,thu,805,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +71,retired,married,unknown,no,yes,yes,cellular,dec,thu,182,1,999,1,failure,-3,92.713,-33,0.714,5023.5,no +64,housemaid,married,basic.4y,no,no,no,cellular,dec,thu,422,1,6,2,success,-3,92.713,-33,0.714,5023.5,yes +64,housemaid,married,basic.4y,no,no,no,telephone,dec,thu,208,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,no +64,housemaid,married,basic.4y,no,no,no,cellular,dec,thu,232,1,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +64,housemaid,married,basic.4y,no,no,yes,cellular,dec,thu,501,1,6,1,success,-3,92.713,-33,0.714,5023.5,no +56,retired,married,basic.4y,no,no,no,cellular,dec,thu,582,4,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +62,housemaid,married,professional.course,no,yes,no,cellular,dec,fri,141,2,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +81,retired,divorced,basic.4y,no,yes,no,cellular,dec,fri,166,3,999,0,nonexistent,-3,92.713,-33,0.714,5023.5,yes +61,admin.,married,university.degree,no,no,no,cellular,dec,mon,263,1,999,1,failure,-3,92.713,-33,0.715,5023.5,no +57,admin.,single,high.school,no,no,no,cellular,dec,mon,388,1,6,2,success,-3,92.713,-33,0.715,5023.5,no +54,technician,divorced,professional.course,no,yes,no,cellular,dec,mon,352,1,6,1,success,-3,92.713,-33,0.715,5023.5,no +18,student,single,basic.9y,no,yes,no,cellular,dec,mon,269,1,999,1,failure,-3,92.713,-33,0.715,5023.5,no +48,technician,married,professional.course,no,yes,yes,cellular,dec,mon,122,3,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +74,retired,divorced,high.school,no,yes,yes,telephone,dec,mon,88,6,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +18,student,single,basic.9y,no,yes,no,cellular,dec,mon,446,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +63,technician,married,unknown,no,yes,no,cellular,dec,mon,510,2,999,1,failure,-3,92.713,-33,0.715,5023.5,yes +85,retired,divorced,basic.4y,unknown,yes,no,cellular,dec,mon,321,3,6,1,success,-3,92.713,-33,0.715,5023.5,yes +84,retired,married,high.school,no,no,no,cellular,dec,tue,351,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +85,retired,divorced,basic.4y,unknown,yes,no,telephone,dec,tue,150,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +59,retired,married,professional.course,no,no,no,telephone,dec,tue,476,1,999,1,failure,-3,92.713,-33,0.715,5023.5,yes +46,admin.,single,university.degree,no,yes,yes,cellular,dec,tue,324,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +56,blue-collar,married,basic.4y,unknown,yes,no,cellular,dec,tue,280,3,6,1,success,-3,92.713,-33,0.715,5023.5,yes +43,admin.,married,high.school,no,yes,no,cellular,dec,tue,72,4,6,1,success,-3,92.713,-33,0.715,5023.5,no +55,services,married,basic.9y,no,yes,no,cellular,dec,wed,314,1,6,1,success,-3,92.713,-33,0.715,5023.5,yes +70,retired,married,basic.4y,no,yes,no,cellular,dec,wed,325,1,999,2,failure,-3,92.713,-33,0.715,5023.5,no +56,admin.,divorced,unknown,no,no,no,cellular,dec,wed,205,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,no +64,retired,married,high.school,no,yes,no,cellular,dec,wed,354,1,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +70,retired,married,basic.4y,no,no,no,cellular,dec,wed,546,2,999,0,nonexistent,-3,92.713,-33,0.715,5023.5,yes +47,housemaid,married,basic.9y,no,yes,no,cellular,dec,thu,155,1,999,1,failure,-3,92.713,-33,0.712,5023.5,no +68,management,married,basic.9y,no,yes,no,cellular,dec,thu,97,1,999,2,failure,-3,92.713,-33,0.712,5023.5,no +76,retired,married,university.degree,no,no,no,cellular,dec,thu,103,1,999,1,failure,-3,92.713,-33,0.712,5023.5,no +68,technician,married,unknown,no,no,no,cellular,dec,thu,141,4,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,no +18,student,single,basic.9y,no,no,no,cellular,dec,thu,412,2,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,yes +76,retired,married,university.degree,no,yes,yes,cellular,dec,thu,330,2,4,2,success,-3,92.713,-33,0.712,5023.5,yes +19,student,single,high.school,no,yes,no,cellular,dec,thu,110,2,999,3,failure,-3,92.713,-33,0.712,5023.5,no +24,student,single,high.school,no,yes,no,cellular,dec,thu,726,3,999,0,nonexistent,-3,92.713,-33,0.712,5023.5,yes +76,retired,married,university.degree,no,no,yes,cellular,dec,thu,324,3,4,2,success,-3,92.713,-33,0.712,5023.5,yes +76,retired,married,university.degree,no,unknown,unknown,cellular,dec,thu,184,6,999,1,failure,-3,92.713,-33,0.712,5023.5,no +38,unemployed,single,high.school,no,yes,no,cellular,dec,fri,170,4,6,1,success,-3,92.713,-33,0.71,5023.5,yes +28,admin.,single,university.degree,no,yes,yes,cellular,dec,fri,454,6,999,1,failure,-3,92.713,-33,0.71,5023.5,no +21,student,single,university.degree,no,yes,no,cellular,dec,fri,379,3,6,1,success,-3,92.713,-33,0.71,5023.5,yes +52,technician,married,high.school,no,no,no,cellular,dec,fri,406,1,999,1,failure,-3,92.713,-33,0.71,5023.5,yes +23,blue-collar,single,high.school,no,yes,no,cellular,dec,fri,248,6,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,no +30,self-employed,single,university.degree,no,yes,yes,cellular,dec,fri,127,2,6,1,success,-3,92.713,-33,0.71,5023.5,no +55,entrepreneur,divorced,basic.9y,no,no,no,cellular,dec,fri,415,7,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,yes +36,admin.,married,university.degree,no,yes,no,telephone,dec,fri,52,4,999,0,nonexistent,-3,92.713,-33,0.71,5023.5,no +42,admin.,married,university.degree,no,no,no,telephone,dec,fri,104,5,6,1,success,-3,92.713,-33,0.71,5023.5,no +29,admin.,married,university.degree,no,yes,no,cellular,dec,mon,116,2,999,1,failure,-3,92.713,-33,0.709,5023.5,no +26,student,single,university.degree,no,no,no,telephone,dec,mon,796,1,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,no +43,management,married,unknown,no,yes,no,telephone,dec,mon,2062,2,8,1,success,-3,92.713,-33,0.709,5023.5,yes +29,admin.,married,university.degree,no,no,no,cellular,dec,mon,77,3,999,1,failure,-3,92.713,-33,0.709,5023.5,no +29,technician,single,university.degree,no,yes,no,cellular,dec,mon,264,2,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,yes +28,unemployed,single,high.school,no,yes,no,cellular,dec,mon,94,3,6,3,success,-3,92.713,-33,0.709,5023.5,no +31,admin.,married,professional.course,no,no,yes,cellular,dec,mon,367,2,999,1,failure,-3,92.713,-33,0.709,5023.5,yes +51,technician,married,professional.course,no,no,yes,cellular,dec,mon,267,2,999,0,nonexistent,-3,92.713,-33,0.709,5023.5,yes +23,student,single,basic.9y,no,yes,no,cellular,dec,tue,321,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes +27,student,single,high.school,no,yes,no,cellular,dec,tue,396,1,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,no +23,student,single,basic.9y,no,yes,no,cellular,dec,tue,256,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes +50,admin.,married,university.degree,no,yes,no,cellular,dec,tue,410,3,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,yes +27,technician,single,university.degree,no,yes,no,cellular,dec,tue,305,3,10,1,success,-3,92.713,-33,0.708,5023.5,yes +23,student,single,basic.9y,no,yes,no,cellular,dec,tue,158,2,999,0,nonexistent,-3,92.713,-33,0.708,5023.5,no +62,retired,married,university.degree,no,yes,no,cellular,dec,wed,282,1,6,1,success,-3,92.713,-33,0.706,5023.5,yes +28,student,single,unknown,no,yes,no,cellular,dec,wed,102,2,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no +57,admin.,married,unknown,no,yes,no,cellular,dec,wed,391,2,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes +41,admin.,married,university.degree,no,yes,no,cellular,dec,thu,422,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +35,blue-collar,married,basic.9y,no,no,yes,cellular,dec,thu,520,3,999,2,failure,-3,92.713,-33,0.707,5023.5,no +41,admin.,married,university.degree,no,no,no,cellular,dec,thu,213,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +41,admin.,married,university.degree,no,yes,no,cellular,dec,thu,500,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +76,retired,divorced,professional.course,no,yes,no,cellular,dec,thu,956,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,dec,thu,105,1,4,3,success,-3,92.713,-33,0.707,5023.5,no +45,admin.,married,university.degree,no,no,no,cellular,dec,thu,150,2,6,1,success,-3,92.713,-33,0.707,5023.5,yes +35,unemployed,married,professional.course,no,yes,yes,cellular,dec,thu,62,3,999,1,failure,-3,92.713,-33,0.707,5023.5,no +41,admin.,single,university.degree,no,yes,yes,telephone,dec,thu,273,1,999,1,failure,-3,92.713,-33,0.707,5023.5,no +46,technician,married,professional.course,no,yes,no,telephone,dec,mon,679,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes +22,technician,single,professional.course,no,yes,no,cellular,dec,mon,1141,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes +63,retired,married,professional.course,no,no,no,cellular,dec,mon,83,4,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no +59,self-employed,married,university.degree,no,no,no,cellular,dec,mon,193,1,999,1,failure,-3,92.713,-33,0.706,5023.5,no +53,admin.,married,university.degree,no,yes,yes,cellular,dec,mon,433,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no +37,admin.,married,university.degree,no,no,yes,cellular,dec,mon,206,2,6,1,success,-3,92.713,-33,0.706,5023.5,yes +35,unemployed,married,professional.course,no,yes,no,cellular,dec,mon,315,1,6,1,success,-3,92.713,-33,0.706,5023.5,yes +39,unemployed,single,university.degree,no,yes,no,cellular,dec,mon,387,1,6,2,success,-3,92.713,-33,0.706,5023.5,yes +53,admin.,married,university.degree,no,yes,yes,telephone,dec,mon,824,1,6,2,success,-3,92.713,-33,0.706,5023.5,yes +30,student,single,university.degree,no,yes,no,cellular,dec,mon,256,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,no +46,unknown,single,unknown,unknown,yes,no,cellular,dec,mon,1472,1,6,1,success,-3,92.713,-33,0.706,5023.5,no +63,retired,married,professional.course,no,no,no,cellular,dec,mon,137,1,999,1,failure,-3,92.713,-33,0.706,5023.5,no +32,self-employed,single,university.degree,no,yes,no,cellular,dec,mon,205,4,999,1,failure,-3,92.713,-33,0.706,5023.5,yes +35,management,divorced,university.degree,no,no,no,cellular,dec,mon,473,2,999,1,failure,-3,92.713,-33,0.706,5023.5,yes +40,self-employed,married,university.degree,no,no,yes,cellular,dec,mon,893,1,999,0,nonexistent,-3,92.713,-33,0.706,5023.5,yes +34,admin.,married,university.degree,no,yes,no,cellular,dec,tue,195,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no +29,management,married,university.degree,no,yes,no,telephone,dec,tue,207,4,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no +73,retired,divorced,high.school,no,yes,no,cellular,dec,tue,284,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +43,blue-collar,married,basic.9y,no,yes,no,cellular,dec,tue,689,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +26,technician,single,university.degree,no,yes,no,cellular,dec,tue,296,1,5,1,success,-3,92.713,-33,0.707,5023.5,yes +27,technician,single,university.degree,no,yes,no,cellular,dec,tue,1370,3,6,2,success,-3,92.713,-33,0.707,5023.5,yes +32,admin.,single,university.degree,no,yes,no,cellular,dec,tue,449,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,yes +34,admin.,married,university.degree,no,no,yes,cellular,dec,tue,196,2,6,2,success,-3,92.713,-33,0.707,5023.5,yes +32,admin.,single,university.degree,no,yes,no,cellular,dec,tue,215,2,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no +27,technician,single,university.degree,no,yes,no,cellular,dec,tue,109,1,999,1,failure,-3,92.713,-33,0.707,5023.5,no +35,admin.,married,university.degree,no,no,no,cellular,dec,tue,554,1,999,0,nonexistent,-3,92.713,-33,0.707,5023.5,no +73,retired,divorced,high.school,no,no,yes,cellular,dec,tue,63,3,6,2,success,-3,92.713,-33,0.707,5023.5,yes +51,blue-collar,married,professional.course,no,yes,no,cellular,dec,wed,241,3,999,0,nonexistent,-3,92.713,-33,0.7,5023.5,yes +31,student,married,high.school,no,yes,no,cellular,dec,wed,158,3,999,0,nonexistent,-3,92.713,-33,0.7,5023.5,no +39,admin.,married,high.school,no,yes,no,cellular,dec,wed,110,3,999,1,failure,-3,92.713,-33,0.7,5023.5,no +59,management,married,university.degree,no,no,no,cellular,dec,thu,112,4,999,1,failure,-3,92.713,-33,0.7,5023.5,no +59,management,married,university.degree,no,yes,no,cellular,dec,thu,646,3,6,1,success,-3,92.713,-33,0.7,5023.5,no +39,admin.,single,university.degree,no,yes,no,telephone,mar,mon,229,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +60,technician,married,university.degree,no,yes,no,telephone,mar,mon,10,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +30,blue-collar,married,high.school,no,yes,no,telephone,mar,tue,904,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +78,retired,divorced,professional.course,no,yes,no,cellular,mar,tue,591,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +66,retired,married,basic.4y,no,yes,no,cellular,mar,tue,229,1,6,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes +66,retired,married,professional.course,no,no,yes,cellular,mar,tue,525,1,21,2,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +31,admin.,divorced,professional.course,no,yes,no,cellular,mar,tue,107,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +30,blue-collar,married,high.school,no,no,no,cellular,mar,tue,658,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +30,technician,married,professional.course,no,yes,no,cellular,mar,tue,368,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +30,technician,married,professional.course,no,yes,yes,cellular,mar,tue,147,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +27,technician,married,professional.course,no,no,yes,telephone,mar,tue,18,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +30,technician,married,professional.course,no,yes,no,cellular,mar,tue,105,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,no +31,admin.,married,university.degree,no,unknown,unknown,cellular,mar,tue,207,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +66,retired,married,professional.course,no,no,no,cellular,mar,tue,328,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +66,retired,married,professional.course,no,no,no,cellular,mar,tue,177,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +53,technician,married,high.school,no,yes,no,cellular,mar,tue,539,2,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +27,unknown,single,university.degree,no,no,no,cellular,mar,tue,133,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +19,student,single,basic.6y,no,yes,no,cellular,mar,tue,313,1,5,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes +31,admin.,divorced,professional.course,no,yes,no,cellular,mar,tue,292,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +25,blue-collar,single,basic.6y,no,no,no,cellular,mar,tue,228,4,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +35,services,single,high.school,no,yes,no,telephone,mar,tue,187,3,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +30,technician,married,professional.course,no,yes,no,cellular,mar,tue,263,2,6,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes +33,admin.,married,university.degree,no,yes,no,cellular,mar,wed,235,3,4,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes +21,student,single,basic.9y,no,no,no,cellular,mar,wed,363,1,6,1,success,-1.8,93.369,-34.8,0.655,5008.7,yes +38,blue-collar,single,high.school,no,no,no,cellular,mar,wed,141,1,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +38,blue-collar,single,high.school,no,yes,no,telephone,mar,wed,557,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +24,admin.,single,university.degree,no,yes,no,cellular,mar,wed,145,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +38,blue-collar,single,high.school,no,yes,no,cellular,mar,wed,355,1,13,2,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +51,management,married,university.degree,no,no,no,telephone,mar,wed,19,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +37,admin.,single,high.school,no,no,no,cellular,mar,wed,153,2,4,2,success,-1.8,93.369,-34.8,0.655,5008.7,yes +21,student,single,basic.9y,no,yes,no,cellular,mar,wed,136,2,999,1,failure,-1.8,93.369,-34.8,0.655,5008.7,yes +36,admin.,married,high.school,no,yes,no,cellular,mar,wed,114,6,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +54,technician,single,university.degree,no,yes,no,telephone,mar,wed,700,3,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,no +36,management,single,university.degree,no,no,no,telephone,mar,wed,834,1,999,0,nonexistent,-1.8,93.369,-34.8,0.655,5008.7,yes +34,technician,single,university.degree,no,yes,yes,cellular,mar,thu,221,3,3,2,success,-1.8,93.369,-34.8,0.654,5008.7,yes +37,admin.,single,university.degree,no,yes,no,cellular,mar,thu,194,2,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no +34,technician,single,university.degree,no,yes,no,cellular,mar,thu,180,2,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,yes +52,services,married,high.school,unknown,yes,no,cellular,mar,thu,177,2,11,3,failure,-1.8,93.369,-34.8,0.654,5008.7,yes +34,admin.,married,professional.course,no,no,yes,telephone,mar,thu,364,2,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no +34,technician,single,university.degree,no,no,no,cellular,mar,thu,251,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,yes +36,management,married,university.degree,no,no,no,cellular,mar,thu,148,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,yes +53,admin.,divorced,university.degree,no,no,no,cellular,mar,thu,2486,1,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,yes +53,admin.,divorced,university.degree,no,yes,yes,cellular,mar,thu,431,1,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,no +25,blue-collar,single,basic.9y,no,no,no,cellular,mar,thu,117,2,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,no +55,admin.,married,university.degree,no,yes,no,telephone,mar,thu,220,7,999,0,nonexistent,-1.8,93.369,-34.8,0.654,5008.7,no +25,blue-collar,single,basic.9y,no,no,no,cellular,mar,thu,456,2,10,2,success,-1.8,93.369,-34.8,0.654,5008.7,yes +66,retired,divorced,basic.4y,no,yes,no,cellular,mar,thu,141,4,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,no +53,admin.,divorced,university.degree,no,yes,no,telephone,mar,thu,262,1,999,2,failure,-1.8,93.369,-34.8,0.654,5008.7,no +34,admin.,married,professional.course,no,yes,no,cellular,mar,thu,562,3,999,1,failure,-1.8,93.369,-34.8,0.654,5008.7,yes +25,student,single,university.degree,no,yes,no,telephone,mar,fri,252,3,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,no +64,retired,married,university.degree,no,no,no,cellular,mar,fri,158,1,3,2,success,-1.8,93.369,-34.8,0.653,5008.7,no +34,blue-collar,married,high.school,no,yes,no,cellular,mar,fri,115,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +41,admin.,divorced,university.degree,no,yes,yes,cellular,mar,fri,418,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +28,unemployed,married,high.school,no,no,no,telephone,mar,fri,341,4,6,1,success,-1.8,93.369,-34.8,0.653,5008.7,yes +72,retired,married,professional.course,no,no,no,cellular,mar,fri,87,1,3,1,success,-1.8,93.369,-34.8,0.653,5008.7,yes +33,entrepreneur,single,professional.course,no,yes,no,cellular,mar,fri,373,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +85,retired,single,professional.course,no,no,no,cellular,mar,fri,116,7,7,2,success,-1.8,93.369,-34.8,0.653,5008.7,no +38,technician,single,high.school,no,no,no,cellular,mar,fri,154,3,17,3,failure,-1.8,93.369,-34.8,0.653,5008.7,no +31,technician,single,professional.course,no,no,no,cellular,mar,fri,172,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,no +34,technician,divorced,professional.course,no,no,no,telephone,mar,fri,257,1,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,yes +74,retired,married,unknown,no,no,yes,cellular,mar,fri,607,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +27,student,single,high.school,no,no,no,cellular,mar,fri,219,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +22,student,single,basic.9y,no,no,no,cellular,mar,fri,84,1,999,1,failure,-1.8,93.369,-34.8,0.653,5008.7,no +50,technician,married,university.degree,no,yes,no,cellular,mar,fri,809,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +41,admin.,divorced,university.degree,no,no,no,cellular,mar,fri,319,1,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +38,technician,single,high.school,no,yes,no,cellular,mar,fri,292,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +41,admin.,divorced,university.degree,no,yes,no,cellular,mar,fri,498,2,6,3,success,-1.8,93.369,-34.8,0.653,5008.7,yes +41,admin.,divorced,university.degree,no,yes,no,cellular,mar,fri,376,2,999,0,nonexistent,-1.8,93.369,-34.8,0.653,5008.7,yes +43,self-employed,married,university.degree,no,yes,no,cellular,mar,mon,264,2,9,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +59,management,married,basic.4y,no,yes,no,cellular,mar,mon,284,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no +35,technician,single,professional.course,no,no,no,cellular,mar,mon,185,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no +29,admin.,single,high.school,no,no,no,cellular,mar,mon,150,4,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no +27,services,single,university.degree,no,yes,no,cellular,mar,mon,111,3,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no +29,management,single,university.degree,no,yes,no,cellular,mar,mon,154,2,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,no +73,retired,married,unknown,no,yes,no,telephone,mar,mon,659,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +29,admin.,single,unknown,no,yes,no,cellular,mar,mon,132,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +49,blue-collar,married,basic.9y,unknown,yes,no,cellular,mar,mon,277,4,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,yes +49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,157,3,7,2,success,-1.8,93.369,-34.8,0.652,5008.7,no +27,services,single,university.degree,no,yes,no,cellular,mar,mon,104,1,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,172,1,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes +59,blue-collar,married,basic.4y,no,yes,no,cellular,mar,mon,124,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +33,self-employed,single,university.degree,no,yes,no,cellular,mar,mon,265,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +36,admin.,single,university.degree,no,no,no,cellular,mar,mon,409,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +49,blue-collar,married,basic.9y,unknown,no,no,cellular,mar,mon,301,1,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +27,services,single,university.degree,no,no,no,cellular,mar,mon,139,6,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,no +64,retired,married,university.degree,no,no,no,cellular,mar,tue,139,2,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,no,no,telephone,mar,tue,225,1,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +42,blue-collar,married,basic.6y,no,yes,yes,cellular,mar,tue,185,1,7,3,failure,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,high.school,no,no,no,cellular,mar,tue,469,1,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes +29,blue-collar,single,professional.course,no,yes,yes,cellular,mar,tue,176,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,yes,no,cellular,mar,tue,568,1,6,3,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,no,no,cellular,mar,tue,241,1,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,301,1,3,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,236,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +55,unemployed,divorced,university.degree,no,no,no,cellular,mar,tue,212,3,6,3,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,305,1,11,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,no,yes,cellular,mar,tue,288,2,3,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +64,retired,married,university.degree,no,no,no,cellular,mar,tue,700,2,5,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +26,admin.,single,high.school,no,no,no,cellular,mar,tue,273,2,6,1,success,-1.8,93.369,-34.8,0.652,5008.7,yes +34,admin.,single,university.degree,no,yes,no,cellular,mar,tue,265,2,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,no +34,admin.,single,university.degree,no,yes,yes,cellular,mar,tue,295,1,999,0,nonexistent,-1.8,93.369,-34.8,0.652,5008.7,yes +38,blue-collar,single,high.school,no,no,no,telephone,mar,tue,450,3,6,2,success,-1.8,93.369,-34.8,0.652,5008.7,yes +29,blue-collar,single,professional.course,no,no,yes,cellular,mar,tue,207,2,999,1,failure,-1.8,93.369,-34.8,0.652,5008.7,yes +25,unemployed,married,high.school,no,yes,no,cellular,mar,wed,436,2,6,1,success,-1.8,93.369,-34.8,0.651,5008.7,yes +43,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,239,1,999,0,nonexistent,-1.8,93.369,-34.8,0.651,5008.7,yes +35,technician,married,university.degree,no,yes,yes,cellular,mar,wed,138,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no +28,self-employed,single,university.degree,no,yes,yes,cellular,mar,wed,217,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no +28,self-employed,single,university.degree,no,yes,no,telephone,mar,wed,152,1,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,no +31,technician,married,university.degree,no,no,no,cellular,mar,wed,625,4,999,0,nonexistent,-1.8,93.369,-34.8,0.651,5008.7,no +55,admin.,married,high.school,no,yes,no,cellular,mar,wed,106,2,999,1,failure,-1.8,93.369,-34.8,0.651,5008.7,yes +28,admin.,single,university.degree,no,yes,no,cellular,mar,thu,257,4,999,2,failure,-1.8,93.369,-34.8,0.65,5008.7,yes +33,admin.,married,university.degree,no,no,yes,telephone,mar,thu,78,2,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no +27,technician,single,university.degree,no,yes,no,cellular,mar,thu,129,4,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no +39,admin.,divorced,university.degree,no,yes,no,cellular,mar,thu,93,1,13,1,success,-1.8,93.369,-34.8,0.65,5008.7,no +46,admin.,married,university.degree,no,no,no,telephone,mar,thu,184,1,3,1,success,-1.8,93.369,-34.8,0.65,5008.7,no +46,admin.,married,university.degree,no,yes,no,cellular,mar,thu,335,1,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,yes +38,services,married,high.school,no,yes,no,cellular,mar,thu,257,1,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,yes +53,admin.,divorced,university.degree,no,yes,no,cellular,mar,thu,228,1,999,1,failure,-1.8,93.369,-34.8,0.65,5008.7,no +35,technician,married,professional.course,no,no,no,telephone,mar,thu,282,2,6,1,success,-1.8,93.369,-34.8,0.65,5008.7,no +33,admin.,married,university.degree,no,yes,no,cellular,mar,thu,117,1,3,1,success,-1.8,93.369,-34.8,0.65,5008.7,no +31,admin.,single,university.degree,no,no,no,cellular,mar,thu,275,2,999,0,nonexistent,-1.8,93.369,-34.8,0.65,5008.7,no +31,self-employed,married,professional.course,no,yes,no,cellular,mar,thu,171,4,999,3,failure,-1.8,93.369,-34.8,0.65,5008.7,yes +28,services,single,professional.course,no,yes,no,cellular,mar,fri,169,3,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no +61,self-employed,divorced,university.degree,no,no,no,cellular,mar,fri,102,2,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no +33,admin.,married,university.degree,no,no,no,cellular,mar,fri,121,2,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,no +23,student,single,high.school,no,no,no,telephone,mar,fri,290,1,3,1,success,-1.8,93.369,-34.8,0.649,5008.7,yes +38,housemaid,single,high.school,no,yes,no,cellular,mar,fri,422,1,10,1,success,-1.8,93.369,-34.8,0.649,5008.7,yes +33,admin.,married,university.degree,no,no,no,cellular,mar,fri,119,2,999,3,failure,-1.8,93.369,-34.8,0.649,5008.7,no +26,student,single,high.school,no,no,no,cellular,mar,fri,215,1,6,3,success,-1.8,93.369,-34.8,0.649,5008.7,yes +27,services,single,university.degree,no,no,no,cellular,mar,fri,212,1,999,0,nonexistent,-1.8,93.369,-34.8,0.649,5008.7,yes +27,services,single,university.degree,no,yes,no,cellular,mar,fri,229,3,999,1,failure,-1.8,93.369,-34.8,0.649,5008.7,yes +80,retired,married,basic.4y,no,no,no,cellular,mar,fri,213,3,6,4,success,-1.8,93.369,-34.8,0.649,5008.7,yes +62,technician,married,unknown,no,no,no,cellular,mar,mon,104,2,3,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes +58,retired,married,university.degree,no,yes,no,cellular,mar,mon,144,2,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no +73,retired,married,basic.4y,no,yes,no,cellular,mar,mon,209,2,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no +53,technician,married,professional.course,no,no,no,cellular,mar,mon,261,4,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +30,management,married,university.degree,no,yes,no,cellular,mar,mon,106,3,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +29,admin.,single,high.school,no,yes,yes,cellular,mar,mon,257,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +62,technician,married,unknown,no,yes,no,cellular,mar,mon,192,1,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes +48,unemployed,married,university.degree,no,no,yes,cellular,mar,mon,151,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no +53,technician,married,professional.course,no,yes,no,telephone,mar,mon,247,5,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no +53,technician,married,professional.course,no,yes,yes,cellular,mar,mon,109,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no +33,admin.,single,university.degree,no,no,no,cellular,mar,mon,427,1,6,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes +58,admin.,married,university.degree,no,yes,no,cellular,mar,mon,549,5,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no +62,technician,married,unknown,no,no,no,cellular,mar,mon,435,3,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,no +82,retired,married,professional.course,no,yes,no,telephone,mar,mon,506,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +29,admin.,single,university.degree,no,no,no,cellular,mar,mon,287,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +31,admin.,married,professional.course,no,no,no,cellular,mar,mon,161,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +62,technician,married,unknown,no,no,no,cellular,mar,mon,105,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +30,self-employed,married,university.degree,no,yes,no,telephone,mar,mon,577,7,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +30,unemployed,single,professional.course,no,yes,no,cellular,mar,mon,341,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +34,technician,married,professional.course,no,no,no,telephone,mar,mon,300,6,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes +48,unemployed,married,university.degree,no,yes,no,cellular,mar,mon,195,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +29,admin.,single,university.degree,no,yes,no,cellular,mar,mon,361,1,3,3,success,-1.8,93.369,-34.8,0.646,5008.7,yes +34,technician,married,professional.course,no,yes,no,telephone,mar,mon,129,1,6,1,success,-1.8,93.369,-34.8,0.646,5008.7,no +65,retired,married,basic.4y,no,yes,no,cellular,mar,tue,189,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +31,unemployed,single,university.degree,no,yes,no,cellular,mar,tue,180,1,10,1,success,-1.8,93.369,-34.8,0.646,5008.7,yes +47,self-employed,divorced,university.degree,no,no,no,cellular,mar,tue,261,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +48,unemployed,married,university.degree,no,yes,no,cellular,mar,tue,279,1,999,2,failure,-1.8,93.369,-34.8,0.646,5008.7,yes +33,technician,single,professional.course,no,yes,no,cellular,mar,tue,459,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,yes +52,admin.,married,university.degree,no,yes,no,telephone,mar,tue,294,1,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,no +46,unemployed,single,university.degree,no,no,no,cellular,mar,tue,263,1,10,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes +31,admin.,single,university.degree,no,yes,no,telephone,mar,tue,295,1,3,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes +33,technician,single,professional.course,no,yes,no,telephone,mar,tue,244,2,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +27,services,single,high.school,no,yes,yes,cellular,mar,tue,384,1,9,2,failure,-1.8,93.369,-34.8,0.646,5008.7,no +52,admin.,married,university.degree,no,no,no,cellular,mar,tue,231,1,6,2,success,-1.8,93.369,-34.8,0.646,5008.7,yes +66,retired,married,high.school,no,no,no,cellular,mar,tue,618,1,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +30,technician,single,university.degree,no,unknown,unknown,cellular,mar,tue,272,3,999,0,nonexistent,-1.8,93.369,-34.8,0.646,5008.7,no +66,retired,married,high.school,no,unknown,unknown,cellular,mar,tue,881,3,999,1,failure,-1.8,93.369,-34.8,0.646,5008.7,yes +23,student,single,high.school,no,no,no,cellular,mar,wed,128,1,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,yes +33,self-employed,married,university.degree,no,yes,no,cellular,mar,wed,184,1,11,1,success,-1.8,93.369,-34.8,0.644,5008.7,no +37,technician,married,professional.course,no,yes,yes,cellular,mar,wed,395,1,9,1,success,-1.8,93.369,-34.8,0.644,5008.7,no +56,retired,married,basic.4y,no,no,no,cellular,mar,wed,181,2,9,2,failure,-1.8,93.369,-34.8,0.644,5008.7,no +59,admin.,married,university.degree,no,yes,no,telephone,mar,wed,133,7,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,no +52,technician,married,basic.9y,no,no,no,cellular,mar,wed,272,3,999,0,nonexistent,-1.8,93.369,-34.8,0.644,5008.7,yes +53,blue-collar,single,basic.9y,no,unknown,unknown,cellular,mar,thu,362,1,9,2,success,-1.8,93.369,-34.8,0.643,5008.7,yes +53,technician,married,unknown,no,no,no,cellular,mar,thu,93,1,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,no +26,admin.,married,unknown,no,no,no,cellular,mar,thu,359,1,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,no +28,admin.,single,university.degree,no,yes,no,cellular,mar,thu,370,1,9,1,success,-1.8,93.369,-34.8,0.643,5008.7,no +28,admin.,single,university.degree,no,no,no,cellular,mar,thu,237,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes +28,admin.,single,university.degree,no,no,no,cellular,mar,thu,125,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no +47,services,single,unknown,no,unknown,unknown,cellular,mar,thu,394,2,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no +38,admin.,single,university.degree,no,yes,no,cellular,mar,thu,420,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes +43,admin.,married,high.school,no,yes,no,cellular,mar,thu,265,1,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,yes +34,admin.,single,university.degree,no,yes,no,cellular,mar,thu,910,2,6,3,success,-1.8,93.369,-34.8,0.643,5008.7,yes +29,technician,single,professional.course,no,yes,yes,cellular,mar,thu,467,2,13,1,success,-1.8,93.369,-34.8,0.643,5008.7,yes +24,technician,single,professional.course,no,yes,no,telephone,mar,thu,165,3,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no +50,management,married,university.degree,no,yes,no,cellular,mar,thu,245,2,999,0,nonexistent,-1.8,93.369,-34.8,0.643,5008.7,no +39,admin.,divorced,professional.course,no,no,no,cellular,mar,thu,593,4,999,1,failure,-1.8,93.369,-34.8,0.643,5008.7,yes +75,retired,married,basic.9y,no,no,no,cellular,mar,mon,293,2,999,1,failure,-1.8,93.369,-34.8,0.639,5008.7,yes +59,unemployed,married,basic.9y,no,yes,no,cellular,mar,mon,254,2,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,yes +27,admin.,single,unknown,no,yes,no,cellular,mar,mon,247,3,6,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes +30,technician,unknown,university.degree,no,no,no,cellular,mar,mon,977,2,11,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes +30,technician,unknown,university.degree,no,no,no,cellular,mar,mon,173,2,6,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes +29,admin.,single,university.degree,no,yes,no,cellular,mar,mon,215,1,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,yes +38,student,single,unknown,no,no,yes,cellular,mar,mon,248,1,3,4,success,-1.8,93.369,-34.8,0.639,5008.7,yes +38,student,single,unknown,no,yes,no,cellular,mar,mon,344,1,11,1,success,-1.8,93.369,-34.8,0.639,5008.7,no +38,student,single,unknown,no,no,no,cellular,mar,mon,516,6,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,no +39,technician,divorced,high.school,no,no,no,cellular,mar,mon,222,1,12,2,success,-1.8,93.369,-34.8,0.639,5008.7,yes +39,technician,divorced,high.school,no,no,no,cellular,mar,mon,174,1,3,1,success,-1.8,93.369,-34.8,0.639,5008.7,yes +36,blue-collar,divorced,high.school,no,no,no,cellular,mar,mon,96,2,999,1,failure,-1.8,93.369,-34.8,0.639,5008.7,no +70,retired,married,unknown,no,no,no,telephone,mar,mon,174,2,7,2,success,-1.8,93.369,-34.8,0.639,5008.7,no +75,retired,married,basic.9y,no,no,no,cellular,mar,mon,153,2,999,0,nonexistent,-1.8,93.369,-34.8,0.639,5008.7,no +27,admin.,single,unknown,no,no,no,cellular,mar,mon,291,1,999,3,failure,-1.8,93.369,-34.8,0.639,5008.7,yes +30,student,single,unknown,no,no,yes,telephone,mar,tue,255,1,3,2,success,-1.8,93.369,-34.8,0.637,5008.7,yes +37,blue-collar,married,basic.9y,no,yes,no,cellular,mar,tue,158,1,999,1,failure,-1.8,93.369,-34.8,0.637,5008.7,no +30,student,single,unknown,no,yes,no,cellular,mar,tue,136,1,9,1,success,-1.8,93.369,-34.8,0.637,5008.7,yes +27,admin.,single,university.degree,no,no,no,cellular,mar,tue,273,1,999,0,nonexistent,-1.8,93.369,-34.8,0.637,5008.7,yes +27,admin.,single,unknown,no,no,no,cellular,mar,tue,128,1,3,1,success,-1.8,93.369,-34.8,0.637,5008.7,yes +27,admin.,single,university.degree,no,no,no,cellular,mar,tue,191,2,999,0,nonexistent,-1.8,93.369,-34.8,0.637,5008.7,yes +30,student,single,unknown,no,no,no,cellular,mar,thu,101,1,14,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes +30,student,single,unknown,no,yes,no,cellular,mar,thu,292,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +80,retired,married,basic.4y,no,yes,no,cellular,mar,thu,156,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +28,blue-collar,single,high.school,no,no,no,cellular,mar,thu,247,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +41,technician,divorced,university.degree,no,no,no,cellular,mar,thu,187,1,6,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes +33,admin.,single,unknown,no,no,no,cellular,mar,thu,196,3,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no +28,admin.,single,university.degree,no,no,no,cellular,mar,thu,189,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +36,admin.,single,unknown,no,yes,no,cellular,mar,thu,231,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +78,retired,married,unknown,no,no,no,cellular,mar,thu,272,1,6,2,success,-1.8,93.369,-34.8,0.635,5008.7,yes +66,housemaid,divorced,basic.4y,no,yes,no,cellular,mar,thu,201,1,3,2,success,-1.8,93.369,-34.8,0.635,5008.7,yes +34,blue-collar,single,unknown,no,no,no,cellular,mar,fri,98,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +57,blue-collar,married,basic.9y,no,no,no,cellular,mar,fri,94,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +65,housemaid,divorced,basic.4y,unknown,no,no,cellular,mar,fri,288,3,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,yes +33,services,single,high.school,no,yes,no,cellular,mar,fri,128,2,6,1,success,-1.8,93.369,-34.8,0.636,5008.7,no +59,services,single,high.school,no,yes,no,cellular,mar,fri,169,2,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +34,blue-collar,single,unknown,no,yes,no,cellular,mar,fri,360,1,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,yes +26,admin.,single,high.school,no,yes,no,cellular,mar,fri,454,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +27,self-employed,single,university.degree,no,no,no,cellular,mar,fri,281,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,yes +26,admin.,single,university.degree,no,no,no,cellular,mar,fri,81,1,7,4,failure,-1.8,93.369,-34.8,0.636,5008.7,no +34,admin.,divorced,high.school,no,no,no,cellular,mar,fri,156,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +78,retired,married,basic.4y,no,yes,no,telephone,mar,fri,139,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +28,admin.,single,university.degree,no,no,no,cellular,mar,fri,157,2,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,no +51,admin.,married,university.degree,no,yes,yes,cellular,mar,fri,201,3,999,1,failure,-1.8,93.369,-34.8,0.636,5008.7,no +57,blue-collar,married,basic.9y,no,no,no,cellular,mar,fri,698,1,999,0,nonexistent,-1.8,93.369,-34.8,0.636,5008.7,no +58,services,married,high.school,no,no,no,cellular,mar,mon,92,2,3,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes +58,services,married,high.school,no,no,no,cellular,mar,mon,198,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +58,services,married,high.school,no,yes,no,cellular,mar,mon,88,3,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +58,services,married,high.school,no,yes,no,cellular,mar,mon,164,5,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no +58,services,married,high.school,no,no,no,cellular,mar,mon,135,1,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +36,admin.,single,university.degree,no,yes,no,cellular,mar,mon,231,2,999,4,failure,-1.8,93.369,-34.8,0.635,5008.7,no +57,management,married,university.degree,no,no,no,cellular,mar,mon,341,2,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +62,blue-collar,married,unknown,no,no,no,cellular,mar,mon,515,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +58,services,married,high.school,no,yes,no,cellular,mar,mon,317,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +20,services,single,unknown,no,no,no,cellular,mar,mon,150,3,3,3,success,-1.8,93.369,-34.8,0.635,5008.7,no +58,services,married,high.school,no,yes,no,telephone,mar,mon,113,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +35,blue-collar,married,basic.4y,no,no,no,telephone,mar,mon,433,3,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,yes +49,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,361,2,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,no +86,retired,married,basic.4y,unknown,yes,no,cellular,mar,tue,186,2,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +68,retired,divorced,basic.4y,no,yes,no,cellular,mar,tue,277,2,11,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes +59,admin.,divorced,university.degree,no,yes,no,cellular,mar,tue,236,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +27,admin.,single,university.degree,no,yes,no,cellular,mar,tue,359,1,999,1,failure,-1.8,93.369,-34.8,0.635,5008.7,yes +47,self-employed,married,professional.course,no,yes,no,telephone,mar,tue,110,1,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +34,management,married,university.degree,no,unknown,unknown,cellular,mar,tue,57,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,no +27,admin.,single,university.degree,no,yes,no,cellular,mar,tue,371,1,999,2,failure,-1.8,93.369,-34.8,0.635,5008.7,no +27,admin.,single,university.degree,no,no,no,cellular,mar,tue,238,4,999,0,nonexistent,-1.8,93.369,-34.8,0.635,5008.7,yes +49,technician,divorced,professional.course,no,yes,no,cellular,mar,tue,236,4,3,1,success,-1.8,93.369,-34.8,0.635,5008.7,yes +64,retired,married,basic.4y,no,yes,no,cellular,mar,wed,262,2,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,yes +56,unemployed,divorced,basic.4y,no,no,no,cellular,mar,wed,577,1,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,yes +56,unemployed,divorced,basic.4y,no,yes,no,cellular,mar,wed,170,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,yes +56,admin.,single,university.degree,no,no,no,cellular,mar,wed,193,1,5,1,success,-1.8,93.369,-34.8,0.634,5008.7,yes +56,admin.,single,university.degree,no,yes,no,cellular,mar,wed,175,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,yes +56,admin.,single,university.degree,no,yes,no,cellular,mar,wed,382,1,999,1,failure,-1.8,93.369,-34.8,0.634,5008.7,no +27,admin.,single,university.degree,no,yes,no,cellular,mar,wed,210,1,6,2,success,-1.8,93.369,-34.8,0.634,5008.7,yes +32,management,married,university.degree,no,yes,no,telephone,mar,wed,30,1,999,0,nonexistent,-1.8,93.369,-34.8,0.634,5008.7,no +60,housemaid,married,basic.4y,no,yes,yes,cellular,apr,thu,149,1,12,1,success,-1.8,93.749,-34.6,0.635,5008.7,yes +56,admin.,single,university.degree,no,no,yes,cellular,apr,thu,158,1,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,no +33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,280,1,7,2,success,-1.8,93.749,-34.6,0.635,5008.7,yes +27,student,single,unknown,no,yes,no,telephone,apr,thu,390,1,4,1,success,-1.8,93.749,-34.6,0.635,5008.7,yes +41,admin.,divorced,high.school,no,no,no,telephone,apr,thu,558,2,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes +27,student,single,unknown,no,yes,no,cellular,apr,thu,176,1,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,no +35,admin.,divorced,high.school,no,yes,no,telephone,apr,thu,216,3,999,1,failure,-1.8,93.749,-34.6,0.635,5008.7,yes +27,student,single,unknown,no,no,no,cellular,apr,thu,263,1,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,no +84,retired,divorced,basic.4y,no,no,no,cellular,apr,thu,220,2,999,2,failure,-1.8,93.749,-34.6,0.635,5008.7,no +32,admin.,single,university.degree,no,yes,no,cellular,apr,thu,358,2,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes +35,admin.,divorced,high.school,no,yes,yes,telephone,apr,thu,111,1,999,0,nonexistent,-1.8,93.749,-34.6,0.635,5008.7,yes +33,admin.,single,university.degree,no,yes,no,cellular,apr,tue,179,3,999,0,nonexistent,-1.8,93.749,-34.6,0.638,5008.7,yes +27,technician,single,professional.course,no,no,no,cellular,apr,tue,127,3,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,no +46,technician,married,professional.course,no,no,yes,cellular,apr,tue,189,1,5,2,success,-1.8,93.749,-34.6,0.638,5008.7,yes +27,admin.,single,university.degree,no,no,no,cellular,apr,tue,317,1,12,1,success,-1.8,93.749,-34.6,0.638,5008.7,yes +61,admin.,married,high.school,no,yes,no,cellular,apr,tue,196,1,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,yes +76,retired,married,basic.4y,no,no,no,cellular,apr,tue,122,4,999,1,failure,-1.8,93.749,-34.6,0.638,5008.7,no +82,housemaid,divorced,basic.4y,no,unknown,unknown,cellular,apr,tue,139,6,999,0,nonexistent,-1.8,93.749,-34.6,0.638,5008.7,yes +58,retired,married,basic.4y,no,no,no,cellular,apr,wed,1307,1,999,0,nonexistent,-1.8,93.749,-34.6,0.639,5008.7,yes +39,technician,married,professional.course,no,no,no,cellular,apr,thu,208,3,999,1,failure,-1.8,93.749,-34.6,0.64,5008.7,no +53,management,divorced,university.degree,no,yes,no,cellular,apr,thu,222,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes +75,retired,married,unknown,no,yes,no,cellular,apr,thu,237,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no +53,management,divorced,university.degree,no,yes,yes,cellular,apr,thu,126,6,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no +53,management,divorced,university.degree,no,no,no,cellular,apr,thu,198,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no +58,housemaid,single,professional.course,no,no,yes,cellular,apr,thu,335,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes +26,unemployed,single,university.degree,no,yes,no,cellular,apr,thu,618,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes +71,retired,married,professional.course,no,no,no,cellular,apr,thu,559,1,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,yes +53,technician,married,university.degree,no,unknown,unknown,cellular,apr,thu,758,2,999,2,failure,-1.8,93.749,-34.6,0.64,5008.7,yes +71,retired,married,professional.course,no,yes,no,cellular,apr,thu,236,2,999,0,nonexistent,-1.8,93.749,-34.6,0.64,5008.7,no +37,technician,married,professional.course,no,yes,no,telephone,apr,mon,481,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +54,admin.,married,high.school,no,yes,no,cellular,apr,mon,158,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +37,management,single,university.degree,no,no,no,cellular,apr,mon,161,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no +35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,337,1,999,2,failure,-1.8,93.749,-34.6,0.642,5008.7,no +33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,169,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +58,housemaid,single,professional.course,no,yes,no,cellular,apr,mon,284,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no +62,entrepreneur,married,basic.9y,no,yes,no,cellular,apr,mon,366,2,10,1,success,-1.8,93.749,-34.6,0.642,5008.7,no +58,housemaid,single,professional.course,no,no,no,cellular,apr,mon,158,2,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,no +33,admin.,single,university.degree,no,no,no,cellular,apr,mon,339,1,999,2,failure,-1.8,93.749,-34.6,0.642,5008.7,no +48,admin.,married,professional.course,no,yes,no,cellular,apr,mon,333,1,7,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes +49,admin.,married,high.school,unknown,no,no,cellular,apr,mon,119,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no +42,housemaid,divorced,basic.4y,no,yes,no,telephone,apr,mon,271,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no +33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,143,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +58,housemaid,single,professional.course,no,no,no,cellular,apr,mon,147,1,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,no +56,technician,married,high.school,no,no,no,cellular,apr,mon,119,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +59,blue-collar,married,basic.4y,no,no,no,cellular,apr,mon,1397,3,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes +33,admin.,single,university.degree,no,yes,no,cellular,apr,mon,143,2,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no +35,admin.,married,university.degree,no,yes,no,cellular,apr,mon,176,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +63,technician,married,high.school,no,no,no,cellular,apr,mon,176,3,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +33,management,single,university.degree,no,no,no,cellular,apr,tue,113,3,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no +26,admin.,single,university.degree,no,yes,yes,cellular,apr,tue,295,4,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes +80,housemaid,married,basic.4y,no,yes,yes,cellular,apr,tue,232,1,12,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +49,admin.,married,university.degree,no,yes,yes,cellular,apr,tue,218,2,999,3,failure,-1.8,93.749,-34.6,0.644,5008.7,yes +20,student,single,basic.4y,no,yes,yes,cellular,apr,tue,240,1,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,yes +20,student,single,basic.4y,no,yes,yes,cellular,apr,tue,278,4,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +53,entrepreneur,married,basic.4y,no,yes,yes,cellular,apr,tue,398,2,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +36,admin.,single,basic.9y,no,yes,yes,telephone,apr,wed,173,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +48,admin.,married,university.degree,no,yes,no,cellular,apr,thu,220,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no +48,admin.,married,university.degree,no,no,no,telephone,apr,thu,185,1,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes +74,retired,married,university.degree,no,no,no,cellular,apr,thu,200,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +48,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,200,1,6,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes +48,admin.,married,university.degree,no,yes,no,cellular,apr,thu,141,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +35,admin.,married,university.degree,no,yes,no,cellular,apr,thu,330,1,10,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +37,admin.,married,university.degree,no,yes,yes,cellular,apr,thu,214,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +46,services,single,basic.4y,no,no,no,cellular,apr,thu,191,3,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,no +58,admin.,married,professional.course,no,yes,no,cellular,apr,thu,98,4,999,2,failure,-1.8,93.749,-34.6,0.644,5008.7,no +22,services,single,high.school,no,no,no,cellular,apr,thu,699,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no +35,services,married,professional.course,no,yes,no,cellular,apr,thu,218,2,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +68,retired,married,basic.4y,no,yes,no,cellular,apr,fri,177,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no +41,admin.,married,university.degree,no,yes,no,cellular,apr,fri,961,6,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +68,retired,married,university.degree,no,yes,no,cellular,apr,fri,330,3,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +55,technician,married,professional.course,no,yes,no,cellular,apr,fri,148,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no +50,technician,single,university.degree,no,yes,no,telephone,apr,fri,634,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +82,retired,divorced,basic.4y,no,yes,yes,cellular,apr,mon,125,2,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes +25,self-employed,single,unknown,no,no,no,cellular,apr,mon,131,2,999,1,failure,-1.8,93.749,-34.6,0.643,5008.7,no +29,admin.,single,university.degree,no,yes,no,cellular,apr,mon,237,4,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,no +25,self-employed,single,unknown,no,no,no,cellular,apr,mon,232,3,999,1,failure,-1.8,93.749,-34.6,0.643,5008.7,no +54,admin.,married,high.school,no,no,no,cellular,apr,mon,220,1,12,1,success,-1.8,93.749,-34.6,0.643,5008.7,no +82,retired,divorced,basic.4y,no,no,no,cellular,apr,mon,529,1,6,2,success,-1.8,93.749,-34.6,0.643,5008.7,yes +74,retired,divorced,basic.4y,no,yes,no,cellular,apr,mon,142,2,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes +74,retired,divorced,basic.4y,no,no,yes,cellular,apr,mon,184,2,14,2,failure,-1.8,93.749,-34.6,0.643,5008.7,no +74,retired,married,basic.4y,no,no,no,telephone,apr,mon,1143,5,999,0,nonexistent,-1.8,93.749,-34.6,0.643,5008.7,yes +85,housemaid,married,basic.4y,unknown,no,no,cellular,apr,tue,175,6,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes +85,housemaid,married,basic.4y,unknown,yes,no,cellular,apr,tue,167,1,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,yes +85,housemaid,married,basic.4y,unknown,no,no,cellular,apr,tue,166,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +75,retired,divorced,high.school,no,no,no,telephone,apr,tue,162,1,6,2,success,-1.8,93.749,-34.6,0.642,5008.7,yes +85,housemaid,married,basic.4y,unknown,yes,no,cellular,apr,tue,462,1,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes +70,retired,married,basic.4y,no,yes,no,telephone,apr,tue,268,2,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,no +45,management,married,unknown,no,yes,no,cellular,apr,tue,379,3,7,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes +61,retired,married,high.school,no,yes,no,cellular,apr,tue,930,4,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +49,admin.,divorced,high.school,no,no,no,cellular,apr,wed,381,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +66,retired,divorced,basic.4y,no,yes,no,cellular,apr,wed,476,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +57,housemaid,married,basic.4y,no,yes,no,telephone,apr,wed,595,3,999,1,failure,-1.8,93.749,-34.6,0.642,5008.7,yes +80,retired,divorced,basic.4y,no,yes,no,cellular,apr,wed,354,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,no +80,retired,divorced,basic.4y,no,yes,no,telephone,apr,wed,403,1,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +80,retired,divorced,basic.4y,no,yes,no,telephone,apr,wed,623,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +80,retired,divorced,basic.4y,no,yes,yes,cellular,apr,wed,654,2,999,0,nonexistent,-1.8,93.749,-34.6,0.642,5008.7,yes +57,housemaid,married,basic.4y,no,no,no,cellular,apr,wed,224,2,6,1,success,-1.8,93.749,-34.6,0.642,5008.7,yes +58,unemployed,married,basic.9y,no,yes,no,cellular,apr,thu,229,1,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +53,housemaid,married,university.degree,no,yes,no,cellular,apr,thu,494,1,6,1,success,-1.8,93.749,-34.6,0.644,5008.7,yes +80,retired,divorced,basic.4y,no,yes,no,cellular,apr,thu,234,1,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no +57,retired,married,high.school,no,yes,no,cellular,apr,thu,407,2,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +77,retired,married,high.school,no,yes,no,cellular,apr,thu,165,7,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,yes +59,retired,divorced,high.school,no,yes,no,cellular,apr,thu,247,2,999,1,failure,-1.8,93.749,-34.6,0.644,5008.7,no +44,admin.,married,high.school,no,yes,no,cellular,apr,thu,292,4,999,0,nonexistent,-1.8,93.749,-34.6,0.644,5008.7,no +80,retired,divorced,basic.4y,no,yes,yes,cellular,apr,thu,554,1,10,2,success,-1.8,93.749,-34.6,0.644,5008.7,yes +32,admin.,single,university.degree,no,yes,yes,cellular,apr,fri,109,5,6,1,success,-1.8,93.749,-34.6,0.645,5008.7,no +43,admin.,divorced,university.degree,no,no,no,telephone,apr,fri,263,4,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes +41,admin.,married,university.degree,no,yes,no,cellular,apr,fri,342,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes +63,housemaid,married,basic.9y,no,yes,no,cellular,apr,fri,164,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +47,admin.,married,high.school,no,yes,no,cellular,apr,fri,296,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,yes +73,retired,single,professional.course,no,no,no,cellular,apr,fri,291,1,6,3,success,-1.8,93.749,-34.6,0.645,5008.7,yes +26,student,single,high.school,no,yes,yes,cellular,apr,fri,888,1,6,2,success,-1.8,93.749,-34.6,0.645,5008.7,yes +25,admin.,single,university.degree,no,no,yes,cellular,apr,fri,207,1,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +62,technician,married,unknown,no,yes,no,cellular,apr,fri,215,2,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no +71,retired,married,basic.4y,no,no,no,telephone,apr,mon,92,8,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +29,admin.,single,university.degree,no,yes,no,cellular,apr,mon,378,3,12,1,success,-1.8,93.749,-34.6,0.645,5008.7,no +46,admin.,married,high.school,no,no,no,cellular,apr,mon,194,3,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes +38,management,divorced,university.degree,no,yes,no,cellular,apr,mon,182,2,6,1,success,-1.8,93.749,-34.6,0.645,5008.7,yes +29,technician,married,university.degree,no,yes,no,cellular,apr,mon,116,2,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +32,technician,married,professional.course,no,no,no,cellular,apr,mon,688,2,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,yes +46,admin.,married,high.school,no,yes,yes,cellular,apr,mon,128,2,6,2,success,-1.8,93.749,-34.6,0.645,5008.7,no +29,technician,married,university.degree,no,yes,no,cellular,apr,mon,192,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,yes +30,student,single,high.school,no,yes,yes,cellular,apr,mon,102,3,10,1,success,-1.8,93.749,-34.6,0.645,5008.7,no +20,student,single,high.school,no,no,no,cellular,apr,mon,1472,1,999,3,failure,-1.8,93.749,-34.6,0.645,5008.7,yes +46,admin.,married,high.school,no,yes,no,cellular,apr,mon,166,5,999,4,failure,-1.8,93.749,-34.6,0.645,5008.7,no +24,blue-collar,single,high.school,no,no,no,cellular,apr,mon,234,10,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +71,retired,married,basic.4y,no,no,no,cellular,apr,mon,328,2,4,1,success,-1.8,93.749,-34.6,0.645,5008.7,yes +24,blue-collar,single,high.school,no,no,no,cellular,apr,mon,125,2,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no +71,retired,married,basic.4y,no,no,no,cellular,apr,mon,117,3,999,0,nonexistent,-1.8,93.749,-34.6,0.645,5008.7,no +29,technician,married,university.degree,no,no,no,cellular,apr,mon,135,3,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no +24,blue-collar,single,high.school,no,yes,no,cellular,apr,mon,135,1,999,1,failure,-1.8,93.749,-34.6,0.645,5008.7,no +27,student,single,university.degree,no,yes,yes,cellular,apr,tue,147,2,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,no +39,management,married,university.degree,no,no,no,telephone,apr,tue,325,1,999,2,failure,-1.8,93.749,-34.6,0.646,5008.7,yes +24,student,single,basic.9y,no,yes,no,cellular,apr,tue,345,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no +24,student,single,basic.9y,no,yes,no,cellular,apr,tue,252,1,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,no +27,admin.,single,university.degree,no,yes,no,cellular,apr,tue,605,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no +37,admin.,married,high.school,no,no,no,telephone,apr,tue,426,2,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes +30,admin.,single,university.degree,no,yes,no,cellular,apr,tue,321,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes +20,student,single,unknown,no,yes,no,cellular,apr,tue,81,3,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no +44,management,married,unknown,no,no,no,telephone,apr,tue,473,2,999,1,failure,-1.8,93.749,-34.6,0.646,5008.7,yes +29,services,single,high.school,no,no,no,telephone,apr,tue,370,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes +48,technician,single,professional.course,no,yes,no,cellular,apr,tue,159,3,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,yes +20,student,single,unknown,no,yes,no,cellular,apr,tue,99,1,999,0,nonexistent,-1.8,93.749,-34.6,0.646,5008.7,no +52,admin.,married,unknown,no,yes,no,cellular,apr,wed,184,2,10,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes +52,admin.,married,unknown,no,yes,no,telephone,apr,wed,403,1,6,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes +28,admin.,single,unknown,no,yes,no,cellular,apr,wed,545,2,6,4,success,-1.8,93.749,-34.6,0.654,5008.7,yes +33,admin.,married,university.degree,no,yes,no,cellular,apr,wed,623,1,6,1,success,-1.8,93.749,-34.6,0.654,5008.7,yes +52,admin.,married,unknown,no,no,no,cellular,apr,wed,387,2,999,0,nonexistent,-1.8,93.749,-34.6,0.654,5008.7,yes +50,admin.,married,basic.9y,no,yes,no,cellular,apr,thu,717,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +33,admin.,married,university.degree,no,no,no,cellular,apr,thu,157,6,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no +29,services,single,unknown,no,yes,no,cellular,apr,thu,226,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +38,admin.,single,high.school,no,yes,no,cellular,apr,thu,882,1,6,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes +61,retired,married,basic.9y,no,no,no,cellular,apr,thu,165,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no +31,self-employed,single,university.degree,no,no,no,cellular,apr,thu,210,1,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +36,admin.,married,unknown,no,no,no,cellular,apr,thu,91,1,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no +37,technician,married,professional.course,no,no,no,cellular,apr,thu,277,1,18,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes +26,admin.,single,university.degree,no,yes,no,cellular,apr,thu,115,2,999,1,failure,-1.8,93.749,-34.6,0.659,5008.7,no +35,admin.,single,university.degree,no,yes,no,cellular,apr,thu,388,2,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +29,services,single,unknown,no,yes,no,cellular,apr,thu,1241,5,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +36,unemployed,married,professional.course,no,yes,no,cellular,apr,thu,835,7,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,no +52,admin.,married,university.degree,no,no,yes,telephone,apr,thu,395,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +33,admin.,single,university.degree,no,yes,no,cellular,apr,thu,305,3,999,0,nonexistent,-1.8,93.749,-34.6,0.659,5008.7,yes +38,admin.,single,high.school,no,yes,yes,cellular,apr,thu,449,1,13,1,success,-1.8,93.749,-34.6,0.659,5008.7,yes +34,technician,married,professional.course,no,yes,no,cellular,apr,fri,211,2,6,2,success,-1.8,93.749,-34.6,0.663,5008.7,no +36,blue-collar,married,unknown,no,no,no,cellular,apr,fri,315,1,6,1,success,-1.8,93.749,-34.6,0.663,5008.7,yes +30,management,married,university.degree,no,yes,no,cellular,apr,fri,242,4,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,no +20,student,single,unknown,no,no,no,cellular,apr,fri,342,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no +35,admin.,married,university.degree,no,no,yes,cellular,apr,fri,262,3,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,yes +36,blue-collar,married,unknown,no,yes,no,cellular,apr,fri,572,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no +28,technician,single,university.degree,no,no,yes,cellular,apr,fri,97,1,999,1,failure,-1.8,93.749,-34.6,0.663,5008.7,no +28,technician,single,university.degree,no,yes,no,cellular,apr,fri,148,1,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no +31,student,single,university.degree,no,yes,yes,cellular,apr,fri,183,1,6,2,success,-1.8,93.749,-34.6,0.663,5008.7,yes +21,student,single,high.school,no,yes,no,cellular,apr,fri,551,1,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,yes +20,student,single,unknown,no,yes,yes,cellular,apr,fri,180,2,999,0,nonexistent,-1.8,93.749,-34.6,0.663,5008.7,no +37,admin.,married,university.degree,no,no,no,cellular,may,tue,106,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no +39,admin.,married,high.school,no,yes,no,cellular,may,tue,552,1,3,2,success,-1.8,93.876,-40,0.668,5008.7,yes +52,admin.,married,university.degree,no,no,no,cellular,may,tue,131,1,3,2,success,-1.8,93.876,-40,0.668,5008.7,no +29,admin.,single,university.degree,no,no,no,cellular,may,tue,85,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no +30,admin.,single,university.degree,no,no,no,cellular,may,tue,113,1,6,1,success,-1.8,93.876,-40,0.668,5008.7,no +30,blue-collar,single,professional.course,no,no,no,cellular,may,tue,165,1,999,1,failure,-1.8,93.876,-40,0.668,5008.7,no +48,blue-collar,married,basic.9y,no,yes,no,cellular,may,tue,268,1,3,3,success,-1.8,93.876,-40,0.668,5008.7,yes +18,student,single,unknown,no,yes,no,telephone,may,tue,421,1,3,1,success,-1.8,93.876,-40,0.668,5008.7,yes +18,student,single,unknown,no,yes,no,cellular,may,tue,489,1,6,1,success,-1.8,93.876,-40,0.668,5008.7,yes +79,retired,married,basic.9y,no,no,no,cellular,may,tue,104,1,999,2,failure,-1.8,93.876,-40,0.668,5008.7,no +79,retired,married,basic.9y,no,no,no,cellular,may,tue,126,1,999,0,nonexistent,-1.8,93.876,-40,0.668,5008.7,no +43,technician,single,professional.course,no,no,no,cellular,may,tue,164,2,3,2,success,-1.8,93.876,-40,0.668,5008.7,yes +52,admin.,married,university.degree,no,yes,no,cellular,may,tue,556,2,999,0,nonexistent,-1.8,93.876,-40,0.668,5008.7,yes +24,student,single,high.school,no,yes,no,cellular,may,tue,153,2,6,2,success,-1.8,93.876,-40,0.668,5008.7,yes +52,technician,married,university.degree,no,no,yes,telephone,may,tue,209,1,2,2,success,-1.8,93.876,-40,0.668,5008.7,yes +19,student,single,basic.9y,no,yes,no,cellular,may,tue,203,1,999,3,failure,-1.8,93.876,-40,0.668,5008.7,no +29,student,single,high.school,no,no,no,cellular,may,tue,104,1,7,1,success,-1.8,93.876,-40,0.668,5008.7,no +51,services,married,high.school,no,no,no,cellular,may,tue,1267,1,999,1,failure,-1.8,93.876,-40,0.668,5008.7,yes +32,student,single,unknown,no,yes,no,cellular,may,wed,188,2,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes +37,housemaid,married,university.degree,no,yes,no,cellular,may,wed,100,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no +24,student,single,high.school,no,no,no,cellular,may,wed,389,1,7,2,success,-1.8,93.876,-40,0.672,5008.7,yes +24,student,single,high.school,no,yes,no,cellular,may,wed,329,1,1,2,success,-1.8,93.876,-40,0.672,5008.7,no +24,student,single,high.school,no,yes,no,cellular,may,wed,173,1,999,3,failure,-1.8,93.876,-40,0.672,5008.7,no +24,student,single,high.school,no,yes,no,cellular,may,wed,258,1,3,5,success,-1.8,93.876,-40,0.672,5008.7,yes +52,admin.,married,university.degree,no,yes,no,cellular,may,wed,338,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes +18,student,single,unknown,no,no,no,telephone,may,wed,110,1,999,2,failure,-1.8,93.876,-40,0.672,5008.7,no +29,admin.,single,university.degree,no,no,no,cellular,may,wed,720,1,6,2,failure,-1.8,93.876,-40,0.672,5008.7,no +29,admin.,single,university.degree,no,yes,no,cellular,may,wed,232,1,999,1,failure,-1.8,93.876,-40,0.672,5008.7,yes +44,blue-collar,single,basic.6y,no,no,no,telephone,may,wed,174,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no +27,student,married,high.school,no,yes,no,telephone,may,wed,54,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no +20,student,single,unknown,no,yes,no,telephone,may,wed,510,4,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes +48,admin.,single,university.degree,no,yes,no,cellular,may,wed,121,4,999,1,failure,-1.8,93.876,-40,0.672,5008.7,no +46,management,married,basic.9y,no,yes,no,telephone,may,wed,16,1,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,no +72,retired,married,basic.4y,no,yes,no,cellular,may,wed,443,4,999,0,nonexistent,-1.8,93.876,-40,0.672,5008.7,yes +36,technician,married,professional.course,no,yes,no,cellular,may,thu,109,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,no +37,technician,married,university.degree,no,yes,no,cellular,may,thu,246,1,2,4,success,-1.8,93.876,-40,0.677,5008.7,yes +33,services,married,high.school,no,no,no,cellular,may,thu,192,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,yes +52,admin.,married,university.degree,no,yes,yes,cellular,may,thu,250,1,3,5,success,-1.8,93.876,-40,0.677,5008.7,yes +52,admin.,married,university.degree,no,no,no,cellular,may,thu,195,1,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,yes +52,admin.,married,university.degree,no,no,no,cellular,may,thu,613,1,3,2,success,-1.8,93.876,-40,0.677,5008.7,yes +52,admin.,married,university.degree,no,yes,no,cellular,may,thu,227,2,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,no +19,student,single,basic.4y,no,yes,no,cellular,may,thu,220,1,999,1,failure,-1.8,93.876,-40,0.677,5008.7,no +18,student,single,unknown,no,yes,no,cellular,may,thu,183,1,7,2,success,-1.8,93.876,-40,0.677,5008.7,no +52,technician,married,university.degree,no,no,no,cellular,may,thu,211,1,3,4,success,-1.8,93.876,-40,0.677,5008.7,yes +62,retired,married,professional.course,no,no,no,telephone,may,thu,111,1,999,0,nonexistent,-1.8,93.876,-40,0.677,5008.7,no +31,student,single,unknown,no,no,no,cellular,may,thu,243,2,999,1,failure,-1.8,93.876,-40,0.677,5008.7,yes +78,retired,divorced,basic.4y,no,yes,no,cellular,may,fri,218,2,7,2,success,-1.8,93.876,-40,0.682,5008.7,no +37,management,married,high.school,no,no,no,cellular,may,fri,292,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes +44,technician,married,university.degree,no,yes,no,cellular,may,fri,662,2,2,1,success,-1.8,93.876,-40,0.682,5008.7,yes +30,student,single,high.school,no,no,no,telephone,may,fri,300,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes +44,technician,married,university.degree,no,no,yes,telephone,may,fri,201,2,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no +30,student,single,high.school,no,no,no,cellular,may,fri,226,2,3,2,success,-1.8,93.876,-40,0.682,5008.7,yes +60,retired,married,professional.course,no,yes,no,cellular,may,fri,110,2,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +44,technician,married,university.degree,no,no,no,cellular,may,fri,113,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no +42,retired,single,basic.4y,unknown,yes,yes,cellular,may,fri,116,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +44,admin.,single,university.degree,no,yes,no,cellular,may,fri,211,4,3,1,success,-1.8,93.876,-40,0.682,5008.7,yes +33,blue-collar,married,basic.6y,no,no,no,telephone,may,mon,165,1,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +82,retired,married,high.school,unknown,yes,no,cellular,may,mon,135,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +22,student,single,unknown,no,yes,no,cellular,may,mon,171,2,3,2,success,-1.8,93.876,-40,0.682,5008.7,yes +38,entrepreneur,married,professional.course,no,no,no,cellular,may,mon,269,5,3,2,success,-1.8,93.876,-40,0.682,5008.7,no +41,admin.,married,university.degree,no,no,no,telephone,may,mon,128,2,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +38,entrepreneur,married,professional.course,no,yes,no,cellular,may,mon,583,6,2,4,success,-1.8,93.876,-40,0.682,5008.7,yes +46,admin.,single,high.school,no,yes,no,cellular,may,mon,522,6,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +56,technician,married,professional.course,no,yes,no,telephone,may,mon,483,5,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes +24,student,single,high.school,no,yes,no,cellular,may,tue,113,2,999,2,failure,-1.8,93.876,-40,0.682,5008.7,no +34,technician,married,unknown,no,yes,no,telephone,may,tue,97,3,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,no +54,technician,married,university.degree,no,yes,no,telephone,may,tue,172,5,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no +50,admin.,married,university.degree,no,unknown,unknown,cellular,may,wed,801,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no +59,admin.,divorced,basic.4y,no,yes,no,cellular,may,wed,193,1,999,0,nonexistent,-1.8,93.876,-40,0.682,5008.7,yes +58,admin.,married,high.school,no,yes,no,cellular,may,wed,309,1,6,1,success,-1.8,93.876,-40,0.682,5008.7,yes +50,admin.,married,university.degree,no,yes,no,cellular,may,wed,176,2,3,3,success,-1.8,93.876,-40,0.682,5008.7,yes +77,retired,married,university.degree,no,yes,no,cellular,may,wed,152,1,6,4,success,-1.8,93.876,-40,0.682,5008.7,yes +66,blue-collar,married,unknown,no,yes,no,cellular,may,wed,171,2,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes +50,admin.,married,high.school,no,yes,no,cellular,may,wed,333,1,999,2,failure,-1.8,93.876,-40,0.682,5008.7,no +61,management,married,university.degree,no,no,no,cellular,may,wed,228,2,999,1,failure,-1.8,93.876,-40,0.682,5008.7,yes +48,unemployed,married,professional.course,no,no,no,cellular,may,wed,317,1,6,3,success,-1.8,93.876,-40,0.682,5008.7,yes +48,unemployed,married,professional.course,no,yes,no,cellular,may,wed,236,1,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes +50,admin.,married,high.school,no,no,no,cellular,may,wed,208,2,3,5,success,-1.8,93.876,-40,0.682,5008.7,no +40,technician,married,professional.course,no,yes,no,cellular,may,wed,248,1,3,4,success,-1.8,93.876,-40,0.682,5008.7,yes +30,admin.,single,high.school,no,yes,no,cellular,may,wed,144,1,999,1,failure,-1.8,93.876,-40,0.682,5008.7,no +60,admin.,married,unknown,no,yes,no,cellular,may,wed,762,1,6,2,success,-1.8,93.876,-40,0.682,5008.7,yes +48,unemployed,married,professional.course,no,no,no,telephone,may,wed,360,1,6,1,success,-1.8,93.876,-40,0.682,5008.7,yes +77,retired,married,university.degree,no,yes,no,telephone,may,wed,372,1,3,4,success,-1.8,93.876,-40,0.682,5008.7,yes +30,admin.,single,high.school,no,no,no,cellular,may,wed,177,1,13,1,success,-1.8,93.876,-40,0.682,5008.7,no +47,management,married,university.degree,no,yes,no,telephone,may,wed,267,2,3,3,success,-1.8,93.876,-40,0.682,5008.7,no +34,management,single,university.degree,no,yes,no,telephone,may,thu,18,1,999,0,nonexistent,-1.8,93.876,-40,0.683,5008.7,no +45,blue-collar,married,professional.course,no,yes,no,telephone,may,thu,414,1,6,2,success,-1.8,93.876,-40,0.683,5008.7,yes +92,retired,married,unknown,no,yes,no,cellular,may,thu,271,1,6,2,success,-1.8,93.876,-40,0.683,5008.7,no +58,management,married,university.degree,no,no,no,cellular,may,thu,289,1,3,4,success,-1.8,93.876,-40,0.683,5008.7,yes +31,admin.,married,university.degree,no,yes,no,cellular,may,thu,400,1,3,1,success,-1.8,93.876,-40,0.683,5008.7,yes +41,unemployed,married,basic.9y,no,yes,no,cellular,may,thu,306,1,6,4,success,-1.8,93.876,-40,0.683,5008.7,yes +28,admin.,single,high.school,no,yes,no,cellular,may,thu,263,1,6,1,success,-1.8,93.876,-40,0.683,5008.7,yes +29,admin.,single,university.degree,no,no,no,cellular,may,thu,216,1,3,3,success,-1.8,93.876,-40,0.683,5008.7,yes +39,services,married,high.school,no,yes,no,cellular,may,thu,328,2,6,3,success,-1.8,93.876,-40,0.683,5008.7,yes +70,retired,married,basic.4y,no,yes,no,cellular,may,thu,331,1,3,2,success,-1.8,93.876,-40,0.683,5008.7,yes +40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,356,1,2,3,success,-1.8,93.876,-40,0.683,5008.7,yes +40,admin.,single,basic.9y,no,yes,no,cellular,may,thu,234,1,3,3,success,-1.8,93.876,-40,0.683,5008.7,yes +28,admin.,single,high.school,no,yes,no,cellular,may,thu,457,2,999,1,failure,-1.8,93.876,-40,0.683,5008.7,no +60,management,married,unknown,no,yes,no,cellular,may,thu,336,3,3,5,success,-1.8,93.876,-40,0.683,5008.7,yes +29,admin.,married,university.degree,no,yes,yes,cellular,may,fri,567,3,13,2,failure,-1.8,93.876,-40,0.684,5008.7,yes +52,management,married,university.degree,no,no,no,cellular,may,fri,404,2,9,1,success,-1.8,93.876,-40,0.684,5008.7,yes +52,management,married,university.degree,no,no,no,cellular,may,fri,698,5,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no +30,admin.,single,high.school,no,yes,no,cellular,may,fri,532,5,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,yes +47,technician,divorced,professional.course,no,no,yes,telephone,may,fri,7,1,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no +32,admin.,married,university.degree,no,no,no,telephone,may,fri,389,4,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no +41,admin.,married,university.degree,no,yes,no,telephone,may,fri,338,3,999,1,failure,-1.8,93.876,-40,0.684,5008.7,no +68,retired,married,basic.4y,no,yes,yes,cellular,may,fri,220,1,6,1,success,-1.8,93.876,-40,0.684,5008.7,yes +33,technician,married,professional.course,no,yes,no,cellular,may,fri,700,4,3,4,success,-1.8,93.876,-40,0.684,5008.7,yes +76,retired,married,basic.4y,no,yes,no,cellular,may,fri,1205,2,6,2,success,-1.8,93.876,-40,0.684,5008.7,yes +65,admin.,married,university.degree,no,yes,no,cellular,may,fri,407,3,999,1,failure,-1.8,93.876,-40,0.684,5008.7,yes +77,retired,married,unknown,no,yes,yes,cellular,may,fri,318,3,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no +33,technician,married,professional.course,no,yes,yes,cellular,may,fri,62,2,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,no +52,management,married,university.degree,no,yes,no,cellular,may,fri,787,3,3,3,success,-1.8,93.876,-40,0.684,5008.7,yes +33,admin.,single,university.degree,no,yes,no,cellular,may,fri,396,5,999,0,nonexistent,-1.8,93.876,-40,0.684,5008.7,yes +71,admin.,married,basic.4y,no,yes,yes,cellular,may,fri,466,4,3,2,success,-1.8,93.876,-40,0.684,5008.7,yes +29,student,single,university.degree,no,yes,no,cellular,may,mon,556,1,999,1,failure,-1.8,93.876,-40,0.685,5008.7,yes +63,retired,married,professional.course,no,yes,no,cellular,may,mon,492,1,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no +33,admin.,married,university.degree,no,yes,no,cellular,may,mon,740,1,3,2,success,-1.8,93.876,-40,0.685,5008.7,yes +33,admin.,married,university.degree,no,yes,yes,cellular,may,mon,312,2,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no +54,admin.,married,professional.course,no,no,no,telephone,may,mon,564,5,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,no +60,blue-collar,married,basic.4y,no,yes,no,cellular,may,mon,272,2,6,2,success,-1.8,93.876,-40,0.685,5008.7,yes +33,admin.,married,university.degree,no,no,no,cellular,may,mon,157,2,15,3,failure,-1.8,93.876,-40,0.685,5008.7,no +63,retired,married,professional.course,no,yes,yes,cellular,may,mon,444,2,14,1,success,-1.8,93.876,-40,0.685,5008.7,yes +33,technician,married,university.degree,no,yes,no,cellular,may,mon,508,1,999,0,nonexistent,-1.8,93.876,-40,0.685,5008.7,yes +74,retired,divorced,university.degree,no,yes,no,cellular,may,tue,387,1,999,0,nonexistent,-1.8,93.876,-40,0.688,5008.7,yes +47,services,divorced,university.degree,no,yes,yes,cellular,may,tue,336,1,15,3,failure,-1.8,93.876,-40,0.688,5008.7,yes +50,unemployed,married,high.school,no,no,no,telephone,may,tue,353,3,999,0,nonexistent,-1.8,93.876,-40,0.688,5008.7,yes +29,admin.,married,high.school,no,no,no,telephone,may,wed,30,1,999,0,nonexistent,-1.8,93.876,-40,0.69,5008.7,no +48,self-employed,divorced,university.degree,no,no,no,cellular,may,wed,661,3,999,0,nonexistent,-1.8,93.876,-40,0.69,5008.7,yes +28,student,single,high.school,no,no,yes,cellular,may,wed,472,1,3,5,success,-1.8,93.876,-40,0.69,5008.7,yes +68,retired,married,professional.course,no,unknown,unknown,cellular,may,thu,237,7,999,2,failure,-1.8,93.876,-40,0.692,5008.7,no +68,retired,married,professional.course,no,no,yes,cellular,may,thu,420,1,999,1,failure,-1.8,93.876,-40,0.692,5008.7,yes +45,unknown,married,university.degree,no,yes,no,cellular,may,thu,254,1,999,1,failure,-1.8,93.876,-40,0.692,5008.7,no +45,management,married,basic.9y,no,yes,no,cellular,may,thu,165,1,999,3,failure,-1.8,93.876,-40,0.692,5008.7,no +46,admin.,married,university.degree,no,no,no,cellular,may,thu,154,1,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes +31,admin.,married,professional.course,no,yes,yes,cellular,may,thu,291,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes +58,management,married,university.degree,no,yes,no,cellular,may,thu,342,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes +31,unemployed,single,high.school,no,no,no,cellular,may,thu,339,2,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,no +34,admin.,married,high.school,no,yes,no,cellular,may,thu,321,4,999,3,failure,-1.8,93.876,-40,0.692,5008.7,no +46,admin.,married,university.degree,no,no,no,telephone,may,thu,351,3,999,0,nonexistent,-1.8,93.876,-40,0.692,5008.7,yes +28,student,single,university.degree,no,unknown,unknown,cellular,may,fri,226,3,3,2,success,-1.8,93.876,-40,0.695,5008.7,yes +31,services,single,basic.9y,no,yes,no,cellular,may,fri,214,4,999,0,nonexistent,-1.8,93.876,-40,0.695,5008.7,yes +31,services,single,basic.9y,no,unknown,unknown,cellular,may,fri,429,1,999,3,failure,-1.8,93.876,-40,0.695,5008.7,no +61,blue-collar,married,basic.6y,no,yes,yes,cellular,may,fri,403,1,3,2,success,-1.8,93.876,-40,0.695,5008.7,yes +41,management,married,unknown,no,yes,no,cellular,may,fri,588,1,18,2,failure,-1.8,93.876,-40,0.695,5008.7,yes +34,admin.,married,university.degree,no,no,no,cellular,may,fri,145,1,999,2,failure,-1.8,93.876,-40,0.695,5008.7,no +34,admin.,married,university.degree,no,yes,no,cellular,may,fri,407,3,8,3,failure,-1.8,93.876,-40,0.695,5008.7,yes +29,services,single,high.school,no,yes,no,cellular,may,fri,122,1,999,2,failure,-1.8,93.876,-40,0.695,5008.7,no +45,self-employed,married,high.school,no,no,no,cellular,may,fri,374,1,999,1,failure,-1.8,93.876,-40,0.695,5008.7,yes +28,student,single,university.degree,no,unknown,unknown,cellular,may,fri,1027,2,999,0,nonexistent,-1.8,93.876,-40,0.695,5008.7,yes +24,unemployed,single,high.school,no,no,yes,cellular,may,mon,375,2,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +80,retired,married,basic.4y,no,no,no,cellular,may,mon,382,1,3,3,success,-1.8,93.876,-40,0.697,5008.7,yes +51,management,married,university.degree,no,yes,no,cellular,may,mon,131,2,999,4,failure,-1.8,93.876,-40,0.697,5008.7,no +36,technician,divorced,professional.course,no,yes,no,cellular,may,mon,341,7,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,no +79,retired,married,basic.9y,no,yes,yes,cellular,may,mon,260,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,no +24,unemployed,single,high.school,no,yes,no,cellular,may,mon,699,1,13,2,failure,-1.8,93.876,-40,0.697,5008.7,yes +76,retired,divorced,basic.4y,no,yes,no,cellular,may,mon,168,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes +45,technician,single,university.degree,no,no,no,cellular,may,tue,146,2,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes +20,student,single,unknown,no,no,no,cellular,may,tue,530,2,3,5,success,-1.8,93.876,-40,0.697,5008.7,yes +20,student,single,unknown,no,no,no,cellular,may,tue,202,2,12,1,success,-1.8,93.876,-40,0.697,5008.7,yes +36,admin.,married,university.degree,no,no,no,cellular,may,tue,641,4,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +36,admin.,married,university.degree,no,yes,no,cellular,may,tue,196,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +77,retired,divorced,basic.4y,no,no,no,cellular,may,tue,393,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +22,student,single,high.school,no,yes,no,cellular,may,tue,272,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +46,blue-collar,married,professional.course,no,yes,no,cellular,may,wed,410,1,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +69,retired,married,high.school,no,no,no,cellular,may,wed,289,1,10,1,success,-1.8,93.876,-40,0.697,5008.7,yes +92,retired,divorced,unknown,unknown,no,no,cellular,may,wed,405,3,999,1,failure,-1.8,93.876,-40,0.697,5008.7,yes +64,housemaid,married,unknown,no,yes,no,telephone,may,wed,671,3,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +31,technician,divorced,university.degree,no,no,no,cellular,may,wed,175,3,7,3,success,-1.8,93.876,-40,0.697,5008.7,yes +84,retired,married,basic.9y,no,yes,no,cellular,may,wed,267,1,999,1,failure,-1.8,93.876,-40,0.697,5008.7,no +28,admin.,single,university.degree,no,no,no,cellular,may,wed,135,2,3,2,success,-1.8,93.876,-40,0.697,5008.7,yes +28,admin.,married,high.school,no,no,yes,cellular,may,wed,530,2,999,0,nonexistent,-1.8,93.876,-40,0.697,5008.7,yes +70,retired,divorced,high.school,no,yes,no,telephone,may,wed,283,2,4,2,success,-1.8,93.876,-40,0.697,5008.7,yes +29,services,single,high.school,no,yes,no,telephone,may,thu,93,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +60,retired,married,high.school,no,no,no,cellular,may,thu,181,3,6,1,success,-1.8,93.876,-40,0.699,5008.7,yes +49,technician,married,university.degree,no,no,no,cellular,may,thu,188,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,no +49,technician,married,university.degree,no,yes,no,cellular,may,thu,820,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +36,admin.,married,university.degree,no,yes,yes,cellular,may,thu,1178,1,6,2,success,-1.8,93.876,-40,0.699,5008.7,yes +37,student,divorced,university.degree,no,yes,no,cellular,may,thu,489,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,yes +40,blue-collar,divorced,basic.9y,no,yes,no,telephone,may,thu,57,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +43,blue-collar,single,high.school,no,no,yes,telephone,may,thu,137,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +43,technician,married,professional.course,no,no,no,cellular,may,thu,460,1,999,1,failure,-1.8,93.876,-40,0.699,5008.7,yes +34,technician,married,professional.course,no,yes,no,telephone,may,thu,24,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +54,admin.,divorced,basic.9y,no,yes,no,telephone,may,thu,74,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +79,retired,married,high.school,no,yes,no,cellular,may,thu,196,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +38,admin.,single,basic.9y,no,no,no,cellular,may,thu,275,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +37,student,divorced,university.degree,no,yes,yes,cellular,may,thu,417,2,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +61,admin.,married,unknown,no,no,no,cellular,may,thu,173,3,9,2,success,-1.8,93.876,-40,0.699,5008.7,yes +22,student,single,high.school,unknown,yes,yes,telephone,may,thu,214,2,1,1,success,-1.8,93.876,-40,0.699,5008.7,yes +35,unemployed,married,high.school,no,yes,no,telephone,may,fri,43,1,999,2,failure,-1.8,93.876,-40,0.699,5008.7,no +33,admin.,married,university.degree,no,yes,no,cellular,may,fri,101,2,999,3,failure,-1.8,93.876,-40,0.699,5008.7,no +23,unemployed,married,high.school,no,no,no,telephone,may,fri,35,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +32,services,single,university.degree,no,no,yes,cellular,may,fri,473,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +25,technician,single,high.school,no,yes,no,cellular,may,fri,581,3,999,2,failure,-1.8,93.876,-40,0.699,5008.7,no +74,retired,married,professional.course,no,no,no,cellular,may,fri,309,4,999,3,failure,-1.8,93.876,-40,0.699,5008.7,no +29,technician,married,professional.course,no,no,no,cellular,may,fri,538,2,999,2,failure,-1.8,93.876,-40,0.699,5008.7,yes +30,admin.,single,university.degree,no,unknown,unknown,cellular,may,fri,466,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +26,unemployed,married,basic.4y,no,no,no,telephone,may,fri,29,1,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +72,retired,single,university.degree,no,yes,yes,cellular,may,fri,589,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +33,admin.,married,university.degree,no,yes,no,cellular,may,fri,663,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,yes +72,retired,single,university.degree,no,no,no,cellular,may,fri,114,3,999,0,nonexistent,-1.8,93.876,-40,0.699,5008.7,no +30,admin.,married,university.degree,no,no,yes,cellular,may,mon,85,2,9,2,success,-1.8,93.876,-40,0.701,5008.7,no +49,technician,married,professional.course,no,yes,no,cellular,may,mon,113,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no +31,unknown,single,high.school,no,yes,yes,telephone,may,mon,664,1,2,1,success,-1.8,93.876,-40,0.701,5008.7,no +56,unemployed,married,basic.9y,no,no,no,cellular,may,mon,540,1,999,1,failure,-1.8,93.876,-40,0.701,5008.7,yes +29,technician,single,high.school,no,no,no,cellular,may,mon,158,1,13,3,failure,-1.8,93.876,-40,0.701,5008.7,no +27,student,single,basic.9y,no,yes,yes,cellular,may,mon,775,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,yes +47,admin.,single,university.degree,no,yes,yes,cellular,may,mon,178,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no +31,unknown,single,high.school,no,no,no,cellular,may,mon,392,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,yes +31,unknown,single,high.school,no,no,no,cellular,may,mon,140,5,6,2,success,-1.8,93.876,-40,0.701,5008.7,no +49,technician,single,university.degree,no,no,no,telephone,may,mon,8,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no +42,management,single,high.school,no,yes,no,telephone,may,mon,113,1,999,0,nonexistent,-1.8,93.876,-40,0.701,5008.7,no +47,admin.,single,university.degree,no,yes,no,cellular,jun,tue,119,1,999,4,failure,-1.7,94.055,-39.8,0.702,4991.6,no +37,admin.,single,university.degree,no,yes,yes,cellular,jun,tue,209,3,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +29,admin.,married,university.degree,no,yes,no,cellular,jun,tue,201,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes +29,blue-collar,single,basic.9y,no,no,no,telephone,jun,tue,1563,1,6,2,success,-1.7,94.055,-39.8,0.702,4991.6,no +25,services,single,unknown,no,yes,no,cellular,jun,tue,318,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes +25,services,single,unknown,no,yes,no,cellular,jun,tue,516,1,13,2,failure,-1.7,94.055,-39.8,0.702,4991.6,yes +76,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,326,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,yes +25,services,single,unknown,no,yes,no,cellular,jun,tue,154,2,3,3,success,-1.7,94.055,-39.8,0.702,4991.6,yes +25,services,single,unknown,no,yes,no,cellular,jun,tue,383,2,999,2,failure,-1.7,94.055,-39.8,0.702,4991.6,no +39,admin.,married,high.school,no,yes,no,cellular,jun,tue,165,2,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no +28,services,married,high.school,no,yes,yes,telephone,jun,tue,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +29,admin.,married,university.degree,no,no,yes,cellular,jun,tue,347,3,5,1,success,-1.7,94.055,-39.8,0.702,4991.6,yes +23,technician,single,professional.course,unknown,yes,yes,cellular,jun,tue,421,1,4,3,success,-1.7,94.055,-39.8,0.702,4991.6,no +59,retired,divorced,professional.course,no,no,no,telephone,jun,tue,8,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no +30,technician,single,professional.course,no,no,no,telephone,jun,tue,8,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +76,housemaid,married,basic.4y,no,no,no,cellular,jun,tue,296,5,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,yes +51,technician,married,university.degree,no,yes,no,cellular,jun,tue,303,1,10,1,success,-1.7,94.055,-39.8,0.702,4991.6,yes +39,technician,married,university.degree,no,no,yes,cellular,jun,tue,434,2,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,yes +20,technician,single,professional.course,no,yes,no,telephone,jun,tue,52,1,999,1,failure,-1.7,94.055,-39.8,0.702,4991.6,no +40,blue-collar,married,basic.6y,no,yes,no,telephone,jun,tue,5,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +52,admin.,divorced,university.degree,no,yes,no,telephone,jun,tue,36,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +34,blue-collar,married,basic.9y,no,no,no,telephone,jun,tue,7,1,999,0,nonexistent,-1.7,94.055,-39.8,0.702,4991.6,no +22,admin.,single,university.degree,no,no,no,cellular,jun,wed,407,1,3,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes +48,admin.,divorced,high.school,no,no,no,cellular,jun,wed,657,1,6,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes +29,technician,single,professional.course,no,yes,no,cellular,jun,wed,226,2,6,1,success,-1.7,94.055,-39.8,0.704,4991.6,yes +29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,147,1,999,2,failure,-1.7,94.055,-39.8,0.704,4991.6,no +34,admin.,married,high.school,no,yes,no,cellular,jun,wed,238,1,6,2,success,-1.7,94.055,-39.8,0.704,4991.6,yes +34,admin.,married,high.school,no,yes,no,cellular,jun,wed,161,1,5,1,success,-1.7,94.055,-39.8,0.704,4991.6,no +32,unemployed,single,professional.course,no,yes,yes,cellular,jun,wed,310,1,999,0,nonexistent,-1.7,94.055,-39.8,0.704,4991.6,yes +31,services,married,high.school,no,no,yes,telephone,jun,fri,35,1,999,0,nonexistent,-1.7,94.055,-39.8,0.707,4991.6,no +52,self-employed,married,university.degree,no,yes,no,telephone,jun,fri,32,1,999,0,nonexistent,-1.7,94.055,-39.8,0.707,4991.6,no +38,blue-collar,married,basic.6y,no,no,yes,cellular,jun,fri,148,2,3,2,success,-1.7,94.055,-39.8,0.707,4991.6,no +38,blue-collar,married,basic.6y,no,no,no,cellular,jun,fri,346,2,5,3,success,-1.7,94.055,-39.8,0.707,4991.6,no +38,blue-collar,married,basic.6y,no,yes,no,cellular,jun,fri,106,1,999,2,failure,-1.7,94.055,-39.8,0.707,4991.6,no +29,services,single,high.school,no,no,yes,telephone,jun,mon,6,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no +28,admin.,married,high.school,no,no,yes,telephone,jun,mon,13,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no +47,admin.,divorced,high.school,no,yes,no,telephone,jun,mon,302,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,yes +48,admin.,married,high.school,no,yes,no,telephone,jun,mon,54,1,999,0,nonexistent,-1.7,94.055,-39.8,0.711,4991.6,no +32,blue-collar,single,basic.9y,no,yes,no,telephone,jun,tue,29,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +35,technician,single,professional.course,no,no,no,telephone,jun,tue,149,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +35,technician,single,professional.course,no,yes,no,cellular,jun,tue,187,1,6,2,success,-1.7,94.055,-39.8,0.713,4991.6,yes +47,blue-collar,married,basic.9y,no,unknown,unknown,cellular,jun,tue,380,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,yes +47,blue-collar,married,basic.9y,no,no,no,cellular,jun,tue,544,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +21,student,single,high.school,no,yes,no,telephone,jun,tue,30,1,14,2,success,-1.7,94.055,-39.8,0.713,4991.6,no +29,unemployed,single,university.degree,no,yes,no,telephone,jun,tue,198,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +26,entrepreneur,single,high.school,no,no,no,telephone,jun,tue,49,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +37,unemployed,married,high.school,no,yes,no,telephone,jun,tue,29,1,999,0,nonexistent,-1.7,94.055,-39.8,0.713,4991.6,no +34,technician,married,high.school,no,yes,no,cellular,jun,wed,190,1,3,4,success,-1.7,94.055,-39.8,0.715,4991.6,yes +29,admin.,single,university.degree,no,yes,no,cellular,jun,wed,200,1,6,3,success,-1.7,94.055,-39.8,0.715,4991.6,yes +34,admin.,married,university.degree,no,no,no,cellular,jun,wed,150,1,3,2,success,-1.7,94.055,-39.8,0.715,4991.6,yes +33,admin.,single,university.degree,no,no,no,cellular,jun,wed,206,1,3,1,success,-1.7,94.055,-39.8,0.715,4991.6,yes +44,technician,married,university.degree,no,yes,no,telephone,jun,wed,712,1,6,3,failure,-1.7,94.055,-39.8,0.715,4991.6,yes +38,technician,single,high.school,no,no,no,telephone,jun,wed,118,1,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no +29,admin.,single,university.degree,no,yes,no,telephone,jun,wed,294,2,3,1,success,-1.7,94.055,-39.8,0.715,4991.6,no +44,technician,married,university.degree,no,no,no,cellular,jun,wed,874,2,999,1,failure,-1.7,94.055,-39.8,0.715,4991.6,yes +28,services,married,high.school,no,no,yes,cellular,jun,wed,479,2,6,2,success,-1.7,94.055,-39.8,0.715,4991.6,yes +27,blue-collar,single,university.degree,no,no,no,cellular,jun,wed,722,2,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no +29,admin.,single,university.degree,no,no,no,cellular,jun,wed,192,2,3,4,success,-1.7,94.055,-39.8,0.715,4991.6,yes +27,admin.,married,high.school,no,yes,no,telephone,jun,wed,46,1,999,0,nonexistent,-1.7,94.055,-39.8,0.715,4991.6,no +28,admin.,single,university.degree,no,no,no,telephone,jun,fri,138,1,999,0,nonexistent,-1.7,94.055,-39.8,0.719,4991.6,no +37,admin.,married,university.degree,no,yes,no,cellular,jun,fri,135,1,999,2,failure,-1.7,94.055,-39.8,0.719,4991.6,no +37,admin.,married,university.degree,no,unknown,unknown,cellular,jun,fri,602,1,10,1,success,-1.7,94.055,-39.8,0.719,4991.6,yes +35,admin.,single,university.degree,no,no,yes,cellular,jun,mon,141,2,4,3,success,-1.7,94.055,-39.8,0.72,4991.6,no +50,management,married,university.degree,no,no,no,telephone,jun,mon,278,5,6,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes +36,management,divorced,university.degree,no,yes,no,cellular,jun,mon,422,1,3,4,success,-1.7,94.055,-39.8,0.72,4991.6,yes +23,student,single,high.school,no,yes,no,telephone,jun,mon,434,1,9,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes +39,technician,married,university.degree,no,yes,no,cellular,jun,mon,187,1,3,5,success,-1.7,94.055,-39.8,0.72,4991.6,yes +89,retired,divorced,basic.4y,no,no,no,cellular,jun,mon,245,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +30,self-employed,married,university.degree,no,yes,no,cellular,jun,mon,661,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +21,student,single,high.school,no,yes,no,cellular,jun,mon,270,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +39,management,married,university.degree,no,no,no,cellular,jun,mon,168,1,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,no +30,self-employed,married,university.degree,no,no,no,cellular,jun,mon,212,4,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +36,self-employed,single,university.degree,no,no,yes,cellular,jun,mon,458,1,4,4,success,-1.7,94.055,-39.8,0.72,4991.6,yes +39,technician,married,university.degree,no,yes,no,cellular,jun,mon,713,2,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +59,unemployed,married,basic.4y,no,yes,no,cellular,jun,mon,614,1,6,2,success,-1.7,94.055,-39.8,0.72,4991.6,yes +35,technician,single,university.degree,no,no,no,cellular,jun,mon,516,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no +35,admin.,single,university.degree,no,yes,no,cellular,jun,mon,293,1,14,1,success,-1.7,94.055,-39.8,0.72,4991.6,yes +22,student,single,high.school,no,no,yes,cellular,jun,mon,563,1,12,2,failure,-1.7,94.055,-39.8,0.72,4991.6,yes +28,services,single,university.degree,no,no,no,telephone,jun,mon,215,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no +37,admin.,married,university.degree,no,yes,no,telephone,jun,mon,30,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no +44,services,single,high.school,no,no,no,telephone,jun,mon,20,1,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no +33,services,married,high.school,no,no,no,cellular,jun,mon,472,1,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,no +27,admin.,married,university.degree,no,yes,no,cellular,jun,mon,262,3,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,no +29,self-employed,single,university.degree,no,yes,no,cellular,jun,mon,167,2,999,1,failure,-1.7,94.055,-39.8,0.72,4991.6,yes +25,student,single,high.school,no,no,no,cellular,jun,mon,485,2,999,0,nonexistent,-1.7,94.055,-39.8,0.72,4991.6,yes +27,student,single,university.degree,no,no,yes,cellular,jun,mon,237,2,3,4,success,-1.7,94.055,-39.8,0.72,4991.6,no +31,technician,married,professional.course,no,yes,no,cellular,jun,tue,619,2,3,1,success,-1.7,94.055,-39.8,0.723,4991.6,yes +29,admin.,married,high.school,no,yes,no,cellular,jun,tue,379,2,13,1,success,-1.7,94.055,-39.8,0.723,4991.6,yes +56,management,married,basic.6y,no,yes,no,cellular,jun,tue,910,1,7,2,success,-1.7,94.055,-39.8,0.723,4991.6,yes +60,housemaid,married,basic.4y,no,yes,no,cellular,jun,tue,700,3,999,1,failure,-1.7,94.055,-39.8,0.723,4991.6,yes +29,admin.,married,high.school,no,unknown,unknown,cellular,jun,tue,238,6,3,3,success,-1.7,94.055,-39.8,0.723,4991.6,no +31,technician,married,professional.course,no,yes,no,cellular,jun,tue,243,5,9,2,success,-1.7,94.055,-39.8,0.723,4991.6,yes +31,technician,married,professional.course,no,yes,no,cellular,jun,tue,250,4,3,2,success,-1.7,94.055,-39.8,0.723,4991.6,no +37,unemployed,married,university.degree,no,yes,no,telephone,jun,tue,126,3,2,2,success,-1.7,94.055,-39.8,0.723,4991.6,no +35,management,divorced,university.degree,no,yes,yes,cellular,jun,tue,270,2,12,2,success,-1.7,94.055,-39.8,0.723,4991.6,no +31,technician,married,professional.course,no,yes,no,telephone,jun,tue,208,1,999,0,nonexistent,-1.7,94.055,-39.8,0.723,4991.6,yes +29,admin.,married,high.school,no,yes,no,cellular,jun,wed,292,1,999,1,failure,-1.7,94.055,-39.8,0.727,4991.6,yes +39,entrepreneur,single,university.degree,no,yes,no,telephone,jun,wed,58,1,999,0,nonexistent,-1.7,94.055,-39.8,0.727,4991.6,no +33,blue-collar,married,basic.9y,no,yes,no,telephone,jun,wed,15,1,999,2,failure,-1.7,94.055,-39.8,0.727,4991.6,no +29,admin.,married,high.school,no,yes,no,cellular,jun,wed,605,3,999,0,nonexistent,-1.7,94.055,-39.8,0.727,4991.6,yes +24,student,single,high.school,no,no,no,cellular,jun,wed,288,6,6,1,success,-1.7,94.055,-39.8,0.727,4991.6,yes +28,management,single,university.degree,no,yes,no,cellular,jun,thu,339,3,6,2,success,-1.7,94.055,-39.8,0.729,4991.6,yes +36,services,married,high.school,no,no,no,cellular,jun,thu,101,3,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no +28,management,single,university.degree,no,yes,no,cellular,jun,thu,383,1,22,1,success,-1.7,94.055,-39.8,0.729,4991.6,yes +29,technician,divorced,professional.course,no,yes,yes,telephone,jun,thu,247,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no +43,blue-collar,married,professional.course,no,yes,yes,cellular,jun,thu,1720,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes +38,blue-collar,single,high.school,no,yes,yes,telephone,jun,thu,21,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no +24,student,single,high.school,no,yes,yes,cellular,jun,thu,344,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no +24,student,single,high.school,no,yes,no,cellular,jun,thu,530,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,no +28,management,single,university.degree,no,yes,no,cellular,jun,thu,169,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes +78,retired,divorced,unknown,no,no,no,cellular,jun,thu,282,4,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes +24,student,single,high.school,no,no,yes,cellular,jun,thu,176,2,12,2,failure,-1.7,94.055,-39.8,0.729,4991.6,yes +78,retired,divorced,unknown,no,no,no,cellular,jun,thu,544,1,999,0,nonexistent,-1.7,94.055,-39.8,0.729,4991.6,yes +65,unknown,married,unknown,no,yes,no,cellular,jun,thu,301,2,4,2,success,-1.7,94.055,-39.8,0.729,4991.6,yes +26,admin.,single,university.degree,no,no,yes,cellular,jun,fri,91,2,6,1,success,-1.7,94.055,-39.8,0.732,4991.6,no +33,admin.,married,university.degree,no,no,no,telephone,jun,fri,80,1,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no +70,blue-collar,married,basic.4y,no,no,yes,cellular,jun,fri,252,1,3,1,success,-1.7,94.055,-39.8,0.732,4991.6,yes +62,retired,divorced,high.school,no,yes,no,cellular,jun,fri,201,4,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no +41,entrepreneur,married,university.degree,no,yes,no,telephone,jun,fri,23,1,999,0,nonexistent,-1.7,94.055,-39.8,0.732,4991.6,no +30,admin.,married,high.school,no,yes,no,cellular,jun,fri,215,1,12,1,success,-1.7,94.055,-39.8,0.732,4991.6,yes +34,admin.,single,university.degree,no,yes,no,telephone,jun,mon,100,1,999,0,nonexistent,-1.7,94.055,-39.8,0.733,4991.6,no +27,technician,single,professional.course,no,no,no,cellular,jun,tue,130,2,3,3,success,-1.7,94.055,-39.8,0.737,4991.6,no +27,technician,single,professional.course,no,no,no,cellular,jun,tue,136,2,999,0,nonexistent,-1.7,94.055,-39.8,0.737,4991.6,no +18,student,single,basic.4y,no,yes,no,cellular,jun,tue,154,1,999,0,nonexistent,-1.7,94.055,-39.8,0.737,4991.6,no +24,student,single,high.school,no,no,no,cellular,jun,tue,292,1,999,1,failure,-1.7,94.055,-39.8,0.737,4991.6,no +36,management,married,university.degree,no,no,no,cellular,jun,tue,867,1,3,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes +36,management,married,university.degree,no,no,no,cellular,jun,tue,522,1,6,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes +32,admin.,single,university.degree,no,no,no,cellular,jun,tue,856,1,12,2,success,-1.7,94.055,-39.8,0.737,4991.6,yes +45,admin.,divorced,university.degree,no,no,yes,cellular,jun,wed,79,1,3,2,success,-1.7,94.055,-39.8,0.739,4991.6,no +27,admin.,single,high.school,no,yes,no,telephone,jun,wed,193,1,999,1,failure,-1.7,94.055,-39.8,0.739,4991.6,no +36,admin.,single,university.degree,no,yes,no,cellular,jun,wed,883,1,999,1,failure,-1.7,94.055,-39.8,0.739,4991.6,no +36,admin.,single,university.degree,no,no,no,cellular,jun,wed,706,1,7,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes +36,blue-collar,single,high.school,no,yes,yes,cellular,jun,wed,342,2,3,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes +35,technician,divorced,professional.course,no,no,no,cellular,jun,wed,66,1,13,2,failure,-1.7,94.055,-39.8,0.739,4991.6,no +36,admin.,single,university.degree,no,yes,yes,cellular,jun,wed,1407,1,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,yes +36,blue-collar,single,high.school,no,no,no,cellular,jun,wed,339,1,6,1,success,-1.7,94.055,-39.8,0.739,4991.6,yes +35,technician,divorced,professional.course,no,yes,yes,cellular,jun,wed,181,1,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,no +37,admin.,married,high.school,no,no,no,cellular,jun,wed,671,3,999,0,nonexistent,-1.7,94.055,-39.8,0.739,4991.6,yes +40,blue-collar,married,basic.9y,no,yes,no,cellular,jun,wed,133,3,3,2,success,-1.7,94.055,-39.8,0.739,4991.6,no +24,student,single,high.school,no,no,no,cellular,jun,wed,112,2,14,2,success,-1.7,94.055,-39.8,0.739,4991.6,no +33,management,single,university.degree,no,yes,no,cellular,jun,wed,442,2,999,3,failure,-1.7,94.055,-39.8,0.739,4991.6,no +22,student,single,high.school,no,yes,no,telephone,jun,wed,355,1,999,2,failure,-1.7,94.055,-39.8,0.739,4991.6,no +59,technician,married,professional.course,no,no,no,cellular,jun,thu,1207,4,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,yes +74,retired,divorced,basic.4y,no,no,no,telephone,jun,thu,369,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no +30,admin.,single,university.degree,no,yes,no,telephone,jun,thu,316,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +44,self-employed,divorced,professional.course,no,yes,no,cellular,jun,thu,310,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,yes +43,management,married,university.degree,no,no,no,cellular,jun,thu,185,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +44,self-employed,divorced,professional.course,no,yes,yes,cellular,jun,thu,134,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no +31,unemployed,single,high.school,no,yes,no,cellular,jun,thu,167,3,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +37,unemployed,single,university.degree,no,yes,no,cellular,jun,thu,122,2,6,1,success,-1.7,94.055,-39.8,0.742,4991.6,no +30,admin.,single,university.degree,no,no,no,cellular,jun,thu,124,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +38,technician,single,university.degree,no,yes,yes,cellular,jun,thu,288,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +68,retired,married,basic.4y,no,yes,no,cellular,jun,thu,220,2,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no +25,services,single,basic.9y,no,no,no,telephone,jun,thu,180,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +33,management,single,high.school,no,no,no,telephone,jun,thu,15,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +33,admin.,married,high.school,no,no,no,telephone,jun,thu,11,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +26,unemployed,single,high.school,no,yes,no,telephone,jun,thu,22,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +39,admin.,married,university.degree,no,yes,no,telephone,jun,thu,52,1,999,1,failure,-1.7,94.055,-39.8,0.742,4991.6,no +47,technician,divorced,professional.course,no,yes,no,telephone,jun,thu,9,1,999,0,nonexistent,-1.7,94.055,-39.8,0.742,4991.6,no +69,retired,divorced,professional.course,no,no,no,cellular,jun,fri,213,6,12,2,failure,-1.7,94.055,-39.8,0.748,4991.6,yes +37,technician,single,university.degree,no,yes,no,cellular,jun,fri,300,1,999,2,failure,-1.7,94.055,-39.8,0.748,4991.6,yes +23,student,single,basic.6y,no,no,no,cellular,jun,fri,276,1,14,1,success,-1.7,94.055,-39.8,0.748,4991.6,yes +30,technician,married,university.degree,no,no,yes,cellular,jun,fri,131,1,999,1,failure,-1.7,94.055,-39.8,0.748,4991.6,no +30,technician,married,university.degree,no,no,no,cellular,jun,fri,171,1,7,1,success,-1.7,94.055,-39.8,0.748,4991.6,no +36,admin.,married,university.degree,no,yes,yes,cellular,jun,fri,427,1,4,4,success,-1.7,94.055,-39.8,0.748,4991.6,no +53,housemaid,married,high.school,no,yes,no,cellular,jun,fri,195,6,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no +36,unemployed,married,professional.course,no,yes,no,telephone,jun,fri,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no +83,retired,divorced,basic.4y,no,no,yes,cellular,jun,fri,472,2,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,yes +37,unemployed,single,university.degree,no,no,no,cellular,jun,fri,249,2,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no +69,retired,divorced,professional.course,no,yes,no,telephone,jun,fri,359,5,999,0,nonexistent,-1.7,94.055,-39.8,0.748,4991.6,no +27,admin.,single,university.degree,no,yes,no,cellular,jun,fri,266,2,999,1,failure,-1.7,94.055,-39.8,0.748,4991.6,yes +53,management,divorced,university.degree,no,yes,no,cellular,jun,mon,348,6,999,2,failure,-1.7,94.055,-39.8,0.754,4991.6,no +33,services,married,high.school,no,yes,yes,telephone,jun,mon,54,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no +37,unemployed,married,university.degree,unknown,yes,no,cellular,jun,mon,614,3,3,2,success,-1.7,94.055,-39.8,0.754,4991.6,yes +51,admin.,married,university.degree,no,no,no,cellular,jun,mon,297,4,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +51,admin.,married,university.degree,no,yes,no,cellular,jun,mon,281,3,10,3,success,-1.7,94.055,-39.8,0.754,4991.6,yes +32,technician,married,university.degree,no,no,no,cellular,jun,mon,132,3,999,1,failure,-1.7,94.055,-39.8,0.754,4991.6,no +53,management,divorced,university.degree,no,no,no,cellular,jun,mon,345,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +51,blue-collar,married,basic.4y,no,no,yes,cellular,jun,mon,325,1,3,1,success,-1.7,94.055,-39.8,0.754,4991.6,yes +34,admin.,single,university.degree,no,yes,no,cellular,jun,mon,452,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +32,blue-collar,single,high.school,no,no,no,cellular,jun,mon,247,1,2,2,success,-1.7,94.055,-39.8,0.754,4991.6,yes +32,blue-collar,single,high.school,no,no,no,cellular,jun,mon,197,1,999,1,failure,-1.7,94.055,-39.8,0.754,4991.6,no +37,self-employed,married,university.degree,no,no,no,telephone,jun,mon,363,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +37,unemployed,married,university.degree,unknown,no,no,telephone,jun,mon,198,1,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +62,blue-collar,married,high.school,no,yes,no,cellular,jun,mon,563,4,4,3,success,-1.7,94.055,-39.8,0.754,4991.6,yes +35,management,married,university.degree,no,yes,no,cellular,jun,mon,150,3,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no +37,self-employed,married,university.degree,no,no,no,cellular,jun,mon,181,2,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no +68,retired,married,basic.4y,unknown,yes,no,cellular,jun,mon,383,3,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no +37,self-employed,married,university.degree,no,no,no,telephone,jun,mon,133,4,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,no +38,technician,single,university.degree,no,yes,no,cellular,jun,mon,737,6,999,0,nonexistent,-1.7,94.055,-39.8,0.754,4991.6,yes +36,management,married,university.degree,no,no,no,cellular,jun,tue,265,1,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,yes +81,retired,divorced,high.school,no,no,no,cellular,jun,tue,279,1,999,4,failure,-1.7,94.055,-39.8,0.761,4991.6,no +34,unemployed,single,university.degree,no,no,no,cellular,jun,tue,401,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes +50,blue-collar,married,basic.4y,no,no,no,cellular,jun,tue,135,4,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,no +76,retired,married,professional.course,unknown,yes,no,cellular,jun,tue,352,1,3,1,success,-1.7,94.055,-39.8,0.761,4991.6,yes +76,retired,married,professional.course,unknown,yes,no,cellular,jun,tue,295,1,9,2,success,-1.7,94.055,-39.8,0.761,4991.6,yes +56,retired,married,high.school,no,no,no,cellular,jun,tue,383,1,3,1,success,-1.7,94.055,-39.8,0.761,4991.6,yes +64,retired,married,professional.course,no,no,no,cellular,jun,tue,222,1,999,3,failure,-1.7,94.055,-39.8,0.761,4991.6,yes +27,unemployed,single,basic.4y,no,no,no,cellular,jun,tue,238,1,999,2,failure,-1.7,94.055,-39.8,0.761,4991.6,no +27,admin.,single,high.school,no,no,no,cellular,jun,tue,586,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes +23,student,single,basic.9y,no,yes,no,cellular,jun,tue,189,1,6,3,success,-1.7,94.055,-39.8,0.761,4991.6,no +35,admin.,married,university.degree,no,yes,no,cellular,jun,tue,385,1,5,1,success,-1.7,94.055,-39.8,0.761,4991.6,no +25,student,single,high.school,no,yes,yes,cellular,jun,tue,660,2,6,3,success,-1.7,94.055,-39.8,0.761,4991.6,yes +38,entrepreneur,married,basic.6y,no,no,no,cellular,jun,tue,271,1,2,3,success,-1.7,94.055,-39.8,0.761,4991.6,yes +38,entrepreneur,married,basic.6y,no,yes,no,cellular,jun,tue,189,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no +27,admin.,single,high.school,no,no,no,cellular,jun,tue,421,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes +32,management,single,university.degree,no,no,no,cellular,jun,tue,264,4,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no +30,technician,single,professional.course,no,yes,no,telephone,jun,tue,12,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no +33,admin.,married,university.degree,no,no,no,telephone,jun,tue,286,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no +34,unemployed,single,university.degree,no,yes,no,cellular,jun,tue,167,2,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,yes +32,blue-collar,married,basic.4y,no,yes,no,telephone,jun,tue,13,1,999,1,failure,-1.7,94.055,-39.8,0.761,4991.6,no +26,technician,single,professional.course,no,no,no,telephone,jun,tue,8,1,999,0,nonexistent,-1.7,94.055,-39.8,0.761,4991.6,no +26,admin.,married,high.school,no,no,no,cellular,jun,wed,598,4,12,3,failure,-1.7,94.055,-39.8,0.767,4991.6,yes +27,unknown,single,university.degree,no,yes,no,cellular,jun,wed,665,4,3,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes +52,admin.,married,university.degree,no,yes,no,cellular,jun,wed,255,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +26,admin.,married,high.school,no,no,no,cellular,jun,wed,428,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +30,technician,single,university.degree,no,yes,no,telephone,jun,wed,263,1,999,2,failure,-1.7,94.055,-39.8,0.767,4991.6,yes +27,unknown,single,university.degree,no,yes,no,cellular,jun,wed,121,3,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +33,services,married,high.school,no,yes,no,cellular,jun,wed,274,2,12,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes +56,retired,married,basic.4y,no,yes,no,cellular,jun,wed,337,2,3,2,success,-1.7,94.055,-39.8,0.767,4991.6,yes +29,technician,single,high.school,no,yes,no,telephone,jun,wed,6,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +86,retired,single,basic.9y,unknown,no,no,telephone,jun,wed,955,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes +21,student,single,high.school,no,yes,yes,cellular,jun,wed,286,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes +29,admin.,single,high.school,no,no,no,cellular,jun,wed,108,5,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +26,admin.,married,high.school,no,yes,yes,cellular,jun,wed,275,2,999,1,failure,-1.7,94.055,-39.8,0.767,4991.6,yes +66,retired,married,basic.4y,no,no,yes,cellular,jun,wed,319,2,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes +31,technician,single,university.degree,no,yes,no,telephone,jun,wed,119,1,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,no +52,admin.,married,university.degree,no,yes,yes,cellular,jun,wed,241,4,999,3,failure,-1.7,94.055,-39.8,0.767,4991.6,no +26,admin.,married,high.school,no,no,no,cellular,jun,wed,301,5,999,0,nonexistent,-1.7,94.055,-39.8,0.767,4991.6,yes +37,admin.,single,high.school,no,yes,yes,cellular,jul,thu,114,4,999,2,failure,-1.7,94.215,-40.3,0.782,4991.6,no +37,admin.,single,high.school,no,no,no,telephone,jul,thu,494,4,999,3,failure,-1.7,94.215,-40.3,0.782,4991.6,no +35,management,married,university.degree,no,yes,yes,telephone,jul,thu,165,1,999,1,failure,-1.7,94.215,-40.3,0.782,4991.6,no +34,admin.,married,high.school,no,yes,no,telephone,jul,thu,12,1,999,1,failure,-1.7,94.215,-40.3,0.782,4991.6,no +29,admin.,single,high.school,no,no,no,telephone,jul,thu,28,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no +60,management,married,university.degree,no,yes,yes,cellular,jul,thu,395,1,4,2,success,-1.7,94.215,-40.3,0.782,4991.6,yes +37,admin.,single,high.school,no,no,no,cellular,jul,thu,609,2,7,3,success,-1.7,94.215,-40.3,0.782,4991.6,yes +27,admin.,single,high.school,no,no,no,cellular,jul,thu,113,2,999,2,failure,-1.7,94.215,-40.3,0.782,4991.6,no +38,admin.,married,high.school,no,no,no,cellular,jul,thu,561,2,10,2,success,-1.7,94.215,-40.3,0.782,4991.6,yes +33,blue-collar,married,university.degree,no,no,no,telephone,jul,thu,12,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no +38,unemployed,divorced,high.school,no,no,no,telephone,jul,thu,10,1,999,0,nonexistent,-1.7,94.215,-40.3,0.782,4991.6,no +39,blue-collar,married,basic.6y,no,yes,no,telephone,jul,fri,25,1,14,1,success,-1.7,94.215,-40.3,0.79,4991.6,no +27,services,single,high.school,no,no,no,cellular,jul,fri,423,3,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes +37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,96,2,4,3,success,-1.7,94.215,-40.3,0.79,4991.6,no +33,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,217,3,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes +37,admin.,single,university.degree,no,yes,no,cellular,jul,fri,844,2,6,3,success,-1.7,94.215,-40.3,0.79,4991.6,no +55,admin.,married,university.degree,no,yes,no,cellular,jul,fri,687,1,999,2,failure,-1.7,94.215,-40.3,0.79,4991.6,yes +35,admin.,single,university.degree,no,no,no,cellular,jul,fri,391,5,4,1,success,-1.7,94.215,-40.3,0.79,4991.6,yes +27,services,single,high.school,no,unknown,unknown,cellular,jul,fri,179,1,999,1,failure,-1.7,94.215,-40.3,0.79,4991.6,yes +25,blue-collar,single,basic.9y,no,no,yes,cellular,jul,fri,667,1,999,0,nonexistent,-1.7,94.215,-40.3,0.79,4991.6,yes +55,admin.,married,university.degree,no,yes,yes,cellular,jul,fri,129,2,999,1,failure,-1.7,94.215,-40.3,0.79,4991.6,no +48,admin.,single,university.degree,no,yes,no,cellular,jul,fri,194,2,3,1,success,-1.7,94.215,-40.3,0.79,4991.6,yes +52,admin.,single,high.school,no,no,no,telephone,jul,mon,9,1,999,1,failure,-1.7,94.215,-40.3,0.793,4991.6,no +41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,101,3,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no +34,technician,single,university.degree,no,yes,no,cellular,jul,mon,251,3,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,yes +25,admin.,married,high.school,no,yes,no,telephone,jul,mon,29,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no +32,technician,married,university.degree,no,yes,yes,telephone,jul,mon,17,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no +41,admin.,divorced,university.degree,no,no,no,cellular,jul,mon,128,2,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,175,4,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no +41,admin.,divorced,university.degree,no,yes,no,cellular,jul,mon,140,1,14,2,success,-1.7,94.215,-40.3,0.793,4991.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,182,1,999,0,nonexistent,-1.7,94.215,-40.3,0.793,4991.6,no +30,admin.,single,university.degree,no,yes,no,cellular,jul,tue,255,2,3,1,success,-1.7,94.215,-40.3,0.797,4991.6,no +21,student,single,basic.9y,no,yes,no,cellular,jul,tue,209,2,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes +46,admin.,married,high.school,no,yes,no,cellular,jul,tue,267,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes +46,admin.,married,high.school,no,yes,no,cellular,jul,tue,335,3,999,2,failure,-1.7,94.215,-40.3,0.797,4991.6,yes +30,admin.,single,university.degree,no,no,no,cellular,jul,tue,212,1,3,2,success,-1.7,94.215,-40.3,0.797,4991.6,no +83,housemaid,divorced,basic.4y,no,yes,yes,cellular,jul,tue,257,1,999,3,failure,-1.7,94.215,-40.3,0.797,4991.6,no +29,admin.,single,high.school,no,no,no,cellular,jul,tue,319,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,yes +35,admin.,single,university.degree,no,no,no,telephone,jul,tue,42,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,no +46,admin.,married,high.school,no,yes,yes,cellular,jul,tue,396,1,13,2,success,-1.7,94.215,-40.3,0.797,4991.6,yes +43,self-employed,married,university.degree,no,no,no,cellular,jul,tue,386,3,999,1,failure,-1.7,94.215,-40.3,0.797,4991.6,yes +83,housemaid,divorced,basic.4y,no,yes,no,cellular,jul,tue,667,2,3,1,success,-1.7,94.215,-40.3,0.797,4991.6,yes +21,student,single,basic.9y,no,yes,yes,telephone,jul,tue,295,1,999,0,nonexistent,-1.7,94.215,-40.3,0.797,4991.6,no +35,entrepreneur,single,university.degree,no,yes,no,cellular,jul,wed,156,1,999,2,failure,-1.7,94.215,-40.3,0.802,4991.6,no +55,admin.,married,high.school,no,no,no,telephone,jul,wed,229,1,9,1,success,-1.7,94.215,-40.3,0.802,4991.6,yes +33,admin.,married,high.school,no,yes,yes,telephone,jul,wed,398,2,999,1,failure,-1.7,94.215,-40.3,0.802,4991.6,yes +35,admin.,married,high.school,no,yes,no,cellular,jul,wed,273,2,15,1,success,-1.7,94.215,-40.3,0.802,4991.6,yes +36,services,married,high.school,no,no,no,telephone,jul,wed,276,2,999,0,nonexistent,-1.7,94.215,-40.3,0.802,4991.6,yes +34,admin.,single,high.school,no,no,no,cellular,jul,wed,346,1,999,1,failure,-1.7,94.215,-40.3,0.802,4991.6,yes +57,unknown,married,basic.4y,no,yes,no,cellular,jul,wed,183,3,999,0,nonexistent,-1.7,94.215,-40.3,0.802,4991.6,no +58,admin.,married,high.school,no,yes,no,cellular,jul,thu,214,4,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no +75,retired,married,university.degree,no,yes,no,cellular,jul,thu,229,1,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes +29,admin.,single,high.school,no,yes,no,cellular,jul,thu,480,1,6,1,success,-1.7,94.215,-40.3,0.81,4991.6,yes +37,admin.,married,high.school,no,unknown,unknown,cellular,jul,thu,294,1,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,yes +21,student,single,unknown,no,yes,yes,cellular,jul,thu,173,11,9,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no +25,services,single,high.school,no,no,yes,telephone,jul,thu,411,2,8,4,success,-1.7,94.215,-40.3,0.81,4991.6,yes +21,student,single,unknown,no,no,no,telephone,jul,thu,250,1,12,1,success,-1.7,94.215,-40.3,0.81,4991.6,yes +21,student,single,unknown,no,no,no,cellular,jul,thu,184,1,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no +21,student,single,unknown,no,yes,no,cellular,jul,thu,968,1,13,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes +32,admin.,single,university.degree,no,no,no,telephone,jul,thu,14,1,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no +39,technician,married,professional.course,no,yes,no,cellular,jul,thu,202,1,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,no +58,admin.,married,high.school,no,yes,yes,cellular,jul,thu,414,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes +25,admin.,single,high.school,no,no,no,cellular,jul,thu,449,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes +37,admin.,married,high.school,no,yes,no,cellular,jul,thu,230,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no +34,self-employed,single,university.degree,no,no,no,cellular,jul,thu,967,3,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,yes +21,student,single,unknown,no,no,no,telephone,jul,thu,220,7,999,1,failure,-1.7,94.215,-40.3,0.81,4991.6,no +25,services,single,high.school,no,yes,no,telephone,jul,thu,312,2,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,no +73,retired,divorced,professional.course,unknown,yes,no,cellular,jul,thu,131,2,999,0,nonexistent,-1.7,94.215,-40.3,0.81,4991.6,no +34,admin.,married,university.degree,no,yes,no,cellular,jul,thu,344,1,999,2,failure,-1.7,94.215,-40.3,0.81,4991.6,yes +72,retired,married,basic.4y,no,no,yes,cellular,jul,fri,483,4,8,1,success,-1.7,94.215,-40.3,0.822,4991.6,yes +26,unemployed,married,high.school,no,yes,no,cellular,jul,fri,474,7,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,yes +72,retired,married,basic.4y,no,yes,no,cellular,jul,fri,119,9,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,no +72,retired,married,basic.4y,no,yes,no,cellular,jul,fri,582,2,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,fri,1185,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no +46,admin.,married,university.degree,no,yes,no,cellular,jul,fri,341,3,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,yes +32,entrepreneur,married,university.degree,no,no,yes,cellular,jul,fri,116,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no +79,retired,married,basic.4y,no,no,yes,cellular,jul,fri,464,1,999,1,failure,-1.7,94.215,-40.3,0.822,4991.6,yes +33,blue-collar,single,professional.course,no,no,yes,telephone,jul,fri,15,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no +33,unemployed,married,university.degree,no,yes,no,telephone,jul,fri,25,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no +26,unemployed,single,high.school,no,yes,no,telephone,jul,fri,23,1,999,0,nonexistent,-1.7,94.215,-40.3,0.822,4991.6,no +33,blue-collar,married,basic.9y,no,no,yes,telephone,jul,mon,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +59,retired,divorced,basic.4y,no,no,no,cellular,jul,mon,410,2,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +39,admin.,divorced,university.degree,no,yes,yes,cellular,jul,mon,398,10,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,yes +36,technician,single,university.degree,no,yes,yes,cellular,jul,mon,305,4,3,1,success,-1.7,94.215,-40.3,0.827,4991.6,no +59,retired,divorced,basic.4y,no,no,yes,cellular,jul,mon,210,3,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes +39,admin.,divorced,university.degree,no,no,yes,cellular,jul,mon,375,3,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes +28,blue-collar,single,high.school,no,no,yes,cellular,jul,mon,101,2,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,no +62,technician,married,unknown,no,no,yes,cellular,jul,mon,123,2,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,no +35,technician,single,professional.course,no,no,no,cellular,jul,mon,562,4,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes +62,technician,married,unknown,no,unknown,unknown,cellular,jul,mon,220,3,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,yes +62,technician,married,unknown,no,no,no,cellular,jul,mon,167,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +62,technician,married,unknown,no,yes,no,cellular,jul,mon,273,1,16,1,success,-1.7,94.215,-40.3,0.827,4991.6,no +27,admin.,single,university.degree,unknown,no,yes,cellular,jul,mon,537,1,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,yes +28,student,single,high.school,no,yes,yes,cellular,jul,mon,154,1,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,no +24,admin.,single,high.school,no,no,no,cellular,jul,mon,452,1,14,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes +19,student,single,basic.9y,no,no,yes,telephone,jul,mon,567,1,6,2,success,-1.7,94.215,-40.3,0.827,4991.6,yes +59,retired,divorced,basic.4y,no,yes,yes,cellular,jul,mon,796,1,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes +28,blue-collar,single,high.school,no,no,no,cellular,jul,mon,194,3,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +19,student,single,basic.9y,no,yes,no,cellular,jul,mon,236,2,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +62,technician,married,unknown,no,no,no,cellular,jul,mon,262,2,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes +62,technician,married,unknown,no,yes,no,cellular,jul,mon,248,1,999,2,failure,-1.7,94.215,-40.3,0.827,4991.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,jul,mon,289,1,999,1,failure,-1.7,94.215,-40.3,0.827,4991.6,no +27,admin.,single,university.degree,unknown,no,no,cellular,jul,mon,200,6,999,0,nonexistent,-1.7,94.215,-40.3,0.827,4991.6,no +28,student,single,high.school,no,yes,no,cellular,jul,mon,250,2,6,1,success,-1.7,94.215,-40.3,0.827,4991.6,yes +29,admin.,married,university.degree,no,yes,yes,cellular,jul,tue,256,2,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,no +73,retired,married,basic.4y,no,yes,no,cellular,jul,tue,305,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes +29,admin.,single,high.school,no,no,no,cellular,jul,tue,195,2,3,3,success,-1.7,94.215,-40.3,0.835,4991.6,yes +22,services,single,professional.course,no,no,no,cellular,jul,tue,363,1,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,yes +83,retired,married,university.degree,no,yes,no,cellular,jul,tue,178,1,6,2,success,-1.7,94.215,-40.3,0.835,4991.6,yes +32,services,married,basic.6y,no,yes,yes,telephone,jul,tue,35,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no +83,retired,married,university.degree,no,no,no,telephone,jul,tue,617,1,12,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes +66,retired,married,high.school,no,no,no,cellular,jul,tue,475,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes +66,retired,married,high.school,no,yes,no,cellular,jul,tue,317,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,yes +29,admin.,married,university.degree,no,yes,no,cellular,jul,tue,88,1,999,2,failure,-1.7,94.215,-40.3,0.835,4991.6,no +29,admin.,married,university.degree,no,unknown,unknown,cellular,jul,tue,311,1,3,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes +24,student,single,high.school,no,yes,yes,cellular,jul,tue,316,3,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,no +31,unemployed,single,university.degree,no,yes,no,cellular,jul,tue,309,1,6,3,success,-1.7,94.215,-40.3,0.835,4991.6,yes +35,technician,single,professional.course,no,yes,no,cellular,jul,tue,337,1,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes +35,technician,single,professional.course,no,yes,no,cellular,jul,tue,360,1,11,2,success,-1.7,94.215,-40.3,0.835,4991.6,yes +22,services,single,professional.course,no,no,no,cellular,jul,tue,256,3,999,1,failure,-1.7,94.215,-40.3,0.835,4991.6,yes +73,retired,married,basic.4y,no,yes,yes,telephone,jul,tue,538,2,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no +29,blue-collar,single,basic.6y,no,yes,no,telephone,jul,tue,151,1,999,0,nonexistent,-1.7,94.215,-40.3,0.835,4991.6,no +35,technician,single,professional.course,no,yes,no,cellular,jul,tue,577,6,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes +29,admin.,single,high.school,no,yes,no,cellular,jul,tue,272,3,6,1,success,-1.7,94.215,-40.3,0.835,4991.6,yes +32,technician,divorced,professional.course,no,yes,no,telephone,jul,wed,18,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no +53,blue-collar,single,basic.9y,no,no,no,telephone,jul,wed,413,1,6,2,success,-1.7,94.215,-40.3,0.84,4991.6,yes +30,student,single,professional.course,no,yes,no,cellular,jul,wed,334,4,999,2,failure,-1.7,94.215,-40.3,0.84,4991.6,yes +31,admin.,single,high.school,no,yes,no,cellular,jul,wed,91,1,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no +29,technician,single,basic.9y,no,yes,no,cellular,jul,wed,603,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +53,blue-collar,single,basic.9y,no,yes,no,cellular,jul,wed,355,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +45,management,married,university.degree,no,yes,no,cellular,jul,wed,817,2,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +29,technician,single,professional.course,no,yes,no,cellular,jul,wed,133,3,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no +29,technician,single,basic.9y,no,yes,no,telephone,jul,wed,247,1,6,1,success,-1.7,94.215,-40.3,0.84,4991.6,yes +78,retired,married,unknown,no,yes,no,cellular,jul,wed,203,1,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no +29,admin.,single,university.degree,no,yes,no,cellular,jul,wed,276,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +34,services,married,basic.9y,no,no,no,cellular,jul,wed,604,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +53,blue-collar,single,basic.9y,no,yes,no,telephone,jul,wed,897,2,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +35,admin.,married,university.degree,no,yes,no,cellular,jul,wed,287,2,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,yes +34,services,married,basic.9y,no,yes,yes,cellular,jul,wed,86,3,999,1,failure,-1.7,94.215,-40.3,0.84,4991.6,no +30,student,single,professional.course,no,yes,no,telephone,jul,wed,343,9,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no +78,retired,married,unknown,no,yes,no,cellular,jul,wed,87,3,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,yes +44,blue-collar,divorced,basic.4y,no,no,no,telephone,jul,wed,71,1,999,0,nonexistent,-1.7,94.215,-40.3,0.84,4991.6,no +23,blue-collar,single,basic.9y,no,yes,no,cellular,jul,thu,268,5,999,1,failure,-1.7,94.215,-40.3,0.846,4991.6,yes +27,blue-collar,single,high.school,no,yes,no,cellular,jul,thu,185,5,999,2,failure,-1.7,94.215,-40.3,0.846,4991.6,no +52,technician,married,basic.6y,no,yes,no,cellular,jul,thu,219,1,3,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes +50,management,married,university.degree,no,yes,no,cellular,jul,thu,367,1,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes +37,services,married,high.school,no,no,no,cellular,jul,thu,346,1,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes +28,services,single,high.school,no,yes,no,cellular,jul,thu,957,1,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes +32,services,single,unknown,no,no,yes,cellular,jul,thu,415,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes +30,admin.,single,university.degree,no,no,no,cellular,jul,thu,252,1,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes +28,self-employed,single,university.degree,no,no,no,cellular,jul,thu,178,1,999,2,failure,-1.7,94.215,-40.3,0.846,4991.6,no +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,250,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,no +20,student,single,basic.9y,no,yes,no,cellular,jul,thu,361,3,6,3,success,-1.7,94.215,-40.3,0.846,4991.6,yes +80,retired,married,basic.4y,no,no,no,telephone,jul,thu,552,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes +70,retired,divorced,basic.4y,no,no,no,cellular,jul,thu,390,2,6,2,success,-1.7,94.215,-40.3,0.846,4991.6,yes +35,admin.,married,university.degree,no,no,no,cellular,jul,thu,951,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes +23,blue-collar,single,basic.9y,no,no,no,cellular,jul,thu,250,4,999,1,failure,-1.7,94.215,-40.3,0.846,4991.6,yes +32,admin.,single,university.degree,no,yes,no,cellular,jul,thu,210,2,15,1,success,-1.7,94.215,-40.3,0.846,4991.6,no +28,self-employed,single,university.degree,no,yes,no,cellular,jul,thu,198,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,yes +47,admin.,single,basic.9y,no,yes,yes,cellular,jul,thu,392,2,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,yes +38,technician,married,professional.course,no,no,no,cellular,jul,thu,561,2,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,no +54,retired,single,basic.4y,no,yes,no,cellular,jul,thu,392,4,999,0,nonexistent,-1.7,94.215,-40.3,0.846,4991.6,no +63,retired,married,basic.4y,no,yes,no,cellular,jul,thu,261,1,6,1,success,-1.7,94.215,-40.3,0.846,4991.6,no +31,admin.,single,university.degree,no,yes,no,cellular,jul,fri,815,2,13,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes +26,technician,single,university.degree,no,no,no,cellular,jul,fri,129,2,6,1,success,-1.7,94.215,-40.3,0.861,4991.6,no +32,admin.,single,university.degree,no,no,no,cellular,jul,fri,184,1,9,3,failure,-1.7,94.215,-40.3,0.861,4991.6,no +44,admin.,married,unknown,no,no,no,cellular,jul,fri,745,1,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,yes +31,admin.,married,high.school,no,no,no,cellular,jul,fri,136,8,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +60,admin.,married,university.degree,no,no,no,cellular,jul,fri,316,1,6,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes +51,admin.,married,university.degree,no,no,yes,cellular,jul,fri,486,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,yes +31,admin.,married,high.school,no,yes,yes,cellular,jul,fri,44,4,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +43,technician,divorced,unknown,no,no,no,cellular,jul,fri,377,1,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,no +31,admin.,married,university.degree,no,no,no,cellular,jul,fri,106,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +27,admin.,single,high.school,no,yes,no,telephone,jul,fri,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +29,admin.,single,high.school,no,yes,no,cellular,jul,fri,268,2,6,1,success,-1.7,94.215,-40.3,0.861,4991.6,yes +26,technician,single,university.degree,no,yes,no,cellular,jul,fri,806,3,6,2,success,-1.7,94.215,-40.3,0.861,4991.6,yes +32,management,single,university.degree,no,no,no,cellular,jul,fri,237,2,999,1,failure,-1.7,94.215,-40.3,0.861,4991.6,no +51,admin.,married,university.degree,no,no,yes,cellular,jul,fri,73,4,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +44,admin.,single,high.school,no,no,yes,telephone,jul,fri,12,1,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +59,technician,married,professional.course,no,yes,no,cellular,jul,fri,457,2,15,1,success,-1.7,94.215,-40.3,0.861,4991.6,yes +21,housemaid,single,high.school,no,no,no,cellular,jul,fri,222,2,999,0,nonexistent,-1.7,94.215,-40.3,0.861,4991.6,no +54,admin.,married,university.degree,no,no,yes,cellular,jul,fri,84,5,999,2,failure,-1.7,94.215,-40.3,0.861,4991.6,no +22,admin.,single,university.degree,no,yes,no,telephone,jul,mon,484,1,999,2,failure,-1.7,94.215,-40.3,0.87,4991.6,yes +56,technician,married,professional.course,no,yes,no,cellular,jul,mon,207,2,13,1,success,-1.7,94.215,-40.3,0.87,4991.6,yes +49,technician,divorced,professional.course,no,yes,no,cellular,jul,mon,253,3,15,1,success,-1.7,94.215,-40.3,0.87,4991.6,yes +78,retired,married,basic.4y,no,no,no,cellular,jul,mon,1148,1,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +72,retired,married,basic.4y,no,yes,no,cellular,jul,mon,128,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,no +72,retired,married,basic.4y,no,yes,no,cellular,jul,mon,268,1,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +78,retired,married,basic.4y,no,yes,no,cellular,jul,mon,173,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,yes +56,technician,married,professional.course,no,no,no,cellular,jul,mon,230,2,999,1,failure,-1.7,94.215,-40.3,0.87,4991.6,yes +56,unemployed,divorced,basic.4y,no,yes,no,cellular,jul,mon,187,6,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +66,retired,married,basic.4y,no,yes,no,cellular,jul,mon,568,7,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +78,retired,married,basic.4y,no,yes,no,cellular,jul,mon,212,1,13,2,success,-1.7,94.215,-40.3,0.87,4991.6,yes +29,admin.,married,university.degree,no,yes,no,cellular,jul,mon,173,3,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +30,technician,married,university.degree,no,yes,yes,cellular,jul,mon,204,4,999,0,nonexistent,-1.7,94.215,-40.3,0.87,4991.6,yes +28,technician,single,university.degree,no,no,no,cellular,jul,tue,146,3,6,2,success,-1.7,94.215,-40.3,0.876,4991.6,no +28,services,single,high.school,no,yes,no,cellular,jul,tue,192,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no +66,housemaid,married,basic.4y,no,no,yes,cellular,jul,tue,296,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no +29,technician,single,professional.course,no,no,yes,cellular,jul,tue,178,2,15,2,failure,-1.7,94.215,-40.3,0.876,4991.6,yes +54,unknown,married,basic.9y,no,yes,no,cellular,jul,tue,174,2,13,2,success,-1.7,94.215,-40.3,0.876,4991.6,no +28,technician,single,university.degree,no,yes,no,cellular,jul,tue,175,5,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no +23,student,single,unknown,no,no,no,cellular,jul,tue,165,2,16,1,success,-1.7,94.215,-40.3,0.876,4991.6,yes +35,blue-collar,married,high.school,no,yes,no,telephone,jul,tue,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no +62,retired,married,high.school,no,no,no,cellular,jul,tue,355,2,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,yes +23,unemployed,single,high.school,no,no,no,telephone,jul,tue,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,no +38,admin.,married,high.school,no,no,no,telephone,jul,tue,5,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no +48,technician,married,professional.course,no,no,no,cellular,jul,tue,288,1,999,1,failure,-1.7,94.215,-40.3,0.876,4991.6,no +66,housemaid,married,basic.4y,no,no,no,telephone,jul,tue,1008,2,999,0,nonexistent,-1.7,94.215,-40.3,0.876,4991.6,yes +23,admin.,single,university.degree,no,yes,no,cellular,jul,wed,104,1,999,2,failure,-1.7,94.215,-40.3,0.881,4991.6,no +82,housemaid,divorced,basic.4y,no,no,no,cellular,jul,wed,316,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,yes +72,retired,married,basic.6y,no,no,no,cellular,jul,wed,338,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,no +72,retired,married,basic.6y,no,yes,no,cellular,jul,wed,143,1,999,0,nonexistent,-1.7,94.215,-40.3,0.881,4991.6,yes +37,unemployed,single,university.degree,no,yes,yes,cellular,jul,wed,314,1,5,2,success,-1.7,94.215,-40.3,0.881,4991.6,yes +21,student,single,basic.9y,no,no,no,telephone,jul,thu,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no +24,technician,single,professional.course,no,yes,no,cellular,jul,thu,355,2,3,1,success,-1.7,94.215,-40.3,0.884,4991.6,yes +71,retired,married,professional.course,no,yes,no,cellular,jul,thu,115,3,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no +52,admin.,married,university.degree,no,yes,yes,cellular,jul,thu,942,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes +24,services,single,high.school,no,yes,no,cellular,jul,thu,355,1,11,2,success,-1.7,94.215,-40.3,0.884,4991.6,yes +43,technician,married,professional.course,no,yes,no,cellular,jul,thu,1193,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes +64,admin.,married,high.school,no,no,no,cellular,jul,thu,368,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes +45,management,married,university.degree,no,yes,no,cellular,jul,thu,138,2,6,2,success,-1.7,94.215,-40.3,0.884,4991.6,yes +40,management,married,university.degree,no,yes,no,cellular,jul,thu,321,4,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes +30,admin.,single,university.degree,no,yes,no,cellular,jul,thu,248,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,yes +34,technician,single,basic.9y,no,no,no,telephone,jul,thu,23,1,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no +29,self-employed,single,university.degree,no,no,no,telephone,jul,thu,24,1,999,0,nonexistent,-1.7,94.215,-40.3,0.884,4991.6,no +60,admin.,married,basic.9y,no,no,no,cellular,jul,thu,174,2,25,2,failure,-1.7,94.215,-40.3,0.884,4991.6,yes +24,services,single,high.school,no,yes,no,cellular,jul,thu,860,2,9,2,failure,-1.7,94.215,-40.3,0.884,4991.6,yes +56,services,married,high.school,no,yes,no,cellular,jul,thu,427,2,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no +45,management,married,university.degree,no,no,yes,telephone,jul,thu,171,2,999,1,failure,-1.7,94.215,-40.3,0.884,4991.6,no +31,student,single,university.degree,no,no,no,cellular,jul,fri,608,3,6,2,success,-1.7,94.215,-40.3,0.885,4991.6,yes +59,management,married,basic.4y,no,yes,no,cellular,jul,fri,351,3,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes +42,unknown,single,university.degree,no,no,no,cellular,jul,fri,366,6,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes +31,student,single,university.degree,no,yes,yes,cellular,jul,fri,350,2,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes +32,technician,single,university.degree,no,no,no,cellular,jul,fri,125,1,3,2,success,-1.7,94.215,-40.3,0.885,4991.6,no +24,technician,married,professional.course,no,no,no,cellular,jul,fri,192,4,26,1,success,-1.7,94.215,-40.3,0.885,4991.6,yes +42,unknown,single,university.degree,no,yes,no,cellular,jul,fri,513,1,999,2,failure,-1.7,94.215,-40.3,0.885,4991.6,yes +26,admin.,single,high.school,no,yes,no,cellular,jul,fri,251,1,999,1,failure,-1.7,94.215,-40.3,0.885,4991.6,yes +26,admin.,single,university.degree,no,no,no,cellular,jul,fri,196,1,9,3,failure,-1.7,94.215,-40.3,0.885,4991.6,yes +63,admin.,married,university.degree,no,yes,no,cellular,jul,fri,396,2,999,0,nonexistent,-1.7,94.215,-40.3,0.885,4991.6,yes +29,admin.,single,university.degree,no,yes,no,cellular,jul,mon,110,2,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,jul,mon,275,1,6,2,success,-1.7,94.215,-40.3,0.889,4991.6,yes +51,technician,married,high.school,no,no,no,cellular,jul,mon,284,1,6,3,success,-1.7,94.215,-40.3,0.889,4991.6,yes +65,management,married,university.degree,no,yes,no,cellular,jul,mon,183,1,999,2,failure,-1.7,94.215,-40.3,0.889,4991.6,yes +29,admin.,married,university.degree,no,no,no,telephone,jul,mon,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no +31,admin.,married,university.degree,no,no,no,telephone,jul,mon,7,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no +52,technician,single,professional.course,no,no,no,telephone,jul,mon,84,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no +34,admin.,single,university.degree,no,yes,yes,telephone,jul,mon,4,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no +27,blue-collar,single,basic.6y,no,no,no,telephone,jul,mon,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.889,4991.6,no +35,admin.,married,university.degree,no,no,no,cellular,jul,mon,768,2,3,4,success,-1.7,94.215,-40.3,0.889,4991.6,no +68,retired,married,university.degree,no,yes,no,cellular,jul,mon,546,2,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,yes +68,retired,married,university.degree,no,no,no,cellular,jul,mon,414,2,12,1,success,-1.7,94.215,-40.3,0.889,4991.6,yes +61,admin.,married,unknown,no,yes,yes,cellular,jul,mon,109,3,999,1,failure,-1.7,94.215,-40.3,0.889,4991.6,no +24,technician,single,professional.course,no,yes,no,cellular,jul,mon,607,3,13,1,success,-1.7,94.215,-40.3,0.889,4991.6,yes +84,retired,divorced,basic.4y,no,yes,yes,cellular,jul,tue,666,1,3,2,success,-1.7,94.215,-40.3,0.893,4991.6,yes +32,admin.,single,university.degree,no,no,no,cellular,jul,tue,527,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,yes +32,admin.,single,university.degree,no,yes,no,cellular,jul,tue,206,1,999,1,failure,-1.7,94.215,-40.3,0.893,4991.6,no +23,student,single,unknown,no,no,no,cellular,jul,tue,267,1,999,2,failure,-1.7,94.215,-40.3,0.893,4991.6,yes +52,admin.,married,professional.course,no,no,no,cellular,jul,tue,606,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,yes +23,technician,single,professional.course,no,yes,no,telephone,jul,tue,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no +33,admin.,single,university.degree,no,no,no,telephone,jul,tue,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no +28,technician,single,professional.course,no,no,yes,telephone,jul,tue,5,1,999,0,nonexistent,-1.7,94.215,-40.3,0.893,4991.6,no +52,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,139,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,no +28,technician,single,professional.course,no,yes,no,cellular,jul,tue,167,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,no +52,admin.,married,professional.course,no,yes,yes,cellular,jul,tue,287,2,6,1,success,-1.7,94.215,-40.3,0.893,4991.6,yes +77,retired,married,basic.4y,no,unknown,unknown,cellular,jul,tue,218,2,3,1,success,-1.7,94.215,-40.3,0.893,4991.6,yes +26,student,single,high.school,no,no,no,cellular,jul,tue,235,1,999,1,failure,-1.7,94.215,-40.3,0.893,4991.6,no +48,housemaid,married,professional.course,no,yes,no,cellular,jul,wed,496,2,6,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes +68,retired,divorced,high.school,no,yes,yes,cellular,jul,wed,340,1,3,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes +74,retired,divorced,basic.4y,no,yes,yes,cellular,jul,wed,106,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +24,student,single,professional.course,no,no,no,cellular,jul,wed,429,2,6,3,success,-1.7,94.215,-40.3,0.896,4991.6,yes +25,self-employed,single,unknown,no,unknown,unknown,cellular,jul,wed,844,5,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,yes +57,blue-collar,married,basic.4y,no,no,yes,cellular,jul,wed,471,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes +24,student,single,professional.course,no,yes,no,cellular,jul,wed,817,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes +66,retired,divorced,high.school,no,no,no,cellular,jul,wed,211,1,999,1,failure,-1.7,94.215,-40.3,0.896,4991.6,no +51,retired,divorced,high.school,no,no,no,cellular,jul,wed,115,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes +50,housemaid,married,basic.4y,no,no,yes,cellular,jul,wed,462,1,4,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes +47,admin.,married,university.degree,no,yes,yes,cellular,jul,wed,129,3,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,no +48,housemaid,married,professional.course,no,no,no,cellular,jul,wed,388,3,6,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes +26,technician,single,professional.course,no,no,no,cellular,jul,thu,588,3,999,2,failure,-1.7,94.215,-40.3,0.899,4991.6,yes +60,retired,married,professional.course,no,yes,yes,cellular,jul,thu,95,4,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,no +76,unknown,married,unknown,no,no,no,telephone,jul,thu,301,3,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,yes +23,admin.,single,high.school,no,no,no,telephone,jul,thu,331,1,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,no +80,retired,divorced,basic.4y,no,no,yes,cellular,jul,thu,169,2,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes +34,admin.,divorced,university.degree,no,yes,no,telephone,jul,thu,332,3,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes +50,housemaid,married,basic.6y,no,no,no,cellular,jul,thu,349,3,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes +50,entrepreneur,divorced,university.degree,no,yes,no,cellular,jul,thu,386,1,6,3,success,-1.7,94.215,-40.3,0.899,4991.6,yes +31,technician,single,university.degree,no,no,no,cellular,jul,thu,200,4,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes +51,admin.,married,university.degree,no,no,no,cellular,jul,thu,396,4,999,1,failure,-1.7,94.215,-40.3,0.899,4991.6,yes +65,management,married,high.school,no,yes,no,cellular,jul,thu,117,1,999,2,failure,-1.7,94.215,-40.3,0.899,4991.6,no +31,technician,single,university.degree,no,yes,no,telephone,jul,thu,426,1,6,2,success,-1.7,94.215,-40.3,0.899,4991.6,yes +48,blue-collar,married,professional.course,no,no,no,telephone,jul,thu,268,1,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,yes +71,retired,married,basic.4y,no,yes,no,cellular,jul,thu,519,2,9,3,failure,-1.7,94.215,-40.3,0.899,4991.6,yes +31,technician,single,university.degree,no,no,no,telephone,jul,thu,270,1,5,1,success,-1.7,94.215,-40.3,0.899,4991.6,yes +34,admin.,married,university.degree,no,yes,no,cellular,jul,thu,417,1,6,3,success,-1.7,94.215,-40.3,0.899,4991.6,yes +53,admin.,married,high.school,no,yes,no,cellular,jul,thu,99,6,999,0,nonexistent,-1.7,94.215,-40.3,0.899,4991.6,no +39,unemployed,single,high.school,no,yes,no,cellular,jul,fri,90,2,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +27,services,single,high.school,no,no,no,cellular,jul,fri,700,5,6,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes +32,management,single,university.degree,no,no,no,cellular,jul,fri,221,4,16,1,success,-1.7,94.215,-40.3,0.896,4991.6,no +23,admin.,single,university.degree,no,no,yes,cellular,jul,fri,76,2,999,1,failure,-1.7,94.215,-40.3,0.896,4991.6,no +41,admin.,married,university.degree,no,yes,no,cellular,jul,fri,269,7,6,3,success,-1.7,94.215,-40.3,0.896,4991.6,no +37,management,married,university.degree,no,yes,no,cellular,jul,fri,292,1,6,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes +35,admin.,married,university.degree,no,yes,no,telephone,jul,fri,304,1,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,yes +56,retired,divorced,high.school,no,yes,no,telephone,jul,fri,9,1,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +71,retired,married,basic.9y,no,yes,yes,cellular,jul,fri,230,6,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,yes +40,management,married,university.degree,no,no,no,telephone,jul,fri,367,2,3,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes +39,unemployed,single,high.school,no,yes,no,cellular,jul,fri,240,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +37,admin.,married,university.degree,no,yes,no,cellular,jul,fri,1005,5,4,2,success,-1.7,94.215,-40.3,0.896,4991.6,yes +34,self-employed,married,university.degree,no,unknown,unknown,cellular,jul,fri,156,3,999,2,failure,-1.7,94.215,-40.3,0.896,4991.6,no +40,management,married,university.degree,no,yes,no,cellular,jul,fri,955,1,9,1,success,-1.7,94.215,-40.3,0.896,4991.6,yes +63,retired,married,basic.4y,no,no,no,cellular,jul,fri,273,1,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +55,services,divorced,high.school,no,yes,no,cellular,jul,fri,160,3,999,0,nonexistent,-1.7,94.215,-40.3,0.896,4991.6,no +46,admin.,married,high.school,no,no,no,cellular,aug,mon,428,2,999,3,failure,-1.7,94.027,-38.3,0.898,4991.6,no +33,services,single,high.school,no,yes,no,cellular,aug,mon,132,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no +25,student,single,high.school,no,no,no,cellular,aug,mon,159,2,10,4,failure,-1.7,94.027,-38.3,0.898,4991.6,no +33,admin.,single,university.degree,no,no,yes,cellular,aug,mon,87,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +31,student,single,unknown,no,no,no,cellular,aug,mon,397,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no +42,admin.,single,university.degree,no,no,no,cellular,aug,mon,1013,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +67,retired,married,basic.4y,no,no,no,cellular,aug,mon,300,3,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +31,technician,single,unknown,no,no,no,cellular,aug,mon,155,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +53,services,married,basic.9y,no,yes,no,cellular,aug,mon,196,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes +31,student,single,unknown,no,yes,no,cellular,aug,mon,868,3,18,3,failure,-1.7,94.027,-38.3,0.898,4991.6,yes +36,admin.,single,professional.course,no,yes,no,telephone,aug,mon,25,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +81,retired,married,basic.4y,no,yes,no,cellular,aug,mon,90,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +25,student,single,high.school,no,yes,no,cellular,aug,mon,100,8,4,1,success,-1.7,94.027,-38.3,0.898,4991.6,no +42,admin.,single,university.degree,no,yes,no,cellular,aug,mon,245,2,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +31,self-employed,single,university.degree,no,no,no,cellular,aug,mon,209,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no +62,retired,married,basic.4y,no,no,no,cellular,aug,mon,317,1,9,2,failure,-1.7,94.027,-38.3,0.898,4991.6,yes +67,retired,married,basic.4y,no,no,no,cellular,aug,mon,341,2,13,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes +33,services,single,high.school,no,yes,no,cellular,aug,mon,486,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no +38,technician,single,university.degree,no,no,no,cellular,aug,mon,135,7,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +31,technician,single,unknown,no,no,no,cellular,aug,mon,308,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no +33,admin.,single,university.degree,no,yes,yes,telephone,aug,mon,109,1,999,2,failure,-1.7,94.027,-38.3,0.898,4991.6,no +53,services,married,basic.9y,no,yes,no,telephone,aug,mon,141,2,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no +31,technician,single,unknown,no,yes,no,cellular,aug,mon,428,2,9,3,success,-1.7,94.027,-38.3,0.898,4991.6,yes +28,admin.,married,university.degree,no,yes,no,cellular,aug,mon,226,3,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no +77,retired,divorced,professional.course,no,no,no,cellular,aug,mon,258,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +27,admin.,single,university.degree,no,no,no,cellular,aug,tue,249,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +31,student,single,university.degree,no,no,no,cellular,aug,tue,224,1,9,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no +64,retired,married,professional.course,no,no,no,cellular,aug,tue,482,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +37,technician,single,university.degree,no,yes,no,cellular,aug,tue,481,2,999,4,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +28,admin.,single,university.degree,no,yes,yes,cellular,aug,tue,187,2,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +28,unemployed,single,basic.9y,no,no,yes,cellular,aug,tue,261,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +31,student,single,university.degree,no,no,no,cellular,aug,tue,279,4,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +47,services,divorced,unknown,no,yes,no,cellular,aug,tue,113,2,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +21,student,single,high.school,no,yes,no,cellular,aug,tue,326,2,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no +31,admin.,single,university.degree,no,no,no,cellular,aug,tue,172,3,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no +40,admin.,married,high.school,no,no,yes,cellular,aug,tue,654,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +75,retired,married,unknown,no,no,no,telephone,aug,tue,676,2,999,4,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +30,student,single,high.school,no,no,no,cellular,aug,tue,592,3,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +21,student,single,high.school,no,yes,no,cellular,aug,tue,263,3,9,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +58,blue-collar,married,basic.4y,no,yes,no,cellular,aug,wed,771,1,3,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +48,admin.,married,university.degree,no,yes,yes,cellular,aug,wed,288,1,0,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes +28,student,single,unknown,unknown,yes,no,cellular,aug,wed,453,1,999,1,failure,-1.7,94.027,-38.3,0.9,4991.6,no +35,technician,married,university.degree,no,yes,no,cellular,aug,wed,182,1,6,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +35,technician,married,university.degree,no,yes,no,cellular,aug,wed,560,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,yes +27,student,single,university.degree,no,yes,no,cellular,aug,wed,651,1,0,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes +28,student,single,basic.9y,no,yes,no,cellular,aug,wed,178,1,0,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +61,retired,married,university.degree,no,no,no,telephone,aug,wed,250,2,7,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +47,admin.,married,university.degree,no,unknown,unknown,cellular,aug,wed,288,1,10,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +27,student,single,university.degree,no,no,no,cellular,aug,wed,180,1,3,3,success,-1.7,94.027,-38.3,0.9,4991.6,yes +30,admin.,single,university.degree,no,no,no,telephone,aug,wed,156,1,999,1,failure,-1.7,94.027,-38.3,0.9,4991.6,no +59,unknown,married,unknown,no,no,no,cellular,aug,wed,198,1,6,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +28,student,single,basic.9y,no,no,yes,cellular,aug,wed,139,1,6,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +28,student,single,basic.9y,no,no,no,telephone,aug,wed,199,2,6,2,success,-1.7,94.027,-38.3,0.9,4991.6,no +18,student,single,unknown,no,yes,no,cellular,aug,wed,253,2,6,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +52,admin.,married,university.degree,no,yes,no,cellular,aug,wed,261,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no +48,blue-collar,married,basic.9y,no,no,no,cellular,aug,wed,296,1,16,3,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +27,student,single,university.degree,no,yes,no,telephone,aug,wed,153,1,0,5,success,-1.7,94.027,-38.3,0.9,4991.6,no +34,admin.,married,university.degree,no,yes,no,cellular,aug,wed,250,1,10,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +27,student,single,basic.9y,no,yes,no,cellular,aug,wed,111,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no +18,student,single,unknown,no,yes,no,cellular,aug,wed,561,1,17,2,failure,-1.7,94.027,-38.3,0.9,4991.6,yes +48,admin.,single,university.degree,no,yes,no,cellular,aug,wed,118,1,0,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes +47,admin.,married,university.degree,no,no,no,cellular,aug,wed,470,1,4,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes +30,admin.,single,university.degree,no,yes,no,cellular,aug,wed,191,1,0,2,success,-1.7,94.027,-38.3,0.9,4991.6,yes +18,student,single,unknown,no,yes,yes,telephone,aug,wed,297,1,999,0,nonexistent,-1.7,94.027,-38.3,0.9,4991.6,no +44,services,divorced,basic.6y,no,yes,no,cellular,aug,wed,153,3,0,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +30,blue-collar,single,professional.course,no,no,no,cellular,aug,wed,293,1,9,1,success,-1.7,94.027,-38.3,0.9,4991.6,yes +46,admin.,single,high.school,no,no,no,cellular,aug,thu,510,2,17,1,success,-1.7,94.027,-38.3,0.904,4991.6,no +41,admin.,divorced,high.school,no,yes,yes,cellular,aug,thu,231,2,0,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes +46,admin.,single,high.school,no,no,no,cellular,aug,thu,329,2,9,4,failure,-1.7,94.027,-38.3,0.904,4991.6,no +26,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,508,3,6,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes +46,technician,married,professional.course,no,no,no,cellular,aug,thu,382,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no +26,unemployed,single,university.degree,no,yes,no,cellular,aug,thu,203,1,3,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes +48,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,544,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +71,blue-collar,divorced,basic.4y,unknown,no,no,cellular,aug,thu,224,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +41,admin.,divorced,high.school,no,unknown,unknown,cellular,aug,thu,272,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +48,admin.,divorced,university.degree,no,no,no,cellular,aug,thu,172,3,3,6,success,-1.7,94.027,-38.3,0.904,4991.6,yes +44,admin.,single,university.degree,no,no,no,cellular,aug,thu,492,1,999,2,failure,-1.7,94.027,-38.3,0.904,4991.6,no +27,technician,single,university.degree,no,yes,no,cellular,aug,thu,250,3,999,5,failure,-1.7,94.027,-38.3,0.904,4991.6,no +47,admin.,married,high.school,no,no,no,cellular,aug,thu,374,2,16,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +31,student,single,unknown,no,yes,no,cellular,aug,thu,306,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +77,retired,married,basic.4y,no,no,no,cellular,aug,thu,318,1,9,4,failure,-1.7,94.027,-38.3,0.904,4991.6,yes +31,student,single,unknown,no,yes,no,cellular,aug,thu,375,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +41,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,324,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +30,student,single,high.school,no,no,no,cellular,aug,thu,200,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no +41,entrepreneur,married,university.degree,no,yes,no,cellular,aug,thu,736,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +71,retired,married,university.degree,no,yes,no,cellular,aug,thu,134,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +37,management,married,high.school,no,yes,no,cellular,aug,thu,633,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +46,technician,married,professional.course,no,yes,no,cellular,aug,thu,245,2,999,4,failure,-1.7,94.027,-38.3,0.904,4991.6,yes +63,retired,married,basic.4y,no,no,no,cellular,aug,thu,163,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +41,admin.,divorced,high.school,no,yes,yes,cellular,aug,thu,98,3,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +25,admin.,single,university.degree,no,no,no,cellular,aug,thu,215,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +45,admin.,married,university.degree,no,no,no,cellular,aug,thu,323,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +60,housemaid,married,basic.4y,no,no,no,cellular,aug,fri,270,4,6,4,failure,-1.7,94.027,-38.3,0.905,4991.6,no +59,retired,married,professional.course,no,yes,no,cellular,aug,fri,303,2,3,2,success,-1.7,94.027,-38.3,0.905,4991.6,yes +72,housemaid,married,basic.6y,unknown,yes,no,cellular,aug,fri,137,1,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,no +32,entrepreneur,single,professional.course,no,yes,no,telephone,aug,fri,47,1,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,no +41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,258,2,6,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes +27,admin.,single,university.degree,no,no,no,cellular,aug,fri,562,2,3,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes +59,retired,married,professional.course,no,no,no,cellular,aug,fri,218,3,3,1,success,-1.7,94.027,-38.3,0.905,4991.6,yes +41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,178,1,6,2,success,-1.7,94.027,-38.3,0.905,4991.6,yes +41,admin.,divorced,high.school,no,yes,no,cellular,aug,fri,174,1,4,3,failure,-1.7,94.027,-38.3,0.905,4991.6,yes +77,management,married,unknown,no,yes,no,cellular,aug,fri,160,1,3,6,success,-1.7,94.027,-38.3,0.905,4991.6,yes +41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,252,1,999,1,failure,-1.7,94.027,-38.3,0.905,4991.6,no +41,technician,divorced,university.degree,no,yes,no,cellular,aug,fri,366,2,6,3,success,-1.7,94.027,-38.3,0.905,4991.6,yes +27,admin.,single,university.degree,no,yes,no,cellular,aug,fri,177,2,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes +24,admin.,single,university.degree,no,yes,yes,cellular,aug,fri,101,5,6,2,success,-1.7,94.027,-38.3,0.905,4991.6,no +24,admin.,single,university.degree,no,no,no,cellular,aug,fri,744,1,999,2,failure,-1.7,94.027,-38.3,0.905,4991.6,yes +64,retired,married,basic.4y,no,unknown,unknown,telephone,aug,fri,245,3,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes +64,unknown,married,unknown,no,yes,no,telephone,aug,fri,239,4,999,0,nonexistent,-1.7,94.027,-38.3,0.905,4991.6,yes +30,technician,single,professional.course,no,no,no,telephone,aug,mon,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +30,self-employed,single,university.degree,no,unknown,unknown,cellular,aug,mon,148,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +26,services,single,high.school,no,no,no,telephone,aug,mon,6,1,999,3,failure,-1.7,94.027,-38.3,0.904,4991.6,no +30,self-employed,single,university.degree,no,no,no,cellular,aug,mon,370,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no +26,admin.,single,university.degree,no,no,no,telephone,aug,mon,440,5,999,2,failure,-1.7,94.027,-38.3,0.904,4991.6,no +47,management,married,university.degree,no,yes,no,cellular,aug,mon,145,3,3,2,success,-1.7,94.027,-38.3,0.904,4991.6,no +35,unemployed,married,high.school,no,yes,no,cellular,aug,mon,362,1,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +47,management,married,university.degree,no,yes,no,cellular,aug,mon,182,2,999,6,failure,-1.7,94.027,-38.3,0.904,4991.6,no +73,retired,divorced,basic.4y,unknown,yes,no,telephone,aug,mon,195,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +56,blue-collar,divorced,basic.4y,no,yes,no,telephone,aug,mon,361,1,12,4,failure,-1.7,94.027,-38.3,0.904,4991.6,no +29,services,single,university.degree,no,no,no,cellular,aug,mon,265,1,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +58,technician,married,basic.9y,no,yes,no,cellular,aug,mon,324,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +26,admin.,single,university.degree,no,no,no,telephone,aug,mon,1087,1,3,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +26,admin.,single,university.degree,no,no,no,cellular,aug,mon,242,1,6,5,success,-1.7,94.027,-38.3,0.904,4991.6,yes +53,management,married,university.degree,no,yes,no,telephone,aug,tue,97,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +55,housemaid,single,university.degree,no,yes,no,telephone,aug,tue,11,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +73,retired,divorced,basic.4y,unknown,yes,no,cellular,aug,tue,273,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no +55,admin.,divorced,high.school,no,no,no,cellular,aug,tue,245,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +25,unemployed,single,high.school,no,no,no,cellular,aug,tue,188,1,3,3,success,-1.7,94.027,-38.3,0.904,4991.6,no +58,management,married,university.degree,no,no,no,cellular,aug,tue,412,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +34,blue-collar,married,basic.9y,no,no,yes,cellular,aug,tue,447,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,yes +92,retired,married,unknown,no,no,yes,cellular,aug,tue,1064,1,3,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +19,student,single,unknown,no,no,no,cellular,aug,tue,192,1,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,no +50,admin.,single,university.degree,no,no,no,cellular,aug,tue,372,1,6,2,success,-1.7,94.027,-38.3,0.904,4991.6,yes +22,technician,single,professional.course,no,yes,no,cellular,aug,tue,122,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +65,retired,married,professional.course,no,yes,no,cellular,aug,tue,261,1,6,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes +34,admin.,single,high.school,no,yes,no,cellular,aug,tue,168,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +37,management,married,university.degree,no,yes,yes,telephone,aug,tue,365,2,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,no +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,164,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,yes +70,retired,married,basic.4y,no,yes,no,cellular,aug,tue,356,3,6,1,success,-1.7,94.027,-38.3,0.904,4991.6,yes +25,technician,single,university.degree,no,yes,no,telephone,aug,tue,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +31,admin.,married,university.degree,no,no,no,cellular,aug,tue,317,2,999,1,failure,-1.7,94.027,-38.3,0.904,4991.6,yes +55,admin.,divorced,high.school,no,yes,no,cellular,aug,tue,244,2,6,3,success,-1.7,94.027,-38.3,0.904,4991.6,yes +65,retired,married,professional.course,no,yes,no,cellular,aug,tue,170,2,999,0,nonexistent,-1.7,94.027,-38.3,0.904,4991.6,no +43,technician,married,high.school,no,yes,no,cellular,aug,wed,1363,1,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,yes +31,services,single,high.school,no,yes,no,telephone,aug,wed,61,1,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,no +61,admin.,married,university.degree,no,yes,yes,telephone,aug,wed,425,1,6,2,success,-1.7,94.027,-38.3,0.903,4991.6,yes +26,student,single,high.school,no,yes,no,cellular,aug,wed,233,1,14,1,success,-1.7,94.027,-38.3,0.903,4991.6,yes +51,blue-collar,married,basic.9y,no,yes,no,cellular,aug,wed,237,1,6,4,success,-1.7,94.027,-38.3,0.903,4991.6,yes +77,retired,married,unknown,no,no,no,cellular,aug,wed,144,8,999,2,failure,-1.7,94.027,-38.3,0.903,4991.6,no +92,retired,married,unknown,no,no,yes,cellular,aug,wed,370,1,3,4,success,-1.7,94.027,-38.3,0.903,4991.6,yes +75,retired,married,basic.4y,no,no,no,cellular,aug,wed,248,2,6,3,success,-1.7,94.027,-38.3,0.903,4991.6,yes +59,admin.,married,university.degree,no,yes,no,cellular,aug,wed,443,3,999,0,nonexistent,-1.7,94.027,-38.3,0.903,4991.6,no +35,admin.,married,university.degree,no,yes,no,cellular,aug,wed,765,2,6,3,success,-1.7,94.027,-38.3,0.903,4991.6,yes +66,admin.,divorced,university.degree,no,yes,no,cellular,aug,wed,222,3,6,2,success,-1.7,94.027,-38.3,0.903,4991.6,yes +35,admin.,married,university.degree,no,yes,yes,cellular,aug,thu,176,1,999,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no +41,admin.,married,university.degree,no,yes,no,telephone,aug,thu,345,1,9,3,failure,-1.7,94.027,-38.3,0.899,4991.6,yes +42,technician,married,professional.course,no,no,no,cellular,aug,thu,295,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +71,admin.,married,basic.4y,no,yes,no,cellular,aug,thu,192,1,999,2,failure,-1.7,94.027,-38.3,0.899,4991.6,no +67,housemaid,divorced,professional.course,no,no,no,cellular,aug,thu,350,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +60,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,176,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no +52,management,married,university.degree,no,yes,no,cellular,aug,thu,175,3,1,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes +70,technician,married,unknown,no,no,no,cellular,aug,thu,411,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +33,admin.,married,university.degree,no,no,no,cellular,aug,thu,361,1,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +51,technician,married,professional.course,no,yes,no,cellular,aug,thu,1226,3,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,yes +76,retired,married,university.degree,no,yes,no,cellular,aug,thu,504,2,6,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes +27,admin.,married,university.degree,no,no,no,cellular,aug,thu,312,3,6,1,success,-1.7,94.027,-38.3,0.899,4991.6,yes +60,blue-collar,married,basic.4y,no,yes,no,cellular,aug,thu,187,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no +33,admin.,married,university.degree,no,yes,no,cellular,aug,thu,265,1,3,3,success,-1.7,94.027,-38.3,0.899,4991.6,yes +76,retired,married,university.degree,no,no,no,cellular,aug,thu,126,1,999,1,failure,-1.7,94.027,-38.3,0.899,4991.6,no +30,admin.,single,high.school,no,no,no,telephone,aug,thu,18,1,22,1,success,-1.7,94.027,-38.3,0.899,4991.6,no +33,management,married,university.degree,no,no,no,telephone,aug,thu,201,1,6,2,success,-1.7,94.027,-38.3,0.899,4991.6,yes +52,management,married,university.degree,no,unknown,unknown,cellular,aug,thu,157,2,999,0,nonexistent,-1.7,94.027,-38.3,0.899,4991.6,no +42,blue-collar,married,basic.9y,no,yes,no,cellular,aug,fri,261,1,6,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes +25,student,single,high.school,no,yes,yes,telephone,aug,fri,461,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes +48,self-employed,divorced,university.degree,no,no,no,cellular,aug,fri,222,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes +38,entrepreneur,married,university.degree,no,yes,no,cellular,aug,fri,633,1,16,1,success,-1.7,94.027,-38.3,0.898,4991.6,yes +39,services,single,high.school,no,yes,no,cellular,aug,fri,308,6,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes +40,management,divorced,university.degree,no,no,no,cellular,aug,fri,183,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +36,services,single,university.degree,no,no,no,cellular,aug,fri,394,6,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,yes +30,admin.,single,university.degree,no,no,no,cellular,aug,fri,177,6,6,3,success,-1.7,94.027,-38.3,0.898,4991.6,yes +32,admin.,married,university.degree,no,no,no,telephone,aug,fri,75,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +48,self-employed,divorced,university.degree,no,no,no,cellular,aug,fri,166,1,999,1,failure,-1.7,94.027,-38.3,0.898,4991.6,no +28,admin.,married,university.degree,no,no,no,cellular,aug,fri,161,4,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +39,blue-collar,single,basic.4y,no,yes,yes,telephone,aug,fri,9,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +42,technician,married,university.degree,no,no,no,cellular,aug,fri,211,3,6,2,success,-1.7,94.027,-38.3,0.898,4991.6,yes +35,management,married,university.degree,no,no,no,telephone,aug,fri,12,1,999,0,nonexistent,-1.7,94.027,-38.3,0.898,4991.6,no +31,admin.,married,professional.course,no,no,no,cellular,aug,mon,318,2,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes +60,retired,married,basic.4y,no,no,no,cellular,aug,mon,143,2,15,2,failure,-1.7,94.027,-38.3,0.896,4991.6,no +34,technician,single,basic.9y,no,yes,no,cellular,aug,mon,140,3,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,no +31,admin.,single,university.degree,no,yes,no,cellular,aug,mon,239,3,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes +34,technician,single,basic.9y,no,no,no,cellular,aug,mon,205,3,6,3,success,-1.7,94.027,-38.3,0.896,4991.6,yes +45,technician,married,university.degree,no,no,no,cellular,aug,mon,111,2,999,1,failure,-1.7,94.027,-38.3,0.896,4991.6,no +34,technician,single,basic.9y,no,no,no,cellular,aug,mon,200,2,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,no +44,retired,single,high.school,no,no,no,cellular,aug,mon,2035,4,999,0,nonexistent,-1.7,94.027,-38.3,0.896,4991.6,yes +33,student,married,professional.course,no,yes,no,cellular,aug,mon,265,3,3,4,success,-1.7,94.027,-38.3,0.896,4991.6,yes +45,admin.,divorced,basic.9y,no,yes,yes,telephone,aug,tue,8,1,999,0,nonexistent,-1.7,94.027,-38.3,0.895,4991.6,no +34,entrepreneur,married,professional.course,no,no,no,telephone,aug,tue,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.895,4991.6,no +58,self-employed,married,university.degree,no,no,no,cellular,aug,tue,326,4,6,3,success,-1.7,94.027,-38.3,0.895,4991.6,yes +26,student,single,high.school,no,no,no,cellular,aug,wed,95,3,999,3,failure,-1.7,94.027,-38.3,0.894,4991.6,no +54,management,married,high.school,no,no,no,cellular,aug,wed,171,3,999,1,failure,-1.7,94.027,-38.3,0.894,4991.6,no +36,admin.,married,university.degree,no,no,no,cellular,aug,wed,212,7,6,1,success,-1.7,94.027,-38.3,0.894,4991.6,no +40,admin.,married,high.school,no,yes,no,telephone,aug,thu,173,6,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no +39,admin.,single,university.degree,no,yes,yes,telephone,aug,fri,45,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +33,admin.,divorced,high.school,no,no,no,telephone,aug,fri,107,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +34,admin.,single,high.school,no,unknown,unknown,telephone,aug,fri,22,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +29,services,single,university.degree,no,yes,no,telephone,aug,fri,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +49,admin.,married,university.degree,no,yes,no,telephone,aug,fri,4,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +45,self-employed,divorced,professional.course,no,yes,no,telephone,aug,mon,5,1,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no +30,admin.,single,professional.course,no,no,no,telephone,aug,mon,10,1,999,0,nonexistent,-1.7,94.027,-38.3,0.891,4991.6,no +72,retired,divorced,university.degree,no,no,no,cellular,aug,mon,220,16,999,1,failure,-1.7,94.027,-38.3,0.891,4991.6,no +26,blue-collar,married,professional.course,no,unknown,unknown,telephone,aug,tue,11,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no +33,unemployed,single,basic.9y,no,yes,no,telephone,aug,tue,5,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no +22,student,single,basic.9y,no,no,no,telephone,aug,tue,26,1,999,0,nonexistent,-1.7,94.027,-38.3,0.889,4991.6,no +28,student,single,university.degree,no,yes,no,telephone,aug,wed,6,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +30,technician,married,professional.course,no,no,no,telephone,aug,wed,5,1,0,4,success,-1.7,94.027,-38.3,0.89,4991.6,no +35,entrepreneur,married,basic.9y,no,yes,no,telephone,aug,wed,17,1,999,0,nonexistent,-1.7,94.027,-38.3,0.89,4991.6,no +58,blue-collar,married,high.school,no,yes,no,telephone,aug,fri,4,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no +27,admin.,single,high.school,no,no,no,telephone,aug,fri,3785,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no +49,management,divorced,university.degree,no,yes,no,telephone,aug,mon,26,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no +21,services,single,unknown,no,yes,no,telephone,aug,mon,28,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no +27,admin.,married,high.school,no,yes,no,telephone,aug,mon,36,1,999,0,nonexistent,-1.7,94.027,-38.3,0.888,4991.6,no +30,admin.,single,university.degree,no,yes,no,cellular,aug,tue,193,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no +30,admin.,single,university.degree,no,no,no,cellular,aug,tue,343,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes +19,student,single,high.school,no,unknown,unknown,cellular,aug,tue,1120,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes +33,blue-collar,married,professional.course,no,yes,no,cellular,aug,tue,253,4,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,yes +31,admin.,single,high.school,no,no,no,cellular,aug,tue,241,1,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,no +76,retired,divorced,basic.4y,no,no,no,cellular,aug,tue,185,1,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,yes +60,retired,married,high.school,no,yes,no,cellular,aug,tue,443,2,999,2,failure,-1.7,94.027,-38.3,0.886,4991.6,yes +56,retired,married,university.degree,no,no,no,cellular,aug,tue,634,3,999,1,failure,-1.7,94.027,-38.3,0.886,4991.6,yes +58,retired,divorced,basic.4y,no,no,no,telephone,aug,tue,34,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no +34,blue-collar,married,basic.9y,no,yes,no,cellular,aug,tue,298,2,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no +44,admin.,single,high.school,no,yes,no,telephone,aug,tue,27,1,999,0,nonexistent,-1.7,94.027,-38.3,0.886,4991.6,no +27,admin.,married,university.degree,no,yes,no,cellular,aug,tue,415,5,12,1,success,-1.7,94.027,-38.3,0.886,4991.6,yes +64,retired,married,professional.course,no,yes,no,cellular,sep,wed,222,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes +72,retired,married,professional.course,no,no,no,cellular,sep,wed,1,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no +34,admin.,married,university.degree,no,yes,no,cellular,sep,wed,161,1,18,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no +69,retired,married,high.school,no,yes,yes,cellular,sep,wed,840,1,6,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes +33,technician,married,professional.course,no,yes,no,cellular,sep,wed,269,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes +37,admin.,married,university.degree,no,yes,no,cellular,sep,wed,729,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,yes +24,student,single,unknown,no,yes,no,cellular,sep,wed,300,1,5,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes +24,student,single,unknown,no,yes,no,cellular,sep,wed,222,1,17,4,failure,-1.1,94.199,-37.5,0.886,4963.6,no +60,admin.,divorced,professional.course,no,yes,no,cellular,sep,wed,481,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,yes +71,retired,married,high.school,no,no,no,cellular,sep,wed,222,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +59,admin.,married,university.degree,no,no,yes,cellular,sep,wed,193,1,3,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes +45,blue-collar,single,high.school,no,yes,yes,cellular,sep,wed,327,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes +24,student,single,unknown,no,yes,no,cellular,sep,wed,191,2,999,3,failure,-1.1,94.199,-37.5,0.886,4963.6,no +24,student,single,unknown,no,yes,yes,telephone,sep,wed,663,1,10,1,success,-1.1,94.199,-37.5,0.886,4963.6,no +37,admin.,married,university.degree,no,no,no,cellular,sep,wed,265,2,6,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes +70,retired,divorced,professional.course,no,yes,no,telephone,sep,wed,380,4,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +34,admin.,married,university.degree,no,yes,no,cellular,sep,wed,691,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +29,self-employed,single,university.degree,no,yes,yes,cellular,sep,wed,95,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +24,student,single,unknown,no,yes,no,cellular,sep,wed,367,1,999,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no +37,admin.,married,university.degree,no,no,no,telephone,sep,wed,150,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +22,student,single,high.school,no,no,no,cellular,sep,wed,369,3,5,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes +45,management,married,university.degree,no,no,no,cellular,sep,wed,293,2,3,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes +81,retired,divorced,basic.4y,no,no,no,cellular,sep,wed,532,2,7,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes +33,technician,single,professional.course,no,no,no,cellular,sep,wed,425,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +71,retired,married,high.school,no,yes,no,telephone,sep,wed,232,1,999,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no +30,management,married,university.degree,no,yes,no,telephone,sep,wed,20,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +35,services,married,university.degree,no,yes,no,telephone,sep,thu,8,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no +58,retired,married,basic.4y,no,yes,no,telephone,sep,thu,7,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no +44,blue-collar,married,basic.6y,no,yes,no,telephone,sep,thu,10,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no +26,admin.,single,university.degree,no,yes,no,telephone,sep,thu,4,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no +47,management,married,university.degree,no,yes,no,cellular,sep,thu,281,2,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no +55,management,divorced,university.degree,no,yes,no,cellular,sep,thu,1440,1,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,yes +39,management,married,university.degree,no,yes,no,cellular,sep,thu,291,3,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,yes +60,retired,married,university.degree,no,no,no,cellular,sep,thu,529,2,6,1,success,-1.1,94.199,-37.5,0.884,4963.6,yes +32,services,single,university.degree,no,no,no,cellular,sep,thu,128,3,999,2,failure,-1.1,94.199,-37.5,0.884,4963.6,no +38,technician,married,university.degree,no,yes,no,telephone,sep,thu,173,1,999,3,failure,-1.1,94.199,-37.5,0.884,4963.6,no +47,management,married,university.degree,no,no,no,cellular,sep,thu,362,1,17,2,success,-1.1,94.199,-37.5,0.884,4963.6,yes +57,admin.,married,basic.9y,no,no,no,cellular,sep,thu,114,2,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no +51,technician,married,university.degree,no,yes,no,cellular,sep,thu,97,6,6,4,failure,-1.1,94.199,-37.5,0.884,4963.6,no +78,retired,divorced,high.school,no,no,no,cellular,sep,thu,238,1,999,2,failure,-1.1,94.199,-37.5,0.884,4963.6,no +32,admin.,single,university.degree,no,no,no,cellular,sep,thu,154,1,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,no +60,retired,married,university.degree,no,no,no,cellular,sep,thu,799,2,999,0,nonexistent,-1.1,94.199,-37.5,0.884,4963.6,yes +32,services,single,university.degree,no,yes,no,cellular,sep,thu,404,1,6,3,success,-1.1,94.199,-37.5,0.884,4963.6,yes +32,admin.,single,university.degree,no,yes,no,cellular,sep,thu,150,2,10,3,success,-1.1,94.199,-37.5,0.884,4963.6,yes +39,management,married,university.degree,no,yes,yes,cellular,sep,thu,206,7,999,1,failure,-1.1,94.199,-37.5,0.884,4963.6,no +43,unemployed,married,basic.9y,no,no,no,cellular,sep,fri,270,2,9,1,success,-1.1,94.199,-37.5,0.883,4963.6,yes +67,retired,married,professional.course,no,no,no,cellular,sep,fri,116,2,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no +49,admin.,married,university.degree,no,no,no,cellular,sep,fri,110,6,999,3,failure,-1.1,94.199,-37.5,0.883,4963.6,no +57,management,married,university.degree,no,no,no,cellular,sep,fri,277,2,6,2,success,-1.1,94.199,-37.5,0.883,4963.6,yes +59,services,married,professional.course,no,yes,no,cellular,sep,fri,251,3,2,4,success,-1.1,94.199,-37.5,0.883,4963.6,no +51,unemployed,married,high.school,no,yes,yes,cellular,sep,fri,240,3,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no +31,admin.,single,high.school,no,no,no,cellular,sep,fri,252,2,3,2,success,-1.1,94.199,-37.5,0.883,4963.6,yes +34,technician,married,professional.course,no,yes,yes,cellular,sep,fri,120,1,6,3,success,-1.1,94.199,-37.5,0.883,4963.6,no +30,technician,single,professional.course,no,yes,no,cellular,sep,fri,789,2,999,0,nonexistent,-1.1,94.199,-37.5,0.883,4963.6,no +34,technician,married,professional.course,no,unknown,unknown,cellular,sep,fri,126,1,6,4,success,-1.1,94.199,-37.5,0.883,4963.6,no +51,unemployed,married,high.school,no,unknown,unknown,telephone,sep,fri,228,1,999,2,failure,-1.1,94.199,-37.5,0.883,4963.6,no +46,admin.,married,basic.9y,no,unknown,unknown,cellular,sep,fri,490,3,999,4,failure,-1.1,94.199,-37.5,0.883,4963.6,no +30,admin.,single,high.school,no,no,no,cellular,sep,fri,219,3,6,1,success,-1.1,94.199,-37.5,0.883,4963.6,yes +75,retired,married,basic.9y,no,no,no,telephone,sep,fri,543,9,999,1,failure,-1.1,94.199,-37.5,0.883,4963.6,no +51,technician,married,professional.course,no,yes,no,cellular,sep,mon,841,2,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,yes +28,admin.,single,university.degree,no,yes,no,cellular,sep,mon,387,2,6,3,success,-1.1,94.199,-37.5,0.882,4963.6,no +25,student,single,university.degree,no,yes,yes,telephone,sep,mon,131,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +34,unemployed,married,university.degree,no,no,no,cellular,sep,mon,109,3,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no +22,admin.,single,university.degree,no,yes,no,cellular,sep,mon,194,2,999,3,failure,-1.1,94.199,-37.5,0.882,4963.6,yes +33,admin.,married,university.degree,no,no,no,cellular,sep,mon,369,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,yes +20,blue-collar,single,basic.4y,no,no,no,telephone,sep,mon,36,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +43,entrepreneur,married,university.degree,no,no,no,cellular,sep,mon,255,1,3,1,success,-1.1,94.199,-37.5,0.882,4963.6,yes +58,entrepreneur,married,high.school,no,no,no,cellular,sep,mon,145,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,no +88,retired,married,basic.4y,no,no,no,cellular,sep,mon,127,2,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +58,entrepreneur,married,high.school,no,yes,no,cellular,sep,mon,198,1,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no +34,services,divorced,high.school,no,yes,no,telephone,sep,mon,11,1,999,1,failure,-1.1,94.199,-37.5,0.882,4963.6,no +76,retired,married,basic.4y,no,yes,no,cellular,sep,mon,136,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,no +34,unemployed,married,university.degree,no,yes,no,telephone,sep,mon,113,5,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +35,admin.,married,high.school,no,no,no,cellular,sep,mon,415,1,999,2,failure,-1.1,94.199,-37.5,0.882,4963.6,yes +32,admin.,married,high.school,no,unknown,unknown,cellular,sep,mon,908,1,6,4,success,-1.1,94.199,-37.5,0.882,4963.6,yes +34,admin.,married,university.degree,no,no,yes,cellular,sep,mon,250,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,yes +27,services,single,high.school,no,no,yes,telephone,sep,mon,35,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +34,admin.,married,university.degree,no,yes,no,cellular,sep,mon,125,2,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +88,retired,married,basic.4y,no,yes,no,cellular,sep,mon,213,7,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +30,services,single,university.degree,no,yes,no,telephone,sep,mon,8,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +47,technician,married,basic.6y,no,no,no,cellular,sep,mon,164,2,6,3,success,-1.1,94.199,-37.5,0.882,4963.6,no +24,blue-collar,single,high.school,no,yes,no,cellular,sep,mon,202,1,999,3,failure,-1.1,94.199,-37.5,0.882,4963.6,no +39,blue-collar,married,basic.9y,no,yes,no,cellular,sep,mon,791,3,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +88,retired,married,basic.4y,no,no,no,cellular,sep,mon,272,1,999,0,nonexistent,-1.1,94.199,-37.5,0.882,4963.6,no +66,retired,married,unknown,no,no,no,cellular,sep,tue,667,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no +85,retired,married,basic.4y,no,no,no,cellular,sep,tue,728,1,3,2,success,-1.1,94.199,-37.5,0.881,4963.6,yes +89,retired,divorced,basic.4y,no,yes,no,cellular,sep,tue,314,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes +48,services,married,high.school,no,no,no,telephone,sep,tue,11,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no +36,admin.,married,university.degree,no,yes,no,cellular,sep,tue,127,1,999,2,failure,-1.1,94.199,-37.5,0.881,4963.6,no +66,retired,married,unknown,no,yes,no,cellular,sep,tue,1394,2,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes +26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,386,3,6,3,success,-1.1,94.199,-37.5,0.881,4963.6,yes +36,management,divorced,university.degree,no,no,no,cellular,sep,tue,190,3,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes +36,management,divorced,university.degree,no,yes,no,cellular,sep,tue,337,1,6,1,success,-1.1,94.199,-37.5,0.881,4963.6,yes +35,self-employed,single,university.degree,no,yes,yes,cellular,sep,tue,179,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no +26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,355,1,999,1,failure,-1.1,94.199,-37.5,0.881,4963.6,no +26,admin.,single,university.degree,no,yes,no,cellular,sep,tue,201,1,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes +39,entrepreneur,married,university.degree,no,yes,no,cellular,sep,tue,120,3,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no +66,retired,married,unknown,no,no,no,cellular,sep,tue,332,5,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,no +86,retired,married,basic.4y,no,yes,no,cellular,sep,tue,288,3,999,0,nonexistent,-1.1,94.199,-37.5,0.881,4963.6,yes +42,admin.,single,high.school,no,no,no,cellular,sep,wed,638,1,14,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes +44,management,married,university.degree,no,no,no,cellular,sep,wed,210,1,3,3,success,-1.1,94.199,-37.5,0.88,4963.6,yes +45,unemployed,married,high.school,no,no,no,cellular,sep,wed,213,4,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,no +38,management,married,university.degree,no,no,no,cellular,sep,wed,149,2,999,1,failure,-1.1,94.199,-37.5,0.88,4963.6,no +67,unknown,divorced,unknown,unknown,yes,no,cellular,sep,wed,220,2,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,yes +44,management,married,university.degree,no,no,yes,cellular,sep,wed,127,1,999,2,failure,-1.1,94.199,-37.5,0.88,4963.6,no +30,management,married,university.degree,no,unknown,unknown,cellular,sep,wed,210,1,999,1,failure,-1.1,94.199,-37.5,0.88,4963.6,no +46,services,married,university.degree,no,yes,no,cellular,sep,wed,630,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes +32,blue-collar,married,basic.4y,no,no,no,cellular,sep,wed,830,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes +31,student,single,unknown,no,unknown,unknown,cellular,sep,wed,708,2,6,2,success,-1.1,94.199,-37.5,0.88,4963.6,yes +27,student,divorced,unknown,no,no,no,telephone,sep,wed,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no +28,management,single,university.degree,no,yes,no,cellular,sep,wed,358,3,6,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes +32,blue-collar,married,basic.4y,no,no,no,telephone,sep,wed,606,3,3,4,success,-1.1,94.199,-37.5,0.88,4963.6,yes +45,unemployed,married,high.school,no,no,no,cellular,sep,wed,1081,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,yes +26,admin.,single,university.degree,no,yes,no,telephone,sep,wed,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no +80,retired,divorced,basic.4y,no,yes,no,telephone,sep,thu,378,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +38,technician,single,professional.course,no,yes,no,cellular,sep,thu,284,3,22,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +83,retired,divorced,basic.4y,no,yes,no,cellular,sep,thu,405,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +29,admin.,single,high.school,no,yes,no,cellular,sep,thu,216,1,6,2,success,-1.1,94.199,-37.5,0.879,4963.6,yes +60,admin.,married,professional.course,no,yes,yes,cellular,sep,thu,261,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +45,unemployed,married,professional.course,unknown,no,no,telephone,sep,thu,1405,1,6,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +45,unemployed,married,professional.course,unknown,no,no,cellular,sep,thu,679,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +27,technician,single,university.degree,no,yes,no,cellular,sep,thu,404,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +27,technician,single,university.degree,no,yes,no,cellular,sep,thu,530,1,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +38,technician,single,professional.course,no,no,no,cellular,sep,thu,430,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,married,high.school,no,yes,no,cellular,sep,thu,202,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +58,technician,married,professional.course,no,yes,no,cellular,sep,thu,156,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +37,admin.,single,university.degree,no,no,no,cellular,sep,thu,209,1,3,4,success,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,sep,thu,761,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +65,technician,married,professional.course,no,no,no,cellular,sep,thu,263,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +26,technician,single,basic.9y,no,yes,no,cellular,sep,thu,305,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +34,admin.,single,high.school,no,no,no,cellular,sep,thu,204,1,12,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +27,admin.,single,university.degree,no,no,no,cellular,sep,thu,167,3,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +38,technician,single,professional.course,no,yes,no,cellular,sep,thu,386,2,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +83,retired,divorced,basic.4y,no,no,no,cellular,sep,thu,268,1,9,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +38,services,single,high.school,no,yes,no,telephone,sep,thu,1,1,9,3,success,-1.1,94.199,-37.5,0.879,4963.6,no +24,technician,single,professional.course,no,yes,no,cellular,sep,fri,1042,5,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,yes +29,admin.,single,university.degree,no,no,no,cellular,sep,fri,110,4,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,no +64,retired,divorced,basic.4y,no,yes,yes,telephone,sep,fri,211,2,6,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes +29,technician,single,professional.course,no,unknown,unknown,cellular,sep,fri,255,1,3,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes +38,services,single,high.school,no,no,no,cellular,sep,fri,256,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes +28,services,single,high.school,no,yes,yes,telephone,sep,fri,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +31,student,single,unknown,no,yes,no,telephone,sep,mon,69,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +32,technician,married,university.degree,no,no,no,cellular,sep,mon,175,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +27,management,single,university.degree,no,no,no,cellular,sep,mon,303,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +69,retired,married,basic.4y,no,no,no,cellular,sep,mon,258,3,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,no +29,technician,single,professional.course,no,yes,no,cellular,sep,mon,157,7,3,5,success,-1.1,94.199,-37.5,0.879,4963.6,no +23,student,single,basic.9y,no,yes,yes,cellular,sep,mon,218,3,6,2,success,-1.1,94.199,-37.5,0.879,4963.6,yes +23,student,single,basic.9y,no,yes,no,cellular,sep,mon,502,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +29,technician,single,professional.course,no,no,no,cellular,sep,mon,273,3,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +82,retired,married,university.degree,unknown,no,no,cellular,sep,mon,81,3,3,4,success,-1.1,94.199,-37.5,0.879,4963.6,no +71,retired,married,high.school,no,no,no,cellular,sep,mon,363,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +33,services,married,professional.course,no,no,no,telephone,sep,mon,5,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +31,blue-collar,single,basic.9y,no,yes,no,telephone,sep,mon,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +31,services,single,high.school,no,no,no,telephone,sep,mon,10,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +27,admin.,single,university.degree,no,yes,no,telephone,sep,mon,13,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +50,housemaid,divorced,basic.4y,no,no,no,telephone,sep,tue,57,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no +57,admin.,divorced,high.school,no,no,no,cellular,sep,tue,473,1,3,5,success,-1.1,94.199,-37.5,0.877,4963.6,yes +30,technician,single,professional.course,no,no,no,cellular,sep,tue,275,1,999,5,failure,-1.1,94.199,-37.5,0.877,4963.6,no +21,student,single,unknown,no,no,no,telephone,sep,tue,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no +25,management,single,university.degree,no,no,no,telephone,sep,tue,5,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no +30,technician,single,professional.course,no,no,no,cellular,sep,tue,706,1,6,1,success,-1.1,94.199,-37.5,0.877,4963.6,no +84,retired,divorced,unknown,unknown,no,no,cellular,sep,tue,333,1,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes +39,management,married,university.degree,no,yes,yes,cellular,sep,tue,358,2,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes +82,housemaid,married,basic.4y,no,no,no,telephone,sep,tue,279,3,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes +30,technician,single,professional.course,no,no,no,cellular,sep,tue,221,2,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,yes +86,retired,married,unknown,unknown,yes,yes,cellular,sep,tue,211,1,7,4,success,-1.1,94.199,-37.5,0.877,4963.6,yes +32,unemployed,married,high.school,no,no,no,telephone,sep,tue,6,1,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,no +34,admin.,married,professional.course,no,yes,yes,cellular,sep,tue,409,1,999,1,failure,-1.1,94.199,-37.5,0.877,4963.6,yes +34,admin.,married,professional.course,no,no,no,cellular,sep,tue,230,1,3,3,success,-1.1,94.199,-37.5,0.877,4963.6,yes +31,admin.,single,university.degree,no,yes,yes,cellular,sep,tue,194,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes +53,management,divorced,university.degree,no,no,no,cellular,sep,tue,404,2,3,2,success,-1.1,94.199,-37.5,0.877,4963.6,yes +61,management,married,professional.course,no,no,no,cellular,sep,tue,380,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,no +30,technician,single,professional.course,no,unknown,unknown,telephone,sep,tue,808,1,12,2,failure,-1.1,94.199,-37.5,0.877,4963.6,yes +32,student,single,high.school,no,no,no,cellular,sep,tue,407,2,3,1,success,-1.1,94.199,-37.5,0.877,4963.6,no +86,retired,married,unknown,unknown,yes,no,cellular,sep,tue,340,1,999,0,nonexistent,-1.1,94.199,-37.5,0.877,4963.6,yes +24,student,single,high.school,no,yes,yes,cellular,sep,wed,251,2,6,2,success,-1.1,94.199,-37.5,0.876,4963.6,yes +52,admin.,married,professional.course,no,no,yes,cellular,sep,wed,506,3,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes +60,retired,married,high.school,no,no,no,cellular,sep,wed,1640,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes +19,student,single,basic.4y,no,yes,no,cellular,sep,wed,396,2,6,3,success,-1.1,94.199,-37.5,0.876,4963.6,yes +36,management,married,university.degree,no,unknown,unknown,cellular,sep,wed,331,1,6,4,failure,-1.1,94.199,-37.5,0.876,4963.6,yes +33,technician,married,university.degree,no,yes,no,telephone,sep,wed,161,1,999,1,failure,-1.1,94.199,-37.5,0.876,4963.6,no +23,student,single,professional.course,no,yes,no,cellular,sep,wed,316,1,8,2,success,-1.1,94.199,-37.5,0.876,4963.6,yes +60,retired,married,high.school,no,no,no,cellular,sep,wed,200,1,6,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes +52,admin.,married,professional.course,no,no,no,cellular,sep,wed,953,2,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes +45,admin.,divorced,university.degree,no,no,yes,telephone,sep,wed,173,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no +39,entrepreneur,married,professional.course,no,no,no,telephone,sep,wed,511,3,6,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes +33,technician,married,university.degree,no,yes,no,cellular,sep,wed,110,1,999,1,failure,-1.1,94.199,-37.5,0.876,4963.6,no +33,technician,married,university.degree,no,no,no,cellular,sep,wed,216,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes +23,student,single,professional.course,no,no,no,cellular,sep,wed,213,2,15,1,success,-1.1,94.199,-37.5,0.876,4963.6,yes +34,admin.,married,high.school,no,no,yes,cellular,sep,wed,214,2,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no +35,admin.,married,university.degree,no,yes,no,telephone,sep,wed,7,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no +19,student,single,basic.6y,no,yes,no,cellular,sep,thu,161,2,6,4,success,-1.1,94.199,-37.5,0.879,4963.6,yes +29,technician,single,professional.course,no,no,yes,telephone,sep,thu,251,2,18,1,success,-1.1,94.199,-37.5,0.879,4963.6,no +37,admin.,married,university.degree,no,no,yes,cellular,sep,thu,173,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +36,unemployed,single,high.school,no,yes,no,cellular,sep,thu,225,1,3,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +82,retired,divorced,basic.4y,no,yes,no,cellular,sep,thu,143,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +25,student,single,high.school,no,yes,no,cellular,sep,thu,574,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +41,admin.,married,unknown,no,yes,no,cellular,sep,thu,228,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +31,admin.,married,university.degree,no,yes,no,cellular,sep,thu,193,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +33,technician,single,university.degree,no,yes,no,cellular,sep,thu,463,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +23,admin.,single,university.degree,no,no,no,cellular,sep,thu,270,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +24,admin.,single,university.degree,no,no,no,cellular,sep,thu,303,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +56,admin.,married,basic.9y,no,yes,yes,cellular,sep,thu,319,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +77,retired,married,basic.4y,no,yes,no,cellular,sep,thu,190,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,married,university.degree,no,yes,no,cellular,sep,thu,234,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +33,technician,married,unknown,no,yes,yes,cellular,sep,thu,414,1,9,3,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +19,student,single,basic.6y,no,yes,yes,cellular,sep,thu,452,5,13,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +38,admin.,married,university.degree,no,no,no,cellular,sep,thu,79,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +29,admin.,married,high.school,no,yes,no,cellular,sep,thu,147,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +23,student,single,basic.9y,no,yes,no,cellular,sep,thu,954,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +30,technician,single,university.degree,no,no,no,cellular,sep,thu,327,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +36,technician,married,university.degree,no,unknown,unknown,cellular,sep,thu,1334,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +34,technician,single,university.degree,no,no,no,cellular,sep,fri,152,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +34,technician,single,university.degree,no,yes,no,cellular,sep,fri,294,4,10,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +34,technician,single,university.degree,no,no,no,cellular,sep,fri,285,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +26,technician,single,university.degree,no,no,no,cellular,sep,fri,374,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +41,management,divorced,university.degree,no,no,no,cellular,sep,fri,164,5,3,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +36,technician,married,university.degree,no,yes,no,cellular,sep,fri,328,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +26,technician,single,university.degree,no,yes,no,cellular,sep,fri,284,3,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +34,technician,single,university.degree,no,no,no,cellular,sep,fri,155,4,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +34,technician,single,university.degree,no,no,yes,telephone,sep,fri,231,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +31,services,single,high.school,no,yes,no,cellular,sep,fri,336,2,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +25,student,single,high.school,no,no,no,telephone,sep,mon,185,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,yes +48,housemaid,married,basic.4y,no,yes,no,telephone,sep,mon,9,1,999,0,nonexistent,-1.1,94.199,-37.5,0.876,4963.6,no +55,unemployed,married,basic.4y,no,yes,no,telephone,sep,tue,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +50,management,married,university.degree,no,no,no,telephone,sep,tue,84,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +38,blue-collar,single,high.school,no,yes,no,cellular,sep,wed,263,1,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +41,unemployed,married,high.school,no,yes,yes,cellular,sep,wed,175,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,married,university.degree,no,no,no,cellular,sep,wed,208,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,married,university.degree,no,no,yes,cellular,sep,wed,397,1,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +33,technician,married,professional.course,no,no,no,cellular,sep,wed,569,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +32,technician,married,basic.9y,no,yes,no,cellular,sep,wed,155,1,6,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +32,technician,married,basic.9y,no,no,no,cellular,sep,wed,183,1,6,5,success,-1.1,94.199,-37.5,0.879,4963.6,yes +41,unemployed,married,high.school,no,no,no,cellular,sep,wed,182,1,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +33,admin.,married,university.degree,no,yes,yes,telephone,sep,wed,396,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +50,management,married,university.degree,no,no,no,cellular,sep,thu,718,4,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,no +28,blue-collar,single,university.degree,no,yes,no,cellular,sep,thu,62,2,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no +37,admin.,married,high.school,no,yes,no,cellular,sep,thu,155,1,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no +26,self-employed,single,university.degree,no,yes,no,cellular,sep,thu,318,1,6,4,success,-1.1,94.199,-37.5,0.878,4963.6,no +28,blue-collar,single,university.degree,no,unknown,unknown,cellular,sep,thu,744,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes +31,technician,married,university.degree,no,no,no,cellular,sep,thu,261,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +29,admin.,single,university.degree,no,yes,no,cellular,sep,thu,180,2,8,2,success,-1.1,94.199,-37.5,0.878,4963.6,no +26,self-employed,single,university.degree,no,yes,no,cellular,sep,thu,333,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +22,services,single,professional.course,no,yes,no,cellular,sep,thu,84,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no +58,admin.,married,high.school,no,no,no,cellular,sep,thu,337,1,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes +42,admin.,single,high.school,no,no,no,cellular,sep,thu,209,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes +23,student,single,high.school,no,no,yes,cellular,sep,thu,409,2,3,2,success,-1.1,94.199,-37.5,0.878,4963.6,yes +21,student,single,unknown,no,no,no,cellular,sep,thu,145,1,999,1,failure,-1.1,94.199,-37.5,0.878,4963.6,no +53,technician,married,university.degree,no,no,no,cellular,sep,thu,156,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes +30,housemaid,single,university.degree,no,no,no,cellular,sep,thu,103,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +31,technician,married,university.degree,no,no,no,cellular,sep,thu,244,1,3,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes +35,technician,married,professional.course,no,yes,no,cellular,sep,thu,317,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no +33,admin.,married,university.degree,no,yes,no,cellular,sep,thu,272,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,yes +35,technician,married,professional.course,no,yes,no,cellular,sep,thu,447,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no +54,admin.,divorced,university.degree,no,yes,no,cellular,sep,thu,112,1,999,2,failure,-1.1,94.199,-37.5,0.878,4963.6,no +35,technician,married,professional.course,no,yes,no,cellular,sep,thu,390,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +33,admin.,married,university.degree,no,yes,no,telephone,sep,thu,217,2,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +30,services,single,high.school,no,yes,no,cellular,sep,thu,405,1,999,3,failure,-1.1,94.199,-37.5,0.878,4963.6,no +21,student,single,unknown,no,no,no,cellular,sep,thu,150,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +32,technician,married,high.school,no,no,no,cellular,sep,thu,245,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +58,admin.,married,university.degree,no,no,no,cellular,sep,thu,272,4,6,1,success,-1.1,94.199,-37.5,0.878,4963.6,yes +29,admin.,single,high.school,no,no,no,cellular,sep,thu,134,1,999,0,nonexistent,-1.1,94.199,-37.5,0.878,4963.6,no +28,management,single,university.degree,no,no,no,cellular,sep,fri,133,4,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +30,technician,single,university.degree,no,yes,no,cellular,sep,fri,173,2,15,4,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +36,admin.,divorced,university.degree,no,yes,yes,cellular,sep,fri,157,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +23,student,single,university.degree,no,yes,no,cellular,sep,fri,349,2,999,4,failure,-1.1,94.199,-37.5,0.879,4963.6,no +31,admin.,married,university.degree,no,yes,no,cellular,sep,fri,232,2,13,1,success,-1.1,94.199,-37.5,0.879,4963.6,yes +33,unemployed,single,unknown,no,yes,no,cellular,sep,fri,224,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,yes +33,technician,single,professional.course,no,yes,no,cellular,sep,fri,246,9,999,2,failure,-1.1,94.199,-37.5,0.879,4963.6,no +26,technician,single,professional.course,no,yes,no,cellular,sep,fri,249,1,3,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +33,technician,single,professional.course,no,yes,no,cellular,sep,fri,395,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +25,student,single,unknown,no,no,no,cellular,sep,fri,732,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +60,retired,married,professional.course,no,no,no,telephone,sep,fri,618,1,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +51,admin.,divorced,high.school,no,yes,no,telephone,sep,fri,19,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +27,admin.,single,high.school,no,no,no,telephone,sep,mon,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +31,admin.,single,high.school,no,no,no,cellular,sep,mon,262,5,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,yes +34,technician,married,professional.course,no,yes,no,telephone,sep,mon,157,5,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +48,services,married,basic.6y,no,no,no,cellular,sep,mon,188,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +32,admin.,married,high.school,no,no,no,cellular,sep,mon,169,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +30,student,single,professional.course,no,unknown,unknown,cellular,sep,mon,132,4,6,3,success,-1.1,94.199,-37.5,0.879,4963.6,no +32,admin.,single,university.degree,no,yes,no,cellular,sep,mon,290,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +32,admin.,married,high.school,no,yes,no,cellular,sep,mon,156,2,999,1,failure,-1.1,94.199,-37.5,0.879,4963.6,no +30,student,single,professional.course,no,yes,no,telephone,sep,mon,379,3,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +30,student,single,professional.course,no,yes,no,cellular,sep,mon,1616,4,19,1,success,-1.1,94.199,-37.5,0.879,4963.6,no +30,student,single,professional.course,no,no,no,cellular,sep,mon,162,2,9,2,failure,-1.1,94.199,-37.5,0.879,4963.6,no +32,admin.,married,high.school,no,yes,no,cellular,sep,mon,1298,1,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +48,unemployed,married,professional.course,no,yes,no,cellular,sep,mon,315,2,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,yes +32,admin.,single,university.degree,no,yes,no,cellular,sep,mon,990,4,999,0,nonexistent,-1.1,94.199,-37.5,0.879,4963.6,no +32,admin.,single,university.degree,no,yes,no,telephone,sep,tue,6,1,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no +30,student,single,professional.course,no,no,no,cellular,sep,tue,104,1,999,2,failure,-1.1,94.199,-37.5,0.88,4963.6,no +30,student,single,professional.course,no,no,no,telephone,sep,tue,237,2,999,0,nonexistent,-1.1,94.199,-37.5,0.88,4963.6,no +30,student,single,professional.course,no,yes,no,cellular,sep,tue,282,2,6,1,success,-1.1,94.199,-37.5,0.88,4963.6,yes +29,admin.,single,university.degree,no,no,no,cellular,sep,tue,600,2,3,3,success,-1.1,94.199,-37.5,0.88,4963.6,yes +22,student,single,high.school,no,no,no,telephone,sep,wed,13,1,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +40,admin.,divorced,high.school,no,yes,yes,telephone,sep,wed,21,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no +35,admin.,married,university.degree,no,no,yes,cellular,sep,wed,242,2,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no +35,admin.,married,university.degree,no,yes,no,cellular,sep,wed,110,2,18,2,failure,-1.1,94.199,-37.5,0.886,4963.6,no +30,student,single,high.school,no,yes,no,cellular,sep,wed,201,2,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,no +42,management,married,university.degree,no,yes,no,cellular,sep,wed,232,1,3,2,success,-1.1,94.199,-37.5,0.886,4963.6,yes +34,admin.,married,university.degree,no,no,yes,cellular,sep,wed,245,3,999,0,nonexistent,-1.1,94.199,-37.5,0.886,4963.6,yes +42,admin.,divorced,university.degree,no,yes,no,cellular,sep,wed,211,1,999,1,failure,-1.1,94.199,-37.5,0.886,4963.6,no +42,admin.,divorced,university.degree,no,no,no,cellular,sep,wed,678,1,16,1,success,-1.1,94.199,-37.5,0.886,4963.6,yes +41,admin.,married,unknown,no,no,no,cellular,sep,wed,845,1,7,3,success,-1.1,94.199,-37.5,0.886,4963.6,yes +50,management,married,university.degree,no,yes,no,cellular,oct,fri,197,2,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no +30,technician,unknown,university.degree,no,no,no,cellular,oct,fri,131,2,16,1,success,-1.1,94.601,-49.5,0.942,4963.6,no +59,unemployed,married,basic.9y,no,yes,yes,cellular,oct,fri,142,1,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no +32,admin.,single,university.degree,no,no,no,cellular,oct,fri,143,1,999,2,failure,-1.1,94.601,-49.5,0.942,4963.6,no +32,admin.,single,university.degree,no,yes,no,cellular,oct,fri,164,1,999,3,failure,-1.1,94.601,-49.5,0.942,4963.6,no +41,retired,single,basic.4y,no,yes,no,cellular,oct,fri,278,1,999,0,nonexistent,-1.1,94.601,-49.5,0.942,4963.6,no +27,student,single,university.degree,no,yes,no,cellular,oct,fri,161,1,999,3,failure,-1.1,94.601,-49.5,0.942,4963.6,no +30,self-employed,single,basic.9y,no,no,yes,telephone,oct,mon,5,1,999,0,nonexistent,-1.1,94.601,-49.5,0.953,4963.6,no +58,admin.,married,university.degree,no,yes,no,telephone,oct,mon,9,1,999,0,nonexistent,-1.1,94.601,-49.5,0.953,4963.6,no +40,technician,married,professional.course,no,yes,no,telephone,oct,tue,10,1,999,0,nonexistent,-1.1,94.601,-49.5,0.956,4963.6,no +32,technician,married,professional.course,no,no,no,cellular,oct,wed,311,1,3,1,success,-1.1,94.601,-49.5,0.959,4963.6,yes +32,technician,married,professional.course,no,no,no,cellular,oct,wed,486,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +26,technician,single,university.degree,no,no,no,cellular,oct,wed,649,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +26,blue-collar,single,basic.6y,no,no,no,cellular,oct,wed,808,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +35,technician,married,professional.course,no,yes,yes,cellular,oct,wed,608,1,9,2,failure,-1.1,94.601,-49.5,0.959,4963.6,yes +26,admin.,single,university.degree,no,yes,yes,cellular,oct,wed,261,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no +32,technician,married,professional.course,no,yes,no,cellular,oct,wed,275,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +32,admin.,married,high.school,no,yes,no,telephone,oct,wed,48,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no +41,technician,married,professional.course,no,no,no,cellular,oct,wed,391,2,27,1,success,-1.1,94.601,-49.5,0.959,4963.6,yes +57,admin.,married,university.degree,no,unknown,unknown,cellular,oct,wed,229,2,3,2,success,-1.1,94.601,-49.5,0.959,4963.6,yes +26,admin.,single,university.degree,no,no,no,telephone,oct,wed,541,1,999,2,failure,-1.1,94.601,-49.5,0.959,4963.6,no +22,self-employed,single,professional.course,no,yes,no,cellular,oct,wed,218,1,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +32,technician,married,professional.course,no,no,no,cellular,oct,wed,691,2,14,4,failure,-1.1,94.601,-49.5,0.959,4963.6,no +75,retired,married,basic.4y,no,yes,no,cellular,oct,wed,1020,3,999,3,failure,-1.1,94.601,-49.5,0.959,4963.6,no +28,admin.,single,high.school,no,no,no,cellular,oct,wed,1246,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,yes +64,unemployed,divorced,basic.9y,no,yes,no,cellular,oct,wed,604,2,999,0,nonexistent,-1.1,94.601,-49.5,0.959,4963.6,no +36,admin.,single,university.degree,no,no,no,cellular,oct,thu,197,2,999,0,nonexistent,-1.1,94.601,-49.5,0.965,4963.6,no +65,retired,married,basic.4y,no,yes,no,telephone,oct,thu,138,4,999,0,nonexistent,-1.1,94.601,-49.5,0.965,4963.6,no +51,admin.,married,university.degree,no,yes,yes,cellular,oct,thu,236,3,3,1,success,-1.1,94.601,-49.5,0.965,4963.6,yes +28,admin.,single,university.degree,no,no,no,cellular,oct,thu,116,1,17,1,success,-1.1,94.601,-49.5,0.965,4963.6,no +70,retired,married,basic.4y,unknown,no,no,cellular,oct,thu,122,1,14,3,failure,-1.1,94.601,-49.5,0.965,4963.6,no +31,admin.,single,university.degree,no,yes,no,telephone,oct,fri,118,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no +62,blue-collar,married,unknown,no,no,no,cellular,oct,fri,73,3,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no +61,retired,married,basic.4y,no,no,no,telephone,oct,fri,194,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,yes +33,blue-collar,single,basic.4y,no,yes,no,cellular,oct,fri,146,1,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no +29,technician,married,professional.course,no,yes,no,cellular,oct,fri,319,1,5,2,success,-1.1,94.601,-49.5,0.972,4963.6,yes +47,admin.,married,high.school,no,yes,no,cellular,oct,fri,437,1,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,yes +27,student,single,unknown,no,yes,no,cellular,oct,fri,512,1,20,4,failure,-1.1,94.601,-49.5,0.972,4963.6,no +39,housemaid,married,basic.4y,no,no,no,cellular,oct,fri,282,1,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,no +60,retired,married,basic.4y,no,unknown,unknown,cellular,oct,fri,272,1,10,3,failure,-1.1,94.601,-49.5,0.972,4963.6,no +27,student,single,unknown,no,yes,no,cellular,oct,fri,309,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no +32,services,single,university.degree,no,yes,no,cellular,oct,fri,375,2,999,2,failure,-1.1,94.601,-49.5,0.972,4963.6,no +49,technician,divorced,professional.course,no,yes,no,cellular,oct,fri,251,2,3,1,success,-1.1,94.601,-49.5,0.972,4963.6,yes +39,housemaid,married,basic.4y,no,yes,no,cellular,oct,fri,135,2,999,2,failure,-1.1,94.601,-49.5,0.972,4963.6,no +66,retired,married,basic.4y,no,yes,no,telephone,oct,fri,369,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,yes +56,unemployed,divorced,basic.4y,no,no,yes,cellular,oct,fri,363,2,5,3,success,-1.1,94.601,-49.5,0.972,4963.6,yes +24,admin.,single,high.school,no,yes,no,cellular,oct,fri,133,2,999,1,failure,-1.1,94.601,-49.5,0.972,4963.6,no +31,technician,single,professional.course,no,yes,no,cellular,oct,fri,401,2,999,0,nonexistent,-1.1,94.601,-49.5,0.972,4963.6,yes +55,admin.,married,high.school,no,no,no,telephone,oct,mon,317,2,10,3,success,-1.1,94.601,-49.5,0.977,4963.6,no +59,services,married,university.degree,no,yes,no,cellular,oct,mon,162,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +33,services,married,professional.course,no,no,no,cellular,oct,mon,291,1,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no +48,technician,married,professional.course,no,yes,yes,cellular,oct,mon,450,1,8,1,success,-1.1,94.601,-49.5,0.977,4963.6,yes +30,technician,single,unknown,no,yes,yes,cellular,oct,mon,195,1,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no +27,admin.,single,university.degree,no,no,no,cellular,oct,mon,278,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,yes +29,admin.,single,university.degree,no,no,no,cellular,oct,mon,123,2,12,2,failure,-1.1,94.601,-49.5,0.977,4963.6,no +33,services,single,university.degree,no,no,no,cellular,oct,mon,110,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +33,services,single,university.degree,no,yes,no,cellular,oct,mon,252,2,3,2,success,-1.1,94.601,-49.5,0.977,4963.6,yes +65,retired,married,basic.4y,no,yes,yes,cellular,oct,mon,165,1,3,1,success,-1.1,94.601,-49.5,0.977,4963.6,yes +24,blue-collar,single,basic.9y,no,no,no,cellular,oct,mon,485,1,6,1,success,-1.1,94.601,-49.5,0.977,4963.6,no +74,retired,married,university.degree,no,no,no,telephone,oct,mon,160,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +25,services,single,high.school,no,no,no,cellular,oct,mon,251,1,999,1,failure,-1.1,94.601,-49.5,0.977,4963.6,no +25,services,single,high.school,no,no,no,cellular,oct,mon,79,1,999,2,failure,-1.1,94.601,-49.5,0.977,4963.6,no +26,technician,single,professional.course,no,no,no,telephone,oct,mon,4,1,16,1,success,-1.1,94.601,-49.5,0.977,4963.6,no +22,unemployed,single,university.degree,no,no,yes,telephone,oct,mon,34,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +59,services,married,university.degree,no,yes,no,cellular,oct,mon,383,2,999,2,failure,-1.1,94.601,-49.5,0.977,4963.6,yes +71,retired,married,professional.course,no,yes,no,cellular,oct,mon,185,2,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +61,admin.,married,high.school,no,yes,no,cellular,oct,mon,146,4,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +20,student,single,unknown,no,no,no,cellular,oct,mon,137,3,999,3,failure,-1.1,94.601,-49.5,0.977,4963.6,no +28,blue-collar,single,basic.9y,no,yes,no,telephone,oct,mon,4,1,999,0,nonexistent,-1.1,94.601,-49.5,0.977,4963.6,no +31,technician,single,professional.course,no,yes,no,telephone,oct,tue,54,1,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,no +31,blue-collar,single,basic.9y,no,no,no,telephone,oct,tue,114,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no +31,technician,married,university.degree,no,yes,yes,cellular,oct,tue,203,4,6,2,success,-1.1,94.601,-49.5,0.982,4963.6,yes +21,student,single,high.school,no,no,no,cellular,oct,tue,362,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,yes +20,student,single,unknown,no,yes,yes,cellular,oct,tue,187,1,3,4,success,-1.1,94.601,-49.5,0.982,4963.6,yes +22,student,single,university.degree,no,yes,no,cellular,oct,tue,166,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no +27,admin.,single,university.degree,no,yes,yes,cellular,oct,tue,242,1,3,2,success,-1.1,94.601,-49.5,0.982,4963.6,no +27,blue-collar,single,high.school,no,no,no,cellular,oct,tue,253,1,999,2,failure,-1.1,94.601,-49.5,0.982,4963.6,yes +71,retired,married,professional.course,no,no,no,cellular,oct,tue,323,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,yes +27,admin.,single,university.degree,no,no,no,cellular,oct,tue,143,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no +20,student,single,unknown,no,no,no,telephone,oct,tue,250,1,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,no +31,technician,married,university.degree,no,no,no,cellular,oct,tue,146,2,12,3,failure,-1.1,94.601,-49.5,0.982,4963.6,no +27,blue-collar,single,high.school,no,yes,no,cellular,oct,tue,209,3,999,1,failure,-1.1,94.601,-49.5,0.982,4963.6,yes +51,housemaid,married,basic.4y,no,no,no,cellular,oct,tue,130,2,999,2,failure,-1.1,94.601,-49.5,0.982,4963.6,no +27,student,single,high.school,no,no,no,telephone,oct,tue,5,1,999,0,nonexistent,-1.1,94.601,-49.5,0.982,4963.6,no +49,admin.,married,high.school,unknown,no,no,cellular,oct,wed,169,1,6,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes +66,retired,married,basic.4y,unknown,unknown,unknown,cellular,oct,wed,216,1,6,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes +65,retired,married,basic.4y,no,yes,yes,cellular,oct,wed,190,1,3,3,success,-1.1,94.601,-49.5,0.985,4963.6,yes +35,admin.,married,university.degree,no,no,no,cellular,oct,wed,194,1,3,2,success,-1.1,94.601,-49.5,0.985,4963.6,yes +52,technician,married,university.degree,no,yes,no,telephone,oct,wed,6,1,999,1,failure,-1.1,94.601,-49.5,0.985,4963.6,no +54,admin.,married,high.school,no,no,no,cellular,oct,wed,252,2,6,2,success,-1.1,94.601,-49.5,0.985,4963.6,yes +60,retired,married,basic.4y,no,yes,no,cellular,oct,wed,357,2,999,1,failure,-1.1,94.601,-49.5,0.985,4963.6,no +63,admin.,married,university.degree,no,yes,yes,cellular,oct,thu,133,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +33,management,single,university.degree,no,no,no,cellular,oct,thu,119,3,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +54,self-employed,married,university.degree,no,no,no,cellular,oct,thu,99,3,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +81,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,192,2,3,2,success,-1.1,94.601,-49.5,0.987,4963.6,no +70,retired,married,professional.course,no,no,no,cellular,oct,thu,585,1,6,3,success,-1.1,94.601,-49.5,0.987,4963.6,yes +50,admin.,married,high.school,no,yes,no,cellular,oct,thu,326,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes +48,technician,married,professional.course,no,yes,no,cellular,oct,thu,235,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +48,technician,married,professional.course,no,no,no,cellular,oct,thu,491,1,6,3,success,-1.1,94.601,-49.5,0.987,4963.6,yes +61,blue-collar,married,professional.course,no,yes,no,cellular,oct,thu,246,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes +54,self-employed,married,university.degree,no,yes,no,cellular,oct,thu,317,6,6,1,success,-1.1,94.601,-49.5,0.987,4963.6,no +37,admin.,single,high.school,no,no,no,telephone,oct,thu,301,1,3,1,success,-1.1,94.601,-49.5,0.987,4963.6,yes +63,admin.,married,university.degree,no,yes,no,cellular,oct,thu,174,2,6,1,success,-1.1,94.601,-49.5,0.987,4963.6,no +37,admin.,single,high.school,no,no,no,cellular,oct,thu,322,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +37,admin.,single,high.school,no,no,no,cellular,oct,thu,509,1,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,yes +54,self-employed,married,university.degree,no,no,no,cellular,oct,thu,219,3,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no +41,admin.,single,high.school,no,no,no,cellular,oct,thu,786,2,999,0,nonexistent,-1.1,94.601,-49.5,0.987,4963.6,no +54,self-employed,married,university.degree,no,yes,no,cellular,oct,thu,72,4,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no +51,admin.,married,high.school,no,no,yes,cellular,oct,thu,181,2,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no +81,retired,divorced,basic.4y,no,yes,no,cellular,oct,thu,158,1,999,1,failure,-1.1,94.601,-49.5,0.987,4963.6,no +74,retired,married,university.degree,no,yes,no,cellular,oct,fri,212,2,3,2,success,-1.1,94.601,-49.5,0.993,4963.6,no +34,student,single,professional.course,no,yes,no,telephone,oct,fri,6,1,999,0,nonexistent,-1.1,94.601,-49.5,0.993,4963.6,no +65,retired,married,basic.4y,no,no,no,cellular,oct,fri,187,2,7,3,success,-1.1,94.601,-49.5,0.993,4963.6,yes +84,retired,divorced,basic.4y,unknown,yes,no,cellular,oct,fri,106,4,999,0,nonexistent,-1.1,94.601,-49.5,0.993,4963.6,no +24,admin.,single,university.degree,no,yes,no,cellular,oct,fri,1176,3,3,2,success,-1.1,94.601,-49.5,0.993,4963.6,yes +68,retired,divorced,high.school,no,yes,no,cellular,oct,mon,130,4,999,2,failure,-1.1,94.601,-49.5,1,4963.6,no +26,student,single,high.school,no,yes,no,telephone,oct,mon,209,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no +68,retired,divorced,high.school,no,yes,yes,cellular,oct,mon,567,1,3,1,success,-1.1,94.601,-49.5,1,4963.6,yes +47,admin.,single,university.degree,no,yes,no,cellular,oct,mon,333,1,999,1,failure,-1.1,94.601,-49.5,1,4963.6,no +44,technician,married,high.school,no,yes,yes,cellular,oct,mon,310,1,999,1,failure,-1.1,94.601,-49.5,1,4963.6,yes +56,technician,divorced,professional.course,no,no,no,cellular,oct,mon,464,1,3,2,success,-1.1,94.601,-49.5,1,4963.6,yes +42,technician,married,professional.course,no,yes,yes,cellular,oct,mon,509,1,6,1,success,-1.1,94.601,-49.5,1,4963.6,yes +44,admin.,married,university.degree,no,yes,no,cellular,oct,mon,252,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes +56,technician,divorced,professional.course,no,yes,yes,cellular,oct,mon,170,5,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no +29,admin.,single,university.degree,no,yes,no,cellular,oct,mon,526,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes +68,retired,divorced,high.school,no,yes,no,cellular,oct,mon,222,1,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes +74,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,180,2,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no +74,retired,divorced,basic.4y,no,yes,no,cellular,oct,mon,102,3,3,2,success,-1.1,94.601,-49.5,1,4963.6,no +44,services,married,high.school,no,no,no,cellular,oct,mon,95,3,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no +47,admin.,single,university.degree,no,no,no,cellular,oct,mon,767,3,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,yes +84,retired,divorced,basic.4y,unknown,yes,yes,cellular,oct,mon,138,4,3,1,success,-1.1,94.601,-49.5,1,4963.6,no +60,retired,married,university.degree,no,yes,no,cellular,oct,mon,338,2,999,0,nonexistent,-1.1,94.601,-49.5,1,4963.6,no +44,technician,married,high.school,no,yes,yes,cellular,oct,mon,159,2,999,1,failure,-1.1,94.601,-49.5,1,4963.6,no +24,student,single,professional.course,no,no,yes,cellular,oct,tue,133,3,999,2,failure,-1.1,94.601,-49.5,1.008,4963.6,no +31,admin.,single,university.degree,no,unknown,unknown,cellular,oct,tue,192,1,3,1,success,-1.1,94.601,-49.5,1.008,4963.6,yes +67,retired,divorced,basic.4y,no,yes,no,cellular,oct,tue,218,1,999,1,failure,-1.1,94.601,-49.5,1.008,4963.6,no +48,technician,married,university.degree,no,yes,yes,cellular,oct,tue,337,2,999,0,nonexistent,-1.1,94.601,-49.5,1.008,4963.6,yes +50,entrepreneur,divorced,university.degree,no,yes,no,telephone,oct,tue,898,7,11,2,success,-1.1,94.601,-49.5,1.008,4963.6,yes +54,services,divorced,high.school,no,yes,yes,cellular,oct,wed,178,4,3,1,success,-1.1,94.601,-49.5,1.016,4963.6,yes +54,services,divorced,high.school,no,no,no,cellular,oct,wed,268,1,999,1,failure,-1.1,94.601,-49.5,1.016,4963.6,no +81,retired,married,basic.4y,no,yes,no,cellular,oct,wed,621,1,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,yes +25,student,married,high.school,no,yes,no,telephone,oct,wed,7,1,999,0,nonexistent,-1.1,94.601,-49.5,1.016,4963.6,no +34,technician,married,university.degree,no,yes,no,telephone,oct,wed,5,1,999,0,nonexistent,-1.1,94.601,-49.5,1.016,4963.6,no +61,housemaid,married,basic.4y,no,yes,no,telephone,oct,wed,238,2,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,no +54,services,divorced,high.school,no,yes,no,cellular,oct,wed,487,3,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,yes +38,admin.,divorced,basic.9y,no,no,no,cellular,oct,wed,139,2,999,3,failure,-1.1,94.601,-49.5,1.016,4963.6,no +45,student,single,unknown,no,yes,no,cellular,oct,wed,316,2,999,2,failure,-1.1,94.601,-49.5,1.016,4963.6,no +37,management,married,university.degree,no,yes,no,cellular,oct,thu,150,3,5,5,success,-1.1,94.601,-49.5,1.025,4963.6,yes +80,retired,married,professional.course,no,yes,no,cellular,oct,thu,411,1,999,1,failure,-1.1,94.601,-49.5,1.025,4963.6,yes +63,unknown,married,professional.course,no,no,no,cellular,oct,thu,235,1,6,1,success,-1.1,94.601,-49.5,1.025,4963.6,no +37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,453,1,6,2,success,-1.1,94.601,-49.5,1.025,4963.6,yes +37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,178,2,13,2,success,-1.1,94.601,-49.5,1.025,4963.6,yes +23,student,single,high.school,no,yes,no,cellular,oct,thu,262,3,999,0,nonexistent,-1.1,94.601,-49.5,1.025,4963.6,no +24,blue-collar,single,high.school,no,no,no,cellular,oct,thu,1032,1,3,1,success,-1.1,94.601,-49.5,1.025,4963.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,oct,thu,759,1,3,3,success,-1.1,94.601,-49.5,1.025,4963.6,yes +37,housemaid,married,university.degree,no,no,no,cellular,oct,thu,549,2,11,4,success,-1.1,94.601,-49.5,1.025,4963.6,yes +65,retired,married,high.school,no,yes,no,cellular,oct,thu,201,5,3,1,success,-1.1,94.601,-49.5,1.025,4963.6,no +29,admin.,single,high.school,no,no,no,telephone,oct,thu,330,2,6,1,success,-1.1,94.601,-49.5,1.025,4963.6,yes +31,technician,single,professional.course,no,unknown,unknown,cellular,oct,thu,212,2,999,0,nonexistent,-1.1,94.601,-49.5,1.025,4963.6,yes +34,admin.,divorced,university.degree,no,unknown,unknown,cellular,oct,thu,256,2,999,1,failure,-1.1,94.601,-49.5,1.025,4963.6,no +37,management,married,university.degree,no,yes,no,cellular,oct,thu,339,3,3,3,success,-1.1,94.601,-49.5,1.025,4963.6,yes +45,admin.,married,high.school,no,yes,no,cellular,oct,fri,738,3,6,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes +26,unemployed,single,high.school,no,yes,no,cellular,oct,fri,394,3,14,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes +31,student,single,high.school,no,yes,no,cellular,oct,fri,716,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,yes +25,student,single,high.school,no,yes,no,cellular,oct,fri,234,1,3,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes +29,unemployed,single,high.school,no,yes,no,cellular,oct,fri,168,2,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,no +23,student,single,high.school,no,no,yes,cellular,oct,fri,380,1,3,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes +27,self-employed,single,university.degree,no,no,no,telephone,oct,fri,84,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,no +37,unemployed,single,professional.course,no,no,no,cellular,oct,fri,142,4,6,1,success,-1.1,94.601,-49.5,1.029,4963.6,no +25,student,single,high.school,no,no,no,cellular,oct,fri,554,3,999,0,nonexistent,-1.1,94.601,-49.5,1.029,4963.6,yes +65,retired,married,high.school,no,yes,yes,cellular,oct,fri,344,2,12,1,success,-1.1,94.601,-49.5,1.029,4963.6,yes +37,services,married,high.school,no,yes,yes,cellular,oct,fri,608,2,12,2,failure,-1.1,94.601,-49.5,1.029,4963.6,yes +28,admin.,single,university.degree,no,yes,no,cellular,oct,mon,92,4,17,3,failure,-1.1,94.601,-49.5,1.032,4963.6,no +46,management,married,university.degree,no,unknown,unknown,cellular,oct,mon,83,2,12,2,failure,-1.1,94.601,-49.5,1.032,4963.6,no +28,admin.,single,university.degree,no,no,no,cellular,oct,mon,225,1,3,3,success,-1.1,94.601,-49.5,1.032,4963.6,yes +25,student,single,high.school,no,yes,no,cellular,oct,mon,189,1,6,4,success,-1.1,94.601,-49.5,1.032,4963.6,no +36,unemployed,married,high.school,no,yes,no,cellular,oct,mon,304,1,3,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,oct,mon,400,1,5,2,success,-1.1,94.601,-49.5,1.032,4963.6,yes +33,services,single,high.school,no,yes,no,cellular,oct,mon,182,1,6,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes +30,technician,married,professional.course,no,yes,no,cellular,oct,mon,253,1,9,2,success,-1.1,94.601,-49.5,1.032,4963.6,yes +38,technician,single,university.degree,no,yes,no,telephone,oct,mon,254,1,9,3,failure,-1.1,94.601,-49.5,1.032,4963.6,no +28,admin.,single,university.degree,no,yes,no,cellular,oct,mon,324,1,6,2,success,-1.1,94.601,-49.5,1.032,4963.6,no +23,student,single,high.school,no,yes,no,cellular,oct,mon,226,2,999,1,failure,-1.1,94.601,-49.5,1.032,4963.6,yes +33,admin.,single,university.degree,no,yes,no,cellular,oct,mon,297,5,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,yes +30,technician,married,professional.course,no,yes,no,cellular,oct,mon,215,1,6,1,success,-1.1,94.601,-49.5,1.032,4963.6,yes +35,admin.,single,university.degree,no,yes,no,cellular,oct,mon,129,1,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,no +25,student,single,high.school,no,yes,no,cellular,oct,mon,211,2,6,3,success,-1.1,94.601,-49.5,1.032,4963.6,yes +38,admin.,divorced,university.degree,no,yes,no,telephone,oct,mon,293,3,999,0,nonexistent,-1.1,94.601,-49.5,1.032,4963.6,no +62,admin.,married,high.school,no,no,no,cellular,oct,tue,318,1,4,3,success,-1.1,94.601,-49.5,1.037,4963.6,yes +30,student,single,high.school,no,yes,no,cellular,oct,tue,196,1,17,2,failure,-1.1,94.601,-49.5,1.037,4963.6,no +60,admin.,married,high.school,no,no,no,cellular,oct,tue,604,1,999,1,failure,-1.1,94.601,-49.5,1.037,4963.6,yes +62,admin.,married,high.school,no,no,no,cellular,oct,tue,238,4,18,2,failure,-1.1,94.601,-49.5,1.037,4963.6,yes +25,student,single,high.school,no,yes,no,telephone,oct,tue,17,1,999,0,nonexistent,-1.1,94.601,-49.5,1.037,4963.6,no +21,student,single,high.school,no,no,no,cellular,oct,tue,701,2,999,0,nonexistent,-1.1,94.601,-49.5,1.037,4963.6,yes +30,management,married,university.degree,no,no,no,cellular,oct,wed,711,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes +27,technician,single,university.degree,no,no,no,cellular,oct,wed,223,2,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,no +65,retired,married,basic.4y,no,no,no,cellular,oct,wed,882,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes +23,student,single,high.school,no,no,no,cellular,oct,wed,409,1,3,1,success,-1.1,94.601,-49.5,1.043,4963.6,no +31,student,single,university.degree,no,no,no,cellular,oct,wed,508,1,999,0,nonexistent,-1.1,94.601,-49.5,1.043,4963.6,yes +27,technician,single,university.degree,no,yes,no,cellular,oct,wed,184,1,999,1,failure,-1.1,94.601,-49.5,1.043,4963.6,yes +60,retired,married,professional.course,no,no,yes,cellular,oct,wed,170,2,999,1,failure,-1.1,94.601,-49.5,1.043,4963.6,no +30,management,married,university.degree,no,no,yes,cellular,oct,wed,255,1,6,1,success,-1.1,94.601,-49.5,1.043,4963.6,yes +65,retired,married,basic.4y,no,yes,no,cellular,oct,wed,258,1,3,3,success,-1.1,94.601,-49.5,1.043,4963.6,yes +42,services,married,basic.9y,no,no,no,telephone,oct,thu,71,1,999,0,nonexistent,-1.1,94.601,-49.5,1.045,4963.6,no +46,admin.,married,basic.9y,no,yes,no,telephone,nov,tue,18,1,999,1,failure,-1.1,94.767,-50.8,1.047,4963.6,no +31,management,married,university.degree,no,yes,no,cellular,nov,mon,188,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,yes +51,services,married,high.school,no,yes,no,cellular,nov,mon,176,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no +48,admin.,married,university.degree,no,yes,no,cellular,nov,mon,159,1,6,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes +29,technician,single,university.degree,no,no,no,cellular,nov,mon,240,1,4,1,success,-1.1,94.767,-50.8,1.05,4963.6,no +29,technician,single,university.degree,no,no,no,telephone,nov,mon,360,1,3,2,success,-1.1,94.767,-50.8,1.05,4963.6,yes +37,technician,married,university.degree,no,no,no,cellular,nov,mon,119,1,999,3,failure,-1.1,94.767,-50.8,1.05,4963.6,no +34,admin.,married,university.degree,no,no,no,cellular,nov,mon,230,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no +29,admin.,single,high.school,no,yes,no,telephone,nov,mon,207,1,6,1,success,-1.1,94.767,-50.8,1.05,4963.6,no +51,services,married,high.school,no,no,yes,cellular,nov,mon,120,2,3,4,success,-1.1,94.767,-50.8,1.05,4963.6,no +37,admin.,married,university.degree,no,no,no,cellular,nov,mon,137,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no +61,retired,married,university.degree,no,no,no,cellular,nov,mon,507,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no +24,student,single,high.school,no,yes,yes,cellular,nov,mon,106,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no +39,admin.,married,high.school,no,no,no,cellular,nov,mon,148,1,999,1,failure,-1.1,94.767,-50.8,1.05,4963.6,no +35,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,212,1,999,2,failure,-1.1,94.767,-50.8,1.05,4963.6,no +34,admin.,married,university.degree,no,no,no,cellular,nov,mon,141,2,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,no +50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,mon,742,1,999,0,nonexistent,-1.1,94.767,-50.8,1.05,4963.6,yes +45,blue-collar,married,high.school,no,yes,yes,cellular,nov,mon,449,2,5,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes +37,admin.,married,university.degree,no,no,no,cellular,nov,mon,282,2,6,1,success,-1.1,94.767,-50.8,1.05,4963.6,yes +51,services,married,high.school,no,yes,no,cellular,nov,mon,354,3,6,3,success,-1.1,94.767,-50.8,1.05,4963.6,no +27,student,single,high.school,no,no,yes,cellular,nov,tue,326,1,999,0,nonexistent,-1.1,94.767,-50.8,1.049,4963.6,no +51,admin.,divorced,high.school,no,yes,no,cellular,nov,tue,283,1,3,7,success,-1.1,94.767,-50.8,1.049,4963.6,no +48,admin.,married,high.school,no,no,no,telephone,nov,tue,301,1,999,2,failure,-1.1,94.767,-50.8,1.049,4963.6,no +24,technician,single,university.degree,no,yes,yes,cellular,nov,tue,467,3,6,3,failure,-1.1,94.767,-50.8,1.049,4963.6,yes +18,student,single,unknown,no,yes,no,cellular,nov,tue,600,2,999,3,failure,-1.1,94.767,-50.8,1.049,4963.6,no +51,admin.,divorced,high.school,no,yes,yes,cellular,nov,tue,334,2,6,4,failure,-1.1,94.767,-50.8,1.049,4963.6,yes +50,blue-collar,divorced,professional.course,no,yes,no,cellular,nov,tue,137,2,9,3,success,-1.1,94.767,-50.8,1.049,4963.6,no +30,blue-collar,single,professional.course,no,yes,no,cellular,nov,tue,111,2,999,0,nonexistent,-1.1,94.767,-50.8,1.049,4963.6,no +18,student,single,basic.4y,no,yes,no,telephone,nov,tue,394,1,13,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes +50,blue-collar,divorced,professional.course,no,yes,no,telephone,nov,tue,301,2,7,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes +31,admin.,single,university.degree,no,no,yes,cellular,nov,wed,212,2,3,6,success,-1.1,94.767,-50.8,1.048,4963.6,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,wed,228,1,999,0,nonexistent,-1.1,94.767,-50.8,1.048,4963.6,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,wed,404,1,2,5,success,-1.1,94.767,-50.8,1.048,4963.6,yes +52,technician,married,university.degree,no,no,no,cellular,nov,wed,164,1,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no +19,student,single,basic.9y,no,yes,no,cellular,nov,wed,182,1,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no +31,admin.,single,university.degree,no,yes,no,telephone,nov,wed,98,2,999,0,nonexistent,-1.1,94.767,-50.8,1.048,4963.6,no +28,services,married,high.school,no,yes,no,cellular,nov,wed,223,3,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no +34,admin.,married,university.degree,no,no,no,cellular,nov,wed,134,1,3,3,success,-1.1,94.767,-50.8,1.048,4963.6,no +29,student,single,high.school,no,yes,yes,cellular,nov,thu,289,1,3,3,success,-1.1,94.767,-50.8,1.05,4963.6,yes +59,admin.,divorced,high.school,no,no,no,cellular,nov,thu,357,3,3,2,success,-1.1,94.767,-50.8,1.05,4963.6,yes +33,admin.,married,university.degree,no,yes,no,cellular,nov,fri,482,1,12,1,success,-1.1,94.767,-50.8,1.049,4963.6,yes +63,retired,married,basic.4y,no,yes,no,cellular,nov,fri,413,1,3,2,success,-1.1,94.767,-50.8,1.049,4963.6,yes +45,admin.,married,university.degree,no,no,no,cellular,nov,fri,319,1,999,3,failure,-1.1,94.767,-50.8,1.049,4963.6,no +40,technician,married,basic.9y,no,yes,no,cellular,nov,mon,414,2,999,3,failure,-1.1,94.767,-50.8,1.048,4963.6,no +46,admin.,single,high.school,no,yes,no,cellular,nov,mon,199,2,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no +32,admin.,single,high.school,no,no,no,cellular,nov,mon,191,2,19,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no +32,admin.,single,high.school,no,no,no,cellular,nov,mon,74,2,999,2,failure,-1.1,94.767,-50.8,1.048,4963.6,no +32,admin.,single,high.school,no,yes,no,cellular,nov,mon,128,2,999,1,failure,-1.1,94.767,-50.8,1.048,4963.6,no +64,unknown,married,unknown,no,no,no,cellular,nov,mon,78,1,3,3,success,-1.1,94.767,-50.8,1.048,4963.6,no +34,technician,married,unknown,no,yes,no,cellular,nov,tue,138,1,1,4,success,-1.1,94.767,-50.8,1.046,4963.6,no +34,technician,married,unknown,no,yes,no,cellular,nov,tue,200,1,3,1,success,-1.1,94.767,-50.8,1.046,4963.6,yes +46,admin.,single,university.degree,no,no,yes,cellular,nov,tue,173,1,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,no +58,admin.,married,high.school,no,yes,no,cellular,nov,tue,173,1,999,2,failure,-1.1,94.767,-50.8,1.046,4963.6,no +34,technician,married,unknown,no,no,no,cellular,nov,tue,206,1,6,2,success,-1.1,94.767,-50.8,1.046,4963.6,yes +60,admin.,married,unknown,no,no,no,cellular,nov,tue,787,1,7,2,success,-1.1,94.767,-50.8,1.046,4963.6,yes +42,services,divorced,university.degree,no,unknown,unknown,cellular,nov,tue,262,1,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,yes +36,blue-collar,single,basic.6y,no,no,no,cellular,nov,tue,238,1,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes +29,technician,single,professional.course,no,no,no,cellular,nov,tue,449,2,1,1,success,-1.1,94.767,-50.8,1.046,4963.6,yes +34,technician,married,unknown,no,yes,no,cellular,nov,tue,162,2,999,2,failure,-1.1,94.767,-50.8,1.046,4963.6,no +36,blue-collar,single,basic.6y,no,yes,no,cellular,nov,tue,330,1,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes +60,admin.,married,unknown,no,no,no,cellular,nov,tue,333,2,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,no +46,admin.,single,university.degree,no,yes,no,cellular,nov,tue,1166,3,999,1,failure,-1.1,94.767,-50.8,1.046,4963.6,no +34,technician,married,unknown,no,no,no,cellular,nov,tue,985,3,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes +36,blue-collar,single,basic.6y,no,no,no,cellular,nov,tue,1556,4,999,0,nonexistent,-1.1,94.767,-50.8,1.046,4963.6,yes +37,technician,single,professional.course,no,yes,no,cellular,nov,wed,226,1,6,4,success,-1.1,94.767,-50.8,1.044,4963.6,yes +37,technician,single,professional.course,no,yes,no,cellular,nov,wed,224,1,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes +61,admin.,married,high.school,no,yes,no,cellular,nov,wed,300,1,21,5,failure,-1.1,94.767,-50.8,1.044,4963.6,yes +61,admin.,married,high.school,no,yes,yes,cellular,nov,wed,386,2,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes +31,admin.,single,high.school,no,yes,no,cellular,nov,wed,456,2,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,yes +61,admin.,married,high.school,no,no,no,telephone,nov,wed,508,4,999,0,nonexistent,-1.1,94.767,-50.8,1.044,4963.6,no +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,260,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes +58,management,married,university.degree,no,yes,no,cellular,nov,thu,193,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,no +41,unemployed,married,basic.9y,no,no,no,cellular,nov,thu,597,2,3,2,success,-1.1,94.767,-50.8,1.041,4963.6,yes +28,self-employed,single,university.degree,no,yes,no,cellular,nov,thu,97,2,6,3,success,-1.1,94.767,-50.8,1.041,4963.6,no +25,student,single,high.school,no,no,no,cellular,nov,thu,244,1,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes +54,technician,married,unknown,no,yes,no,cellular,nov,thu,222,1,999,1,failure,-1.1,94.767,-50.8,1.041,4963.6,no +54,unemployed,married,professional.course,no,yes,no,telephone,nov,thu,200,2,10,4,failure,-1.1,94.767,-50.8,1.041,4963.6,no +42,admin.,married,university.degree,no,yes,no,cellular,nov,thu,419,3,999,1,failure,-1.1,94.767,-50.8,1.041,4963.6,no +58,unemployed,married,university.degree,no,yes,no,cellular,nov,thu,344,2,999,0,nonexistent,-1.1,94.767,-50.8,1.041,4963.6,yes +31,services,married,high.school,no,yes,no,cellular,nov,fri,202,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,no +33,management,married,university.degree,no,yes,no,cellular,nov,fri,237,2,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes +37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,315,1,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes +43,admin.,divorced,university.degree,no,yes,no,cellular,nov,fri,741,4,999,2,failure,-1.1,94.767,-50.8,1.04,4963.6,yes +29,technician,single,professional.course,no,no,yes,cellular,nov,fri,127,1,6,2,success,-1.1,94.767,-50.8,1.04,4963.6,no +35,admin.,single,professional.course,no,yes,no,cellular,nov,fri,92,3,999,4,failure,-1.1,94.767,-50.8,1.04,4963.6,no +26,admin.,single,university.degree,no,no,no,cellular,nov,fri,528,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes +41,admin.,married,university.degree,no,yes,no,cellular,nov,fri,252,4,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes +25,technician,single,professional.course,no,yes,no,cellular,nov,fri,712,2,19,1,success,-1.1,94.767,-50.8,1.04,4963.6,yes +35,admin.,single,professional.course,no,yes,no,cellular,nov,fri,397,3,999,0,nonexistent,-1.1,94.767,-50.8,1.04,4963.6,yes +30,admin.,single,university.degree,no,yes,no,cellular,nov,mon,324,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no +41,blue-collar,married,basic.9y,no,yes,no,cellular,nov,mon,371,2,999,1,failure,-1.1,94.767,-50.8,1.039,4963.6,no +41,technician,married,professional.course,no,no,no,cellular,nov,mon,526,2,6,1,success,-1.1,94.767,-50.8,1.039,4963.6,yes +26,management,single,university.degree,no,yes,no,cellular,nov,mon,112,5,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no +67,housemaid,divorced,professional.course,no,yes,no,cellular,nov,mon,655,2,5,5,success,-1.1,94.767,-50.8,1.039,4963.6,yes +41,technician,married,professional.course,no,yes,no,cellular,nov,mon,185,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no +31,housemaid,single,university.degree,no,no,no,telephone,nov,mon,152,5,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no +41,technician,married,professional.course,no,yes,no,cellular,nov,mon,545,2,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,yes +31,housemaid,single,university.degree,no,no,no,cellular,nov,mon,159,4,999,0,nonexistent,-1.1,94.767,-50.8,1.039,4963.6,no +35,technician,divorced,basic.4y,no,no,no,cellular,nov,tue,363,1,999,0,nonexistent,-1.1,94.767,-50.8,1.035,4963.6,yes +35,technician,divorced,basic.4y,no,yes,no,cellular,nov,tue,514,1,9,4,success,-1.1,94.767,-50.8,1.035,4963.6,yes +33,admin.,married,university.degree,no,no,no,cellular,nov,tue,843,1,999,0,nonexistent,-1.1,94.767,-50.8,1.035,4963.6,yes +33,admin.,married,university.degree,no,yes,no,cellular,nov,tue,510,1,999,1,failure,-1.1,94.767,-50.8,1.035,4963.6,no +60,blue-collar,married,basic.4y,no,yes,no,cellular,nov,tue,347,2,4,1,success,-1.1,94.767,-50.8,1.035,4963.6,no +35,technician,divorced,basic.4y,no,yes,no,cellular,nov,tue,385,3,4,2,success,-1.1,94.767,-50.8,1.035,4963.6,yes +54,admin.,married,professional.course,no,no,no,cellular,nov,tue,1868,2,10,1,success,-1.1,94.767,-50.8,1.035,4963.6,yes +38,housemaid,divorced,university.degree,no,no,no,cellular,nov,wed,403,2,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,yes +32,admin.,married,university.degree,no,no,no,telephone,nov,wed,651,1,999,1,failure,-1.1,94.767,-50.8,1.03,4963.6,yes +32,admin.,married,university.degree,no,yes,no,cellular,nov,wed,236,3,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no +38,entrepreneur,married,university.degree,no,no,no,cellular,nov,wed,144,2,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no +62,services,married,high.school,no,yes,no,cellular,nov,wed,154,5,999,0,nonexistent,-1.1,94.767,-50.8,1.03,4963.6,no +40,management,divorced,university.degree,no,yes,no,cellular,nov,wed,293,2,999,4,failure,-1.1,94.767,-50.8,1.03,4963.6,no +33,student,married,professional.course,no,yes,no,telephone,nov,thu,112,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,yes +31,admin.,single,university.degree,no,yes,no,cellular,nov,thu,353,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,yes +62,retired,married,university.degree,no,yes,no,cellular,nov,thu,329,1,999,2,failure,-1.1,94.767,-50.8,1.031,4963.6,yes +62,retired,married,university.degree,no,yes,no,cellular,nov,thu,208,1,1,6,success,-1.1,94.767,-50.8,1.031,4963.6,yes +34,student,single,unknown,no,yes,no,cellular,nov,thu,180,1,999,2,failure,-1.1,94.767,-50.8,1.031,4963.6,no +38,housemaid,divorced,high.school,no,yes,yes,cellular,nov,thu,360,1,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,no +57,retired,married,professional.course,no,yes,no,cellular,nov,thu,124,6,999,0,nonexistent,-1.1,94.767,-50.8,1.031,4963.6,no +62,retired,married,university.degree,no,no,no,cellular,nov,thu,483,2,6,3,success,-1.1,94.767,-50.8,1.031,4963.6,yes +64,retired,divorced,professional.course,no,yes,no,cellular,nov,fri,151,3,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no +36,admin.,married,university.degree,no,no,no,cellular,nov,fri,254,2,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no +37,admin.,married,university.degree,no,yes,no,cellular,nov,fri,281,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes +29,unemployed,single,basic.4y,no,yes,no,cellular,nov,fri,112,1,9,1,success,-1.1,94.767,-50.8,1.028,4963.6,no +73,retired,married,professional.course,no,yes,no,cellular,nov,fri,334,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes +46,blue-collar,married,professional.course,no,no,no,cellular,nov,fri,383,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no +56,retired,married,university.degree,no,yes,no,cellular,nov,fri,189,2,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,no +44,technician,married,professional.course,no,no,no,cellular,nov,fri,442,1,999,0,nonexistent,-1.1,94.767,-50.8,1.028,4963.6,yes +74,retired,married,professional.course,no,yes,no,cellular,nov,fri,239,3,999,1,failure,-1.1,94.767,-50.8,1.028,4963.6,no From 3cfa68f0cb0bf591fe63f5db56ee5bab24ff701f Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:21:53 +0530 Subject: [PATCH 5/8] Create README.md --- Term Deposit Prediction/Models/README.md | 45 ++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Term Deposit Prediction/Models/README.md diff --git a/Term Deposit Prediction/Models/README.md b/Term Deposit Prediction/Models/README.md new file mode 100644 index 000000000..59f5bad39 --- /dev/null +++ b/Term Deposit Prediction/Models/README.md @@ -0,0 +1,45 @@ +## Term Deposit Campaign Analysis and Classification - Models + +---- + +## Overview + +This folder contains the Jupyter Notebook (`Notebook.ipynb`) which includes the implementation of various ML models used to analyze and predict the success of a bank marketing campaign. The notebook covers Data Cleaning, EDA, Feature Engineering, Model Training, Evaluation, and Performance Comparison. + +## Contents + +- `Notebook.ipynb`: A Jupyter Notebook containing the complete analysis and modeling process. + + +## Usage + +1. **Clone the repository**: + ```bash + git clone https://github.com/abhisheks008/ML-Crate.git + cd Term-Deposit-Prediction + ``` + +2. **Install the required libraries**: + You can install the required libraries using pip: + ```bash + pip install numpy pandas seaborn matplotlib plotly scikit-learn xgboost + ``` + + or alternatively you can use: + + ```bash + pip install -r requirements.txt + ``` + +3. **Open the Jupyter Notebook**: + Start Jupyter Notebook from the command line: + + ```bash + jupyter notebook + ``` + Navigate to the `Models` folder and open `Notebook.ipynb`. + +4. **Run the Notebook**: + Follow the cells sequentially to reproduce the analysis and modeling process. The notebook includes the following steps: + Data Cleaning, EDA, Feature Engineering, Model Training, Model Evaluation, and Performance Comparison ... + From 9d567a00d5c64a4184eb4c0ef13c3aa30c198ce7 Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:23:20 +0530 Subject: [PATCH 6/8] Add files via upload --- Term Deposit Prediction/Models/Notebook.ipynb | 736221 +++++++++++++++ 1 file changed, 736221 insertions(+) create mode 100644 Term Deposit Prediction/Models/Notebook.ipynb diff --git a/Term Deposit Prediction/Models/Notebook.ipynb b/Term Deposit Prediction/Models/Notebook.ipynb new file mode 100644 index 000000000..d45235928 --- /dev/null +++ b/Term Deposit Prediction/Models/Notebook.ipynb @@ -0,0 +1,736221 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "4c3c49be", + "metadata": {}, + "outputs": [], + "source": [ + "# Import necessary libraries for data manipulation, visualization, and modeling\n", + "import numpy as np\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import plotly.express as px\n", + "import plotly.graph_objs as go" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "b5cf52a4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
agejobmaritaleducationdefaulthousingloancontactmonthday_of_week...campaignpdayspreviouspoutcomeemp.var.ratecons.price.idxcons.conf.idxeuribor3mnr.employedy
056housemaidmarriedbasic.4ynononotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
157servicesmarriedhigh.schoolunknownnonotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
237servicesmarriedhigh.schoolnoyesnotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
340admin.marriedbasic.6ynononotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
456servicesmarriedhigh.schoolnonoyestelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
\n", + "

5 rows ร— 21 columns

\n", + "
" + ], + "text/plain": [ + " age job marital education default housing loan contact \\\n", + "0 56 housemaid married basic.4y no no no telephone \n", + "1 57 services married high.school unknown no no telephone \n", + "2 37 services married high.school no yes no telephone \n", + "3 40 admin. married basic.6y no no no telephone \n", + "4 56 services married high.school no no yes telephone \n", + "\n", + " month day_of_week ... campaign pdays previous poutcome emp.var.rate \\\n", + "0 may mon ... 1 999 0 nonexistent 1.1 \n", + "1 may mon ... 1 999 0 nonexistent 1.1 \n", + "2 may mon ... 1 999 0 nonexistent 1.1 \n", + "3 may mon ... 1 999 0 nonexistent 1.1 \n", + "4 may mon ... 1 999 0 nonexistent 1.1 \n", + "\n", + " cons.price.idx cons.conf.idx euribor3m nr.employed y \n", + "0 93.994 -36.4 4.857 5191.0 no \n", + "1 93.994 -36.4 4.857 5191.0 no \n", + "2 93.994 -36.4 4.857 5191.0 no \n", + "3 93.994 -36.4 4.857 5191.0 no \n", + "4 93.994 -36.4 4.857 5191.0 no \n", + "\n", + "[5 rows x 21 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Load the dataset\n", + "df=pd.read_csv('dataset.csv')\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "d3b65139", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(41188, 21)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "7b6e7b89", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['age', 'job', 'marital', 'education', 'default', 'housing', 'loan',\n", + " 'contact', 'month', 'day_of_week', 'duration', 'campaign', 'pdays',\n", + " 'previous', 'poutcome', 'emp.var.rate', 'cons.price.idx',\n", + " 'cons.conf.idx', 'euribor3m', 'nr.employed', 'y'],\n", + " dtype='object')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "f2adce6a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Counts for job:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
jobCount
0admin.10422
1blue-collar9254
2technician6743
3services3969
4management2924
5retired1720
6entrepreneur1456
7self-employed1421
8housemaid1060
9unemployed1014
10student875
11unknown330
\n", + "
" + ], + "text/plain": [ + " job Count\n", + "0 admin. 10422\n", + "1 blue-collar 9254\n", + "2 technician 6743\n", + "3 services 3969\n", + "4 management 2924\n", + "5 retired 1720\n", + "6 entrepreneur 1456\n", + "7 self-employed 1421\n", + "8 housemaid 1060\n", + "9 unemployed 1014\n", + "10 student 875\n", + "11 unknown 330" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for marital:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
maritalCount
0married24928
1single11568
2divorced4612
3unknown80
\n", + "
" + ], + "text/plain": [ + " marital Count\n", + "0 married 24928\n", + "1 single 11568\n", + "2 divorced 4612\n", + "3 unknown 80" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for education:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
educationCount
0university.degree12168
1high.school9515
2basic.9y6045
3professional.course5243
4basic.4y4176
5basic.6y2292
6unknown1731
7illiterate18
\n", + "
" + ], + "text/plain": [ + " education Count\n", + "0 university.degree 12168\n", + "1 high.school 9515\n", + "2 basic.9y 6045\n", + "3 professional.course 5243\n", + "4 basic.4y 4176\n", + "5 basic.6y 2292\n", + "6 unknown 1731\n", + "7 illiterate 18" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for default:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
defaultCount
0no32588
1unknown8597
2yes3
\n", + "
" + ], + "text/plain": [ + " default Count\n", + "0 no 32588\n", + "1 unknown 8597\n", + "2 yes 3" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for housing:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
housingCount
0yes21576
1no18622
2unknown990
\n", + "
" + ], + "text/plain": [ + " housing Count\n", + "0 yes 21576\n", + "1 no 18622\n", + "2 unknown 990" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for loan:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
loanCount
0no33950
1yes6248
2unknown990
\n", + "
" + ], + "text/plain": [ + " loan Count\n", + "0 no 33950\n", + "1 yes 6248\n", + "2 unknown 990" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for contact:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
contactCount
0cellular26144
1telephone15044
\n", + "
" + ], + "text/plain": [ + " contact Count\n", + "0 cellular 26144\n", + "1 telephone 15044" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for month:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
monthCount
0may13769
1jul7174
2aug6178
3jun5318
4nov4101
5apr2632
6oct718
7sep570
8mar546
9dec182
\n", + "
" + ], + "text/plain": [ + " month Count\n", + "0 may 13769\n", + "1 jul 7174\n", + "2 aug 6178\n", + "3 jun 5318\n", + "4 nov 4101\n", + "5 apr 2632\n", + "6 oct 718\n", + "7 sep 570\n", + "8 mar 546\n", + "9 dec 182" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for day_of_week:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
day_of_weekCount
0thu8623
1mon8514
2wed8134
3tue8090
4fri7827
\n", + "
" + ], + "text/plain": [ + " day_of_week Count\n", + "0 thu 8623\n", + "1 mon 8514\n", + "2 wed 8134\n", + "3 tue 8090\n", + "4 fri 7827" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for poutcome:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
poutcomeCount
0nonexistent35563
1failure4252
2success1373
\n", + "
" + ], + "text/plain": [ + " poutcome Count\n", + "0 nonexistent 35563\n", + "1 failure 4252\n", + "2 success 1373" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "Counts for y:\n", + "\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
yCount
0no36548
1yes4640
\n", + "
" + ], + "text/plain": [ + " y Count\n", + "0 no 36548\n", + "1 yes 4640" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "categorical_cols = df.select_dtypes(include=['object', 'category']).columns\n", + "\n", + "# Get the count of all categorical features column values\n", + "categorical_counts = {col: df[col].value_counts() for col in categorical_cols}\n", + "\n", + "# Print the counts in a more readable format\n", + "for col, counts in categorical_counts.items():\n", + " print(f\"Counts for {col}:\\n\")\n", + " display(pd.DataFrame(counts).reset_index().rename(columns={'index': col, col: 'Count'}))\n", + " print(\"\\n\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "dca4827b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
agejobmaritaleducationdefaulthousingloancontactmonthday_of_week...campaignpdayspreviouspoutcomeemp.var.ratecons.price.idxcons.conf.idxeuribor3mnr.employedy
056housemaidmarriedbasic.4ynononotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
157servicesmarriedhigh.schoolNaNnonotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
237servicesmarriedhigh.schoolnoyesnotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
340admin.marriedbasic.6ynononotelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
456servicesmarriedhigh.schoolnonoyestelephonemaymon...19990nonexistent1.193.994-36.44.8575191.0no
\n", + "

5 rows ร— 21 columns

\n", + "
" + ], + "text/plain": [ + " age job marital education default housing loan contact month \\\n", + "0 56 housemaid married basic.4y no no no telephone may \n", + "1 57 services married high.school NaN no no telephone may \n", + "2 37 services married high.school no yes no telephone may \n", + "3 40 admin. married basic.6y no no no telephone may \n", + "4 56 services married high.school no no yes telephone may \n", + "\n", + " day_of_week ... campaign pdays previous poutcome emp.var.rate \\\n", + "0 mon ... 1 999 0 nonexistent 1.1 \n", + "1 mon ... 1 999 0 nonexistent 1.1 \n", + "2 mon ... 1 999 0 nonexistent 1.1 \n", + "3 mon ... 1 999 0 nonexistent 1.1 \n", + "4 mon ... 1 999 0 nonexistent 1.1 \n", + "\n", + " cons.price.idx cons.conf.idx euribor3m nr.employed y \n", + "0 93.994 -36.4 4.857 5191.0 no \n", + "1 93.994 -36.4 4.857 5191.0 no \n", + "2 93.994 -36.4 4.857 5191.0 no \n", + "3 93.994 -36.4 4.857 5191.0 no \n", + "4 93.994 -36.4 4.857 5191.0 no \n", + "\n", + "[5 rows x 21 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Replace 'unknown' values with NaN\n", + "df1= df.replace('unknown', np.nan)\n", + "df1.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "8e345d80", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(30488, 21)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1=df1.dropna()\n", + "df1.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "f9efb93d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
 countmeanstdmin25%50%75%max
age30488.00000039.03001210.33352917.00000031.00000037.00000045.00000095.000000
duration30488.000000259.484092261.7142620.000000103.000000181.000000321.0000004918.000000
campaign30488.0000002.5214512.7201501.0000001.0000002.0000003.00000043.000000
pdays30488.000000956.332295201.3732920.000000999.000000999.000000999.000000999.000000
previous30488.0000000.1942730.5227880.0000000.0000000.0000000.0000007.000000
emp.var.rate30488.000000-0.0715101.610399-3.400000-1.8000001.1000001.4000001.400000
cons.price.idx30488.00000093.5233110.58537492.20100093.07500093.44400093.99400094.767000
cons.conf.idx30488.000000-40.6022634.789249-50.800000-42.700000-41.800000-36.400000-26.900000
euribor3m30488.0000003.4599381.7772310.6340001.3130004.8560004.9610005.045000
nr.employed30488.0000005160.81340975.1580654963.6000005099.1000005191.0000005228.1000005228.100000
\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df1.describe().T.style.background_gradient(cmap='Blues')" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "fb8f152e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(0, 10] 0\n", + "(10, 20] 85\n", + "(20, 30] 6090\n", + "(30, 40] 12958\n", + "(40, 50] 6778\n", + "(50, 60] 3851\n", + "(60, 70] 390\n", + "(70, 80] 249\n", + "(80, 90] 83\n", + "Name: age, dtype: int64\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + }, + "hole": 0.4, + "hovertemplate": "label=%{label}
value=%{value}", + "labels": [ + "(0, 10]", + "(10, 20]", + "(20, 30]", + "(30, 40]", + "(40, 50]", + "(50, 60]", + "(60, 70]", + "(70, 80]", + "(80, 90]" + ], + "legendgroup": "", + "name": "", + "showlegend": true, + "type": "pie", + "values": [ + 0, + 85, + 6090, + 12958, + 6778, + 3851, + 390, + 249, + 83 + ] + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Distribution of Age" + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create age intervals and count the number of records in each interval\n", + "age_intervals = pd.cut(df1['age'], bins=range(0, df1['age'].max()+5, 10), right=True)\n", + "age_counts = age_intervals.value_counts(sort=False).sort_index()\n", + "print(age_counts)\n", + "fig = px.pie(names=age_counts.index.astype(str), values=age_counts.values,title='Distribution of Age',hole=0.4)\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "41300609", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " job count\n", + "0 housemaid 690\n", + "1 services 2857\n", + "2 admin. 8737\n", + "3 technician 5473\n", + "4 blue-collar 5675\n", + "5 unemployed 738\n", + "6 retired 1216\n", + "7 entrepreneur 1089\n", + "8 management 2311\n", + "9 student 610\n", + "10 self-employed 1092\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "housemaid", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "housemaid", + "offsetgroup": "housemaid", + "orientation": "v", + "showlegend": true, + "text": [ + 690 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "housemaid" + ], + "xaxis": "x", + "y": [ + 690 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "services", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "services", + "offsetgroup": "services", + "orientation": "v", + "showlegend": true, + "text": [ + 2857 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "services" + ], + "xaxis": "x", + "y": [ + 2857 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "admin.", + "marker": { + "color": "#00cc96", + "pattern": { + "shape": "" + } + }, + "name": "admin.", + "offsetgroup": "admin.", + "orientation": "v", + "showlegend": true, + "text": [ + 8737 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "admin." + ], + "xaxis": "x", + "y": [ + 8737 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "technician", + "marker": { + "color": "#ab63fa", + "pattern": { + "shape": "" + } + }, + "name": "technician", + "offsetgroup": "technician", + "orientation": "v", + "showlegend": true, + "text": [ + 5473 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "technician" + ], + "xaxis": "x", + "y": [ + 5473 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "blue-collar", + "marker": { + "color": "#FFA15A", + "pattern": { + "shape": "" + } + }, + "name": "blue-collar", + "offsetgroup": "blue-collar", + "orientation": "v", + "showlegend": true, + "text": [ + 5675 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "blue-collar" + ], + "xaxis": "x", + "y": [ + 5675 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "unemployed", + "marker": { + "color": "#19d3f3", + "pattern": { + "shape": "" + } + }, + "name": "unemployed", + "offsetgroup": "unemployed", + "orientation": "v", + "showlegend": true, + "text": [ + 738 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "unemployed" + ], + "xaxis": "x", + "y": [ + 738 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "retired", + "marker": { + "color": "#FF6692", + "pattern": { + "shape": "" + } + }, + "name": "retired", + "offsetgroup": "retired", + "orientation": "v", + "showlegend": true, + "text": [ + 1216 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "retired" + ], + "xaxis": "x", + "y": [ + 1216 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "entrepreneur", + "marker": { + "color": "#B6E880", + "pattern": { + "shape": "" + } + }, + "name": "entrepreneur", + "offsetgroup": "entrepreneur", + "orientation": "v", + "showlegend": true, + "text": [ + 1089 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "entrepreneur" + ], + "xaxis": "x", + "y": [ + 1089 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "management", + "marker": { + "color": "#FF97FF", + "pattern": { + "shape": "" + } + }, + "name": "management", + "offsetgroup": "management", + "orientation": "v", + "showlegend": true, + "text": [ + 2311 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "management" + ], + "xaxis": "x", + "y": [ + 2311 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "student", + "marker": { + "color": "#FECB52", + "pattern": { + "shape": "" + } + }, + "name": "student", + "offsetgroup": "student", + "orientation": "v", + "showlegend": true, + "text": [ + 610 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "student" + ], + "xaxis": "x", + "y": [ + 610 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Job=%{x}
Count=%{text}", + "legendgroup": "self-employed", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "self-employed", + "offsetgroup": "self-employed", + "orientation": "v", + "showlegend": true, + "text": [ + 1092 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "self-employed" + ], + "xaxis": "x", + "y": [ + 1092 + ], + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "Job" + }, + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Job Distribution" + }, + "xaxis": { + "anchor": "y", + "categoryarray": [ + "housemaid", + "services", + "admin.", + "technician", + "blue-collar", + "unemployed", + "retired", + "entrepreneur", + "management", + "student", + "self-employed" + ], + "categoryorder": "array", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Job Title" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Count the number of records for each job and plot as a bar chart\n", + "\n", + "job_counts = df1['job'].value_counts(sort=False).reset_index()\n", + "job_counts.columns = ['job', 'count']\n", + "print(job_counts)\n", + "fig = px.bar(job_counts, x='job', y='count', title='Job Distribution',labels={'job': 'Job', 'count': 'Count'}, text='count',\n", + " color='job')\n", + "\n", + "fig.update_traces(texttemplate='%{text}', textposition='outside')\n", + "fig.update_layout(xaxis_title='Job Title', yaxis_title='Count')\n", + "\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "44ec4952", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " education count\n", + "0 basic.4y 2380\n", + "1 high.school 7699\n", + "2 basic.6y 1389\n", + "3 professional.course 4321\n", + "4 basic.9y 4276\n", + "5 university.degree 10412\n", + "6 illiterate 11\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "basic.4y", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "basic.4y", + "offsetgroup": "basic.4y", + "orientation": "v", + "showlegend": true, + "text": [ + 2380 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "basic.4y" + ], + "xaxis": "x", + "y": [ + 2380 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "high.school", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "high.school", + "offsetgroup": "high.school", + "orientation": "v", + "showlegend": true, + "text": [ + 7699 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "high.school" + ], + "xaxis": "x", + "y": [ + 7699 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "basic.6y", + "marker": { + "color": "#00cc96", + "pattern": { + "shape": "" + } + }, + "name": "basic.6y", + "offsetgroup": "basic.6y", + "orientation": "v", + "showlegend": true, + "text": [ + 1389 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "basic.6y" + ], + "xaxis": "x", + "y": [ + 1389 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "professional.course", + "marker": { + "color": "#ab63fa", + "pattern": { + "shape": "" + } + }, + "name": "professional.course", + "offsetgroup": "professional.course", + "orientation": "v", + "showlegend": true, + "text": [ + 4321 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "professional.course" + ], + "xaxis": "x", + "y": [ + 4321 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "basic.9y", + "marker": { + "color": "#FFA15A", + "pattern": { + "shape": "" + } + }, + "name": "basic.9y", + "offsetgroup": "basic.9y", + "orientation": "v", + "showlegend": true, + "text": [ + 4276 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "basic.9y" + ], + "xaxis": "x", + "y": [ + 4276 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "university.degree", + "marker": { + "color": "#19d3f3", + "pattern": { + "shape": "" + } + }, + "name": "university.degree", + "offsetgroup": "university.degree", + "orientation": "v", + "showlegend": true, + "text": [ + 10412 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "university.degree" + ], + "xaxis": "x", + "y": [ + 10412 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hovertemplate": "Education=%{x}
Count=%{text}", + "legendgroup": "illiterate", + "marker": { + "color": "#FF6692", + "pattern": { + "shape": "" + } + }, + "name": "illiterate", + "offsetgroup": "illiterate", + "orientation": "v", + "showlegend": true, + "text": [ + 11 + ], + "textposition": "outside", + "texttemplate": "%{text}", + "type": "bar", + "x": [ + "illiterate" + ], + "xaxis": "x", + "y": [ + 11 + ], + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "Education" + }, + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Highest Education Qualification Distribution" + }, + "xaxis": { + "anchor": "y", + "categoryarray": [ + "basic.4y", + "high.school", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "illiterate" + ], + "categoryorder": "array", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Education Level" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Count the number of records for each education level and plot as a bar chart\n", + "\n", + "edu = df1['education'].value_counts(sort=False).reset_index()\n", + "edu.columns = ['education', 'count']\n", + "print(edu)\n", + "fig = px.bar(edu, x='education', y='count', title='Highest Education Qualification Distribution',\n", + " labels={'education': 'Education', 'count': 'Count'}, text='count',color='education')\n", + "fig.update_traces(texttemplate='%{text}', textposition='outside')\n", + "fig.update_layout( xaxis_title='Education Level', yaxis_title='Count')\n", + "\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "92f2a70f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "All 3 loans 'yes': 0\n", + "2 Loans 'yes': 2844\n", + "1 Loan 'yes': 15604\n", + "0 Loans 'yes': 12040\n" + ] + } + ], + "source": [ + "# Calculate the number of records where all three loans are 'yes'\n", + "\n", + "all_yes = df1[(df1['loan'] == 'yes') & (df1['housing'] == 'yes') & (df1['default'] == 'yes')].shape[0]\n", + "print(\"All 3 loans 'yes':\", all_yes)\n", + "\n", + "# Calculate the number of records where two loans are 'yes'\n", + "\n", + "two_loans_yes = (\n", + " df1[(df1['default'] == 'no') & (df1['housing'] == 'yes') & (df1['loan'] == 'yes')].shape[0] +\n", + " df1[(df1['default'] == 'yes') & (df1['housing'] == 'no') & (df1['loan'] == 'yes')].shape[0] +\n", + " df1[(df1['default'] == 'yes') & (df1['housing'] == 'yes') & (df1['loan'] == 'no')].shape[0]\n", + ")\n", + "print(\"2 Loans 'yes':\", two_loans_yes)\n", + "\n", + "# Calculate the number of records where one loan is 'yes'\n", + "\n", + "one_loan_yes = (\n", + " df1[(df1['default'] == 'no') & (df1['housing'] == 'no') & (df1['loan'] == 'yes')].shape[0] +\n", + " df1[(df1['default'] == 'yes') & (df1['housing'] == 'no') & (df1['loan'] == 'no')].shape[0] +\n", + " df1[(df1['default'] == 'no') & (df1['housing'] == 'yes') & (df1['loan'] == 'no')].shape[0]\n", + ")\n", + "print(\"1 Loan 'yes':\", one_loan_yes)\n", + "\n", + "# Calculate the number of records where no loans are 'yes'\n", + "\n", + "all_no = df1[(df1['loan'] == 'no') & (df1['housing'] == 'no') & (df1['default'] == 'no')].shape[0]\n", + "print(\"0 Loans 'yes':\", all_no)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "fac9d1dd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Category Count\n", + "0 3 Loans 0\n", + "1 2 Loans 2844\n", + "2 1 Loan 15604\n", + "3 0 Loans 12040\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "customdata": [ + [ + "3 Loans" + ], + [ + "2 Loans" + ], + [ + "1 Loan" + ], + [ + "0 Loans" + ] + ], + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + }, + "hole": 0.5, + "hovertemplate": "Category=%{customdata[0]}
Count=%{value}", + "labels": [ + "3 Loans", + "2 Loans", + "1 Loan", + "0 Loans" + ], + "legendgroup": "", + "marker": { + "colors": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa" + ] + }, + "name": "", + "showlegend": true, + "textinfo": "percent+label+value", + "type": "pie", + "values": [ + 0, + 2844, + 15604, + 12040 + ] + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Credit, Housing, and Loan Status Distribution" + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Create a DataFrame with the loan categories and their counts\n", + "\n", + "d={\"3 Loans\":all_yes,\"2 Loans\":two_loans_yes,\"1 Loan\":one_loan_yes,\"0 Loans\":all_no}\n", + "loan_counts=pd.DataFrame(data=list(d.items()),columns=[\"Category\",\"Count\"])\n", + "print(loan_counts)\n", + "\n", + "# Plot the loan categories distribution as a pie chart\n", + "\n", + "fig = px.pie(loan_counts, values='Count', names='Category', title='Credit, Housing, and Loan Status Distribution',\n", + " labels={'category': 'Category', 'count': 'Count'}, hole=0.5, color='Category')\n", + "\n", + "fig.update_traces(textinfo='percent+label+value')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "308ba5d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " marital count\n", + "0 married 17492\n", + "1 single 9443\n", + "2 divorced 3553\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "customdata": [ + [ + "married" + ], + [ + "single" + ], + [ + "divorced" + ] + ], + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + }, + "hole": 0.5, + "hovertemplate": "marital=%{customdata[0]}
count=%{value}", + "labels": [ + "married", + "single", + "divorced" + ], + "legendgroup": "", + "marker": { + "colors": [ + "#636efa", + "#EF553B", + "#00cc96" + ] + }, + "name": "", + "showlegend": true, + "textinfo": "percent+label+value", + "type": "pie", + "values": [ + 17492, + 9443, + 3553 + ] + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Marital Status Distribution" + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Count the number of records for each marital status and plot as a pie chart\n", + "\n", + "marital_counts = df1['marital'].value_counts(sort=False).reset_index()\n", + "marital_counts.columns = ['marital', 'count']\n", + "print(marital_counts)\n", + "fig = px.pie(marital_counts, values='count', names='marital', title='Marital Status Distribution',\n", + " labels={'category': 'marital', 'count': 'count'}, hole=0.5, color='marital')\n", + "\n", + "fig.update_traces(textinfo='percent+label+value')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "76d008e6", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "contact=%{x}
count=%{y}", + "legendgroup": "telephone", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "telephone", + "offsetgroup": "telephone", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "contact=%{x}
count=%{y}", + "legendgroup": "cellular", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "cellular", + "offsetgroup": "cellular", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "contact" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "categoryarray": [ + "telephone", + "cellular" + ], + "categoryorder": "array", + "domain": [ + 0, + 1 + ], + "title": { + "text": "contact" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot the distribution of contact types as a histogram\n", + "\n", + "fig = px.histogram(df1, x='contact',color='contact')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "780f06a3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " month duration\n", + "0 apr 173.064444\n", + "1 aug 301.935556\n", + "2 dec 14.672222\n", + "3 jul 393.085833\n", + "4 jun 247.478056\n", + "5 mar 32.635000\n", + "6 may 703.774444\n", + "7 nov 238.808333\n", + "8 oct 52.211667\n", + "9 sep 39.876389\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "month=%{x}
duration=%{y}", + "legendgroup": "", + "line": { + "color": "#636efa", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "apr", + "aug", + "dec", + "jul", + "jun", + "mar", + "may", + "nov", + "oct", + "sep" + ], + "xaxis": "x", + "y": [ + 173.06444444444443, + 301.93555555555554, + 14.672222222222222, + 393.0858333333333, + 247.47805555555556, + 32.635, + 703.7744444444445, + 238.80833333333334, + 52.211666666666666, + 39.87638888888889 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Call Duration Distribution by Month in hrs" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Month" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Call Duration in hrs" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Calculate the total call duration by month and plot as a line chart\n", + "\n", + "call_duration_by_mnth=pd.DataFrame(df1.groupby('month')['duration'].sum()/3600).reset_index()\n", + "print(call_duration_by_mnth)\n", + "fig=px.line(call_duration_by_mnth, x='month', y='duration', title='Call Duration Distribution by Month in hrs')\n", + "fig.update_layout(xaxis_title='Month', yaxis_title='Call Duration in hrs')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "a3c75457", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " day_of_week duration\n", + "0 fri 402.101389\n", + "1 mon 430.461111\n", + "2 thu 478.085000\n", + "3 tue 430.377222\n", + "4 wed 456.517222\n" + ] + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "day_of_week=%{x}
duration=%{y}", + "legendgroup": "", + "line": { + "color": "#636efa", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "fri", + "mon", + "thu", + "tue", + "wed" + ], + "xaxis": "x", + "y": [ + 402.1013888888889, + 430.4611111111111, + 478.085, + 430.3772222222222, + 456.51722222222224 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Call Duration Distribution by Day in hrs" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Day of Week" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Call Duration in hrs" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Calculate the total call duration by day of the week and plot as a line chart\n", + "\n", + "call_duration_by_day=pd.DataFrame(df1.groupby('day_of_week')['duration'].sum()/3600).reset_index()\n", + "print(call_duration_by_day)\n", + "fig=px.line(call_duration_by_day, x='day_of_week', y='duration', title='Call Duration Distribution by Day in hrs')\n", + "fig.update_layout(xaxis_title='Day of Week', yaxis_title='Call Duration in hrs')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e37366ec", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['age', 'duration', 'campaign', 'pdays', 'previous', 'emp.var.rate',\n", + " 'cons.price.idx', 'cons.conf.idx', 'euribor3m', 'nr.employed'],\n", + " dtype='object')" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "numerical_cols = df1.select_dtypes(include=['number']).columns\n", + "numerical_cols" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "e5794007", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA40AAAHiCAYAAABMaSmfAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAADqH0lEQVR4nOzdd3gcxfnA8e97qqd26sWWLLn3LjcwNgZML6G3hBBCSQIEEnoJBEwJJQmm94QfxfQOAQO2wTbuvXfJalbvOkmnu/n9cWdJJ51sg1XN+3kePb7dnd2bGW+bfWfnxBiDUkoppZRSSinli6WrM6CUUkoppZRSqvvSRqNSSimllFJKqTZpo1EppZRSSimlVJu00aiUUkoppZRSqk3aaFRKKaWUUkop1SZtNCqllFJKKaWUapM2GpVSSnU4EblcRBYdxvr/E5HftmeelFJKKXVotNGolFK/ECJyiYisFJEqEcnzNMSmdnW+WhKRv4vIG83nGWNOMca81gHf9V8ReaDFvDQRMSLi3w7bXyAiVx7udpRSSqmupI1GpZT6BRCRvwJPAA8BCUAf4FngrJ+xrVaNqfZoYCmllFKqe9JGo1JKHeFExAbcD1xrjPnQGFNtjHEYYz4zxtziSRMkIk+ISK7n7wkRCfIsO1ZEskXkNhHZB/zHEw18X0TeEJEK4HIRsYnIK54oZo6IPCAifm3kabaIZIlIhYisEpFjPPNPBu4ELvRERNd55jdG7ETEIiJ3i0imiBSIyP95ytg8SvhbEdkrIkUictdh1l+QiDzu2V6+iDwvIlbPsigR+VxECkWk1PM52bPsQeAY4GlPWZ72zDci8icR2SEilSIyS0T6i8iPnvp4V0QCD7b9ZvXysIgs96z7iYhEH055lVJKqZa00aiUUke+KUAw8NEB0twFTAbGAKOBicDdzZYnAtFAKnC1Z95ZwPtAJPAm8F+gARgAjAVOBNrqmrnC813RwFvAeyISbIz5Cnc09B1jTJgxZrSPdS/3/M0A+gFhwNMt0kwFBgPHA/eIyNADlP1g/gEM8uR3ANAbuMezzAL8B3e99AHs+/NijLkLWAhc5ynLdc22eRIwHned3wq8CPwaSAFGABcfbPvNXAZcASThrv8nD6OsSimlVCvaaFRKqSNfDFBkjGk4QJpLgfuNMQXGmELgPuA3zZa7gHuNMXXGGLtn3hJjzMfGGBcQAZwK3OiJZBYA/wYu8vVlxpg3jDHFxpgGY8w/gSDcjbxDcSnwL2PMbmNMFXAHcFGLLrL3GWPsxph1wDrcDeG23CwiZfv/gPX7F4iI4G4k/8UYU2KMqcTdqL3IU45iY8wHxpgaz7IHgemHUIZHjTEVxphNwEZgrqc85cD/cDe6D3X7rxtjNhpjqoG/ARe0FeFVSimlfg59B0UppY58xUCsiPgfoOHYC8hsNp3pmbdfoTGmtsU6Wc0+pwIBQJ67nQW4H0xm4YOI3Az83vMdBnejM/bgRWkzr/6439Xcb1+zzzW4o5FtedwY0xhVFZE0YI9nMg4IAVY1K5cAfp60IbgbxycDUZ7l4SLiZ4xxHuA785t9tvuYTvwJ229ex5m4/x9iW2xTKaWU+tk00qiUUke+JUAd8KsDpMnF3fDbr49n3n7GxzrN52V5viPWGBPp+YswxgxvuZLn/cVbgQuAKGNMJFCOuzHW1ncdLK8NdEwjqQh3I254s3LZjDH7G6E34Y6QTjLGRADTPPMPtSwHc7Dtg7tL6359AIcn30oppVS70EajUkod4TxdHu8BnhGRX4lIiIgEiMgpIvKoJ9kc4G4RiRORWE/6N9rapo/vyAPmAv8UkQjPYDX9RcRXV81w3I28QsBfRO7BHWncLx9IE5G2rlFzgL+ISF8RCaPpHcgDdb/9WTxdb18C/i0i8QAi0ltETmpWFjtQ5hmA5t4Wm8jH/d7lz3Ww7QP8WkSGeaKS9wPvHyTKqZRSSv0k2mhUSqlfAM97g3/FPbhNIe7I4HXAx54kDwArcb/PtwFY7Zn3U1wGBAKbgVLcg+Qk+Uj3NfAVsB13d8pavLtYvuf5t1hEVvtY/1XgdeAH3N1Ia4Hrf2Jef4rbgJ3AUs9Isd/S9P7lE4AVd2RvKe5yNTcbOM8z8unPGaDmYNsHd138F3eX3GDgzz/je5RSSqk2iTGH23NGKaWUUl1BRBYAbxhjXu7qvCillDpyaaRRKaWUUkoppVSbtNGolFJKKaWUUt2IiLwqIgUisrGN5SIiT4rIThFZLyLjmi37rYjs8Pz9tl3yo91TlVJKKaWUUqr7EJFpQBXwf8aYET6Wn4r7ff5TgUnAbGPMJM+gaSuBdNwjeK8CxhtjSg8nPxppVEoppZRSSqluxBjzA1BygCRn4W5QGmPMUiBSRJKAk4BvjDElnobiN7h/6/ewaKNRKaWUUkoppXqW3niPPJ7tmdfW/MPif7gbUN6sY6/T/r5t+N3f/tTVWejW/EQOnugXyhqoz7cOpKTK0dVZ6LaiwwK6OgvdltPV1Tno3rJLaro6C91WcnRIV2ehWwvy0+t5Wx46dVCPq5yOuLevXfvMNcDVzWa9aIx5sb2/pz1po1EppZRSSimlOomngXi4jcQcIKXZdLJnXg5wbIv5Cw7zu7R7qlJKKaWUUkr5JJb2/2sfnwKXeUZRnQyUG2PygK+BE0UkSkSigBM98w6LRhqVUkoppZRSypcuen1IRObgjhjGikg2cC8QAGCMeR74EvfIqTuBGuB3nmUlIjILWOHZ1P3GmAMNqHNItNGolFJKKaWUUt2IMebigyw3wLVtLHsVeLU986ONRqWUUkoppZTypf26k/ZoWgtKKaWUUkoppdqkkUallFJKKaWU8kV/Eg3QRqNSSimllFJK+abdUwHtnqqUUkoppZRS6gA00qiUUkoppZRSvmj3VEAjjUoppZRSSimlDkAjjUoppZRSSinli77TCGikUSmllFJKKaXUAWikUSmllFJKKaV80XcaAW00KqWUUkoppZRv2j0V0O6pSimllFJKKaUOQCONR6Dn772UU6aNoLCkkvTzH+rq7HSYYQmhnD8qERHhx4xS5m4v9lrubxF+m96LlEgr1fVOXlmeTUmNA4CTBsUwJS0KYwzvrtvHloJq4sMC+f3E5Mb1Y0MD+HxzIfN3ldDbFsTFY5II8rdQUuPgPytyqG1wdWp5f45zRyUwPCGMeqeLN1blkV1e2ypNSmQwvx6XRICfhU35VXywPh+AkAALv5vYm+iQQEpq6nl1eQ52h4v05AhOGBSDALUNLt5du4+cirrG7Qlwy4y+lNc6eGFJdieV9OczxrDho5co2LISv8Agxl58I5HJ/VulK8vayeo5s3E56ogfms7Is69CRNj61VtkLp1LYJgNgGGn/oaEYenUV1ew4r+PUJq1gz4TjmPUuX/o7KK1i+GJYVw8NgmLwMLdpfxva5HXcn+L8PtJyaRGBVNV7+SFH7Mo9hxnANEhAdx/8gA+3VTA3G3uY/T4gTFM6x8FuLf5bYtjtyfqqP2op/vV8HiGJoRS7zS8vTaPnPK6VmmSbUFcNCaJAD9hS341H28qAODkwTEMTwzHGENVvZO31+RRUecEoH+MlbOGx+NnEarrnTz7Y1anlqs9je4VzuUTk7GIMG9HMZ9szPdaPjQhlN9OSKZPlJXZP2SwLLMMcF+jbp7RDxHwswhfbSk8Io4l0P3mQIwxrPvoRfZtWYVfQBDpF99AVMqAVulKs3aycs4TOB31JA4dz+izr0Y83Sx3/vAZuxZ/gYiFpGETGHnm76guyWfuP/5EeFxvAKJTBzPugms7tWzdlnZPBbTReER6/bOlPP/O97w867KuzkqHEeDC0Uk8uSiTMruD22b0Y31eJfsq6xvTHJUWSU29k7/P3cn45AjOHhHPK8tzSAwPZHyyjQe+3YUt2J8/T03l73N3UlBVz8Pzdjdu/6FTB7EutxKAX4/rxYcb8tlRVMOU1EhOGBTD55sLu6Dkh25YQijxoYHc/80u0qKCuXBMIv/8PqNVugtHJzJnTR4ZpbX8cUoKwxJC2ZxfzcxBsWwvrOGb7VnMHBTDzEExfLqpkOIaB7MXZmJ3uBiWEMpFY5O8tnvsgGjyK+sIDugZHRkKtqyiuiiX4+98gdLMbax7/zmm3/h4q3Tr3n+OMRdcS1TqYJa+dB8FW1eTMHQ8AP2nn8WAGWd7pbf4BzLklEup2JdJZV5mp5SlvYnApeN78a8Feyi1N3D3zH6sza0kr9lDgqn9oqiud3LnlzuYkGLjvNGJvLCk6UbsgjGJbNxX1TjdyxbEtP5RPPjNLhpchhunpbE+t5KCqnp6so7aj3qyIfGhxIYF8PC8PfSJDObckQk8uWhvq3Tnjkzg3XX72FtWy5WTejMkPpStBdXM31XKV54HDVP7RjJzUCwfbMgn2N/COSMTeGlZNmX2BsIC/Tq7aO1GBK6YnMKDc3dSXOPg4dMGszKrnJxmD/iKqhw8uziTM4YneK1bam/g7i+30+AyBPlbePysIazKKqfU3tDZxWhXut8c2L4tq6gqzOWkO1+gJHMba95/juP+8s9W6da8/yzjLriO6NTBLH7x7+RvXUXi0HQKdqwnd+MyTrjlKfz8A6itLGtcJywmkRNuebITS6N6kp5xV9eORORjEVklIptE5GrPvN+LyHYRWS4iL4nI0575cSLygYis8Pwd3bW5PzSLV++ipLymq7PRodKirRRW11Nc48BpYFV2OaOTwr3SjEoKZ+necgDW5FQwOC4UgNFJ4azKLqfBZSiucVBYXU9atNVr3SHxoRRV11Nid0dM4sMC2VHkrtOtBVWM7RXR0UU8bCOTwlme5S5/Rmkt1gALEUHez4kigvwJDrCQUeq+QVmeVc5ITz2OTApjWaZ7/WWZ5YzyzN9TYsfucDV+jrQ2bTMy2J/hCWEsySjr0LK1p7yNy0hJn4GIEJ02BIe9mtqKEq80tRUlNNTVEJ02BBEhJX0GeRuWHnC7/kHBxPQbhp9/YEdmv0P1jbZSUFlHUbUDp8uwfG85Y3p7H2djeoXzY0Yp4D4OhySENi3rHU5RdT25zaIESeFB7C62U+80uAxsL6xmXHL3P54OpqP2o55sRGIYq7IqANhbVos1wI/wIO8b9fAgP4IDLOwtc5+DVmVVMCIxDIC6Zr05Av2ablfG9Y5gQ14VZZ7GUVW9s0PL0ZEGxIaQX1FHQVU9Tpfhxz2lTEixeaUprK5nb2ktLmO85jtdhgaXe16An2DhyIiG6H5zYHkbl5I64ThEhBjPucZe7n2usZeX4KitIcZzrkmdcBy5nnPN7sVfMvj48/DzDwAgODyys4vQ84il/f96oF9ipPEKY0yJiFiBFSLyBfA3YBxQCcwD1nnSzgb+bYxZJCJ9gK+BoV2RaeUtMtifUntTF7hSe0Orhl/zNC4DdoeL0EA/bNYAMkrsjenK7A4ig70PhfHJEaz0NLgA8irqGJ0Uzrq8Ssb2jiDK2v0PnUirdx2V2RuwWf2pqGt6Cm2z+jdeQN1pHI2NwPCgprQVdQ2EB7Uu85TUSDbnVzdOnzMqgU82FRDk33NOiLUVxVgj4xqnrZEx2MuLCY6IbpxnLy8m2BbbLE0stRVN3cB2L/qCrJXziEwZwPAzf09gSFjnZL6DRVkDvI+zmgb6xXgfZ1EhAZTWeB9nYYF+OFyGU4bE8a/vMzhpcFPd5ZbXcfaoBEID/XA4XYxMCiej1E5Pp/tRa7Zgf8pqm84v5XYHtmB/Kuuc3mman4NqG7A1Ox+fMiSW9OQI7A4Xz3ki2HFhAfiJ8McpKQT5W1i4p5RV2RWdUKL2Fx0SSHF1U5S9uKaeAXGhB1jDW0xIALcd35/EiCDeWJnT46OMoPvNwdjLi7FGNj+PxFBbXozV1nSucU83S2OLxV7uPtdUFeZSvHsTm758Hb+AAEaeeQXRfQYBUF2Sz7eP30BAsJXhp/yG2P7DO6lU3Zx2TwV+gZFG4M8isg5YCqQAvwG+N8aUGGMcwHvN0p4APC0ia4FPgQgR6dlXcXVQfuKOUq7OabqYvL4ql2n9orh9Rl+C/S2NT3d/yQbGhjAlLZJPPO+RDE8Mo6rOSVZZ6/cmj2RpR5/CzLte4NibZhMUEc2mT1/p6ix1C2cOj+eb7UVeT/0B8irr+GpLEX+dnsaN09LIKrO3iqD8Eul+5Nv/thYx69vdrM6pYGpaJAAWEZIjg3lleTYvLctm5sAYYkMDujajXaS4xsGtn23lhg83MX1AtFfD6ZdM95u2GZeT+poqZtz4OCPPuIJlrz2CMYbgiGhOuedVTrh5NqPOupLlbzyOo/bI7rWmfppf1NlFRI7F3RCcYoypEZEFwFbajh5agMnGmAPeBXu6uV4N4J98LP6x+mSmo5XVNhBlbTrZR1n9KW8WEWmepszegEXAGmChut5Jud3hFSmMtAZ4PdUcnhhGVlmt11PN/Kp6nlrsfqciPiyQEYneXfS6i2P6RnGU5wK5t8zuqSN3FCfS6k95i6fQ5fYG7+6lnvoCqKxrIMITbYwI8qeyWYSyV0QQF49N4rklWdR4uvj0i7YyIimMYQn9CfCzEOxv4bLxvfi/VbkdWOKfZ/eiL8hcOheAqJSB2Mua3k+1lxVjtcV4pbfaYqgtL2qWpojgCHea4PCoxvlpk09k6cuzOjLrnarU7vA+zkK8o9cApTUOd7Sx2XFWVe+kb4yV8SkRnDc6kZAAP4wxOJyG+TtLWLSnlEV73F1azx6Z0GqbPYXuR60dnRbJpD7u7pVZZbVevThs1gDKa1ucg2obWnVxb5kGYHVOBVdOTObr7cWU1zZQU1BNvdNQ73Syu6SGXhFBFFX3vP2opKaemNCmLuwxIYGU/oxylNobyCqtZUhCWONAOT2J7jcHtmvRF+xZ8jUAUX0GYi9rfh4pJrjFuSbYFoO9+bmmvKjxfGSNjKXXqCnurvSpgxCxUF9dQVCYrbHLalTKAEJjEqkqyCGqz8COLl7310O7k7a3X1ot2IBST4NxCDAZCAWmi0iUiPgD5zZLPxe4fv+EiIzxtVFjzIvGmHRjTLo2GDtHZqmd+LBAYkIC8BMYn2xjfV6VV5r1eZVM9lyExvaOYFthtWd+FeOTbfhbhJiQAOLDAr26q6Yn21iRXe61rTDP+xQCnDI4loWeG97uZuGeUh6Zv4dH5u9hfW4VEz3vxqRFBVPrcHl1TQV3t9Nah4u0qGAAJqbY2JDnHvxnw74qJqW615+UamODp36jrP5cOSmZ11flUths8JLPNhdyz1c7+fvcXfxnRQ7bi6q7ZYMRoN/U05hx82xm3DybxJGTyFo5H2MMJRlbCQgO8epSCBAcEY1/UAglGVsxxpC1cj5JIyYBeL23lrdhKRGJqZ1alo6UUWInITyI2NAA/CzCxD421uVUeqVZl1vJUWnuBs/4ZBtbPd2VH523h9s/387tn2/n2+3FfLGlkPk73XW1//2k6JAAxiVH9MibXND9yJfFGWX864dM/vVDJhv3VTE+xf2+ap/IYGodTq+HcQCVdU5qHS76RLrPQeNTIhoHTmoeBRqRENY4WNLGfVX0jbZiEfe7fH0irT12IKVdRTUkRgQRFxaIn0U4qm8UK1tcf9oSHRJAgJ+721xooB+D40PJ9TFCdk+g+82B9Z96Gifc8iQn3PIkvUZMJnPFPIwxFGdsJcAa4tU1FcBqiyYgOIRiz7kmc8U8kkZMBqDXiMkU7lwPQGVBDi5nA4GhEdRVlWNc7nquKtpHVVEuoTGJnVtQ1a39oiKNwFfAH0RkC7ANdxfVHOAhYDlQgjvyuP+M/WfgGRFZj7uufgC6/bj5rz18OceMH0hsZBg7v5rFrOe/5LWPl3R1ttqVy8A7a/dx3dF9sIiwJLOMvMo6Th8aR2aZnQ15VfyYUcbl6b35+4kDqPH85Aa4u8etzqngbyf0x2UMb6/dx/7OcYF+wpD4UN5ak+f1fROSbUzr574xXptbyZIecJO7Kb+KYYmh3DOzPw6nizdWN5Xpthl9eWT+HgDeWbePX49PIsBiYUt+VeM7it9sL+aKCb2ZnBpJaY2DVz31d/KQOEID/bhgtPti4jKGxxZkdG7h2lHC0HTyt6zi24euwS8giLEX/7lx2fzHb2DGzbMBGHXeH1gzZzZORz0JQ8YR7xnxctNn/6U8Zw8iEBKdwOjz/9S4/txZV9JQW4PL2UDexmVMueY+IhL7dG4BD4PLwFurc7lxehoWERbvLiW3oo6zRsSTUWJnXW4lC3eXcuXkZB46dSDV9U6vkVPb8sej+xAW6IfTGN5clds4sFJP1pH7UU+1paCaofGh3HFcXxyen07Y76/TUvnXD+5RhT/YkN/40wlbC6rZWuA+B502NI640EAM7oj2+xvcP0VRUFXP1sJqbpqehjGwbG+518jZPYnLwKvLsrnzhP5YLMKCHcVkl9Vy/phEdhfXsCqrgv4xIdw0oy+hgX6MT7Zx/phEbv5kK71twfwmvXfjtj7fVHBEvB6g+82BJQ5LZ9+WlXz94NX4BQaRftENjcu+fezPjaOfjj33j40/uZEwdDyJnnNN2qQTWPn2k3zzyLVY/PxJv+RGRISiXRvZ9L83sfj5IyKMPe9aAkO7Z6+qTqeRRgDE6LskiEiYMabKE2n8CHjVGPPRz9mWdex1WqFt+N3fev5NUEfy0xet22QN1BP2gZRUdf/uVV0lOuyX987SoXL2/LZ6h8ou0fe52pIcHdLVWejWgvz0et6Wh04d1OMqxzpjVrvf29vn/63H1YPeibn93TPYzUZgD/Bxl+ZGKaWUUkoppbqJX1r3VJ+MMTd3dR6UUkoppZRS3Yx2TwU00qiUUkoppZRS6gA00qiUUkoppZRSvuiYE4A2GpVSSimllFLKN+2eCmj3VKWUUkoppZRSB6CRRqWUUkoppZTyRbunAhppVEoppZRSSil1ABppVEoppZRSSilf9J1GQCONSimllFJKKaUOQCONSimllFJKKeWLvtMIaKNRKaWUUkoppXzT7qmAdk9VSimllFJKKXUAGmlUSimllFJKKV+0eyqgkUallFJKKaWUUgegkUallFJKKaWU8kXfaQS00aiUUkoppZRSvmn3VEAbje3ud3/7U1dnodv6z6xnuzoL3dpfHvxzV2eh23K4TFdnoVsL8NenoG2pb9B9py31TldXZ6FbS7BZuzoL3ZYxelwdiEMPLXUE0kajUkoppZRSSvmi3VMBHQhHKaWUUkoppdQBaKRRKaWUUkoppXzRSCOgjUallFJKKaWU8k0HwgG0e6pSSimllFJKqQPQSKNSSimllFJK+aLdUwGNNCqllFJKKaWUOgBtNCqllFJKKaWULyLt/3dIXysni8g2EdkpIrf7WP5vEVnr+dsuImXNljmbLfu0PapBu6cqpZRSSimlVDchIn7AM8BMIBtYISKfGmM2709jjPlLs/TXA2ObbcJujBnTnnnSSKNSSimllFJK+SKW9v87uInATmPMbmNMPfA2cNYB0l8MzGmH0rZJG41KKaWUUkop5UsHdE8VkatFZGWzv6tbfGtvIKvZdLZnno/sSSrQF5jXbHawZ7tLReRX7VEN2j1VKaWUUkoppTqJMeZF4MV22txFwPvGGGezeanGmBwR6QfME5ENxphdh/Ml2mhUSimllFJKKR/kEAeuaWc5QEqz6WTPPF8uAq5tPsMYk+P5d7eILMD9vuNhNRq1e6pSSimllFJKdR8rgIEi0ldEAnE3DFuNgioiQ4AoYEmzeVEiEuT5HAscDWxuue5PpZFGpZRSSimllPKhKyKNxpgGEbkO+BrwA141xmwSkfuBlcaY/Q3Ii4C3jTGm2epDgRdExIU7QPiP5qOu/lzaaFRKKaWUUkopX7qkdyoYY74Evmwx754W03/3sd6PwMj2zk+3bjSKyN+BKmPM44e5nUjgEmPMs57pXsCTxpjzDjuTHWxYQijnj0pERPgxo5S524u9lvtbhN+m9yIl0kp1vZNXlmdTUuMA4KRBMUxJi8IYw7vr9rGloJr4sEB+PzG5cf3Y0AA+31zI/F0l9LYFcfGYJIL8LZTUOPjPihxqG1ydWt7O8Py9l3LKtBEUllSSfv5DXZ2dTmGMYd1HL7Jvyyr8AoJIv/gGolIGtEpXmrWTlXOewOmoJ3HoeEaffXXjE7adP3zGrsVfIGIhadgERp75O1zOBla9/RRlObswTid9JhzHkBPO7+ziHRZjDBs/fon8LSvxCwxi7EU3Epncv1W6sqydrHl7Nk5HHQlD0xnxq6u8nj7uXPARmz/7Dyfd9wZBYREAFO3cwMZPXsY4GwgMjeDoax/utHK1l2EJoVww2n0OWryn7XNQnyj3OejlZe5zUGigH1dNSiY12srSzDLeWbuvcZ3xyRGcPCQWi8CGvCo+3ljQ2cVqN+eMjGdofBgOp4u31uSRXV7XKk2yLYhLxiURYLGwpaCKDze4y3vmsDiGJ4bhdBmKahzMWZ2HvcFFn8hgLhyT2Lj+V9uK2JBX1Wllai8/9/q1f9/pE+Xed95d17TvXHt0H2xB/lgssKuohrfX7sO0/OJu7NyR8QxLCKPe6eLN1b73lxRbEJeOSyLAz8Lm/Co+8OwvIQEWLp/Qm+iQgMZrtN3hwhpg4ZKxScSGBtDgMry1Oo+8ynoA7j2xP3UOJy7A5TI8/n1mZxb3Zzt7RDxDPfU0Z00eOW0cVxePddfTlvwqPvKcR84YFsewhDCcxlBc7WDOmjxqG1z4CZw/OpGUyGCMgY82FrCruKazi9auOvL6pVRLR8w7jSJyoAZwJPCn/RPGmNye0GAU4MLRSTy9eC+zvtlJerKNxPBArzRHpUVSU+/k73N3Mm9nMWePiAcgMTyQ8ck2Hvh2F08v3stFY5IQoKCqnofn7ebhebv5x7zd1DsN63IrAfj1uF58sqmAB7/bzdrcSk4YFNPJJe4cr3+2lLOufaars9Gp9m1ZRVVhLifd+QLjLriWNe8/5zPdmvefZdwF13HSnS9QVZhL/tZVABTsWE/uxmWccMtTnHj7swyccTYA2WsX4XI6mHnr0xx307/Z8+NXVJfkd1q52kPB1lVUF+Vy/B0vMPr8a1n/ge+6Wf/Bc4y+4FqOv+MFqotyKdi6unGZvbSQwm1rsUbFNc5z2KtY/+HzTLzibmbc+gzpl93W4WVpbwJcNMZ9Drp/7k4mpLRxDnI4uffrnczb0XQOcjhdfLa5gA/Xe+8PoYF+nDMygdk/ZDLrm93Ygv0ZHBfaWUVqV0PjQ4kLDeTB73bzzrp9nD860We680cn8s7afTz43W7iQgMZGu8u77bCah6Zv4dHF2RQWFXfeM7Nq6zjn99n8NiCDF5YksUFoxOxdNGT7p/rcK5f+/edjza0Ppe8siybh+bt5oFvdxMW5M+45J5zgzssIZS4sEBmfbubd9bu44I29pcLxiTy9tp9zPp2N3FhTfvLCYNi2F5YzQPf7mZ7YTUzB7r3lxMHxZBTXssj8zN4fVUe54xK8NreU4uzeHR+Ro9pMA6NDyU2NJCHvtvNe+v2cd4o3/V03qhE3l23j4e+201saCBDmh1Xjy3Yw+P7jytPPU1OjQTgsQUZPL8kizOHx3dVAKnddNT1S3kT909ktOtfT9TtGo0icpeIbBeRRcBgz7wFIpLu+RwrIhmez5eLyKciMg/4TkTCROQ7EVktIhtEZP+PYP4D6C8ia0XkMRFJE5GNnm0Ei8h/POnXiMiMZtv+UES+EpEdIvJoJ1cFadFWCqvrKa5x4DSwKruc0UnhXmlGJYWzdG85AGtyKhpvvkYnhbMqu5wGl6G4xkFhdT1p0VavdYfEh1JUXU+J3R2ZjA8LZEeR+6nb1oIqxvbqORfjn2Lx6l2UlPfsp4s/Vd7GpaROOA4RISZtCA57NfbyEq809vISHLU1xKQNQURInXAcuRuWArB78ZcMPv48/PwDAAgOjwTcJ9KGulpcTidORz0Wf38CgkI6tWyHa9/GZSSPn4GIEJ3qrpvaCu+6qa0ooaG2huhUd90kj5/Bvo1LG5dv/PQVhp1xOc37sGSv/oGkkVMI8VyIgzx11pPsPwcVVbvPQSuzyxndy/scNLpXOEsz3eeg1TkVjTdu9U7DrmI7Dpd3b4XY0AAKquqpqnePDL6loJqxvb232VOMTApjRZa77JmltVgDLEQE+XmliQjyI9jfQmZpLQArssoZmRQGwLbCGlyeMFlGqR1bsPvZp8NpGuf7+1noUaE0j8O5fjXuO87WPV32936xiDtS2ZPqZmRiGMs95c04yP6S4dlflu8tZ5Rnf2m+/vK9TftRYngQ2z3X7oKqemJCAghvsd2eZERiGCuzvY+rluUJD/IjqNlxtTK7nJGJ7vrY3uy4yiy1Y7O6j6uE8KDGe5yqeid2h5OUyODOKFKH6ajrl1K+dKvuqSIyHvcLnWNw5201sOogq40DRhljSjzRxrONMRWe0YKWisinwO3ACGPMGM/3pDVb/1rAGGNGekYgmisigzzLxuAeorYO2CYiTxljmv/QZoeKDPan1NOgAyi1N7Rq+DVP4zJgd7gIDfTDZg0go8TemK7M7iAy2Pu/e3xyBCs9NzwAeRV1jE4KZ11eJWN7RxBl7Va7hzoM9vJirJGxjdPWyBhqy4ux2qIb57mnm6WxxWIvd3cnqyrMpXj3JjZ9+Tp+AQGMPPMKovsMovfoo8nduIwv7r0Mp6OOUWddSWBoz2oA1JYXY41sesJqtbnrJjjCu26CveovllpP3eRtXEqwLQZbr75e260uzMHldLL42TtpqLPT75gzSEk/roNL074irf6U1nifg/oe4jmout6JL4VV9SSEBRIdEkCZ3cGYXuH49bQwmoctOIBSe0PjdJm9AZs1gIq6prLbrAGU1bZIExzQaluT+kSyJqeicTo1KpiLxiQRHRLAG6tzG2+Ce4rDuX61te/sd93RfUiLsrIpv4rVzeqsu7NZAyhrvr/UtrG/+EgDEB7s35i2os5JuOeanlNey+ikcHYX2+kTGUyUNYDIYH8q65xgDH86yj1q/+I9pfyY2XTN764iglvUgeeYqWxeT8EBlLc4riJ8HFcT+0SyNte9j+RW1DI8MYw1ORVEWgNIiQwm0hrA3rLaDixNx+qo65fy1lMjg+2tu7UKjgE+MsbUAHgafAfzjTFm/2MVAR4SkWmAC+gNJLS5pttU4CkAY8xWEckE9jcavzPGlHvyshlIBTqt0diR/MT9lPeTTU3vEr2+KpcLRidyypBY1udV0tDT7lJUhzEuJ/U1Vcy48XFK9+5g2WuPcPLdL1OSuR0RC6fd9xr1NVV8/9TtxA8aQ1is7+5ER5qG+jp2fPc+U66+r9Uyl8tJefZOpvzhAZyOehY9dQtRqYMJi+vdBTntPmocLuaszePKSckYY9hdbCc2rPXN3i/JzEExuIxhVXZTAyiztJZH5u8hISyQS8YlsSW/Ws/JHk8v3ou/RfjdhN4Mjg9la0F1V2epa3h2h293lHDOyHhunZFGXkUd2eW17I/RPrFwL+W1DYQF+nHt0SnkV9Wzq9je5iaPJCcM9D6ulu8tJyEsiL9MS6O0xkFGiR2X+eUeUwe6filv2mh0626NxrY00NSVtmVfguZXi0uBOGC8Mcbh6cZ6OH0Pmr957aSN+hKRq4GrAaZfcy/DTrzgML6ySVltA1HWppupKKs/5c2e3DZPU2ZvwCJgDbBQXe+k3O7wihRGtnjaPTwxjKyyWq8nd/lV9Ty1eC/g7qo6IrFnRYyUt12LvmDPkq8BiOozEHtZUeMye1kxwTbvd1aDbTHYy5ulKS/C6kljjYyl16gpni4wgxCxUF9dQdbq70kYMg6Lnz/B4ZHE9B1KWdaObt9o3LPoCzKXzQUgMmUg9rLCxmX2ct91U+tVf0UE22KoKc6jpiSfBf+8AYDa8iJ++PeNHHPDP7HaYgkMicA/KBj/oGBi+g2nIndPj2o0ltkbiArxPgeVHeI56EA25FU1DuwytW9kj7pxm9o3kimed6P2ltYSZfVnj2dZpI9zdHmLXh6RVn/Ka5vSTEyxMTwhjGd+3Ovz+/Kr6qlrcJEUEURWD4qIHM7161A0uAzr8yoZlRTerRuNx/SNZEpaJODeXyKbX5eD29hf2khTWdtARJAfFXVOIoL8qKxzX9NrG1y8taZpsKB7T+xPcbV7nf3RuKp6J+vzqkiNsnbLRuPRaZGN7xxmlbWopxbHDEB5raOxO/f+NBXN0kxIsTEsIYznljQdVy6D14Py66f2obCqvr2L0uE64/oVHBHVCSVRPU13e6fxB+BXImIVkXDgDM/8DGC85/OBBrCxAQWeBuMM3JFBgEqgrRbQQtyNTTzdUvsA235Kpo0xLxpj0o0x6e3VYAR3X/z4sEBiQgLwExifbGN9ixH01udVMrmPDYCxvSPYVljtmV/F+GQb/hYhJiSA+LBAr+6q6ck2VmR7d1MJ87wzIMApg2NZuKe03cqiOl//qadxwi1PcsItT9JrxGQyV8zDGENxxlYCrCFeXVMBrLZoAoJDKM7YijGGzBXzSBoxGYBeIyZTuHM9AJUFObg8o4GGRMU1zm+oq6UkcxvhCcl0d32nnsaxN83m2JtmkzRiEtmr5mOMoSRzKwHBIV5dewCCI6LxDw6hJNNdN9mr5pM4YhIRSWmcfN/rzLz7ZWbe/TLBtlim/eUJgiOiSBwxiZI9m3E5nTTU11G6dzth8SldVOKfp+U5KD3ZxvrcFueg3Eomp7rPQeOanYMOZP/7SSEBFqb1i2ZxRlm7572jLNpTxmML3IPUbNhXyYQUd9lTo4KxO1xeXQ3B3Y2wtsFFapT7+eWEFFtjg3lIfCjHDYzmpWXZOJxNDefokIDGgW+irP4khAc2jordUxzO9astQX5ChKehYBH3u2/5la1H1exOFu4p49H5GTw6P4P1eZVM9JQ3LSqY2oa295c0z/4ysY+NDfvc9bZxX1Xj+s3nWwMs+Hn2lympNnYV1VDb4CLQTwjyd9/mBfoJQ+JCyKvonvW1OKOMf36fwT+/z2BDXiXpyU3HVa3D5fWAG6Cyzklds+MqPdnGRk99DIkLZcaAaF5Z7n1cBfgJgZ6KGhQXgsu4H8r0NJ1x/VLedCAct24VaTTGrBaRd4B1QAGwwrPoceBdT0TviwNs4k3gMxHZAKwEtnq2Wywiiz2D3/wPaD505rPAc551GoDLjTF13eE/1GXgnbX7uO7oPlhEWJJZRl5lHacPjSOzzM6GvCp+zCjj8vTe/P3EAdR4hiwH9+h7q3Mq+NsJ/XEZ4zUseaCfMCQ+lLfW5Hl934RkG9P6uU8Wa3MrWZJZ1oml7TyvPXw5x4wfSGxkGDu/msWs57/ktY+XdHW2OlTisHT2bVnJ1w9ejV9gEOkX3dC47NvH/swJtzwJwNhz/9j4kxsJQ8eTONT9rCZt0gmsfPtJvnnkWix+/qRfciMiQv+pp7Fyzmzm/sM9OHHqxBN63LsR8UPTyd+yiu8evga/gCDGXvTnxmUL/nkDx940G4BR5/7BM2R5PfFDxhE/ZHxbmwQgPCGF+CHjWPDPPyMi9Jk0k4ik1AOu0924DLy9dh/XT3Wfg37M8JyDhsWxt9TO+rwqFmeUcfmE3tx3kvc5COCBkwcQHOCHn0UYnRTOk4sy2VdZz/mjE0m2uW/2vtxSSEEPvHED2JxfzdCEMO4+oZ/npwGaoj23HJvGYwsyAHh/fT6XjE0iwE/Ykl/NFk9k7NyRCfj7SeM7Zxkldt5bn0+/aCvHD0zGZdwD4ry/Lv+QI3DdxeFcvwBmndRs3+kVzlOLMqmud/LHKSn4WwQBthfV9KiHm5vzqxmeEMY9M/tR3+DizWb7y60z0nh0fgYA767L59JxSQT6CZvzq9mc795fvtlezO8m9mZyaiSlnp/cAEgIC+TX43thjGFfZX3jtT08yJ8rJ7l7NlhEWJVd0bjvdWdbCtzH1Z3H98PR4ri6aXoa//w+A3AfVxd7jqutBU3H1TmjEvCzCH+Y4j6uMkvtvL8+n7BAf66Zkowx7gjsW6tzO71s7a2jrl9K+SKmB3UL6gn+9OFmrdA2/GfWs12dhW7tLw/++eCJfqEc+i7XAVXV9awGRWfaH2lRrdX7GJ1UNfG36L7TFj2sDqynDu7VGR47fXCPqxzbJa+3+01I+Vu/6XH1oIe9UkoppZRSSqk2davuqUoppZRSSinVXXSHV9a6A200KqWUUkoppZQP2mh00+6pSimllFJKKaXapJFGpZRSSimllPJBI41uGmlUSimllFJKKdUmjTQqpZRSSimllA8aaXTTRqNSSimllFJK+aJtRkC7pyqllFJKKaWUOgCNNCqllFJKKaWUD9o91U0jjUoppZRSSiml2qSRRqWUUkoppZTyQSONbtpoVEoppZRSSikftNHopt1TlVJKKaWUUkq1SSONSimllFJKKeWLBhoBjTQqpZRSSimllDoAjTQqpZRSSimllA/6TqObRhqVUkoppZRSSrVJI43tzE+fRrTpLw/+uauz0K39+64nuzoL3dalt/+hq7PQrSXZgro6C93WppyKrs5CtxXgr8+NDyTBZu3qLHRbe4trujoLSnUajTS6aaNRKaWUUkoppXzQRqObPmZUSimllFJKKdUmjTQqpZRSSimllA8aaXTTSKNSSimllFJKqTZppFEppZRSSimlfNFAI6CNRqWUUkoppZTySbunumn3VKWUUkoppZRSbdJIo1JKKaWUUkr5oJFGN400KqWUUkoppZRqk0YalVJKKaWUUsoHjTS6aaNRKaWUUkoppXzRNiOg3VOVUkoppZRSSh2ARhqVUkoppZRSygftnuqmkUallFJKKaWUUm3SSKNSSimllFJK+aCRRjeNNCqllFJKKaWUatMvMtIoImcCw4wx/+jqvByKc0clMDwhjHqnizdW5ZFdXtsqTUpkML8el0SAn4VN+VV8sD4fgJAAC7+b2JvokEBKaup5dXkOdoeL9OQIThgUgwC1DS7eXbuPnIq6xu0JcMuMvpTXOnhhSXYnlfTnM8aw7qMX2bdlFX4BQaRffANRKQNapSvN2snKOU/gdNSTOHQ8o8++uvEJ0s4fPmPX4i8QsZA0bAIjz/wdLmcDq95+irKcXRinkz4TjmPICed3dvE6zfP3Xsop00ZQWFJJ+vkPdXV2OsXwxDAuHpuERWDh7lL+t7XIa7m/Rfj9pGRSo4Kpqnfywo9ZFNc4iAkJYNYpA9lX6T5udhfbeWNVrte6103tQ1xYIPd+tbPTytPejDGs+fBF9m1eiV9AEBMvvdHnsVWStZMVb/7bfWwNS2fsOe5jqzR7N6vefQZXQz1i8WPc+X8kJnUwFflZrHjrCUqzdjHi9MsYctw5XVC69jO2dwRXTE7BYoFvtxXxkeccvN+wxDCumJRCarSVf83fzZKMssZlsaEB/OmYNGJDAzAGHpi7k8Kq+k4uQcca3SucyycmYxFh3o5iPtnoXT9DE0L57YRk+kRZmf1DBssyywB33dw8ox8i4GcRvtpSyLfbi7ugBO3v3JHxDPNc299cnUd2eV2rNCm2IC71XNs351fxwYYCAMb0CueUIbEkhAfyz+8zySpz3xcMjgvhzOHx+Ak4DXy8sYAdRTWdWq72NKZ3BL+blIxF4LvtxXy8oeV+E8bvJiWTGmXl3wv2sNSz3+xnDbDwxNnDWL63jFeWdv97mZ/qcOrnnd+OZW+pHYCi6noe+W53Z2a9R9FIo9svMtJojPm0pzQYhyWEEh8ayP3f7OLtNXlcOCbRZ7oLRycyZ00e93+zi/jQQIYlhAIwc1As2wtrmPXNLrYX1jBzUAwAxTUOZi/M5OF5e/h6WxEXjU3y2t6xA6LJr2x9Aeuu9m1ZRVVhLifd+QLjLriWNe8/5zPdmvefZdwF13HSnS9QVZhL/tZVABTsWE/uxmWccMtTnHj7swyccTYA2WsX4XI6mHnr0xx307/Z8+NXVJfk+9z2keD1z5Zy1rXPdHU2Oo0IXDq+F0/8kMHfvtrJxFQbSRFBXmmm9ouiut7JnV/u4JttxZw3uukYLKyu5/65u7h/7q5WDcZxvSOoa3B1Sjk60r7NK6kqzOWUu18k/aLrWPXesz7TrX73GdIvup5T7n6RqsJc9m1xH1vrP/0Pw0++mBNvfYoRp1zK+k//A0BgSDhjz7mGwT28sQhgEbjqqD48MHcHN3ywmWP6RZMcGeyVprCqnqd+yGDhrpJW6/95el8+Wb+PP3+wmds+3Uq53dFZWe8UInDF5BQe/nYXf/1kC0f3jaK3zbt+iqocPLs4k8V7Sr3ml9obuPvL7dz22Tbu+mI7Z41MIMra8593D0sIJS4skFnf7uadtfu4YLTva/sFYxJ5e+0+Zn27m7iwQIbGu6/teRV1vLI8h13Fdq/01fVOXliazT/mZ/DGqlx+Mz7J12Z7BIvAlZNTeHDuTv7y0Ram9osiueV+U13PMwszWbS79XEFcNG4XmzeV9UZ2e10h1s/9U4Xt3y6lVs+3aoNxoMQkXb/O8TvPVlEtonIThG53cfyy0WkUETWev6ubLbstyKyw/P32/aohy5pNIrIZSKyXkTWicjrInKGiCwTkTUi8q2IJHjS/V1EXhORhSKSKSLniMijIrJBRL4SkQBPuoxm85eLyADP/La2e7mIPO353F9ElnrWfUBEqjzzjxWRBSLyvohsFZE3pQseNYxMCmd5VjkAGaW1WAMsRAR5XzAjgvwJDrCQUep+0rg8q5yRSeGe9cNYlulef1lmOaM88/eU2LE7XI2fI5tdhCOD/RmeEOb1JLy7y9u4lNQJxyEixKQNwWGvxl7ufZK0l5fgqK0hJm0IIkLqhOPI3bAUgN2Lv2Tw8efh5x8AQHB4JOA+UTTU1eJyOnE66rH4+xMQFNKpZetMi1fvoqS85z6V/qn6RlspqKyjqNqB02VYvrecMb3DvdKM6RXOjxnuG9lV2eUM8TyQOZAgfwszB8fw+ebCDsl3Z8rZuIy0Qzq27I3HVtqE48jxHFsIOGrd+5SjtgZrhPvBVXB4JNGpgxA/v04tT0cYEBdKXkUt+ZX1NLgMi3aXMrFPpFeawqp6MkvtuIzxmp8cGYyfCOtyKwF3z496p3eanm5AbAj5FXUUVNXjdBl+3FPKhBSbV5rC6nr2lta2qh+ny9Dgcs8L8BMsR8gPpo1MDGP53pbXdu9jISLIj2D/Ztf2veWMSgoDIL+qngIf0ejs8joqahsAyKusJ8DPgr+lZ9bZgNhQ9lW695sGl2Hx7lIm9Gmx3zQeV63X7xdjJTLYn3W5FZ2U4851uPWjujcR8QOeAU4BhgEXi8gwH0nfMcaM8fy97Fk3GrgXmARMBO4VkajDzVOnNxpFZDhwN3CcMWY0cAOwCJhsjBkLvA3c2myV/sBxwJnAG8B8Y8xIwA6c1ixduWf+08ATnnkH2u5+s4HZnnVb9l0YC9yI+z+rH3D0zyjyYYm0+lPa7Klzmb0BW4unrDarP2X2hmZpHI2NwPAgfyrq3Msq6hoID2r9hHZKaiSb86sbp88ZlcAnmwroSTESe3kx1sjYxmlrZAy15d5dmGrLi7HamqWxxWL3pKkqzKV49ybm/fsmvn/6dkr2bgeg9+ij8Q8K5ot7L+N/91/BwGPPJjDUu1Gheq4oa4DX8VVa00CUNcA7TUgApTXuNC4DdoeLsED3zV1saCD3nNifW2b0ZWBs08OEX42IZ+62IuqPgEijvazFsWWLaTxuGtOUF2ONjGlKExmDvcydZuzZV7P+k//w2b2Xs+6TVxh5Rrs88OxWYkICKK5u2o+Ka+qJDg04wBpNetmCqK5v4Nbj+/H4r4Zy2YTe9NB7/DZFhwRSXN3UwCmuqSfqEOsH3PX76BlDePa8EXyyMZ/SZte7nspmDfC+btc2YGtx7jmUNAcyplc42WW1jY3uniY6JIAir/3GccjHlQC/nZDMaytyOih3Xe9w6gcg0M/CI2cM5qHTBrdqbKoWpAP+Dm4isNMYs9sYU4+7HXPWIeb4JOAbY0yJMaYU+AY4+RDXbVNXRBqPA94zxhQBGGNKgGTgaxHZANwCDG+W/n/GGAewAfADvvLM3wCkNUs3p9m/UzyfD7Td/aYA73k+v9Vi2XJjTLYxxgWsbfF9R4SBsSFMSYvkk03u9ySGJ4ZRVedsfD/il8K4nNTXVDHjxscZecYVLHvtEYwxlGRuR8TCafe9xsl3v8yOBR9TVbSvq7OruoHy2gZu/Wwb98/dxbtr87hqSgrB/hZSIoOJCwtkTU5lV2exW9i5+EvGnH0lZ9z3X8acfRUr5szu6ix1K34iDE0M57Xl2dz6yRYSwoOYMTDm4Cv+ghTXOLj1s63c8OEmpg+Ixhbc87undrTE8EDOHB7HO2t/mderk4bGsTq7gpKaI6urd3v643sbue2zbTzx/R5+NzGZhPDArs6S8tYbyGo2ne2Z19K5nt6b74tIyk9c9yfpLmfep4B/GWM+FZFjgb83W1YHYIxxiYjDmMa+Ky688298fD7Qdg9F85f6nLRRXyJyNXA1wLF/+DsjTrzgJ36Nt2P6RnFUWiQAe8vsnsiH+72FSKs/5S2espbbG7y7lzZ7OllZ10CEJ9oYEeRPZV3Tur0igrh4bBLPLcmipt4JQL9oKyOSwhiW0J8APwvB/hYuG9+L/2vxvlZ3sGvRF+xZ8jUAUX0GYi9rGsDEXlZMsM37xivYFoO9vFma8iKsnjTWyFh6jZqCiLi7zImF+uoKslZ/T8KQcVj8/AkOjySm71DKsnYQFuv7/RPVs5TaHV6RxagQ78g+QGmNwx1ttDdgEffAClWe46XB829maS2FVfUkhAfSNzqEtGgr/zh9EBYRIoL8uGVGXx6bv6fzCnaYdiz8vO1jq7y48bjZz2priizC/uikO03m8u8Ye87VACSPmcqKOU92dPY7XXGNg5hmT/hjQgIpqT60m9XiagcZxTXkV7ojBsv3ljEoLpTvODIGewEoqaknJrTphjQmJJDSQ6yf5krtDWSV1jIkIaxxoJye5Ji+kUzZf20vrW31WkjLd1nLm/UaaiuNL5HB/lw5KZnXV+VR1IMbTSU1DmK99puAQz6uBseFMiQhjJOGxBIc4Ie/Rah1uHizG97L/FyHUz/71wcoqKpn074q+kaHNJ6HlLeOeDutedvB40VjzIs/cTOfAXOMMXUicg3wGu7gXIfoikbjPOAjEfmXMabY0+/WBuzvQ/Bz+y5dCPzD8+8Sz7xD2e5S4FzgHeCin/PFnv/kFwGu/2jLYfcDWbinlIWewQCGJ4QxrV8Uq7IrSIsKptbhauxuul9FXQO1DhdpUcFklNYyMcXG956Xnjfsq2JSqo1vthczKdXGhjz3C+FR1v0XlVyvUfo+21zIZ573sAbEhnD8wOhu2WAE6D/1NPpPdfdQztu0gl2LPid57DRKMrcRYA3Baov2Sm+1RRMQHEJxxlaiUweTuWIe/Y85A4BeIyZTuHM98QNHUVmQg8vZQGBoBCFRcRTuXE/qhONoqKulJHMbA6ef2ellVR0jo8ROQngQsaHuRuHEPjZeajFa8LrcSo5Ki2J3sZ3xyTa2erpyhwX5UV3vxBj3CI/xYYEUVTvILC1hgWewk5iQAP48LbVHNRgBBh5zOgOPOR2A3E0r2Lnwc1LGeY6t4LaOLWvjsZWxYl7j+sG2aAp3biB+4CgKtq8jPK5Xp5eno+0srCYpIpj4sEBKahxM7RfFvxcc2v/5zqJqQgP9iAj2p6K2gZFJ4ezswaNd+rKrqIbEiCDiPPVzVN8onlyYcUjrRocEUFnXgMNpCA30Y3B8KF9sLujYDHeQhXvKWLinDHAPhDOtXxSrcyrd1/YGFxV1Tq/0FXVOahuaXdv72Phhd6mPLTexBli4Zkoyn24qYE+J/YBpu7udRdUkRQQ1HldH94viie8zDmnd2T80pTt2QDT9Y0OOqAYjHF79hAb6UdfgosFlCA/yY0hCKJ9sOHIH+TtcHdFobN52aEMOkNJsOpmmNs3+bTR/uvgy8GizdY9tse6Cn5nVRp3eaDTGbBKRB4HvRcQJrMEdAXxPREpxNyr7/oxNR4nIetzRwYs98w5luzcCb4jIXbi7vpb/jO/uMJvyqxiWGMo9M/vjcLp4Y3Ve47LbZvTlEc/N6Dvr9vHr8UkEWCxsya9qfEfxm+3FXDGhN5NTIymtcfDqcvcN8clD4ggN9Gscsc1lDI8tyOjcwrWjxGHp7Nuykq8fvBq/wCDSL7qhcdm3j/2ZE25xRzfGnvvHxp/cSBg6nsSh4wFIm3QCK99+km8euRaLnz/pl9yIiNB/6mmsnDObuf/4EwCpE0/A1uvn7J49w2sPX84x4wcSGxnGzq9mMev5L3nt4yUHX7GHchl4a3UuN05PwyLC4t2l5FbUcdaIeDJK7KzLrWTh7lKunJzMQ6cOdI9MuMTd42NQXChnjYjH6TIY4I1VuVTXOw/8hT1Q0rB08jav5MtZV+EfGMSES25sXDb30es58danABh3/p9Y7vnJjaRh40kclg5A+oXXs/bDF3G5nPgFBDL+ousBsFeU8u3jN+KorUEsFnYs+IST73yOgOCeN9CUy8DLS/Zyz8kDsYjw3fYisspquWhcEruKalixt5wBsSHcdkJ/QgP9mNAnkgvH9eLGDzfjMvDa8mz+fspABGFXUTXfbis6+Jf2IC4Dry7L5s4T+mOxCAt2FJNdVsv5YxLZXVzDqqwK+seEcNOMvoQG+jE+2cb5YxK5+ZOt9LYF85v0pl5Vn28qOCJen9icX83whDDumdmP+gYXb65p6kZ664w0Hp2fAcC76/K5dFwSgX7C5vzqxmv7qKQwzhuVQFigH9dMTianvJbnlmRzTN8oYkMDOXlILCcPcb+L/OzirMbeET2Jy8DLS7O4+8QBjT/Vkl1Wy4Vj3cfVyqxy+seGcOtx/QgN9CM9xcaFY5P4y8dbujrrneJw6ic5Mpirj+qDMQYR4aP1+T5/zk11qRXAQBHpi7sReBFwSfMEIpJkjNnfMDgT2L/zfw081GzwmxOBOw43Q2JMz3xBujkRyQDS978n+RPXDQHsxhgjIhcBFxtjDvVF01baI9J4pAoP6vmjJHakf9915HXbay+X3v6Hrs5Ct5ZkCzp4ol+oTTlH5siJ7SHA/xf5q1uHLMFm7eosdFu5pUdWNFx1nvd/N67HDfU14Ob/tfu9/c7HTzloPYjIqbgH9/QDXjXGPCgi9wMrPa/ePYy7sdgAlAB/NMZs9ax7BXCnZ1MPGmP+c7h57i7vNHal8cDTnp/TKAOu6NrsKKWUUkoppX7JjDFfAl+2mHdPs8930EYE0RjzKvBqe+bniGg0GmPSDmPdhcDo9suNUkoppZRS6kjQBT/T3i0dEY1GpZRSSimllGpv2mZ00xcalFJKKaWUUkq1SSONSimllFJKKeWDdk9100ijUkoppZRSSqk2aaRRKaWUUkoppXzQQKObRhqVUkoppZRSSrVJI41KKaWUUkop5YPFoqFG0EajUkoppZRSSvmk3VPdtHuqUkoppZRSSqk2aaRRKaWUUkoppXzQn9xw00ijUkoppZRSSqk2aaRRKaWUUkoppXzQQKObNhqVUkoppZRSygftnuqm3VOVUkoppZRSSrVJI41KKaWUUkop5YNGGt200djOrIEavG2Lw2W6Ogvd2qW3/6Grs9BtvfmP57s6C93akk8e7uosdFsLtxZ2dRa6rb6J4V2dhW4tNlRvkdqyZldNV2ehW6upcXR1FpRqd3pGVEoppZRSSikfNNDopo1GpZRSSimllPJBu6e6aV9KpZRSSimllFJt0kijUkoppZRSSvmggUY3jTQqpZRSSimllGqTRhqVUkoppZRSygd9p9FNI41KKaWUUkoppdqkkUallFJKKaWU8kEDjW7aaFRKKaWUUkopH7R7qpt2T1VKKaWUUkop1SaNNCqllFJKKaWUDxpodNNIo1JKKaWUUkqpNmmkUSmllFJKKaV80Hca3bTRqJRSSimllFI+aJvRTbunKqWUUkoppZRqk0YalVJKKaWUUsoH7Z7q9otoNIrIscDNxpjTuzgrh8UYw4aPXqJgy0r8AoMYe/GNRCb3b5WuLGsnq+fMxuWoI35oOiPPvgoRYetXb5G5dC6BYTYAhp36GxKGpVNfXcGK/z5CadYO+kw4jlHn/qGzi3bYjDFs/Pgl8vfXzUVt182at2fjdNSRMDSdEb+6yutksHPBR2z+7D+cdN8bBIVFAFC0cwMbP3kZ42wgMDSCo699uNPK1V6GJ4Zx8dgkLAILd5fyv61FXsv9LcLvJyWTGhVMVb2TF37MorjGQUxIALNOGci+yjoAdhfbeWNVrte6103tQ1xYIPd+tbPTytNVnr/3Uk6ZNoLCkkrSz3+oq7PT6Ywx/PfZx1mzfDFBQcH88Za/02/gkFbp7rvpakpLiggMDAbgrn88jS0qmsL8PJ5//H4qyksJC4/guttnEROX0NnF6BATUyO5bnpf/CzwxcYC3lqZ47X8/LFJnDYiAafLUGZ38Og3u8ivrGNMcgTXTe/bmK5PlJX7/7edRbtKOrsI7W5EYhiXjOuFReCH3aV8uaXQa7m/RbhqcjKpUVaq6p089+NeiqsdACTbgvnthN5YAywYA/fN3UmDyzCpj43Th8VjMJTZG3hxSRZV9c6uKF6HMMaw6v0XyNm0Ev/AIKb85i9EpwxolW7tp6+xZ/k86muquPBfH3RBTrvGxLRIbpjRD4sIn2/M583l2V7LzxqVyNljknAZg93h5LG5O8kosXdRbjvelP7R3HzSQPwEPl6Tx39/3Ou1/NxxvbhgQm+cLoO93skDX2xjT1ENp4xI4DdTUhrTDUwI49KXVrI9v6qzi6B6kF9Eo/FIUbBlFdVFuRx/5wuUZm5j3fvPMf3Gx1ulW/f+c4y54FqiUgez9KX7KNi6moSh4wHoP/0sBsw42yu9xT+QIadcSsW+TCrzMjulLO2tYKunbu54gdK921j/wXNMu6F13az/4DlGX3AtUX0Gs+xl77qxlxZSuG0t1qi4xvQOexXrP3yeyVf9nZCoOOoqyzqrSO1GBC4d34t/LdhDqb2Bu2f2Y21uJXkVdY1ppvaLorreyZ1f7mBCio3zRifywpIsAAqr67l/7i6f2x7XO4K6BlenlKM7eP2zpTz/zve8POuyrs5Kl1i7fDH7crKY/d+P2LFlI688+TAPPvWaz7TX3/4A/QcP85r3+gtPMG3maUw/8XQ2rlnBnFee5rrbZ3VG1juUReCGGf24+cNNFFbV8/zFo1i8u4TMZjerOwqruWbOeuoaXJw5KoFrjknl/i+3sza7givfXAdAeJA/b/5uLCsyy7qoJO1HBH6T3ovH5++hxN7APTP7szangtxm551jPOed27/YzsQ+Ni4YnchzP2ZhEbh6SjIvLc0mq6yW0EA/nMZgEbhkXC/u+nI7VfVOzh+dyPGDYvhkY0EXlrR95W5eSUVhLmfe+xLFGdtY/vYznHzLv1ulSx45icHTz+DT+67qglx2DYvAX4/vz1/e30hhZT0vXTqGxTuLvRqF32wt5JP1+wA4un801x3rPi6PRBaB208exJ/eXEt+RR2vX5nO99uL2FNU05jmq435fLDa/aB32qAY/jpzANfPWc//Nubzv435AAyID+Wf54/UBuMBaKDRrce/0ygiaSKyVUTeFJEtIvK+iISIyMme+auBc5qlnygiS0RkjYj8KCKDPfN/EJExzdItEpHRIjJdRNZ6/taISHjnl9Itb+MyUtJnICJEpw3BYa+mtsL7aXRtRQkNdTVEpw1BREhJn0HehqUH3K5/UDAx/Ybh5x/YkdnvUPs2LiN5vKduUg9QN7U1RKe66yZ5/Az2bWyqm42fvsKwMy4Hms4O2at/IGnkFEI8Dcmg8MhOKE376httpaCyjqJqB06XYfnecsb09t6Nx/QK58eMUgBWZZczJCH0oNsN8rcwc3AMn28uPGjaI8Xi1bsoKa85eMIj1Iol3zPthFMREQYNG0l1VSWlxUUHX9EjZ+8eho9JB2D4mHRWLvmho7LaqYYkhpFTbievoo4Gl2He9iKO7h/tlWZtdkXjA5bNeVXEhbU+304fGMOyjLIj4kFMv+gQCirrKWx23hnbO8IrzbjeESzeUwbAyqxyhiaEATAiMZzsslqyymoBqK53Yoz7zCy4zz0A1gALZXZHZxWpU2SvX0q/icchIsT2HUK9vRp7eeuoc2zfIVht0T62cOQamhhOTlkteeXu4+y7bYVMHRDjlaamWdQ5OMCCwXR2NjvN8F4RZJXaySmrpcFlmLspn2MHx3qlqW5WH9YAP5+1cdLwBL7enN/Bue3ZRKTd/3qiIyXSOBj4vTFmsYi8CvwVuAY4DtgJvNMs7VbgGGNMg4icADwEnAu8AlwO3Cgig4BgY8w6EfkMuNaz7TCgttNK1UJtRTHWyKYomDUyBnt5McERTRcOe3kxwbbYZmliqa0obpzevegLslbOIzJlAMPP/D2BIWGdk/kOVlveom5sMdS2qJva8mKCI1vUTbm7bvI2LiXYFoOtV1M3MYDqwhxcTieLn72Thjo7/Y45g5T04zq4NO0ryhpAabMbq9KaBvrFWL3ThARQWuNO4zJgd7gIC/QDIDY0kHtO7I/d4eLjDfns8DzF/NWIeOZuK6L+CLjBVYemtKiQmPjExumY2ARKigqIioltlfa5x+/DYvFj0jHHcc6lv0dESO03kOWL5nPqORezfNF87DXVVFaUER4R2YmlaH9xoUEUVtY3ThdW1jMsse1z62nD41meUdZq/nGDY3lvdW7rFXqgKKs/JTVN550Su4P+0SFeaSKtAZTUuOvNfd5xEhboR0J4IAa4aXoa4UH+LNtbxv+2FuE08H8rc5h1ykDqGlzkV9bz+qojo772qykrbnxICRASGUtNWfEvroHoS1xYIAWVTZHqwso6hia1fo5/9pgkLhzfC38/Cze+u6Ezs9ip4iOCyK9ouiXNr6hjRIsHMwDnp/fm15NS8PcT/vDG2lbLTxwWz1+P4HpS7afHRxo9sowxiz2f3wDSgT3GmB3GGOOZt58NeE9ENgL/BoZ75r8HnC4iAcAVwH898xcD/xKRPwORxpiGji1Kx0k7+hRm3vUCx940m6CIaDZ9+kpXZ6lbaKivY8d37zPkpEtaLXO5nJRn72TS7+9h8lX3sf2bd6gqzPGxlSNTeW0Dt362jfvn7uLdtXlcNSWFYH8LKZHBxIUFsiansquzqLqh6+94gMdfeof7/v0SWzes4YdvvwDg11ffyOb1q7ntD5ewZf1qomPjsVj8uji3nWvmkFgGJ4Tx9irv80h0SAD9YkJYfgR0TT1cfiIMjA3lhSVZPPTdLsYl2xiaEIqfwIyBMdz79U7+8slWsstqOX1o3ME3qH5RPlqbx0WvrOL5HzK4bHLKwVc4wr23MoeznlnKU/N2ceXUVK9lI3pFUNvgZFdhdRflrmcQaf+/nuhIiTS2jLjbDpB2FjDfGHO2iKQBCwCMMTUi8g1wFnABMN4z/x8i8gVwKrBYRE4yxmxtvkERuRq4GuDE6+5j9MkXHn6JPHYv+oLMpXMBiEoZiL2sqSugvawYq827a4Y7wlbULE0RwRHuNMHhUY3z0yafyNKXe/a7RHsWfUHmMnfdRLasm/JiglvUTbAthtqyFnVji6GmOI+aknwW/PMGAGrLi/jh3zdyzA3/xGqLJTAkAv+gYE833uFU5O4hLK53J5SwfZTaHURZAxqno0L8vSKPAKU1Dne00d6ARdzdvvYPLtHg+TeztJbCqnoSwgPpGx1CWrSVf5w+CIsIEUF+3DKjL4/N39N5BVOd4utP3uW7Lz8GoP/gYRQX7GtcVlyUT3RsfKt19s+zhoRy9HEns2vrJqbPPJ3o2Dhu/vtjANTaa1i2aB6hYV3W47/dFFbXERfe1N00LjyQwur6VunGp9j49cRkbnhvEw6n92VrxqBYFu4qxuk6MrrTldobiA5pOu9Et+jxAFBmdxAdEtjsvONHVb2TEruD7YXVjeeg9XmVpEZZqXW4ezUUVrnrdnlWGacNjQd6dhf5bd9/zq4fvwIgOnUQNaVN5akpKyIkMqatVX9RCqvqiQ8PapyOCw+iqKr1cbbfd1sLuemE/sCOTshd5yuoqCMhIrhxOiEiiMJmkdiWvt5YwB2nDMbd4c7txOHxfHUEvROsOtaREmnsIyJTPJ8vAb4F0kRk//CZFzdLawP2P+K9vMV2XgaeBFYYY0oBRKS/MWaDMeYRYAXQaqhAY8yLxph0Y0x6ezYYAfpNPY0ZN89mxs2zSRw5iayV8zHGUJKxlYDgEK/ulwDBEdH4B4VQkrEVYwxZK+eTNGISgNc7fnkblhKR6P3EqafpO/U0jr1pNsfeNJukEZPIXuWpm8wD1E1wCCWZ7rrJXjWfxBGTiEhK4+T7Xmfm3S8z8+6XCbbFMu0vTxAcEUXiiEmU7NmMy+mkob6O0r3bCYvvWU8uM0rsJIQHERsagJ9FmNjHxroWEcJ1uZUcleZ+qDA+2cbWfPdTx7Agv8YnYrGhAcSHBVJU7WDBrhJu/nQbt3++nUe+201+Vb02GI9QJ511AY++8BaPvvAWE44+lh++/RJjDNs3byAkNKxV11Sns4GK8jIAGhoaWL1sISlp7lNxRXkZLpf7xv/jOf9hxklndmpZOsq2fVUkR1pJjAjC3yIcNyiWH1uMfjogLpS/Ht+fOz/d6vM9vOMHx/LdtkN/P7S721NSQ3yL886anAqvNGtyKji6byQA6Sk2tngG4tiYV0myLZhAP8EiMDgulNzyOkprHPSKCCI8yB2dHp4YTm5Fl70x0m4GTz+dU+94mlPveJqUUZPZvXwexhiK9mwl0BqqXVM9tu6rJDnSSpLnODt+cFyrUYaTI5saUVP6RZNdeuSOnLo5t5KUaCu9IoPxtwgnDk/g++3e55CU6KZXUaYOjGFvSdM7+QLMHBbP3E36PuPB6DuNbkdKpHEbcK3nfcbNwJ+BVcAXIlIDLAT2P85+FHhNRO4Gvmi+EWPMKhGpAP7TbPaNIjIDcAGbgP91aEkOIGFoOvlbVvHtQ9fgFxDE2Iv/3Lhs/uM3MOPm2QCMOu8PrJkzG6ejnoQh44j3jA666bP/Up6zBxEIiU5g9Pl/alx/7qwraaitweVsIG/jMqZccx8RiX06t4CHId5TN9897Kmbi5rqZsE/b+DYmzx1c+4fPD+5UU/8kHHEDxl/wO2GJ6QQP2QcC/75Z0SEPpNmEpHUsxrbLgNvrc7lxulpWERYvLuU3Io6zhoRT0aJnXW5lSzcXcqVk5N56NSBVNc7G0dOHRQXylkj4nG63MMJvLEq1+vF+l+a1x6+nGPGDyQ2MoydX81i1vNf8trHS7o6W51m7MSjWbNsMTf89lcEBgXzx5vvbVx26zWX8OgLb+God/DQHdfhbGjA5XIxcuxEjj/VPWLz5nUrmfPKM4gIQ0aO5ffX39ZVRWlXTgOz5+/msbOHYRHhf5vyySix87vJKWwrqOLH3aX88ZhUrAEW7jttMOB+/+iuz9xP/BMjgogLD2RddsWBvqZHcRl4c1UuN03vi8Xi/qmf3Io6fuU576zNreSH3aVcPTmFf5w2iOp6J897fi6gxuHi621F3HPiAIxxRxrX57kfdH2ysYDbj+uH0xiKqx28vCz7QNnocXoNn0DOppV8et+V+AUEMeXXf2lc9uXD13HqHU8DsPrjV8lYuYAGRx0f3n0ZA6acxKjTLu2qbHcKp4F/z9vFP88dgcUCX2zMJ6O4ht8f1Yet+VUs3lXCOWN7kd7HRoPLUFnbwINfHZlRRgCnMTz61XaevmQ0fiJ8si6P3YU1/GF6XzbnVfDD9mIuTO/NxH7RNDhdVNY2cO+nWxrXH5caSX5FLTllPf/Bi+oc4n7lr+fydDH93Bgzoh221Qt3d9UhxpifNbrHrV9s69kV2oF6+K7W4Uqrj6xRANvTm/94vquz0K0t+aTn/XZoZ7nxQx3goS19E3t+1+CO1LfFgGGqyTfr9x080S9YTY1ez9uy6m8zelyYbdq/Frf7HewPfz26x9XDkdI99bCJyGXAMuCun9tgVEoppZRSSh05dCActx7fPdUYkwEcdpTRGPN/wP8ddoaUUkoppZRS6gjS4xuNSimllFJKKdUReurANe1Nu6cqpZRSSimlVDciIieLyDYR2Skit/tY/lcR2Swi60XkOxFJbbbMKSJrPX+ftkd+NNKolFJKKaWUUj50RaBRRPyAZ4CZQDawQkQ+NcZsbpZsDZDu+a35P+L+hYj9v/1nN8aMac88aaRRKaWUUkoppXzoot9pnAjsNMbsNsbUA28DZzVPYIyZb4zZ/+ObS4Hkdi14C9poVEoppZRSSqnuozeQ1Ww62zOvLb/H+7fkg0VkpYgsFZFftUeGtHuqUkoppZRSSvnQEd1TReRq4Opms140xrz4M7f1ayAdmN5sdqoxJkdE+gHzRGSDMWbXz8+xNhqVUkoppZRSqtN4GogHaiTmACnNppM987yIyAnAXcB0Y0xds+3neP7dLSILgLHAYTUatXuqUkoppZRSSvlgEWn3v0OwAhgoIn1FJBC4CPAaBVVExgIvAGcaYwqazY8SkSDP51jgaKD5ADo/i0YalVJKKaWUUsqHrhg91RjTICLXAV8DfsCrxphNInI/sNIY8ynwGBAGvOcZXGevMeZMYCjwgoi4cAcI/9Fi1NWfRRuNSimllFJKKdWNGGO+BL5sMe+eZp9PaGO9H4GR7Z0fbTQqpZRSSimllA+H+BMZRzx9p1EppZRSSimlVJs00qiUUkoppZRSPlg00Ahoo1EppZRSSimlfNLuqW7aPVUppZRSSimlVJs00qiUUkoppZRSPmig0U0bje2spMrR1VnotgL8NbB9IEm2oK7OQre15JOHuzoL3dqUs+7o6ix0Wx+9cW9XZ6Hb2lpS1dVZ6Nb2ltZ1dRa6rftOG9rVWejWgvz0fkcdebTRqJRSSimllFI+CBpqBH2nUSmllFJKKaXUAWikUSmllFJKKaV80J/ccNNGo1JKKaWUUkr5oD+54abdU5VSSimllFJKtUkjjUoppZRSSinlgwYa3TTSqJRSSimllFKqTRppVEoppZRSSikfLBpqBLTRqJRSSimllFI+aZvRTbunKqWUUkoppZRqk0YalVJKKaWUUsoH/ckNN400KqWUUkoppZRqk0YalVJKKaWUUsoHDTS6aaNRKaWUUkoppXzQ0VPdtHuqUkoppZRSSqk2aaRRKaWUUkoppXzQOKPbL6LRKCJfApcYY8q6Oi+HY3hiGBePTcIisHB3Kf/bWuS13N8i/H5SMqlRwVTVO3nhxyyKaxyNy6NDArj/5AF8uqmAuduKATh+YAzT+kcB7m1+u7248wrUjoYlhHLB6EREhMV7Spnbohz+FuG36b3oE2Wlut7Jy8uyKalxEBrox1WTkkmNtrI0s4x31u5rXGd8cgQnD4nFIrAhr4qPNxZ0drHajTGGNR++yL7NK/ELCGLipTcSlTKgVbqSrJ2sePPfOB31JA5LZ+w5VyMilGbvZtW7z+BqqEcsfow7/4/EpA6mIj+LFW89QWnWLkacfhlDjjunC0rXfowx/PfZx1mzfDFBQcH88Za/02/gkFbp7rvpakpLiggMDAbgrn88jS0qmsL8PJ5//H4qyksJC4/guttnEROX0NnF6BLP33spp0wbQWFJJennP9TV2elSxhg+fGU2m1cvISAomEuvu5OU/oPbTP/SQ7dRlJ/LHbNf78Rcdi5jDIvnPEfmhhX4BwZx3BU3EZc6sFW6ZR/+l21LvqWupoqrnvm4cX5lcQHzXn2c+ppqXC4nk8+9gtRREzuxBO3v7BHxDE0Io97pYs6aPHLK61qlSbYFcfHYJAL8LGzJr+Ijz3XojGFxDEsIw2kMxdUO5qzJo7bBhUXgwjFJJNuCsIiwMquc73aWdHbR2pUxhndf+jebVi0hMCiYy264mz4HOJ6efeBWivJzuOepN73mf/vxW3zwn6d57PUvCYuI7OBcdw5jDG+9+C82rFxCYFAQv7/xb6QOaH3N2u/J+2+mcF8us559C4C9u3fw+jOPUFtrJzY+katvuR9rSGhnZV/1MD2ue6qI+P3UdYwxp/b0BqMIXDq+F0/8kMHfvtrJxFQbSRFBXmmm9ouiut7JnV/u4JttxZw3OtFr+QVjEtm4r6pxupctiGn9o3jwm13c9/VORiWFEx8W2CnlaU8CXDQmiacX7+X+uTuZkGIjMdy7HEelRVLjcHLv1zuZt6OYs0fEA+BwuvhscwEfrs/3Sh8a6Mc5IxOY/UMms77ZjS3Yn8FxPfdEum/zSqoKcznl7hdJv+g6Vr33rM90q999hvSLrueUu1+kqjCXfVtWAbD+0/8w/OSLOfHWpxhxyqWs//Q/AASGhDP2nGsY3MMbi/utXb6YfTlZzP7vR1x141288uTDbaa9/vYHePSFt3j0hbewRUUD8PoLTzBt5mk89uLbnPvrq5jzytOdlfUu9/pnSznr2me6OhvdwubVSynMy+LuZ97moj/cwnsvPt5m2nVLvyfQau3E3HWNvRtWUFaQyyUPvcr0y27ghzd8Hxupoydx7l2zW81f9cUc+qdP4/x7n2HmNXew8M2efWwNjQ8lNjSQh77bzXvr9nHeqESf6c4blci76/bx0He7iQ0NZEi8+zq0rbCaxxbs4fEFGRRW1XPCwBgAxvSKwN8iPLYgg3/9kMGUtCiirAGdVq6OsGnVEgrysrnv+Xe55NrbmPPcY22mXbNkAUE+jqeSwnw2r1lO9BH2EG/DyiXk52bx8Ivv8dvr7uD/nn20zbSrfpxPkDXEa95/n3qI8y7/E7OeeZNxU47lfx+80dFZ7pFEpN3/eqJu1WgUkTQR2Soib4rIFhF5X0RCRCRDRB4RkdXA+SJyoogsEZHVIvKeiISJyMki8l6zbR0rIp97PmeISKzn819FZKPn78Zm37ux2bo3i8jfPZ//LCKbRWS9iLzdidXhpW+0lYLKOoqqHThdhuV7yxnTO9wrzZhe4fyYUQrAquxyhiQ0NXLG9A6nqLqe3GZPMpPCg9hdbKfeaXAZ2F5YzbjkiM4pUDtKi7ZSWF3vrhsDK7PLGd3Lu25G9wpnaWY5AKtzKhovvPVOw65iOw6Xyyt9bGgABVX1VNU7AdhSUM3YFvXdk+RsXEbahOMQEWLShuCwV2Mv9376bC8vwVFrJyZtCCJC2oTjyNmw1L1QwFFbA7j/tUa4b1CCwyOJTh2E+P3kZznd0ool3zPthFMREQYNG0l1VSWlxUUHX9EjZ+8eho9JB2D4mHRWLvmho7La7SxevYuS8pquzka3sHH5QiYce7L7OBo8Ant1FeUlrfejOnsN8z99m5PO+20X5LJzZaxdwuApxyMiJPYfSl1NFdVlrXu2JPYfSmhkTKv5QtM5qN5eTYiPND3JiMQwVma7r0mZpbVYAyyEB3mfR8OD/Ajyt5BZWgu4r20jE8MA2F5Yg8vgWd+OzeruOGYwBPpZsAgEWIQGl6GuwdlJpeoY65YvZPIM9/HUb/AIato4nmrtNXz3yducev7lrZa9/8pszrn82iNuGMw1y37gqOPc16z+Q9x1U9ZG3Xz98RxOv/B3XvPzc/YyaMRYAIaPnciqH+d3Sr5Vz9StGo0eg4FnjTFDgQrgT575xcaYccC3wN3ACZ7plcBfPfMnicj+ltKFgFcjT0TGA78DJgGTgatEZOxB8nM7MNYYMwr4w+EW7ueKsgZQam/qalpa09Dq6WFUSAClnu6oLgN2h4uwQPdF55QhcXy2qdArfW55HQPjQggN9CPQTxiZFE5USM97Ihlp9W8sN0CpvYHIFnUTGezfWH/76yY0sO2GTmFVPQlhgUSHBGARd4O8J9bNfvayYqyRsY3TVlsM9nLvGzZ7eTHWZjdi1sgY7J6burFnX836T/7DZ/dezrpPXmHkGUfmTW5pUSEx8U1P/GNiEygp8t0t+bnH7+PWay7hgzdexhj33Vtqv4EsX+S+6C5fNB97TTWVFWUdnm/VvZSVFBEZG984bYuJ93mT+8Wcl5lx5kUEBAV3Zva6RHVZMWHRcY3TYVFxPhuNbUk/89dsXzqP/7vl13wx+x6OufhPB1+pG4sIDqDM3tA4XWZvwBbsfY2xBQdQXuudJiK49XVoYp9IthZUA7Aut5J6p4u/nziAv80cwIJdxdQ4XK3W6UnKiguJim2KEEbFxlFWXNgq3WdvvsQJZ11MYIvjad2yH4iMiSO5b+vu0D1daXEh0c3ONdEx8ZT6qJuP3niRk351CUFB3j3UevXpx5ql7oebKxZ91+b17pfOIu3/1xN1x0ZjljFmsefzG8BUz+d3PP9OBoYBi0VkLfBbINUY0wB8BZwhIv7AacAnLbY9FfjIGFNtjKkCPgSOOUh+1gNvisivgYaDpO2Wzhwezzfbi6hr8L5w5FXW8dWWIv46PY0bp6WRVWbH5bn5/aWrcbiYszaPKyclc9P0NIqrHb/outm5+EvGnH0lZ9z3X8acfRUr5rTuPvZLcv0dD/D4S+9w379fYuuGNfzw7RcA/PrqG9m8fjW3/eEStqxfTXRsPBbLkRGFVe0re88OivflMHry9K7OSo+wc/kCBh81k8see4PTbrif7155DOPq2Y2h9nDCwBhcxrAquwKAPlFWXMbw97k7efDbXRzbP5roHvzA81Bl7d5O4b4cxkzxPp7q62r56r3/44xLruqinHW9vbu3U5iXzfijjm217Iob7mL+lx9w3w2/pdZeg7//L2Kok59Mu6e6dce9o+Wd+f7pas+/AnxjjLnYx7pvA9cBJcBKY0zlIX5nA94N6OaPqU4DpgFnAHeJyEhPA7WRiFwNXA1w9JX3MOSE8w/xaw9dqd3hFVmMCvH3ijwClNY43NFGewMWAWuAhap6J31jrIxPieC80YmEBPhhjMHhNMzfWcKiPaUs2uPu0nr2yIRW2+wJyuwNXlHAKKs/ZS3KUVbrjsyWNaub6voDd9nZkFfFhjz3O6BT+0b2uEbjjoWfs2fJ1wBE9RmIvawp0mEvL8Zq8+7eZbU1RRZhf3TSnSZz+XeMPedqAJLHTGXFnCc7Ovud5utP3uW7Lz8GoP/gYRQXNA2GVFyU7/UUd7/986whoRx93Mns2rqJ6TNPJzo2jpv/7n7fptZew7JF8wgN67ndmtWhW/i/D1jyzWcA9BkwlLJmT+zLiwuwRcd6pc/YtpG9u7Zy3zXn4XQ6qaoo5am/Xcf1s3r2u3rNbZz3KZsXfgVAfNogqkqaIiBVpYU+u6G2Zcuirzn9xgcBSOw/jAZHPfaqCkJ60IAmR6dFMjk1EoCssloirU23YJFWf8prva9b5bUObMHeaSqapZmQYmNYQhjPLdnbOG9c7wi2FlTjMlBV72RPiZ2UyGBKanrWtX3BFx+w+JtPAUgdMITSoqZxB0qLComMifNKv3vbRvbu3MpdV52Dy+mksryUf911LRde9VeKCnJ54MbLACgrKuShv/yO2x5/GVtUz+zi/N3n7/PD1+6YSN+BQ72igyXFBUS1qJtdWzewZ+dWbrniV7icTirKS3nk9j9y2z+eIykljZtmua/n+3L2sn7Fj51XENXjdMdGYx8RmWKMWQJcAiwCmnchXQo8IyIDjDE7Pd1RextjtgPfA68CV9Gia6rHQuC/IvIP3I3Ps4HfAPlAvIjEAFXA6cBXImIBUowx80VkEXAREAaUNd+oMeZF4EWAK9/Z2CEti4wSOwnhQcSGuhuFE/vYeGlJtleadbmVHJUWxe5iO+OTbWzNd7ezH523pzHNmcPjqW1wMt8zmlp4kB+VdU6iQwIYlxzBQ9/u6ojsd6jMUjvxYYHEhARQZneQnmzj1eU5XmnW51YyOdXGnhI743pHsK2wuo2tNdlfNyEBFqb1i+blZdkHXac7GXjM6Qw85nQAcjetYOfCz0kZN42SzG0EBIdgtUV7pbfaogkItlKcsZXo1MFkrJjXuH6wLZrCnRuIHziKgu3rCI/r1enl6SgnnXUBJ511AQCrly3i60/e5agZJ7Fjy0ZCQsOIivG+2Xc6G6iuqiLCFklDQwOrly1k5Fj3KI4V5WWEhUdgsVj4eM5/mHHSmZ1eHtU1jjnlXI455VwANq38kYX/+4BxU08gc/smgkPCWjUap558NlNPPhuA4oI8Xnzw1iOqwQgw4rgzGXGc+xjIXL+MDfM+Y8DEY8nfvZUga+hPajSGRceTvWUNQ44+kdLcvTgd9VjDbR2V9Q6xOKOMxRllgHsgnKl9o1iTU0lqVDC1DheVdd4PMivrnNQ1uEiNCiaztJb0ZFvjQ94hcaHMGBDNM4v34nA23XaU2R0MjA1hVXYFgX5CapSVH3aXdloZ28uxp53Lsae5j6cNKxez4IsPSD9mJnu2b8IaGtrqeJp+yjlMP8U9IFtxfh7PPHAzf33QPTDXY//3ZWO6u646hzv++WqPHj31+NPP4/jTzwNg3YrFfPf5e0yaNpPd2zYREhJGZIu6mXHqucw41V2XRfm5zL7vZm77x3MAVJSVEBEZjcvl4rO3/8Oxp5zduYXpIXpoYLDddcdG4zbgWhF5FdgMPAdcv3+hMaZQRC4H5ojI/s7ZdwPbjTFOz+A3l+PuturFGLNaRP4LLPfMetkYswZARO73zM8BtnqW+wFviIgNdyPzya4ahdVl4K3Vudw4PQ2LCIt3l5JbUcdZI+LJKLGzLreShbtLuXJyMg+dOpDqeicvLMk66Hb/eHQfwgL9cBrDm6tysffAdx9cBt5eu4/rp/bBIsKPGWXkVdZx+rA49pbaWZ9XxeKMMi6f0Jv7ThpATb2TV5Y3NQAfOHkAwQF++FmE0UnhPLkok32V9Zw/OpFkmzvo/OWWQgqq6ruqiIctaVg6eZtX8uWsq/APDGLCJTc2Lpv76PWceOtTAIw7/08s9/zkRtKw8SQOcw/qkn7h9az98EVcLid+AYGMv8h9SNorSvn28Rtx1NYgFgs7FnzCyXc+R0BwSKs89ARjJx7NmmWLueG3vyIwKJg/3nxv47Jbr7mER194C0e9g4fuuA5nQwMul4uRYydy/KnuC+3mdSuZ88oziAhDRo7l99ff1lVF6XSvPXw5x4wfSGxkGDu/msWs57/ktY+XdHW2usSw8VPYvHoJs/50IYFBwVxy3Z2Nyx796+Xc+q//dl3mukifkRPJ3LCCt+68Av/AIGb87q+Ny969709ccK97ROcl773MjuULaKiv4/9u+TVDp57EhLN+w1EXXMX3r81m/TcfgQjHXXFTj+3iBe7B1YYmhHHn8f1wOF3MWdPUw+Gm6Wn88/sMAN5fn+/5yQ1ha0E1WzzvLp4zKgE/i/CHKSmA++Hp++vzWbSnlIvGJnHrsX1BYMXecvIqWv+UR08yYvxRbFy5hHv+cL77Jzeuv6tx2YM3/pa7nnitC3PXtUalH8X6lT9y+1XnERgUzBU33t247N7rf8N9Tx34Z3yWff8N8754H4BxRx3L1Jmnd2h+Vc8mpht1uRORNOBzY8yIrs7Lz9VRkcYjQYB/d3yFtvuIDT3y3zv5uc4d5ns4euU25aw7ujoL3dZHb9x78ES/UFtLqg6e6Bdsb2nPbmx1pNMHxR080S9YkJ/e77Tl6IFRPe5pz2VvrW/3e/v/u2RUj6uH7hhpVEoppZRSSqku11NHO21v3arRaIzJAHpslFEppZRSSimljjTdqtGolFJKKaWUUt1FT35/uj1pp2ullFJKKaWUUm3SSKNSSimllFJK+aBxRjdtNCqllFJKKaWUDxbtngpo91SllFJKKaWUUgegkUallFJKKaWU8kEDjW4aaVRKKaWUUkop1SaNNCqllFJKKaWUD/qTG24aaVRKKaWUUkop1SaNNCqllFJKKaWUDxpodNNGo1JKKaWUUkr5oD+54abdU5VSSimllFJKtUkbjUoppZRSSinlg0j7/x3a98rJIrJNRHaKyO0+lgeJyDue5ctEJK3Zsjs887eJyEntUQ/aaFRKKaWUUkqpbkJE/IBngFOAYcDFIjKsRbLfA6XGmAHAv4FHPOsOAy4ChgMnA896tndYtNGolFJKKaWUUj6ISLv/HYKJwE5jzG5jTD3wNnBWizRnAa95Pr8PHC/ujZ8FvG2MqTPG7AF2erZ3WHQgnHYWHRbQ1VnotuobTFdnoVvblFPR1VnothZuLezqLHRrH71xb1dnods6+9f3dXUWuq8+I7s6B93aKWemd3UWuq3T7n+hq7PQvVnDuzoH3ZZ94f1dnYWfrCMibCJyNXB1s1kvGmNebDbdG8hqNp0NTGqxmcY0xpgGESkHYjzzl7ZYt/fh5lkbjUoppZRSSinVSTwNxBcPmrAb0UajUkoppZRSSvlwiN1J21sOkNJsOtkzz1eabBHxB2xA8SGu+5PpO41KKaWUUkop1X2sAAaKSF8RCcQ9sM2nLdJ8CvzW8/k8YJ4xxnjmX+QZXbUvMBBYfrgZ0kijUkoppZRSSvlg6YJAo+cdxeuArwE/4FVjzCYRuR9YaYz5FHgFeF1EdgIluBuWeNK9C2wGGoBrjTHOw82TNhqVUkoppZRSyoeuaDQCGGO+BL5sMe+eZp9rgfPbWPdB4MH2zI92T1VKKaWUUkop1SaNNCqllFJKKaWUD100EE63o5FGpZRSSimllFJt0kijUkoppZRSSvnQVe80djcaaVRKKaWUUkop1SaNNCqllFJKKaWUD/pKo5s2GpVSSimllFLKB4u2GgHtnqqUUkoppZRS6gA00qiUUkoppZRSPmiEzU3rQSmllFJKKaVUmzTSqJRSSimllFI+6CuNbtpo9BCRSOASY8yzXZ2XQ2GMYcNHL1GwZSV+gUGMvfhGIpP7t0pXlrWT1XNm43LUET80nZFnX4WIsPWrt8hcOpfAMBsAw079DQnD0ju7GO3qnJHxDI0Pw+F08daaPLLL61qlSbYFccm4JAIsFrYUVPHhhgIAzhwWx/DEMJwuQ1GNgzmr87A3uOgTGcyFYxIb1/9qWxEb8qo6rUwdYWzvCK6YnILFAt9uK+Kj9fley4clhnHFpBRSo638a/5ulmSUNS6LDQ3gT8ekERsagDHwwNydFFbVd3IJOs7E1Eium94XPwt8sbGAt1bmeC0/f2wSp41IwOkylNkdPPrNLvIr6xiTHMF10/s2pusTZeX+/21n0a6Szi5CpzHG8OErs9m8egkBQcFcet2dpPQf3Gb6lx66jaL8XO6Y/Xon5rL7eP7eSzll2ggKSypJP/+hrs5Op5s5NoXHrzoKP4vw32+28vgHa72WP/r7KUwb0QuAkCB/4mxWki79L9NG9uLRK6Y0phucHMllj3/HZ8syOjH3HUvPyW2bOWUIj998tnu/+XgZj7/2ndfyPolRPH/PRcRGhVFaUcMVf3uDnIJypo0fwKN//VVjusFp8Vx25//x2fcbO7kEnWfmxAE8fsOp7rr6fDWPv7nQa3mfBBvP33E2sZEhlFbYuWLWB+QUVnRRbnsWHQjH7YhsNIqInzHG6WO+vzGmoY3VIoE/AT2i0ViwZRXVRbkcf+cLlGZuY937zzH9xsdbpVv3/nOMueBaolIHs/Sl+yjYupqEoeMB6D/9LAbMOLuzs94hhsaHEhcayIPf7SY1KpjzRyfy7x8yW6U7f3Qi76zdR2ZpLddMTmZofChbCqrZVljN51sKcRk4Y1gcJwyK4bPNheRV1vHP7zNwGYgI8uOWGX3ZtG8nLtMFhWwHFoGrjurDfV9tp7jawaNnDmHF3nKyy2ob0xRW1fPUDxmcNTKh1fp/nt6XD9bmsS63kmB/Cy7TQyvCB4vADTP6cfOHmyisquf5i0exeHcJmSX2xjQ7Cqu5Zs566hpcnDkqgWuOSeX+L7ezNruCK99cB0B4kD9v/m4sKzLLuqgknWPz6qUU5mVx9zNvk7l9E++9+Dh/feQln2nXLf2eQKu1k3PYvbz+2VKef+d7Xp51WVdnpdNZLMIT1xzNafd+QU5xNYseP4fPl2ewNausMc2tryxp/PzH04Yzul8sAD9syGXyXz4AICosiI3PX8S3a7I7Nf8dSc/JbbNYhCduO5fTrn2enPwyFv3fX/j8h41s3dPUqH74xjN584uVvPnFCqanD+D+607n9/e8yQ+rdjL5Uvc9UVRECBs/upNvl27rqqJ0OItFeOKvp3PaX14jp7CCRS9dw+eLt7I1o7AxzcPXnsSbX63lza/WMn1cX+6/5gR+/8CHXZhr1dP87HcaReTXIrJcRNaKyAsi4iciVSLymIhsEpFvRWSiiCwQkd0icqZnvctF5BPP/B0icq+PbZ8sIu81mz5WRD73fH5ORFZ6vuO+ZmkyROQREVkNnN9s/uUi8qmIzAO+E5EwEflORFaLyAYROcuT9B9Af095HvOse4uIrBCR9c2/qzvI27iMlPQZiAjRaUNw2KuprfCOatRWlNBQV0N02hBEhJT0GeRtWNpFOe5YI5PCWJFVDkBmaS3WAAsRQX5eaSKC/Aj2t5BZ6r4Yr8gqZ2RSGADbCmsaG4IZpXZswe7nKQ6naZzv72eBHn49HhAXSl5FLfmV9TS4DIt2lzKxT6RXmsKqejJL7a1uPpIjg/ETYV1uJQC1DS7qnT28QpoZkhhGTrmdvIo6GlyGeduLOLp/tFeatdkV1DW4ANicV0VcWGCr7UwfGMOyjLLGdEeqjcsXMuHYkxER0gaPwF5dRXlJUat0dfYa5n/6Nied99suyGX3sXj1LkrKa7o6G11iwsB4du2rICO/EkeDi/cW7uT0iWltpr9g2gDe/WFnq/lnH9WPuauzsNe39ey359FzctsmDO/DrqwiMnKKcTQ4eW/uGk6fPsIrzZC+iXy/cgcA36/cyenTRrTaztnHj2buj1ux1zk6Jd9dYcLQZHbllJCRV+quq+82cPrUIV5phqTF8/3q3QB8v3pPq+WqbSLt/9cT/axGo4gMBS4EjjbGjAGcwKVAKDDPGDMcqAQeAGYCZwP3N9vEROBcYBRwvoi07Bf5LTBJREI90xcCb3s+32WMSfesO11ERjVbr9gYM84Y8zbexgHnGWOmA7XA2caYccAM4J8iIsDtwC5jzBhjzC0iciIw0JPXMcB4EZn2kyqqA9VWFGONjGuctkbGYC8v9kpjLy8m2BbbLE0stRVNaXYv+oL5j13PmrdnU1/Ts7tc2oIDKLU33UiU2RuwWQO801gDKKttkSbYOw3ApD6RbCmobpxOjQrmthl9uW1GX95dv6/HRhkBYkICKK5uunAW19QTHdq6DnzpZQuiur6BW4/vx+O/GsplE3pj6aEnPl/iQoMorGzq1lVYWU9caOtG4X6nDY9nebNuYvsdNziWedtaN56ONGUlRUTGxjdO22LifTYav5jzMjPOvIiAoODOzJ7qRnrFhJBd1HSNySmupndMqM+0feLCSI0PZ8GG3FbLzj+mv8/GZE+m5+S29YqPJDu/rHE6p6Cc3vE2rzQbduRw1gz3beBZM0YSERZMtC3EK835J47l3a9Xd3h+u1KvuHCyC8obp3MKK+gdG+GVZsPOfZw1bRgAZ00bSkRoMNERv+weIOqn+bmRxuOB8cAKEVnrme4H1ANfedJsAL43xjg8n9Oarf+NMabYGGMHPgSmNt+4pwvpV8AZIuIPnAZ84ll8gSeauAYYDgxrtuo7beT3G2PM/jCcAA+JyHrcjdPeQOs+H3Ci528NsBoYgrsReURIO/oUZt71AsfeNJugiGg2ffpKV2epW5g5KAaXMazKburnn1layyPz9/Cv7zM4YWAM/kfSVfkn8BNhaGI4ry3P5tZPtpAQHsSMgTFdna0uMXNILIMTwnh7lfc7j9EhAfSLCWH5Ed419VBl79lB8b4cRk+e3tVZUT3E+cf05+Mf9+Bq8XQuMSqE4anRfHMEdU09XHpOhjue+JRjxvVnyZs3ccy4AeTkl+F0NvXySIyJYPiAJL5ZsrULc9k93PHM1xwzJo0lr/yRY8akkVNQjrMnPwXvRBZp/7+e6Oe+0yjAa8aYO7xmitxsTGP/CRdQB2CMcXkaf/u13Et97bVvA9cBJcBKY0yliPQFbgYmGGNKReS/QPPH19WtN9Nq/qVAHDDeGOMQkYwW22hexoeNMS+0sc2mhCJXA1cDnHjdfYw++cKDrfKz7F70BZlL5wIQlTIQe1lTX3V7WTFWm/fFwmqLoba8qFmaIoIj3GmCw6Ma56dNPpGlL8/qkDx3pKl9I5mSGgnA3tJaoqz+7PEsi7T6U2737opSbncQGdy0G0Za/SmvbUozMcXG8IQwnvlxr8/vy6+qp67BRVJEEFnN3jfpSYprHMQ0e4odExJISfWhddkprnaQUVxDvicat3xvGYPiQvmO4oOs2TMUVtcRF94UWYwLD6SwuvWAEuNTbPx6YjI3vLcJR4uuYDMGxbJwV/EReyFe+L8PWPLNZwD0GTCUsqKCxmXlxQXYomO90mds28jeXVu575rzcDqdVFWU8tTfruP6WU93ar5V18otriE5NqxxundMKDnFvi/X5x0zgL+8sKjV/HOP7senSzNocB5Z3b71nNy23IIykhMiG6d7x9vIaRZNA8grquCiW/8DQKg1kF8dN4ryqqbr87kzx/Dp/A1H3H7TUm5hJcnNorC94yLIKfIe5CavuJKL7nZ3xAu1BvKr6cO86kq1TQfCcfu5kcbvgPNEJB5ARKJFJPUnrD/Ts44V+BWw2Eea73F3K72Kpq6pEbgbgOUikgCc8jPybgMKPA3GGcD+fFcC4c3SfQ1cISJhACLSe395WzLGvGiMSTfGpHdUgxGg39TTmHHzbGbcPJvEkZPIWjkfYwwlGVsJCA4hOML7/avgiGj8g0IoydiKMYas/2/vruPrqNIGjv+eG3e3NlJ3F9pCWygUW9xZYKH4LuyLw8LisMCyOCxu7QKLL1q8UHejQt3SpG3cPbnn/WOmyb3JTVpo7Ibn28/99N6ZMzNnTsbOPOfMLP+JpCHjANz6P+5du5jwxF/z5+sc5u8o5LHZO3ls9k7W7ithbIp1wEyLCqSixklxlfuzkIqr6qisdZIWZd0jGJsSUf8k1AHxIRzdN5pXl2S4VQSig/3q7whFBfmSEOZPfrn39ovYmlNGUngg8aH++DqEib2iWJZeeHDT5pYR4u9DuF3xHpoU5rWVZ0827SslOTKIxPAAfB3C0f1iWdjo6ad94kK46Zje/P3zjRRWNN0Ojukfy6wu3DR10olncduT07ntyekMPWwSy2Z/gzGGnZvWERgc2qTSOPGEM3jw9c+49+WPuP7hF4hLStEK4+/Q8i3Z9EmKIC0+DD9fB+dM6sPMpU0fVNaveyRRIQEs3pjVZNy5k/vwwbyu1TQV9JjckuW/7KZPShxp3aLx8/XhnONGMnPuerc0MREhiH1Bf+ulU5nx+RK38ece3/WbpgIs35hJn+Ro0pIirbI6Zigz57tHV2MighvK6qJJzPhqVUdkVXmx3xRpNMb8IiJ3Ad+JiAOoAa79FbNYCnwMJANvG2OWA4jIV8AVxpg9xpg6++E304BL7OX+LCKrgI3AbjxXNrEfujPGGHOPh9HvAF+IyFpguT0vjDF5IrJARNYBX9v9GgcCi+ydrBS4CMj2MM92lzBwDFkbVvDDw1fj4xfAyD9eVz/up8evZ8otzwAw7Ow/s+rdZ6irqSZhwCji7Senrv9iOkWZOxCB4OgEhp9zTYesR2v5JauMgQmh3DW1F9V1Tt5dta9+3K1H9eCx2TsB+GhNFheMTMLPR9iQVVbfd/GsoQn4+gjXHJ4CwM78Cj5ck0Wv6CCO6ZuM01gPxPno5yzKqps8mNdrOA28tiide07oi0OEWZtz2V1YyfmjktiWW86y9CL6xAbzt6m9CfH3YWxqJOeN6sYN//sFp4EZSzO478S+CMK23DJ+6EIVpDoDz/y0ncfOGIRDhK/XZ7Ezv4JLx6ewKbuUhdsL+MukNIL8HNx/kvVqiaziKu78wjoxJ4YHEBfmz88Zv49HmA8aPYFfVi7iwWvOwz8gkAv++vf6cf+6aRq3PTm94zLXCc14ZBqTRvclNjKUrd88yIMvfcWMTxcdeMIuoM5puPGV+Xxxn/U6gBmzNrFhdwF3XzCGlVtz6iuQ50zqzYfzm1YMU+NDSY4NZd66pv0cvZ0ek5tXV+fkxsc+5ovnrsbHx8GMz5ewYfs+7r76BFZu2M3MueuZPKYPD1x7EsYY5q/azg2PflQ/fWpSFMkJkcxbua0D16J91NU5ufGpmXzxxMX4OBzMmLmSDTtzuPvyo1m5MZOZCzYxeWQPHrjqWAyG+T/v4oYnv+zobHsNDTRaxLTz45lFZBpWhe6v7brgdnLbzE1ds11aK6iu1aJpSXpuc62rVX5J03duqga3H9tlulu3ujMu6lQPvu5cUod2dA46tRNP9e53F7elr198u6Oz0LkFhR04ze9UxbwHvK4K9uAPW1v9AvbuqX28rhy65HsalVJKKaWUUupQeeuDa1pbu1cajTHTgentvVyllFJKKaWUUr+eRhqVUkoppZRSygNBQ42glUallFJKKaWU8kibp1p+6ys3lFJKKaWUUkr9DmikUSmllFJKKaU80EijRSONSimllFJKKaWapZFGpZRSSimllPJAREONoJVGpZRSSimllPJIm6datHmqUkoppZRSSqlmaaRRKaWUUkoppTzQ1qkWjTQqpZRSSimllGqWRhqVUkoppZRSygOHhhoBrTQqpZRSSimllEf6IByLNk9VSimllFJKKdUsjTQqpZRSSimllAfaOtWikUallFJKKaWUUs3SSKNSSimllFJKeeBAQ42glcZWV+fs6Bx0XtVaOC3y89XAf3N6JoZ1dBY6tY35pR2dhc4rdWhH56DzSl/b0Tno1OIiJnZ0FjqtwAFjOjoLnVp0QnRHZ0GpVqeVRqWUUkoppZTyQPs0WrTSqJRSSimllFIe6Cs3LNoeTimllFJKKaVUszTSqJRSSimllFIeOLR9KqCRRqWUUkoppZRSLdBIo1JKKaWUUkp5oIFGi0YalVJKKaWUUsoDh0irfw6ViESLyPcissX+P8pDmhEiskhE1ovIGhE5z2XcdBHZISKr7c+IA5bDIedaKaWUUkoppVR7uR2YZYzpC8yyfzdWDlxsjBkMnAA8LSKRLuNvNcaMsD+rD7RArTQqpZRSSimllAcirf9pBacBM+zvM4DTGycwxmw2xmyxv+8BsoG437pArTQqpZRSSimllPdIMMbstb/vAxJaSiwihwH+wDaXwQ/ZzVafEpGAAy1QH4SjlFJKKaWUUh60RYRNRK4CrnIZ9Iox5pVGaX4AEj1MfqfrD2OMERHTwrKSgLeAS4wxTnvwHViVTX/gFeBvwAMt5VkrjUoppZRSSinlgbTB41PtCuIrB0gztYU8ZYlIkjFmr10pzG4mXTgwE7jTGLPYZd77o5RVIvImcMuB8qzNU5VSSimllFLKe3wOXGJ/vwT4rHECEfEHPgH+Y4z5qNG4JPt/weoPue5AC9RKo1JKKaWUUkp5IG3waQX/BI4VkS3AVPs3IjJGRF6z05wLTAameXi1xjsishZYC8QC/zjQArV5qlJKKaWUUkp5CWNMHnCMh+HLgSvs728Dbzcz/dG/dplaaVRKKaWUUkopDxxt0KfRG3ldpVFExmC9qPK6Q5zPn4FyY8x/Gg3vAXxpjBlyKPNvK6cPjmdgQgjVdYb3Vu8ls6iqSZrkiADOH5GEn4+wIauMT9dbfWNP6B/D4MQwjDGUVtfx3qq9FFfVAdA7JojTBsfj4xDKqut4YeHudl2vQzUoIYRzhiUiIizcWcB3m/Pcxvs6hEvGdCMlMoiy6jpeX5pBfnkNIf4+XDkumdSoIBbvKuSDn/fVT3PtEalEBPjicMC23HLeW72PZh9N5UWGdwtj2mHJOET4cUsen63Lchs/MCGES8ZaZfLM3J0s2VUIQGyIH7dM6YUI+DiEbzbk8EOjcvZGQxJDuWBUNxwCc7cX8NWGHLfxvg7hyvHJpEUFUVpdx4sL08krqwEgOSKQS8Z2J8jPgTFw/3dbqXUaxqVGcPKgeAyGwopaXlm0m9Lquo5YvVZljGHBuy+ya+0yfP0DOPqym4lL69sk3ZL/TWfToh+oKi/lyuc/rR9ekpfNj288TnV5GU5nHePPuoy0YYe14xq0nWNHpvD4lYfj4xCmf7+Rxz9e7Tb+X5dPYPKQbgAEB/gSFxFE0oXTmTy0G/+6bEJ9uv7JkVz8+Cy+WLKzHXPfsV6690JOnDyEnPwSxpzzcEdnp10MTgjl3BGJOATm7yjk2025buN9HcKlY7uTGhVIWXUdry7OIK+8hoHxIZwxNAFfh1DrNHy8JotNOWUE+Dq49age9dNHBfmxJL3I7ZzmjY4ZlsQjfxqDj0N4a/ZWnv7ilyZpTh+Xyt/OHIYxhvXphVz5wgImDkzg4YtG1afpmxTB5c/P56sVGe2Z/TY3uX8sd58+EB+H8P6SDF7+cbvHdMcPTeCFaaM4/akFrM0oxs9H+MfZQxiaEoHTGB78dANLtuW3c+6Vt/GqSqOI+Nph1+WHOi9jzEutkKV2NSA+hNhQPx75cQepkYGcNTSBZ+enN0l31tAEPvh5H+mFlVwxrjsD4kPYmF3GT9sK+GaTdZE/sWckx/aL5eO1WQT6OjhzaAKvLsmgsKKWUH+f9l61QyLAecOTeHb+LgoravjblF6s2VvCvpLq+jSH94ikvLqO+77byujkcM4YEs/rSzOpqXPyxS/ZdAsPJCnc/RU1ry/JoLLWejLxleOSGZUczoqM4vZctVYnApeNT+Gh77aSV17DIyf1Z/nuIjKLKuvT5JbW8MKCXZwy2P2VPwUVtdz11WZqnYYAXwePnzaAFbuLKKiobe/VaDUi8Kcx3Xj8px3kV9Ryz7G9WZ1ZzJ7ihpsxk3pFUVZdx+0zN3NYagTnDk/kxYW7cQhcNSGZVxdnsLuwkhB/H+qMwSFwwahu3PnVZkqr6zhneCLH9Ivhs3UeH2zmVdLXLqMwew8XPPwGWds3Mvftf3PWnc80SZc2fBxDjj6F/955udvwFTPfpfeYyQyZcjL5e3bx1TN3kzbsP02m9zYOh/D01Udw0r0zycwrY/7jZ/Ll0p1s3F1Yn+a21xfVf//LSYMZ3isWgLlr9zD+xo8BiAoNYN1L5/PDqq51YXsgb32xmJfen8NrD17c0VlpFwL8cWQST8/bSUF5LXcc04s1e0rYW9Jw3DmiRyRl1XXc/c1WxiSH15+jS6vreH5BOkWVtXQLD+C6SWncPnMzVbVO/vFDQ4Xh78f0YlWmd5+vHCI8dslYzvjnj+zJL+fHB07g6xUZbNrTsF69EsK48ZTBnHD/dxSVVxNrn8fnb8hi8p1fAxAZ4s/KJ07lp7V7PS7HWzkE7jtzMJe8vJR9RZV8csPhzFqfzdasUrd0IQE+TJvUg1X2DWCA88anAPCHx+cTE+rPG1eM4fRnFmK6wp3xNqBxRstBPQhHRC62X/74s4i8JSI9RORHe9gsEUm1000XkWdFZKGIbBeRs+3hSSIy1+6AuU5EJnlYxmwRecYlzWH28PvsZS4A3hKRo0TkS3tcqIi8KSJr7bycZQ8/TkQWichKEflQREI9LO8+EbnF/j7aXrefgWtd0twoIm/Y34fa+Qr+dUXceoYkhrJit3WwTC+sJMjPh7AA9wpeWIAPgX4O0gutSsCK3cUMSbRWv6rWWZ/O36fhTz+qezhr95ZSaF/8e1tEpEd0EDll1eSV11BnYEVGEcOTwtzSDEsKY3F6EQCrMovpHxcCQHWdYVteBTV1zibz3V9hdIh117crhBn7xAaTVVxFdmk1dU7Dwh0FjE2JcEuTU1ZNekElzkZnjzqnodZpDfPzERxd4DDaKzqY7JJqcspqqHMalqYXMbJ7uFuaUd3DWbCjEIDlu4sYmGDtT0MSw8gorGS3va+VVddhTEMn9wBfax8L8nNQWFHTXqvUpnauXkT/CccgIiT2HkhVeSllhU2jzYm9BxISGdNkuAA1leUAVFeUEewhjTca2zeebfuK2ZlVQk2tkw/nbeXkw3o0m/7cyX34YO7WJsPPOLwX363cTUW1996I+S0WrNxGflF5R2ej3fSMDiK7tJrcshrqjGH57iKGd3M/Zw3vFs5i+yJ/ZWYxA+Ktc9buwkqKKq3tY09xFf4+Yp2fXMSH+hMW4MuWXO8u09G9Y9ieVcKunFJq6pz8b/Eu/jA6xS3NJVP68NoPmykqt24S5xY3bX112mGp/PDzHiq87NrmQIanRrIrr4zd+RXU1Bm+XLWXqYPjm6S78YR+vPzTdqpqGta/T0Ioi7Zax+680mqKK2sYmhzRZFplEWn9jzc6YKVRRAYDdwFHG2OGA9cDzwEzjDHDgHeAZ10mSQImAidjP8kHuAD41hgzAhgOrG5mccF2mmuAN1yGDwKmGmP+2Cj93UCRMWaonZcfRSTWzu9UY8worKjkTQdYzTeB/7PXz9UzQB8ROcNOc7UxpsOOwhGBvhRWNlxMFFXUEBHo2zSNS+SnsLLWLc2JA2K5e2ovRnUP5xu7OUxcqB/Bfg7+MiGFGyalMTrZ/aK5s4sM9KXA5aK8oKKWiCC/ZtM4DVTUOAk5iIjqX49I5V8n9aey1slKL79rCxAd7E9eWUMENq+8mqgQvxamcBcT7Me/ThnAC2cP4bN1WV4dZQSICvIlv7xh28mvqCGq8bYT5Ee+fUFibTt1hPr7kBDmjwFuPrIH9x3XhxMHWJGjOgP/WZ7Jgyf25anTBtAtPJC52wvabZ3aUllhHqHRcfW/Q6PiPFYamzPm1IvYvPhH/nPrRcx85h4m/fGatshmu+sWE0xGbsPd/cy8MrrHhHhMmxoXSlp8GLPX7mky7pxJvT1WJlXXEhnk1+icVUNkkG+jNL7kH+CcNap7OOkFlfU38/YbmxLB8oyiNsp9+0mKCiIzv+GSa09+OUlRQW5peieG0ScxnG/uOY7v7jueY4YlNZnPmePT+HjRrjbPb3tLiAhkb2FDK6F9RZUkRAS6pRncPZykyEBmN+p2sXFPCcfYXZKSo4MYkhxBUqT7tEo1djCRxqOBD40xuQDGmHxgAvBfe/xbWJXE/T41xjiNMb8A+9u3LQMuFZH7gKHGmJJmlvWuvYy5QLiIRNrDPzfGVHhIPxV4fv8PY0wBMB6rkrlARFZjvbskrbmVs5cRaS9z//rsn58TmGYPm2OMWdDcfLzF1xtzefCH7azMLGZij0jAagKSHBnI60szeHVJBsf2jSH2V1QkurJ/L0jn9q824+sQ+sd7vgj8Pckrr+G2LzZy/f/Wc2Sf6CY3LX5PfEToGxvCy4t28/CsbYxKjmBgQgg+AlP6xnDvt1u58bONZBRWcvLAuAPP8Hdg69LZ9D/8WC5+7G1Ouv4BZr3+GMbZNMrflZ0zqTefLtyBs9GFfmJUMIPTovn+d9Y0Vf02SeEBnDk0gbdXNr35MCYlnGXp3l9pPBi+Pg56JYZx8kPfc8Xz83nm8nGEBzdcvyREBjIoJZJZHm7SdHUi8PdTB/Dw5xubjPtwaQb7Civ59IbDueu0gazcWdCkdZFqICKt/vFGbfGeRte2AQL1lcDJQCYwXUSa67jQeIvd/7vsVyxfgO+NMSPszyBjzOUHnKp5fYFSoFuzCxS5SkSWi8jyNd+8fwiLauqIHpHcNDmNmyanUVxZS6TLRXpEkF99M5X9iipr3e5YRgb6NkkDVnOXoXYTzqLKWjZll1FdZyirrmN7fjndGvXv68wKK2vdokNRQb4UNWoO6JrGIVaTwbKDbKpS6zSs2VvCsEZNXr1Rfnk1MSH+9b9jgv0pKPv1TScLKmrZXVDJgIQmLb+9SkFFLdEuFxjRjSIAAIUVNUQHW2VmbTs+lFbXkV9Rw+acMkqr66ius7aRtKggUu074TmlVnRy6e5C+sR67w2HdT9+zgf3X8MH919DcEQ0pfkNd6xLC3I8NkNtzob539Jn7GQAEnsPorammopS74/g78krJzm2YV/oHhNCZp7n09bZk/rwwbym0cSzjujF54t3UuuhqbzqWgobtWiICvJzayFkpakluplzVmSQL3+ZkMKbyzLIbXT8To4IwEekvouKN9tbUEH36IYeQd2ig9lb4B4/2JNfztcrM6itM6TnlLF1Xwm9ExvO1aePS+PL5bupret6FaKsokq36GBiRCBZLs8nCAnwpV9SGP+95jDm3HkkI9Miefmy0QxNDqfOaXjo842c8uQC/vzmSsKD/NiR493NmVXbO5hK44/AOSISAyAi0cBC4Hx7/IXAvJZmICJpQJYx5lXgNWBUM0nPs9NPxGp2eqBbZd/j3gcxClgMHCEifexhISLSr7kZGGMKgUJ7mfvXZ//8IrCa3k4GYvb30fQwj1eMMWOMMWOGnXDeAbL86yzYWciTc3fx5NxdrNtXyugUq+loamQglTV1lFS5V3xKquqorHGSah9IRqeEs26f1WzKNXo4JCGUbPuidt2+UnpGB+EQq69aamRQ/ThvsKuggvhQf2KC/fARGJ0cwZq97h3B1+wtYXyq1V5/ZPdwNuW0fB8iwEcItyvoDrH6k2aVNO0r4W225ZaTGB5AXKg/Pg7h8J5RB92MKTrYDz8f6+5YiL8P/eND2FPk3RcmO/LLiQ8LIDbEDx+HcFhqRJOHR6zKLOaInpEAjEmJYIP9kIF1e0tIjgjE30dwCPSPC2FPURUF5TV0Cw+o7288ODGMPcXeW05Djj6Vc+99gXPvfYGeIyewadEsjDHs27aBgKCQX1VpDI2OJ2PDKgAK9qRTV1NNUJj396NZviWbPkkRpMWH4efr4JxJfZi5tGlzuH7dI4kKCWDxxqwm486d7LkyqbqenW7nLGFMSgQ/73VvgLVmbwnj0yIBqxnqxmzrnBXk5+CvR6TxydostuU1bYA1NiWCZbu7RpRx5fY8eieGkRoXgp+PgzPHp/H1SvdI/MwVu5k40GrUFh0aQJ/EMHZmN5z/z5rQo0s2TQVYs7uIHrEhJEcH4ecjnDwyiVnrGx64VlpZy9h7ZnHkQ3M48qE5rNpVyNVvrGBtRjGBfg6C7ObOR/SLobbONHmAjmrgaIOPNzpg2zJjzHoReQiYIyJ1wCrg/4A3ReRWIAe49ACzOQq4VURqsKJ2FwOIyGvAS/YTUQEqRWQV4AdcdhD5/wfwvIisA+qA+40x/xORacC7IrI/XHYXsFlEHgCWG2M+bzSfS4E3RMQA37kMfwp43hizWUQuB34SkbnGmA55DOKG7DIGxodwx9E9qbFfubHfTZPTeHKudWD8eG1W/Ss3NmaX1Z9sThoYR1yI1Q+roLyGj9ZaFy7ZpdVszCnj5iN7YAwsSS9ye/JoZ+c08P7qffz1iFQcIizaVcjekipOHhjHrsIK1u4tZeHOQqaN6c59x/Wh3H7lxn4PHt+HQD8ffBzC8G5hPDd/F2XVdfxlQgq+DkGAzbnlzNvh/f3SnAbeWJLB36f2xuEQZm/JI6OwknNGJLI9r5wVu4vpHRPMzVN6EuLvw+jkCM4Zkcgtn22ke0QgfxrTvX5eX67Prn8IjLdyGnhnxR5uPrInDgfM217AnuIqTh8Sz878ClbvKWHu9gKuGp/CP0/qR1l1HS8ttJ5YXF7j5NtNudxzXB+MsS7y1tgXfp+ty+b2o3tRZwx5ZTW8tqRrNDlMHXoYu9Yu479/vwxf/wCmXNrQXfyD+6/h3HtfAGDRh6+xZelsaqur+M+tFzFw4vGMPe1PHH7ulcyZ8Qxrvv8ERDj6spu9tpmOqzqn4cZX5vPFfX/AxyHMmLWJDbsLuPuCMazcmlNfgTxnUm8+nN+0YpgaH0pybCjz1v3+mtABzHhkGpNG9yU2MpSt3zzIgy99xYxPFx14Qi/lNPDe6r1cPykNhwgLdhawt7iKUwbFsaugkjV7S5i/o4DLDuvOgyf0oay6rv4YMqV3NPGh/pw0KI6TBlnN3p+Zt6v+BvLo5AieW9A1Kkl1TsNtM5bz8W1H4+MQ3pmzjY2ZRdxx1jBW78jj65WZzFqzlylDk1j06Mk4nYZ73l1FgX3TOyU2hO7RwSzwcJOmK6hzGu7/3y9Mv2osDhE+WprBlqxSbji+L2szitwqkI3FhAYw/aoxOI0Vsbz53Z/bMefepyucp1qDmE7ShllEZgO3uFQgvdLNX2zqHAXaCVXUdK0nl7W2vC4QyWwrwQG/376TB2N4d+9uJtyW7nj8uwMn+r1KX9vROejULr7zLx2dhU7rg09Xd3QWOrXohOiOzkKnte2JE72uBvbB6j2tfm1/7ohuXlcOeiWmlFJKKaWUUh54Xe2ujXSaSqMx5qiOzoNSSimllFJKKXedptKolFJKKaWUUp2J9mm0aKVRKaWUUkoppTzw1qedtjYtB6WUUkoppZRSzdJIo1JKKaWUUkp5oM1TLRppVEoppZRSSinVLI00KqWUUkoppZQHGme0aKRRKaWUUkoppVSzNNKolFJKKaWUUh5ol0aLVhqVUkoppZRSygOHNlAFtHmqUkoppZRSSqkWaKRRKaWUUkoppTzQ5qkWjTQqpZRSSimllGqWRhqVUkoppZRSygPRPo2AVhqVUkoppZRSyiNtnmrR5qlKKaWUUkoppZqlkcZWlpFf3tFZ6LQSIoI6OgudmpZP82JD9FDVkvSCqo7OQqd14qljOjoLnVZcxMSOzkKn9p+HXuzoLHRah192YUdnoVNLiQ3p6CyoVqSv3LBopFEppZRSSimlVLP09r1SSimllFJKeaB9Gi1aaVRKKaWUUkopD7TSaNHmqUoppZRSSimlmqWRRqWUUkoppZTyQN/TaNFIo1JKKaWUUkqpZmmkUSmllFJKKaU8cGigEdBKo1JKKaWUUkp5pM1TLdo8VSmllFJKKaVUszTSqJRSSimllFIe6Cs3LBppVEoppZRSSinVLI00KqWUUkoppZQH2qfRopFGpZRSSimllFLN0kijUkoppZRSSnmgr9ywaKVRKaWUUkoppTzQ5qkWbZ6qlFJKKaWUUqpZXT7SKCKTgJeAGmCCMabCHv4AMNcY80Oj9EcBtxhjTm7nrP4qw7uFMe2wZBwi/Lglj8/WZbmNH5gQwiVjk0mNCuKZuTtZsqsQgNgQP26Z0gsR8HEI32zI4YfNeR2wBq3jrKHxDEoIpbrOyTsr95JRVNUkTUpEABeOSsLPx8EvWaV8vDYbgGA/B9PGdic62I/88hreXJZJRY2TID8HF4xMIjbEj1qn4b8r97K3pBqAe4/rTVVNHU7A6TQ8PmdXe67uITmUshrRLYwTB8SSEObPE3N2sbuwEoD+ccGcOjgeH4E6A5+uy2ZLbnm7rldbMsaw4qOXyVy/HF//ACb86UaiU/o0Sbf68xnsWPoj1eWlnPfkxx2Q07Z1xpB4Btrbzrur9pLpYdtJjgjgjyOtbWdDVimfrLO2nVMGxTEoIZQ6Y8grq+HdVXuprHXiEDhvRBLJEQE4RFi+u4hZW/Pbe9Vazcju4Vw2PgWHA37YlMsna9yPyYMSQ7lsXApp0UE8+dN2Fu0srB8XG+LHNZN6EBvihzHwj++2klNa3c5r0LoGJ4Ry7ohEHALzdxTy7aZct/G+DuHSsd1JjQqkrLqOVxdnkFdew8D4EM4YmoCvQ6h1Gj5ek8WmnDICfB3celSP+umjgvxYkl7EBz/va+c1a18v3XshJ04eQk5+CWPOebijs9PuxqZGcu3kHjhE+OqXLN5bscdt/NkjkvjD4HjqnIbCiloem7WV7JKGfSfYz4c3LhrOgu0FPDdnR3tnv00MTQrlglHdcQjM3ZbPzA05buN9HcKV41PoER1EaVUdLy7cRW5ZDRPSIjlxYFx9uuTIQO77ZgvphZXcfnQvIoL8qKlzAvDYT9spqapr1/XqzPSVG5YuX2kELgQeMca87TrQGHNPB+XnkInAZeNTeOi7reSV1/DISf1ZvruIzKLK+jS5pTW8sGAXpwxOcJu2oKKWu77aTK3TEODr4PHTBrBidxEFFbXtvRqHbFBCCHGh/jz4w3Z6RAVy7vBEnpzbtBJ37ohE3lu9j50Flfx5QjID40PYkF3G1H4xbM4p44ct+UztG82xfWP4/JccjusXQ2ZRJa8vzSQ+1J9zhifw/ILd9fN7bsFuyqq962B6qGW1t7iK15dmct6IRLf0ZdV1vLw4g+LKWpLC/PnL4Snc8+229lqtNrfnl+UU5+zh1HtfJW/nJpa+9zwn3PpUk3TJQ8fR/8hT+Pz+Kzsgl21rYHwIsSH+PDxrO2lRgZw9LJFn5jXdds4elsgHP+9jV0ElV45LZkB8CBuzy9iUU8bMDTk4DZw8MI6pfWP4ckMOI7qF4+sQHpu9Ez8f4W9TerEys4SCipoOWMtD4xC48vBU7v9mM3llNfzr1AEsSy8io7DhmJxTWs1zc3dy2tCEJtNfd2RPPl69l5/3lBDo68BpTHtmv9UJ8MeRSTw9bycF5bXccUwv1uwpYW9Jw82GI3pEUlZdx93fbGVMcjhnDk3g1SUZlFbX8fyCdIoqa+kWHsB1k9K4feZmqmqd/OOH7fXT//2YXqzKLO6AtWtfb32xmJfen8NrD17c0Vlpdw6B647qyW2f/kJOaTUvnDeURdsL2FVQUZ9ma04Zf3l/LVW1Tk4ZksBVR6Txj2+21I+/dHwKazJLOiL7bUIE/jS6O4/9tIP8ihruPa4PqzKL2VPcsG9N7hVNeXUdf/tyE+NSIzhneBIvLkxn0a5CFtkBhOSIQK6blEa6yzHq5UXp7MyvaLxI1UmJSDTwPtAD2Amca4wp8JCuDlhr/0w3xpxqD+8JvAfEACuAPxljWrxb+Zuap4rIxSKyRkR+FpG3RKSHiPxoD5slIql2uuki8qyILBSR7SJytj08SUTmishqEVlnRwMbL6OPiPxgL2OliPQWy2P2NGtF5Dw77VEiMltEPhKRjSLyjp32CuBc4EEReafR/Ke75OcEe7qVwJkuaZ4RkXvs78fbee7wJr19YoPJKq4iu7SaOqdh4Y4CxqZEuKXJKasmvaCyycVHndNQ67SG+fkIDi9upz00MZSl6UUA7CyoJMjPQXiAj1ua8AAfAn0d7CywDoxL04sYlhTaZPql6UUMtYcnhgWw2Y6WZZdWExPsR1ij+XqbQy2rrNJqsj1EPjKKqiiutG447C2pxs/HgW8X6jGesWYxvQ47GhEhtucAqivKqChqGg2L7TmAoIjoDshh2xuSGMryDGvb2WVvO433h7AAHwJ8Heyyt53lGUUMTbS2nc055diHHHYVVBARZN2rNBj8fRw4BPzsqFJVrXfdjNmvT1wIe4srySqpptZpmL+9gMNSI93S5JRWs6ugoskxOTkyEB8Rft5jXdhW1jqprvPuSmPP6CCyS6vJLauhzhiW7y5ieLcwtzTDu4Wz2L6AXZlZzID4EAB2F1ZSZB9T9hRX4e8jTY4p8aH+hAX4dqlWDc1ZsHIb+UVdfz09GZAQSmZhJXuLq6h1Gn7anMvhvaLc0qzOLKaq1oqObdhXQlyIf/24vnEhRAX7sSK9sD2z3aZ6RQeTVVpNTpl1/bckvZCRyeFuaUYmhzN/h1V3WLa7iEH2sdjVuLRIlnShcmlr0gafVnA7MMsY0xeYZf/2pMIYM8L+nOoy/FHgKWNMH6AAuPxAC/zVkUYRGQzcBRxujMm1a7ozgBnGmBkichnwLHC6PUkSMBEYAHwOfARcAHxrjHlIRHyAYA+Legf4pzHmExEJxKrgngmMAIYDscAyEZlrpx8JDAb2AAuAI4wxr4nIROBLY8xHzaxPIPAqcDSwFavWvt8d9jLm2ev0B2OM8+BLq21EB/uTV9ZwAZ9XXk2fuJCDnj4m2I+/HdObxPAA3l6e6ZVRRoCIID8KXfJeWFlLRJAfxS5NKppLAxAW6FuftriqjrBAa3fILKpkeFIY2/MqSI0MJCrIj8hAX6uphjFcc3gKAAt2FLBwV1Gbr2drONSyOhgjuoWRUVhZf1OiKygvzCM4qqE5T3BkLOWFeV22guhJeGCj7aKilohAP7emSxGBfvUX+vvThAc23XYOS41k9R4rOvTznhKGJIZx33F98PNx8Nn6LMprOvzw+pvEBPuRV9YQIc0rr6bvQR6Tu0UEUFZdy23H9CI+LIA1mcW8vTwTb96NIoP83CLGBRU19IwOapTGl3w7jdNARY2TEH8ft1Yco7qHk17Q9JgyNiWi/kaG6rpiQ/zJKW2IoOWUVjMwMazZ9CcOTmCpfSNCgD9PTOOR77YyutFNdW8WZXen2a+gvIZeMe6X0FFBDWmcBiqq6wj196HUZd8alxrBM/N2uk13+bhkjIHlu4v4fH12262EF3J0zvappwFH2d9nALOBvx3MhCIiWPWeC1ymvw94saXpfkvU7GjgQ2NMLoAxJh+YAPzXHv8WViVxv0+NMU5jzC/A/nY5y4BLReQ+YKgxxq3tgIiEAd2NMZ/Yy6g0xpTb833XGFNnjMkC5gBj7cmWGmMy7Erdaqxw7cEYAOwwxmwxxhigvhmrvcwrge+BfxtjukS7u7zyGm77YiPX/289R/aJJiLw99BK+SDY1yU/bMknyM/BbVN6cGTvKDKKKtl/Kfv0vHQem72TFxfuZlKvKHrHBDU7u9+TxDB/Th0cx/uru3b/IvXbTe0bg9MYVmRYlcbUqCCcxnDfd1t56IdtHNU7mujgg79J0VX4iDAwMYwZSzO47bMNJIQFMKVvTEdnq8MlhQdw5tAE3l65p8m4MSnhLEvXSqNqMLV/LP3iQ/jA3l5OHZbI0l2F5JZ5d9/gttArJoiqOqdb3/SXFqVz99dbePiHbfSLC+HwHpEdl0F1sBKMMXvt7/toqGM1Figiy0VksYicbg+LAQqNMfvv9mYA3Q+0wPaoLbg+MUEAjDFzRWQycBIwXUSeNMb8pxWXU0frrdtQIA/o1lwCEbkKuApg9LQ76X3UWa20aM/yy6uJcWmCERPsT0HZr+8HVFBRy+6CSgYkhNY/KKezm9Qzkgn2wSy9oJLIoIY/c2SgL0WN+kMVVdQ0m6akspbwAB+Kq+oID/ChpMradyprnfx3VUPl597jetdHEfZHU0qr61izt5S0qCC25XXOPgCtWVYtiQz05Ypxyby1Yi+55d7XH62xTXO+ZNvCbwCITutHeUHDQwbKC3MJjuz6F/RH9IhkfFokYDUXdNsugnwpqmy07VTWuN18igzypdglzdiUCAYlhPLiovT6YaO6h7MxuwynsfanHfkVpEQGut1F9xZ55TXEhDRUeGOC/ck/yGNyXlkNO/PKybIf3rE0vZB+cSHMwnsfUFZYUUOUSyuFqEatGKw0tUTbwx0CQX6O+ihjZJAvf5mQwpvLMshtVI7JEQH4iLj1xVJdU25ZNXGhAfW/40L9yS1t+hCuUSkRXDCmOzf9bz01dlR6UGIoQ7uFc+rQBIL8fPD1ESpq6nhtYXqT6b1JQXmN2821qGC/Jv3ACyqsNAUVNda+1STKGNnkmm///llZ62TxrkJ6xQSzcKd7mt+ztogzutYdbK8YY15plOYHwP1hEpY7XX8YY4yINNc+Jc0YkykivYAfRWQt8Jvuuv2WSOOPwDkiEgP1HTEXAufb4y8E5rU0AxFJA7KMMa8CrwGjXMfbkceM/TViEQkQkWB7vueJiI+IxAGTgaW/YR1cbQR6iEhv+/cfG+XzZqymryeKyDhPMzDGvGKMGWOMGdPWFUaAbbnlJIYHEBfqj49DOLxn1EE31YkO9sPPx9r8Q/x96B8fwp4i7zn5zttRyL9+2sm/ftrJmr0lHJZqNTvpERVIZa3TrbklWM1OK2ud9IgKBOCw1AjW7isFYN2+0vrpXYcH+Tmwi4gJaRFsyy2nstaJv48Q4GvtMv4+woC4YPYWNz2BdRatWVbNCfJzcPWEZD5fn82OLtKBvv+RJ/OHO/7NH+74NynDxrN96Y8YY8jdsRH/oJDfRdPUBTsLeWLOTp6Ys5O1e0sYk2xtO2lRgVTWOJs8Va+kqo6qWidp9rYzJjmCdfa2MyAuhCl9onl9aQY1Ln31Citq6BtrNavy9xHSooI89pv1BltzykgKDyQ+1B9fhzCxVxTLDrK/0NbcMkL8fQi3K91Dk8Lqn07srXYWVBAf6k9MsB8+IoxJieDnve4PI1mzt6T+xsT+GwhgHVP+ekQan6zN8nhDbmxKBMt2a5Tx92BjVindIwNJDA/A1yFM6RfLwh3uz/noExvMjVN6cfeXm9xuTDzy3VYumL6SC2es4uX5u/h+Y67XVxgBduSXkxDmT2yIHz4OYVxqJKsy3B8ItTqzmIk9rb6fY1Mi2JDVcB4XrG4CS1y61jgEQv2tfuo+Yj2dP9OLrgu9lWvdwf684iHNVGPMEA+fz4AsEUkC61kxgMc2xcaYTPv/7VhNWEdiBcMiRWT/3d5kIPNAef7V0ThjzHoReQiYYz+RZxXwf8CbInIrkANceoDZHAXcKiI1QClwMYCIvAa8ZIxZDvwJeNl+NUYNcA7wCVZT2J+xGhPeZozZJyIDDibvjea/f30q7dr+TBEpx6qYhtntfV/Hev3GHhG5HCsqOtYY06F7k9PAG0sy+PvU3jgcwuwteWQUVnLOiES255WzYncxvWOCuXlKT0L8fRidHME5IxK55bONdI8I5E9jGiLQX67P9toLlF+yyhicEMo9x/aiutbJOy7Rwdum9OBfP+0E4IOfs7hwVBL+PsIvWWX8kmVdnHy/OY9LD+vO+LRICuxXbgAkhPpz0ehuGGPYV1LNf1dZ0f+wAF+uGGeVnUOEFRnFbLAvdDq7Qy2rYUmhnD0sgVB/H64en0xmUSUvLspgUs8oYkP8OWFALCcMiAXghQW73e5qerNug8eSuX45n99/BT5+AUy46Mb6cV898lf+cMe/AVj56RvsXD6b2poq/nfXxfSZcDzDTrqwo7LdqjZklzEwIZS/H9OLmjon77psOzcf2YMn5uwE4KM1WfYrN4SN2WX1+8aZwxLwcQh/nmD1Bd5VUMFHa7KYv6OA80cmcdtRPUFgWXpRp74J0xKngdcWpXPPCX1xiDBrcy67Cys5f1QS23LLWZZeRJ/YYP42tTch/j6MTY3kvFHduOF/v+A0MGNpBved2BdB2JZbxg+NXk/hbZwG3lu9l+snpeEQYcHOAvYWV3HKoDh2FVSyZm8J83cUcNlh3XnwhD6UVdfx2pIMAKb0jiY+1J+TBsVx0iCrP/Ez83bV36gYnRzBcwu851VHh2rGI9OYNLovsZGhbP3mQR586StmfLqoo7PVLpwGnpuzg0dPHYjDIXz9Sza78iuYNi6FTdmlLNpRwFUT0wjyc3DPif0AyC6p4u6Zmzo4523HaeDt5Xu45aheOATmbS9gT3EVZwxNYEd+Baszi5m7LZ+rJqTw6Mn9Kauu48UFDZXl/vEh5JdbD9LZz9ch3DKlJz4OwSHC+n2lzN7mva8/ahOdsksjnwOXAP+0//+scQIRiQLKjTFVIhILHAH8y45M/gScjfUEVY/TN5mf8fJHe3c2581YpQXajIQI7f+nfpvYEO1325LGTf9Ug5053nFjpyPERQR2dBY6tf881OIzIX7XDr+sa9wUayspsQf/cMLfm+l/HNY5q2AtWLKtqNWv7cf1jjikcrBbfH4ApAK7sF65kS8iY4A/G2OuEJHDgZcBJ1br0qeNMa/b0/fCqjBGYwUALzLGtHjnVq/ElFJKKaWUUspLGGPygGM8DF8OXGF/X4j1bBZP028HDvs1y9RKo1JKKaWUUkp50DnfuNH+OvxF9UoppZRSSimlOi+NNCqllFJKKaWUBxpotGikUSmllFJKKaVUszTSqJRSSimllFKeaKgR0EqjUkoppZRSSnkkWmsEtHmqUkoppZRSSqkWaKRRKaWUUkoppTzQV25YNNKolFJKKaWUUqpZGmlUSimllFJKKQ800GjRSqNSSimllFJKeaK1RkCbpyqllFJKKaWUaoFGGpVSSimllFLKA33lhkUjjUoppZRSSimlmqWRRqWUUkoppZTyQF+5YdFKo1JKKaWUUkp5oHVGizZPVUoppZRSSinVLI00trLk6OCOzkKnZYzp6Cx0aul55R2dhU5r1TYtm5bcf9LAjs5Cp3XSAy93dBY6rcABYzo6C53a4Zdd2NFZ6LQWvvFOR2ehcwsI6egcdFrT/ziso7Pw62moEdBIo1JKKaWUUkqpFmikUSmllFJKKaU80FduWDTSqJRSSimllFKqWRppVEoppZRSSikP9JUbFq00KqWUUkoppZQHWme0aPNUpZRSSimllFLN0kijUkoppZRSSnmioUZAI41KKaWUUkoppVqgkUallFJKKaWU8kBfuWHRSqNSSimllFJKeaBPT7Vo81SllFJKKaWUUs3SSKNSSimllFJKeaCBRotGGpVSSimllFJKNUsjjUoppZRSSinliYYaAa00KqWUUkoppZRH+vRUizZPVUoppZRSSinVLK+JNIrIqcAgY8w/RWQ68KUx5qPfOK804BOsSrMf8Jwx5qVWy2wbOn1wPAMTQqiuM7y3ei+ZRVVN0iRHBHD+iCT8fIQNWWV8uj4bgBP6xzA4MQxjDKXVdby3ai/FVXUA9I4J4rTB8fg4hLLqOl5YuLtd16s1nDEknoEJoVTXOXl3VfNl88eRSfj5ONiQVcon66yyOWVQHIMSQqkzhryyGt5dtZfKWic+AucMTyQlMhBj4JN12WzLK2/vVWtVI7qHc+m4ZBwCszbn8enaLLfxAxNCuXRcMmlRQTw1eweLdxW6jQ/yc/D0GYNYml7I64sz2jHn7e+wHpFcP6UXDhG+XJfFO0vd1/e0YYmcMSIJpzFU1NTx2Hdb2Zlf0UG5bXvGGD549SnWr1iEf0AgF19/F6m9+zeb/oV/3EZuVib3PPeO2/AfPv0vH7/5bx576ytCwyPbONft49gJA3j8ljPwcQjTP13C4zNmuY1PTYzipXvOJzYqlILici67+20ys4uYPLoP/7rp9Pp0/XvEc/Hf/8MXc9a18xq0rWOGJfHIn8bg4xDemr2Vp7/4pUma08el8rczh2GMYX16IVe+sICJAxN4+KJR9Wn6JkVw+fPz+WpF1zn2jE2N5NrJPXCI8NUvWby3Yo/b+LNHJPGHwfHUOQ2FFbU8Nmsr2SXV9eOD/Xx446LhLNhewHNzdrR39jvUS/deyImTh5CTX8KYcx7u6Oy0u2PH9+PxG0+1jjufL+Pxt2a7jU9NjOSlO88hNirEOu7c+z6ZOUX148OCA1j13s18MWc9Nz7xWftm3ovoKzcsXlFpFBFfY8znwOetMS9gLzDBGFMlIqHAOhH53Biz5wCTd6gB8SHEhvrxyI87SI0M5KyhCTw7P71JurOGJvDBz/tIL6zkinHdGRAfwsbsMn7aVsA3m/IAmNgzkmP7xfLx2iwCfR2cOTSBV5dkUFhRS6i/T3uv2iEbGB9CbIg/D8/aTlpUIGcPS+SZebuapDt7WCIf/LyPXQWVXDkuub5sNuWUMXNDDk4DJw+MY2rfGL7ckMP4tEgAHpu9k1B/H64cn8LTc3di2nn9WotD4IrxKTzw7Rbyy2v45yn9WZ5eREZRZX2a3LJqnp+3i1OHxHucx/mjuvHLvtL2ynKHcQjcdExvbvxoHTkl1bx64QgWbM1zqxR+vzGHz9bsA+CI3tH89ahe3PK/9R2V5Ta3fsUisvdmcP9LH7Bj83reffEx/vb4ax7Trlo0m4CgoCbD83Oy+GXVUqLjEto6u+3G4RCe/ttZnHTtS2RmFTL/Pzfy5dx1bNzRcEPmkRtO5Z2Zy3ln5jKOHNOHB/56Mpff8w5zV2xl/IWPAxAVHsy6T/7OD4s3ddSqtAmHCI9dMpYz/vkje/LL+fGBE/h6RQab9hTXp+mVEMaNpwzmhPu/o6i8mtjwAADmb8hi8p1fAxAZ4s/KJ07lp7V7O2Q92oJD4LqjenLbp7+QU1rNC+cNZdH2AnYVNBxntuaU8Zf311JV6+SUIQlcdUQa//hmS/34S8ensCazpCOy3+He+mIxL70/h9cevLijs9LuHA7h6VtO56TrXiMzu4j5b/6VL+f9wsad2fVpHvm/k3jn6xW889VKjhzdmweuOYHL73+/fvy9Vx/H/FXbOyL7ygu1a/NUEblIRJaKyGoReVlEfESk1GX82XYUERGZLiIvicgS4F8iMk1E/u0yu6kislxENovIyfY0gSLypoisFZFVIjLFHj5NRD4XkR+BWcaYamPM/jBUAC7lICKlIvKYiKwXkR9E5DARmS0i2+1oZ4cZkhjKit3WSTa9sJIgPx/CAtwreGEBPgT6OUgvtCoBK3YXMyQxFICqWmd9On+fhj/9qO7hrN1bSmFFLQCl1XVtuh5tYUhiKMszrLtnuwoqCfJzeCybAF8HuwqsslmeUcRQu2w255TjtGuCuwoqiAiy7qckhAWwJdeKLJZW11FRU0dKZGB7rFKb6BMbwr6SKrJLq6l1GhZsL2BsaoRbmpzSanYVVNSXh6teMUFEBvrys8vFXlc1MDGMzMJK9hZVUes0zNqUw8Q+MW5pyl32lUA/B8ZrbyccnJ+XzmP8lBMQEXr1H0J5WSlF+blN0lVWlDPrs/f4wznTmoz76PVnOHPatV3q1u3Ywals253Lzsw8amrr+PC7VZx85BC3NAN6JjJnuXWhP2f5Vk6ePKTJfM44ZjjfLdxIRVVNu+S7vYzuHcP2rBJ25ZRSU+fkf4t38YfRKW5pLpnSh9d+2ExRuRVByy1u2lLktMNS+eHnPVR44TmqOQMSQq3jTLF1nPlpcy6H94pyS7M6s7j+/L1hXwlxIf714/rGhRAV7MeK9ML2zHansWDlNvKLvLv1z281dlAK2zLy2Lkn3zrufP8zJ08e5JZmQM8E5izfBsCcFdvcxo/s35346DB+WLoF1TJpg483ardKo4gMBM4DjjDGjADqgAsPMFkycLgx5iYP43oAhwEnAS+JSCBwLWCMMUOBPwIz7OEAo4CzjTFH2vlJEZE1wG7gUZcoYwjwozFmMFAC/AM4FjgDeOBXr3grigj0pbCytv53UUUNEYG+TdNUNKQprKx1S3PigFjuntqLUd3D+WaTdbEXF+pHsJ+Dv0xI4YZJaYxODm/jNWl94YF+7utdUUtEoJ9bmohAP4oq3dOEN0oDcFhqJBuzywDYU1zJ4MRQHALRwX6kRAYSGdR0Gm8RHexHbllDs6a88hqiQw5ufQS4ZGwyM5ZltlHuOpe4UH+ySxouXHNKqogN9W+S7owRSbx3+Wj+Mrknz/zYte/YFublEBXbECGMio2jMC+nSbov3nmVqaf9Ef8A9xssPy+ZS2RMHMk9+7Z5XttTt/hIMrIK639nZhfRPd79ZszaLZmcNmUYAKdNGUp4aCDREcFuac45biQffLuyzfPb3pKigsjMb7iw35NfTlKUexS6d2IYfRLD+eae4/juvuM5ZlhSk/mcOT6Njxc1bUHizWJD/MkpdTnOlFYTGxrQbPoTByew1O4yIMCfJ6bx0vyuVSbq4HSLiyAju7D+d2Z2Ed3jGh939nDaUdYNqtOOGkx4SCDR4cGICP+8/iTueHZme2ZZebn2jDQeA4wGlonIavt3rwNM86Exprlbih8YY5zGmC3AdmAAMBF4G8AYsxHYBfSz039vjMnfP7ExZrcxZhjQB7hERPZfCVUD39jf1wJzjDE19vceB7mundbXG3N58IftrMwsZmKPSMBqOpQcGcjrSzN4dUkGx/aNIfYgKxJdzdS+MTiNYUWGFUlbml5EUUUtN07uwemD49mZX4HTdO1oUnOOHxjHyoxi8su7VhTkUH2yei/nv76Cl+bu5OLxKQeeoIvbvX0zOfsyGTHhSLfh1VWVfPPhfzjlgis7KGcd646nP2fSqN4seudmJo3qQ2ZWIXV1Da0/EmPCGdwnie8XbezAXHYcXx8HvRLDOPmh77ni+fk8c/k4woMbzkMJkYEMSolk1tpO3YukTU3tH0u/+BA+WGmVwanDElm6q9DtRqBSru54biaTRvVi0YzrmDSyF5nZRdQ5nVx91ni+XbjJrX+jaoGGGoH27dMowAxjzB1uA0VudvnZuN1fWQvza3zlfqAreY/zMsbsEZF1wCTgI6DGmPpagROostM57f6QTYjIVcBVAFOvuZ9hJ5x3gKwcvCN6RDLObj64u7CSSJeoYUSQe+QMoKiylsighjSRgb5N0gCszCzmisOS+XZzHkWVtZRnl1FdZ6iuq2N7fjndwgPILevclYMjekTW9zncXVjpvt5BvhRVuue/qNI9MhsZ5EuxS5qxKREMSgjlxUUN/USdBj5b39A/4P8mppJT6r0n6PzyGmJdmjbFBPuRf5B/5/5xIQxICOX4AbEE+vng6xAqa5y8s6JrXsTllFYTH9Zwxz8uLIDcFv72szbmcPPU3kDXauoze+bHLPje6k6e1mcABbkN/fQKcnOIjIlzS7990zrSt27kzivPxFlXR0lRAU/eeS3nXXkTudl7+McNVt+jwtwcHr7xUv72+GtERLk3+/U2e7ILSU6IrP/dPT6CzGz3i7G9ucWcf9ubAIQE+XP60cMoKm3oS3zWsSP4/Ke11LpUJLuKvQUVdI9uiKp2iw5mb4H7A6P25JezfFsutXWG9Jwytu4roXdiGKu2W/d6Tx+XxpfLd1Nb17Vu2uWWVRPnElmMC/Unt7Rp09xRKRFcMKY7N/1vPTV234FBiaEM7RbOqUMTCPLzwddHqKip47WFTZ91oLqePTlFJMdH1v/uHh/RpBK4N7eE829/C7CPO1OGUlRaybihaRwxvCdXnTWekKAA/P18KK2o4u4XvkE1pa/csLRnpXEW8JmIPGWMyRaRaCAMyLKbrm7CagJ6sL25zxGRGUBPrIjlJmAeVpPXH0WkH5BqDx/lOqGIJAN5xpgKEYnCilA+9VtXzBjzCvAKwM1fbGrVM9qCnYUs2FkIWA97OaJnJKv2lJAaGUhlTR0lVe6B2JKqOiprnKRGBpJeWMnolHDm77Cmjw3xq68IDkkIJdu+AF63r5Qzh8TjEPBxCKmRQczdXtCaq9EmGpfNxJ5RrMosIS0qkMoap8eyqap1khYVyK6CSsYkRzB/h7WeA+JCmNInmucXpFPjclHi52MdKqrrDP3ignEayPLiSuPW3DKSwgOID/Unv7yGI3pF8fScnQc17TNzG9Id1Sea3rHBXbbCCLBxXwnJkUEkhQeQU1rNMf3juP8r9weUJEcGkmH3H57QK5qMgq735NSjTjqLo046C4C1yxcwe+bHjJl0LDs2rycoJISI6Fi39EeeeCZHnngmAHlZe3n+H7dw00PPA/DYf76qT3fnlWdyxxNvdImnpy7/ZTd9UuJI6xbNnuwizjluJNPuetstTUxECPnF5RhjuPXSqcz4fInb+HOPH8nd/+6aTcVWbs+jd2IYqXEh7M2v4MzxaVz5wgK3NDNX7OasCT3479ztRIcG0CcxjJ3ZDQ/cOmtCDx54f3U757ztbcwqpXtkIInh1k2pKf1ieehb9xtPfWKDuXFKL27/bINbN4xHvtta//34AXH0SwjVCuPvyPINGfRJiSEtKYo9OcWcc+xwpt3znluamIhg8osrrOPOJVOY8cUyAC69tyHdRSeNZvSAZK0wqgNqt0qjMeYXEbkL+E5EHEANVh/E24EvgRxgORB6kLNMB5YC4cCfjTGVIvIC8KKIrAVqgWn2E1IbTzsQeEJEDFYE9HFjzNpDW8O2tyG7jIHxIdxxdE9q7Fdu7HfT5DSenGv1a/h4bVb9Kzc2ZpfV9887aWAccSH+GKCgvIaP7FctZJdWszGnjJuP7IExsCS9iH0l3lUx2pBdxsCEUP5+TC9q6py8u2pf/bibj+zBE3bF6KM1WfYrN6yy2WCXzZnDEvBxCH+eYDUv3FVQwUdrsgj19+XqCckYY0Vx/7vSuytJTgOvLd7NXcf1wSHCj1vyyCis5LyRSWzLLWf57iJ6xwZz29G9CPH3YUxKBOeNTOLGTzd0dNbbXZ2Bp37cxhNnDcHhgJnrstiZV87lh6eyMauUBdvyOXNkN8akRlDrNJRU1vLQN10rytjYkNGHs275Iu758znWKzf+7876cQ/dcAl3Pj2jA3PXcerqnNz42Md88dzV+Pg4mPH5EjZs38fdV5/Ayg27mTl3PZPH9OGBa0/CGMP8Vdu54dGGN0alJkWRnBDJvJXbOnAt2k6d03DbjOV8fNvR+DiEd+ZsY2NmEXecNYzVO/L4emUms9bsZcrQJBY9ejJOp+Ged1dRYN+gS4kNoXt0MAs2Zh1gSd7HaeC5OTt49NSBOBzC179ksyu/gmnjUtiUXcqiHQVcNTGNID8H95xo9bbJLqni7pld6wm7v9WMR6YxaXRfYiND2frNgzz40lfM+HRRR2erXdTVObnx8c/44pnL8XE4mPHlMjbsyOLuK49l5cYMZs7bwORR1hNTjTHMX72DGx77tKOz7ZW60HPbDomY32n/rLbS2pHGrkS3tZale/n7H9tSVr6WTUvuP2lgR2eh0zrpon90dBY6rcABYzo6C53aqHEHeuzC79fCN945cKLfs4CQjs5Bp1Wx+FGvq4Jtza5o9QvYPvFBXlcOXvGeRqWUUkoppZRqb15Xu2sjWmlUSimllFJKKU+01gi07ys3lFJKKaWUUkp5Ga00KqWUUkoppZQH0gb/DjlPItEi8r2IbLH/j/KQZoqIrHb5VIrI6fa46SKyw2XciAMtUyuNSimllFJKKeU9bgdmGWP6Yr3W8PbGCYwxPxljRhhjRgBHA+XAdy5Jbt0/3hiz+kAL1EqjUkoppZRSSnkg0vqfVnAasP89VzOA0w+Q/mzga2PMb34cvVYalVJKKaWUUsoDaYuPyFUistzlc9WvzFaCMWb/C9v3AQkHSH8+8G6jYQ+JyBoReUpEAg60QH16qlJKKaWUUkq1E2PMK8ArLaURkR+ARA+j7mw0LyMizb5LUkSSgKHAty6D78CqbPrb+fgb8EBL+dFKo1JKKaWUUkp50kGv3DDGTG1unIhkiUiSMWavXSnMbmFW5wKfGGNqXOa9P0pZJSJvArccKD/aPFUppZRSSimlvMfnwCX290uAz1pI+0caNU21K5qIiGD1h1x3oAVqpVEppZRSSimlPOiMr9wA/gkcKyJbgKn2b0RkjIi8Vp93kR5ACjCn0fTviMhaYC0QC/zjQAvU5qlKKaWUUkop5SWMMXnAMR6GLweucPm9E+juId3Rv3aZWmlUSimllFJKKQ9a6RUZXk8rjUoppZRSSinlgdYZLdqnUSmllFJKKaVUszTSqJRSSimllFIeaPNUi0YalVJKKaWUUko1SyONrSzAR29HNKfG2dE5UN6qvLzmwIl+xwJ89P5fs4LCOjoHnVZ0QnRHZ6FTS4kN6egsdF4BWjYtqirr6ByoVqXX9qCVRqWUUkoppZTySJunWvT2tFJKKaWUUkqpZmmkUSmllFJKKaU80ECjRSONSimllFJKKaWapZFGpZRSSimllPJA+zRatNKolFJKKaWUUh6INlAFtHmqUkoppZRSSqkWaKRRKaWUUkoppTzRQCOgkUallFJKKaWUUi3QSKNSSimllFJKeaCBRotGGpVSSimllFJKNUsjjUoppZRSSinlgb5yw6KVRqWUUkoppZTyQF+5YdHmqUoppZRSSimlmqWRRqWUUkoppZTyRAONgEYalVJKKaWUUkq1oMtEGkWkB/ClMWZIGy5jNnCLMWZ5Wy2jJcYYfv7kFfZtWIGPXwBj/ng9USl9mqQr2L2V5e8+TV1NNYkDRzP8jKsQuxfv1rlfsG3BTEQcJA0ay9BTL6UsP4vv/nkNYXHdAYhO68+oc69t13VrbcYY1n36KlkbluPjH8DI828gMrl3k3SFu7ey6r1nqKupImHgGIacfmV9WQFsnf0Jv3zxJsff/zYBoeHtuQptZkT3cC4dl4xDYNbmPD5dm+U2fmBCKJeOSyYtKoinZu9g8a7C+nHvXzKS9IIKAHLLqnl01vb2zHqbm9A7mluO74uPwKer9jJ9Ybrb+LNGdePcsd2pcxoqquv4x8xN7Mgt58QhCfxpQkp9ur4JoVz46nI2Z5W29yq0KWMM/33lSdYuX4R/QACX33A3aX0GNJv+2QduIWffHh584b8ApG/fwlvPP0plZQWx8YlcdesDBAWHtFf2282xh/Xh8ev/gI9DmP7lSh5/Z57b+NSECF664wxiI4MpKK7gsgc/JjOnuINy2z4m94/l7tMH4uMQ3l+Swcs/ej52HD80gRemjeL0pxawNqMYPx/hH2cPYWhKBE5jePDTDSzZlt/OuW99Q5NCuWBUdxwCc7flM3NDjtt4X4dw5fgUekQHUVpVx4sLd5FbVsOEtEhOHBhXny45MpD7vtlCemEltx/di4ggP2rqnAA89tN2Sqrq2nW9Wtux4/vx+I2nWvvS58t4/K3ZbuNTEyN56c5ziI0KoaC4nMvufZ/MnKL68WHBAax672a+mLOeG5/4rH0z38FeuvdCTpw8hJz8Esac83BHZ8eraaDR0i6VRhHxNcbUtseyurJ9G1ZQmrOH4//+Mvm7NrHqoxc5+sYnmqRb9dELjDr3r0Sn9WfBK/eRtXEFiQPHkL1lDXvWLWHqrc/h4+tHZUlh/TShMYlMvfXZdlybtpW9cQVluXs45o6XKUjfxJqPX2Ty9Y83Sbfm4xcZfu61RKX2Z8lr95O9cSUJA0cDUFGQQ86m1QRFxTWZzls5BK4Yn8ID324hv7yGf57Sn+XpRWQUVdanyS2r5vl5uzh1SHyT6avrnNz6+cb2zHK7cQjcfkI/rnlnNVnFVbx1xRjmbM5lR255fZpv1mXx8co9AEzuF8NNx/bh/95dw9frsvh6nVX57hMfwhPnDO1yFUaAtcsXkbVnN4+88iHbN63nPy/8i7uffMNj2hULfyIgKNht2PTnHua8y/6P/kNHMe+7L/j647c5809Xt0fW243DITx908mcdOMMMnOKmf/q1Xy5YCMbdzZUCh659nje+WY173yzmiNH9eSBq6dy+T/+14G5blsOgfvOHMwlLy9lX1Eln9xwOLPWZ7O10T4SEuDDtEk9WOVyo+q88dbNmD88Pp+YUH/euGIMpz+zEGPacw1alwj8aXR3HvtpB/kVNdx7XB9WZRazp7iqPs3kXtGUV9fxty83MS41gnOGJ/HiwnQW7SpkkV0+yRGBXDcpjfTChuP3y4vS2Zlf0d6r1CYcDuHpW07npOteIzO7iPlv/pUv5/3Cxp3Z9Wke+b+TeOfrFbzz1UqOHN2bB645gcvvf79+/L1XH8f8VV3r5ubBeuuLxbz0/hxee/Dijs6K19Onp1oOuXmqiPQQkQ0i8qqIrBeR70QkSERmi8jTIrIcuL7RNLeKyDIRWSMi97vMZ6OITBeRzSLyjohMFZEFIrJFRA6z090nIm+JyCJ7+JUe8hQoIm+KyFoRWSUiU+zhc0VkhEu6+SIyXERCROQNEVlqpz/NHh8kIu/Z6/cJEHSo5XUo9q5bTNrYoxERYnoMoKaijIoi9zuuFUX51FSWE9NjACJC2tij2bN2MQDbF3xF/2POxsfXD4DAsMj2XoV2s2/dEpJHT0FEiE6zyqqy2L2sKovzqa0sJzrNKqvk0VPYt25x/fh1n7/OoFOm0ZXuMfWJDWFfSRXZpdXUOg0LthcwNjXCLU1OaTW7CipwevFF2W8xuFs4uwsqyCyspNZp+G59Fkf1j3VLU1bdcNc+yM8HT0V0/OAEvv0ly8MY77dqyVwOP/oPiAi9BwyhvKyUwvzcJukqK8r59tN3Ofm8S92GZ2Wm02/ISAAGjzyMFQt/apd8t6exA5PZlpnPzr0F1NTW8eGstZw80T0aO6BHPHNWWheyc1buaDK+qxmeGsmuvDJ251dQU2f4ctVepg5uelPqxhP68fJP26mqadjP+iSEsmhrHgB5pdUUV9YwNDmiybTepFd0MFml1eSUVVPnNCxJL2RksntLlpHJ4czfUQDAst1FDEoMbTKfcWmRLEkvbI8sd4ixg1LYlpHHzj351r70/c+cPHmQW5oBPROYs3wbAHNWbHMbP7J/d+Kjw/hh6ZZ2zXdnsWDlNvKLyg+cUKmD1Fp9GvsCzxtjBgOFwFn2cH9jzBhjTH04TESOs9MfBowARovIZHt0H+AJYID9uQCYCNwC/N1lecOAo4EJwD0i0q1Rfq4FjDFmKPBHYIaIBAKvA9PsfPQDAo0xPwN3Aj8aYw4DpgCPiUgI8Beg3BgzELgXGP1bC6g1VBTlERTZcBEbFBlDZVGeW5rKojyCIlzSRMRSYacpzdlD3vb1/PjUzcz59+3kp2+uT1eWn8UPj1/PnH/fTu629W28Jm2vsiiPoMiGCGFQhOeyCnQrz9j6NHvXLSYwIoaIbj3bJ8PtJDrYj9yy6vrfeeU1RIf4HfT0/j4OHj2lPw+f1L9JZdPbxYcHkFXccMc+q7iKuLCAJunOGdOdz64dz3XH9Oaxb5tejBw3KJ5v12U3Gd4VFOTlEB3bcLEfHRNPQV5Ok3SfvP0Kx59+AQEB7uXXLbUXqxbPBWDZ/Fnk53a9cuoWF0ZGdkPzuMycYrrHulcI1m7dx2n2xe1pkwcSHhJIdHiH3pNsUwkRgex1iYbtK6okISLQLc3g7uEkRQYyu1EzzY17SjhmcDw+DiE5OoghyREkRbpP622igv3IL6+p/11QXkNUkPtxOCqoIY3TQEV1HaH+Pm5pxqVGuHUfALh8XDIPnNCXUz1Uyr1Nt7gIMrIL639nZhfRPc79vLN2yx5OO8rqlXTaUYPtfSkYEeGf15/EHc/ObM8sqy5K2uCfN2qtSuMOY8xq+/sKoIf9/X0PaY+zP6uAlViVw74u81lrjHEC64FZxhgDrHWZJ8BnxpgKY0wu8BNWBdTVROBtAGPMRmAX0A/4EDhZRPyAy4DpLnm6XURWA7OBQCAVmOwynzXAmoMoi07LOOuoLi9lyg2PM/SUy1gy41GMMQSGR3PiPW8w9ZZnGHbaFSx9+3FqKn+/d6dqq6vYMusjBhx/QUdnpdP5y4fr+NsXm3h6zg4uPSyZhDD/js5Su/tweSanPb+Y537cxhUT09zGDekWTmVtHdtyyjoodx0vfftmcvZmMPrwo5qMu+z6O/npq4+5//pLqKwox9e3y3Sr/1XueP5bJo3owaLX/8KkET3IzC6i7vcW2nchAn8/dQAPe2j6/uHSDPYVVvLpDYdz12kDWbmzAKc3t01tJb1igqiqc5JZ1NCk9aVF6dz99RYe/mEb/eJCOLxHZMdlsJ3c8dxMJo3qxaIZ1zFpZC97X3Jy9Vnj+XbhJrf+jUqpQ9NaZ+wql+91NDTj9HTlJMAjxpiX3QZaD7JxnY/T5bcT97w2PmMc1BnEGFMuIt8DpwHn0hA5FOAsY8ymRnk6mNkiIlcBVwGc8NcHGHnieQc13cHYNn8mOxZ9C0BUal8qChuaglUU5hEYEeOWPjAihooilzRFuQTZaYIiY+k2bILdZLMfIg6qy4oJCI2ob7IaldKHkJhESrMziUrtizfZMX8mu5Z8B0BkSl8qChvuWFcUeS6rSrfyzCUwIobyvL2U52cx+wmrVXVlUS5zn7qBSdc/QWB4VDusSdvJL68hNqShohcT7Ed+WU0LUzSdHiC7tJr1+0rpGR1MVkn1AabyDtnFVSSEN0QwEsIDyCmpajb9t+uyuePE/kDDhe5xg+P5potFGWd9+RFzv7UeINGz70C36GB+XjZRMe59frdtXMuOrRu59bLTcdbVUVxUwKO3/4W//fNFklJ6cPODVt/pfZnprFm2sP1WpJ3sySkhOb4hGtI9LpzMXPeH3OzNK+H8u94DICTIn9OPHERRaSVdVVZRpVt0MDEikCyXftQhAb70Swrjv9dY93/jwgJ4+bLRXP3GCtZmFPOQS2Xyw/8bz44c776pWVBeQ3RwQ2QxKtiPggr343BBhZWmoKIGh0CQvw+lLs3jx6VGsqRRlLGwwnp0RGWtk8W7CukVE8zCne5pvMmenCKS4yPrf3ePj2hSCdybW8L5t78F2PvSlKEUlVYybmgaRwzvyVVnjSckKAB/Px9KK6q4+4Vv2nMVVBehfRotHfHKjW+By0QkFEBEuovIr21HcZrdbzEGOApY1mj8POBCe/79sKKG+yuErwHPAsuMMQUuefo/sWuJIjLSHj4Xq4ksIjIEq1lsE8aYV+xmuGNas8II0HviSUy99Vmm3vos3YaMZ9eyHzHGkLdzI35BwQRFRLulD4qIxi8wmLydGzHGsGvZjyQNGQ9AtyHjydlqBUtLsjNx1tXiHxJOVWkRxmmdjEpz91Gau4eQmMRWXY/20HPiSRx18zMcdfMzJA0ZR8aKnzDGkL9rI36BwQSGu5dVYHg0voHB5O+yyipjxU8kDhlHeFIPTrj/LY696zWOves1AiNimXzj015fYQTYmltGUngA8aH++DqEI3pFsWz3wd2JDfH3wddhHTnDAnwYkBBCRmHXudD9ZU8JKdFBdIsMxNchHDc4gTmb3fvrpUQ3NCGc2DeG9PyGi1cBjh0Uz3fru1Z/xmNOPpv7n3uL+597i5ETjmThj19hjGHbxnUEB4cSGe3e73PKH87iqf98yWNvfMod/3qZxG6p/O2fLwJQXGj1K3Y6nXzx3pscdeIZ7b4+bW35xkz6JEeTlhSJn68P5xwzlJnz3SNoMRHB9Tclb71oEjO+WtURWW03a3YX0SM2hOToIPx8hJNHJjFrfcPNh9LKWsbeM4sjH5rDkQ/NYdWuwvoKY6CfgyC7WeYR/WKorTNNHqDjbXbkl5MQ5k9siB8+DmFcaiSrMtxvLKzOLGZiT+ucMzYlgg0u6yzAYamRLNnVcOx2CPXNV30EhncLI7PIu4/Pyzdk0CclhrSkKGtfOnY4M+dtcEvjti9dMoUZX1iXg5fe+x79Tn+EAWc8yh3PzeS/X63UCqNSh6i9np46BvizMeYKY8x3IjIQWGTv6KXARVgRyoO1BqtZaizwoDFmjx2p3O8F4EURWQvUAtOMMVUAxpgVIlIMvOmS/kHgaWCNiDiAHcDJwIvAmyKyAdiA1fS2wyQOGsO+Dcv59qGr8PEPYMz5Dc8X+uGx6+qffjryrL/Uv3IjYeBoEu2ngfYYN5Xl7z3L949ei8PHlzEX3ICIkLttHeu/fgeHjy8iwsizr8U/JKxD1rG1xA8cQ9aGFcx65Gp8/AIYef519eNmP3E9R938DADDzvqz/cqNauIHjCJ+QId2W21zTgOvLd7NXcf1wSHCj1vyyCis5LyRSWzLLWf57iJ6xwZz29G9CPH3YUxKBOeNTOLGTzeQHBnIVYenYoxBRPhkTZbbU1e9XZ0x/Oubzfz7guH4iPDZz3vZnlPOn4/syS97i5m7OY/zxnTnsF7R1NY5Kams5d7PGy5gRqVFklVcSWYXqkg3NmzM4axZvpDbrzwb/4BALrvhrvpx9/7fn7j/ubdanH7JnO/5ceZHAIw6/CgmHntym+a3I9TVObnxqZl88cTF+DgczJi5kg07c7j78qNZuTGTmQs2MXlkDx646lgMhvk/7+KGJ7/s6Gy3qTqn4f7//cL0q8biEOGjpRlsySrlhuP7sjajyK0C2VhMaADTrxqD01gRy5vf/bkdc942nAbeXr6HW47qhUNg3vYC9hRXccbQBHbkV7A6s5i52/K5akIKj57cn7LqOl5c0PD6n/7xIeSXWw/S2c/XIdwypSc+DsEhwvp9pcz28leT1NU5ufHxz/jimcutfenLZWzYkcXdVx7Lyo0ZzJy3gcmjrCemGmOYv3oHNzz2aUdnu9OY8cg0Jo3uS2xkKFu/eZAHX/qKGZ8u6uhsKS8mxsv6BojIfUCpMabp+xMObvpuWP0WB9h9J1vV37/a7F0F2o5qfsd9dg7Gjt9xP7gD2ZGh/VJa8uz5Izo6C53W1Mue6ugsdFrdDpvQ0Vno1CaN6d7RWei03n/mnY7OQudWpefz5lSs+rfXNfYsrKhr9QvYyCAfryuHjmie2mFE5GJgCXBnW1QYlVJKKaWUUqqr8bpH1xlj7juEaf8D/Kf1cqOUUkoppZTqqrz1FRmt7XcVaVRKKaWUUkop9et4XaRRKaWUUkoppdqDvnLDopVGpZRSSimllPJA64wWbZ6qlFJKKaWUUqpZGmlUSimllFJKKU801AhopFEppZRSSimlVAs00qiUUkoppZRSHugrNyxaaVRKKaWUUkopD/TpqRZtnqqUUkoppZRSqlkaaVRKKaWUUkopDzTQaNFIo1JKKaWUUkqpZmmkUSmllFJKKaU80VAjoJFGpZRSSimllPJI2uDfIedJ5BwRWS8iThEZ00K6E0Rkk4hsFZHbXYb3FJEl9vD3RcT/QMvUSqNSSimllFJKeY91wJnA3OYSiIgP8DxwIjAI+KOIDLJHPwo8ZYzpAxQAlx9ogVppVEoppZRSSikPRFr/c6iMMRuMMZsOkOwwYKsxZrsxphp4DzhNRAQ4GvjITjcDOP1Ay9RKo1JKKaWUUkp1Ld2B3S6/M+xhMUChMaa20fAW6YNwWtnDf+jXqbrLishVxphXOjofnZGWTfO0bFqm5dO8zlY2FfMe6OgsuOls5dOZaNm0rDOVz/Q/DuvoLLjpTGXT2WjZHLpA39Z/FI6IXAVc5TLolcZ/JxH5AUj0MPmdxpjPWjtPB6KRxq7vqgMn+d3Ssmmelk3LtHyap2XTMi2f5mnZtEzLp3laNs3TsumEjDGvGGPGuHyaVOyNMVONMUM8fA62wpgJpLj8TraH5QGRIuLbaHiLtNKolFJKKaWUUl3LMqCv/aRUf+B84HNjjAF+As62010CHLAiqpVGpZRSSimllPISInKGiGQAE4CZIvKtPbybiHwFYPdZ/CvwLbAB+MAYs96exd+Am0RkK1Yfx9cPtEzt09j1aTv25mnZNE/LpmVaPs3TsmmZlk/ztGxapuXTPC2b5mnZdEHGmE+ATzwM3wP8weX3V8BXHtJtx3q66kETK0KplFJKKaWUUko1pc1TlVJKKaWUUko1SyuNyiuJyH0icksrzCdSRK5x+d1NRD5qaRplEZFTReT2js5HWxORo0Tky47Oh7cRka9EJLKj8/F70Pg45u1EZIyIPNsK8/mziFzsYXgPEVl3qPPvzERkkoisF5HVIhLkMvwBEZnqIX2nPc65nmtEZLqInH2gaVqYV5qIrLTLZb2I/Ln1cuod2mP7F5HZIjKmLZeh2p/2aVRdnoj4urzAtLFI4BrgBahvC/6bT0i/J8aYz4HPOzofqu2JiI8xpu7XTGOM+cOBU6nGmivrX3Mc82b2ei4Hlh/qvIwxL7VClrzVhcAjxpi3XQcaY+7poPz8Jvb20CrnGvv1AnuBCcaYKhEJBdaJyOf2ub/DHWA/V6pDaaTRy4nIpyKywr5jdpU97HIR2SwiS0XkVRH5tz08TkQ+FpFl9ueIjs39ryMid9rrNR/obw+rv5slIrEistP+Pk1EPheRH4FZIhIqIrPsO4xrReQ0e7b/BHrbdx0fc70DJyKBIvKmnX6ViExxmff/ROQbEdkiIv9q56LAzsfFIrJGRH4WkbdE5BQRWWLn9QcRSbDT3SciM0RknojsEpEzReRf9np9IyJ+drqdLsOXikgfe3hz853msm31FpHF9rT/EJFSe/hR9t/oIxHZKCLviEirvyT3t7L/3vvztcHOZ7CInGAPXwmc6ZL+MBFZZJfFQhHZvx3OFZERLunmi8hwETnS3rZW29OEtf9atqyFMtgpIo/aZXCOiBxnr/tKEfnQ3qdOEJEPXeZVH62wp4+1v98kIuvszw0uy13nMu0tInKf/f06EfnF3r7fa4N1vsjexleLyMsi4iMipfYxYL29nR9mb7vbReRUe7ppIvKZPXyLiNzrYd4tlcmLIrLcXsb9Lmncytpl+G86jtnT3irWcX6N67JaKJPGx5MeIvKjPWyWiKTa6aaLyLP29r9d7KiPiCTZ+8Fq++88ycMyZovIMy5pDrOH32cvcwHwVqMyC5WG4/AaETnLHt5ke/SwvPoWKSIy2l63n4FrXdLcKCJv2N+H2vkK7sAy6mNvfz/b69ZbLI/Z06wVkfPstB6PryJyBXAu8KCIvNNo/tNd8tPcce4ZEbnH/n68nedDul6UZvY5l/Fni8h0lzy+JCJLgH+Jy7nGNlWs/WiziJxsT9PS+bp+HzLGVBtjquz5BOByHSwHcQw4xDLoIdYx9lV7Gd+JSJC9jKdFZDlwfaNpmuzH0nDMnm6XwTsiMlVEFoh1XGq8Xy2yh1/pIU/NlVtz57QQEXnD/luuEvsYZK/He/b6fQIENV6W6gKMMfrx4g8Qbf8fBKwDugM7gWjAD5gH/NtO819gov09FdjQ0fn/Fes5GlgLBAPhwFbgFmA2MMZOEwvstL9PAzJcyscXCHdJtxUQoAewzmU59b+Bm4E37O8DgHQg0J73diDC/r0LSGnn8hgMbAZi928HQBQND7e6AnjC/n4fMN/eHoYD5cCJ9rhPgNPt7zuBO+3vFwNf2t+bm+80l23rS+CP9vc/A6X296OAIqwXxzqARfu3wc7wsf/eBjjC/v0GcBewG+hrbyMfuJRFOOBrf58KfGx/vwR42v7eD1huf//CZd6h+6ftTJ9myuAWe3u4zWWfmQuE2L//BtyDtV+luwx/EbjIZXuKpWHfDbHLYD0wkqb73i3Affb3PUCA/T2yldd3oP138bN/v2Bv76bRfvGdyz6z2mWb34v1ePL9x9wxjebfUpnsPx75YB27hrmU1W0e8jqN33YcOw7riYmCtd99CUxuoUw8HU++AC6xf18GfGp/nw58aM93ELDVHn4zDccPHyDMw3JmA6/a3yfTcKy9D1gBBNm/j6Jhn3sUe9+yf0fRzPboYXn3AbfY39fsLwPgMZdlO+x5nYEV3Tyig8toCXCG/T0Q65x3FvC9PU0C1vaVRAvHVzsPZ3uY/3Ss1jSBNH+cC8baT6cAm4DebbTPlbqkORuY7pLHLwEfl/3g3y7jvrHXty/W/hFIy+fr+n3IHp9ibw/lwLUuww94DDjEcugB1AIj7N8fABdh7RcveEjvcT92mc9Qe/gKrOO2AKfRsB3eB/yMdayKtf/e3Ti465zmzmkP03A8i8TaJ0KAm1zmM8zO35hDLTP9dK6PRhq933Vi3TldjHUg/BMwxxiTb4ypwTpx7TcV+LeIrMZq6hEuHu7OdlKTgE+MMeXGmGIOrqnK98aYfPu7AA+LyBrgB6zKdcIBpp8IvA1gjNmIVTnsZ4+bZYwpMsZUAr8Aab9qbQ7d0cCHxphcO3/5WBcO34rIWuBWrIuc/b62t4e1WBce39jD12KdQPZ71+X/Cfb3lua73wQatrX/Nhq31BiTYYxxAqsbLa8z2G2MWWB/fxsYA+wwxmwxxhh72H4RwIdiRcieoqEsPgROFitqexnWhQ3AAuBJEbkOq/LTWZsdNS6Difb39+3/x2Nd/C6wjx+XAGn2+nwDnCJW06+TaPqC4IlY+26ZMaYU+B/W/tySNcA7InIR1sVHazoGqyK7zF6XY4BeQDXu+8Ucl32mh8v03xtj8owxFVjrMtFlHAcok3PtqM4qrG1nkMuk7+PZbzmOHWd/VgErsS4G+zYzf/B8PJlAw778VqP1/NQY4zTG/OKy/GXApWJFi4caY0qaWda79jLmYp2DIu3hn9tl2thU4Pn9P4wxBTSzPTa3cvYyIu1l7l+f/fNzYlUs3sL6my9oMgNLm5eRWC0RuhvrUfoYYyqNMeX2fN81xtQZY7KAOcBYe7LfenwdQDPHOXuZV2JVVP9tjNl2kPNsTnP7XEs+NM03if/ALtstWDdwB9Dy+dp1H8IYs9sYMwzoA1widusZDv4YcCh2GGNW299XuMzX0/7f0n68wxiz1v67r8e6JjEe8vqZMabC3m5/oukrFport+bOaccBt9t/x9lYFcxUrMrs/vmswTqGqy5G+zR6MRE5CuuEOsEYUy4is4GNWHf1PHEA4+2KTldRS0PzksBG48pcvl8IxAGjjTE1YjVjbZz+16hy+V5H59iXngOeNMZ8bm8b97mMqwLrAklEauyTC4AT97wbD99bmu/B6Ixl5co0+h3RQtoHgZ+MMWeISA+skyb2/vc91l3ec7EukDDG/FNEZmK9M2mBiBxvn5g7m8ZlsP/3/n1IsC68/uhh2vewXh6cj3U3urnKQmOu+y64748nYV2EnALcKSJDW7HCLcAMY8wdbgNFbmm0X7juM83tI55+g4cyEZGeWNHUscaYArspnus6lzWdTZPhB3scE6z+bC83M89D5bpPC1iVQBGZjPW3my4iTxpj/uNh2gNtawejpe3xt+gLlGJFYVrLoZTRb11Oax5fhwJ5tE6ZNLfP3ezys6Xzd2MHsw8ecF7GmD32DcBJwEdA43Njc8eAQ9H477W/GaenPHrcj+1zj+t8nC6/Wzqne/rtUXPnNDtPZxljNjXK08HMVnk5jTR6twigwN65B2DdfQ0BjhSRKPsgd5ZL+u+A/9v/w7W9uheYC5xut5sPw7qYBKtZ1/6DWUsPsIkAsu0LrSk03JUuAZrrZzYP6yINEemHdTdtUzNp29uPWP3MYgBEJBprHTPt8Zf8xvme5/L/Ivv7wcx3MQ3b2vm/cdkdJVVE9kdVL8CK4PQQkd72MNcLU9eymNZoPq8BzwLL7GgIItLbvhv8KFaUYUAb5L81NC6D+Y3GLwaOkIZ+riH2PgFW1GMUVmTCU//DeVj7brCIhGA1A5wHZAHxIhIjIgHA/r5JDqzm3j9hNTuMwGrW2lpmAWeLSLy9vGgR+TUtBY61pwkCTseKJjfmqUzCsS4Mi+zIxom/Ie8Hexz7Frhsf0sSEem+f32b4el4spCGfflCrL9Zs+wyzDLGvIq1L4xqJun+/ngTgSJjTFFL88WKdrn2QYyi5e2xCWNMIVBoL3P/+uyfXwTWfjsZiJHmn8zZ5mVk33DJEJHT7fQBYvWvnAecJ1Y/wDg7r0tbWtZB2Egzxzk7nzdjNSM/UUTGHeKymtvnskRkoL3Pn/Er5neOiDjsvPfCOi8f1PlaRJLtfXf/tjTRU7pO4tfux56cJla/xRis5szLGo1vqdyanNPsPP2f2LVEERlpD5+Lde5ARIZgNVFVXYxWGr3bN4CviGzAehDCYqwL2oexTigLsCpV+0/K1wFjxOpQ/QtW3zOvYIxZidV842fgaxoOfI8DfxGRVVht9pvzDta6r8XqS7HRnm8eVgRondgPkHDxAuCwp3kfmGYaOtB3KGPMeuAhYI5YzZOfxIoAfigiK4Dc3zjrKLGavl0P3GgPO5j53gDcZE/bh4ZtzhtsAq6196MorGanVwEzxWpKmO2S9l/AI/b25nbn2RizAigG3nQZfIO9ba0BarC23c6ocRm86DrSGJODVUl+116XRdgVYLsJ2ZdYlaAmj+y3993pWMekJcBrxphVdrOvB+zh32Pvk1jNp9+297tVwLP2RX+rsJsL3gV8Z6/L91j9ww7WUuBjrOZXHxvrSZ+I9YqRbvYympSJMeZnrPXZiNWk0WMzSLFeL/BAM8s+qOOYMeY7exmL7LQf0fzNseaOJ/+H1ZRyDVa3h+sPUC5HAT/b+8Z5wDP2+rwm7o/er7TTvARcfoB5AvwD67i0zs7blJa2R7FeKeHpoSWXAs+L1azONSzyFPC8MWaznZ9/erowb8cy+hNWt5M1WJXSRKz+dWuwzn8/YvV/3XeAZdXz8DfAbnHU5DhnVwZex+oLuscuk9dE5De3zGlhn7sda/9YiNVX+GClY+2HXwN/ttflYM/XA4El9t9wDvC4MWbtb1uz1ifW62ZeA/i1+3Ez1mA1S10MPGiaPiW22XJr5pz2IFY/zzUist7+DdY5I9Q+hzyA1fRWdTH7H26huhARCTXGlIoVafwEq3PyJx2dL9W5idXUbcz+Pju/ctpgoMIYY0TkfKyH4pzW2nlsbWI18/nSGDOkFebVDau56gC7n4lXaM0y6OpEZBrWPvLXjs6LNxKrC8Ut+yvaSqm2I1bf2VJjzOO/cXqvPKeptqORxq7pPvtu6jpgB/Bph+ZG/R6MBlbbd5GvwWra9Lsh1gvEl2A9GVFPrkoppbyWntOUJxppVEoppZRSSinVLI00KqWUUkoppZRqllYalVJKKaWUUko1SyuNSimllFJKKaWapZVGpZRSSimllFLN0kqjUkoppZRSSqlmaaVRKaWUUkoppVSz/h+lu77Qr+PDUwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Plot a heatmap of the correlation matrix of numerical columns\n", + "\n", + "plt.figure(figsize=(16, 8))\n", + "sns.heatmap(df1[list(numerical_cols)].corr(), annot=True, cmap='Blues', vmin=-1, vmax=1)\n", + "plt.title('Correlation Heatmap')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "96fd6dc3", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
job=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "housemaid", + "services", + "admin.", + "services", + "admin.", + "technician", + "services", + "services", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "retired", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "management", + "technician", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "services", + "management", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "admin.", + "services", + "management", + "blue-collar", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "retired", + "blue-collar", + "blue-collar", + "management", + "management", + "services", + "unemployed", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "management", + "entrepreneur", + "services", + "management", + "technician", + "services", + "management", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "technician", + "blue-collar", + "management", + "technician", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "unemployed", + "services", + "student", + "housemaid", + "admin.", + "services", + "admin.", + "technician", + "retired", + "technician", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "retired", + "technician", + "management", + "services", + "technician", + "technician", + "blue-collar", + "services", + "technician", + "blue-collar", + "services", + "technician", + "services", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "management", + "management", + "admin.", + "services", + "technician", + "retired", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "management", + "admin.", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "admin.", + "services", + "admin.", + "housemaid", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "services", + "management", + "admin.", + "technician", + "housemaid", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "management", + "self-employed", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "blue-collar", + "technician", + "services", + "entrepreneur", + "blue-collar", + "technician", + "management", + "services", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "services", + "entrepreneur", + "management", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "self-employed", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "self-employed", + "services", + "entrepreneur", + "services", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "entrepreneur", + "blue-collar", + "management", + "technician", + "self-employed", + "self-employed", + "services", + "technician", + "housemaid", + "blue-collar", + "admin.", + "housemaid", + "management", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "unemployed", + "housemaid", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "services", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "retired", + "services", + "retired", + "technician", + "technician", + "services", + "technician", + "admin.", + "admin.", + "entrepreneur", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "management", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "self-employed", + "entrepreneur", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "retired", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "technician", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "services", + "technician", + "technician", + "admin.", + "services", + "management", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "technician", + "management", + "housemaid", + "blue-collar", + "blue-collar", + "housemaid", + "housemaid", + "blue-collar", + "services", + "services", + "self-employed", + "services", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "management", + "entrepreneur", + "self-employed", + "services", + "blue-collar", + "admin.", + "management", + "admin.", + "management", + "retired", + "housemaid", + "entrepreneur", + "self-employed", + "self-employed", + "self-employed", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "technician", + "technician", + "retired", + "services", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "technician", + "admin.", + "entrepreneur", + "technician", + "admin.", + "retired", + "admin.", + "unemployed", + "admin.", + "housemaid", + "technician", + "blue-collar", + "services", + "admin.", + "technician", + "services", + "blue-collar", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "unemployed", + "services", + "technician", + "technician", + "admin.", + "technician", + "housemaid", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "management", + "entrepreneur", + "blue-collar", + "services", + "entrepreneur", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "management", + "management", + "technician", + "technician", + "services", + "technician", + "entrepreneur", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "entrepreneur", + "services", + "admin.", + "technician", + "management", + "services", + "admin.", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "technician", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "services", + "retired", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "management", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "unemployed", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "services", + "entrepreneur", + "services", + "housemaid", + "technician", + "entrepreneur", + "technician", + "blue-collar", + "unemployed", + "services", + "management", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "management", + "services", + "admin.", + "technician", + "services", + "admin.", + "management", + "technician", + "housemaid", + "blue-collar", + "retired", + "admin.", + "management", + "blue-collar", + "housemaid", + "blue-collar", + "services", + "admin.", + "admin.", + "management", + "management", + "self-employed", + "housemaid", + "blue-collar", + "retired", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "retired", + "blue-collar", + "admin.", + "technician", + "technician", + "services", + "technician", + "blue-collar", + "entrepreneur", + "management", + "blue-collar", + "management", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "management", + "self-employed", + "services", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "management", + "services", + "management", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "admin.", + "retired", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "technician", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "management", + "unemployed", + "entrepreneur", + "blue-collar", + "entrepreneur", + "unemployed", + "blue-collar", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "blue-collar", + "technician", + "management", + "technician", + "technician", + "student", + "student", + "admin.", + "services", + "technician", + "admin.", + "housemaid", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "services", + "student", + "entrepreneur", + "technician", + "services", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "services", + "services", + "entrepreneur", + "unemployed", + "unemployed", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "unemployed", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "technician", + "services", + "admin.", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "technician", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "entrepreneur", + "blue-collar", + "unemployed", + "management", + "entrepreneur", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "self-employed", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "management", + "self-employed", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "housemaid", + "housemaid", + "unemployed", + "admin.", + "self-employed", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "services", + "blue-collar", + "technician", + "management", + "services", + "entrepreneur", + "self-employed", + "technician", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "student", + "management", + "admin.", + "self-employed", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "services", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "self-employed", + "blue-collar", + "entrepreneur", + "technician", + "management", + "services", + "admin.", + "blue-collar", + "services", + "services", + "technician", + "retired", + "blue-collar", + "services", + "technician", + "technician", + "services", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "services", + "services", + "services", + "technician", + "technician", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "unemployed", + "services", + "blue-collar", + "services", + "services", + "blue-collar", + "admin.", + "management", + "admin.", + "services", + "entrepreneur", + "management", + "blue-collar", + "admin.", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "management", + "services", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "retired", + "admin.", + "management", + "housemaid", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "management", + "admin.", + "services", + "technician", + "admin.", + "unemployed", + "unemployed", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "admin.", + "self-employed", + "blue-collar", + "management", + "management", + "management", + "services", + "services", + "technician", + "housemaid", + "admin.", + "blue-collar", + "student", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "services", + "entrepreneur", + "services", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "entrepreneur", + "technician", + "management", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "management", + "management", + "blue-collar", + "blue-collar", + "management", + "management", + "retired", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "services", + "services", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "management", + "entrepreneur", + "entrepreneur", + "blue-collar", + "admin.", + "housemaid", + "entrepreneur", + "admin.", + "management", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "retired", + "housemaid", + "technician", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "services", + "technician", + "services", + "admin.", + "admin.", + "management", + "blue-collar", + "management", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "management", + "admin.", + "unemployed", + "management", + "technician", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "entrepreneur", + "technician", + "housemaid", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "management", + "blue-collar", + "management", + "management", + "services", + "admin.", + "self-employed", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "management", + "housemaid", + "blue-collar", + "services", + "services", + "admin.", + "services", + "housemaid", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "management", + "technician", + "blue-collar", + "blue-collar", + "services", + "housemaid", + "student", + "services", + "entrepreneur", + "housemaid", + "admin.", + "unemployed", + "services", + "technician", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "management", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "services", + "blue-collar", + "self-employed", + "entrepreneur", + "technician", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "admin.", + "blue-collar", + "management", + "management", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "housemaid", + "admin.", + "management", + "admin.", + "retired", + "blue-collar", + "entrepreneur", + "entrepreneur", + "blue-collar", + "blue-collar", + "management", + "management", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "housemaid", + "entrepreneur", + "services", + "management", + "management", + "services", + "blue-collar", + "technician", + "unemployed", + "technician", + "entrepreneur", + "technician", + "admin.", + "housemaid", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "management", + "blue-collar", + "admin.", + "retired", + "retired", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "retired", + "technician", + "admin.", + "admin.", + "self-employed", + "self-employed", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "retired", + "services", + "management", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "retired", + "technician", + "blue-collar", + "management", + "blue-collar", + "management", + "admin.", + "blue-collar", + "services", + "technician", + "management", + "services", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "services", + "technician", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "services", + "housemaid", + "services", + "management", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "retired", + "management", + "admin.", + "admin.", + "housemaid", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "services", + "technician", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "admin.", + "technician", + "services", + "technician", + "admin.", + "technician", + "admin.", + "services", + "technician", + "self-employed", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "entrepreneur", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "blue-collar", + "entrepreneur", + "unemployed", + "retired", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "self-employed", + "self-employed", + "admin.", + "management", + "technician", + "services", + "self-employed", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "management", + "admin.", + "retired", + "admin.", + "management", + "self-employed", + "blue-collar", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "management", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "housemaid", + "services", + "management", + "admin.", + "entrepreneur", + "technician", + "management", + "services", + "blue-collar", + "technician", + "housemaid", + "management", + "admin.", + "technician", + "management", + "services", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "management", + "retired", + "management", + "entrepreneur", + "blue-collar", + "housemaid", + "technician", + "admin.", + "management", + "services", + "self-employed", + "services", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "technician", + "blue-collar", + "blue-collar", + "management", + "technician", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "unemployed", + "blue-collar", + "management", + "admin.", + "blue-collar", + "self-employed", + "services", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "unemployed", + "retired", + "admin.", + "management", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "admin.", + "technician", + "services", + "services", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "housemaid", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "admin.", + "services", + "management", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "blue-collar", + "services", + "admin.", + "blue-collar", + "management", + "management", + "management", + "management", + "student", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "unemployed", + "student", + "services", + "services", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "admin.", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "blue-collar", + "services", + "admin.", + "unemployed", + "admin.", + "technician", + "self-employed", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "student", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "student", + "blue-collar", + "self-employed", + "management", + "admin.", + "technician", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "services", + "admin.", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "self-employed", + "technician", + "management", + "blue-collar", + "admin.", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "entrepreneur", + "unemployed", + "self-employed", + "admin.", + "blue-collar", + "technician", + "technician", + "management", + "technician", + "services", + "blue-collar", + "admin.", + "admin.", + "technician", + "housemaid", + "housemaid", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "housemaid", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "retired", + "management", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "entrepreneur", + "services", + "admin.", + "admin.", + "housemaid", + "admin.", + "blue-collar", + "self-employed", + "services", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "blue-collar", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "management", + "technician", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "retired", + "admin.", + "blue-collar", + "technician", + "management", + "housemaid", + "admin.", + "housemaid", + "blue-collar", + "services", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "self-employed", + "housemaid", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "housemaid", + "unemployed", + "management", + "admin.", + "student", + "entrepreneur", + "entrepreneur", + "blue-collar", + "retired", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "management", + "blue-collar", + "technician", + "services", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "admin.", + "management", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "student", + "retired", + "services", + "technician", + "technician", + "services", + "blue-collar", + "technician", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "student", + "management", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "management", + "unemployed", + "self-employed", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "technician", + "blue-collar", + "admin.", + "retired", + "admin.", + "unemployed", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "retired", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "management", + "services", + "blue-collar", + "admin.", + "blue-collar", + "unemployed", + "blue-collar", + "self-employed", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "services", + "self-employed", + "management", + "services", + "technician", + "services", + "technician", + "admin.", + "services", + "management", + "admin.", + "blue-collar", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "self-employed", + "technician", + "blue-collar", + "admin.", + "housemaid", + "management", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "housemaid", + "technician", + "housemaid", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "management", + "services", + "admin.", + "management", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "management", + "management", + "services", + "admin.", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "admin.", + "services", + "admin.", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "blue-collar", + "management", + "management", + "admin.", + "services", + "student", + "blue-collar", + "services", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "technician", + "technician", + "services", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "housemaid", + "housemaid", + "self-employed", + "housemaid", + "management", + "blue-collar", + "technician", + "admin.", + "admin.", + "unemployed", + "housemaid", + "technician", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "services", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "blue-collar", + "management", + "blue-collar", + "admin.", + "services", + "self-employed", + "retired", + "blue-collar", + "technician", + "technician", + "self-employed", + "admin.", + "blue-collar", + "services", + "services", + "services", + "technician", + "technician", + "management", + "admin.", + "self-employed", + "admin.", + "management", + "management", + "admin.", + "entrepreneur", + "admin.", + "entrepreneur", + "services", + "admin.", + "blue-collar", + "management", + "blue-collar", + "management", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "student", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "self-employed", + "services", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "services", + "self-employed", + "admin.", + "admin.", + "technician", + "self-employed", + "services", + "management", + "admin.", + "blue-collar", + "entrepreneur", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "student", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "services", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "services", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "management", + "blue-collar", + "student", + "admin.", + "housemaid", + "student", + "technician", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "housemaid", + "admin.", + "self-employed", + "housemaid", + "management", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "services", + "retired", + "admin.", + "self-employed", + "housemaid", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "housemaid", + "entrepreneur", + "housemaid", + "blue-collar", + "blue-collar", + "services", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "student", + "services", + "unemployed", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "services", + "services", + "admin.", + "admin.", + "entrepreneur", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "blue-collar", + "housemaid", + "services", + "blue-collar", + "technician", + "technician", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "services", + "self-employed", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "technician", + "technician", + "services", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "management", + "services", + "technician", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "services", + "unemployed", + "technician", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "self-employed", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "services", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "services", + "blue-collar", + "admin.", + "unemployed", + "retired", + "self-employed", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "blue-collar", + "blue-collar", + "management", + "admin.", + "services", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "management", + "technician", + "technician", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "housemaid", + "technician", + "admin.", + "entrepreneur", + "management", + "technician", + "unemployed", + "entrepreneur", + "blue-collar", + "retired", + "retired", + "services", + "blue-collar", + "unemployed", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "management", + "blue-collar", + "technician", + "management", + "services", + "services", + "retired", + "admin.", + "retired", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "management", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "management", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "management", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "blue-collar", + "technician", + "services", + "admin.", + "management", + "blue-collar", + "admin.", + "technician", + "services", + "admin.", + "entrepreneur", + "housemaid", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "technician", + "admin.", + "admin.", + "technician", + "student", + "services", + "blue-collar", + "technician", + "self-employed", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "management", + "blue-collar", + "unemployed", + "services", + "technician", + "services", + "admin.", + "technician", + "blue-collar", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "housemaid", + "housemaid", + "admin.", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "services", + "technician", + "admin.", + "technician", + "services", + "retired", + "services", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "technician", + "admin.", + "blue-collar", + "unemployed", + "housemaid", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "housemaid", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "technician", + "self-employed", + "management", + "admin.", + "services", + "admin.", + "services", + "technician", + "services", + "technician", + "services", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "unemployed", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "housemaid", + "services", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "services", + "management", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "services", + "self-employed", + "admin.", + "management", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "retired", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "management", + "management", + "blue-collar", + "management", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "retired", + "blue-collar", + "management", + "services", + "admin.", + "blue-collar", + "retired", + "housemaid", + "blue-collar", + "management", + "blue-collar", + "management", + "entrepreneur", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "services", + "services", + "housemaid", + "technician", + "admin.", + "blue-collar", + "self-employed", + "management", + "technician", + "admin.", + "services", + "technician", + "admin.", + "housemaid", + "technician", + "admin.", + "management", + "blue-collar", + "blue-collar", + "retired", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "blue-collar", + "services", + "technician", + "unemployed", + "technician", + "technician", + "self-employed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "management", + "technician", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "technician", + "self-employed", + "services", + "blue-collar", + "services", + "technician", + "admin.", + "services", + "services", + "blue-collar", + "management", + "admin.", + "unemployed", + "self-employed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "self-employed", + "services", + "services", + "management", + "blue-collar", + "unemployed", + "blue-collar", + "self-employed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "services", + "management", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "housemaid", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "services", + "management", + "blue-collar", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "retired", + "blue-collar", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "management", + "technician", + "services", + "technician", + "blue-collar", + "unemployed", + "blue-collar", + "technician", + "admin.", + "management", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "housemaid", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "technician", + "management", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "retired", + "admin.", + "services", + "unemployed", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "retired", + "management", + "management", + "unemployed", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "management", + "entrepreneur", + "services", + "admin.", + "services", + "services", + "technician", + "housemaid", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "retired", + "management", + "technician", + "technician", + "management", + "self-employed", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "blue-collar", + "self-employed", + "services", + "admin.", + "blue-collar", + "services", + "blue-collar", + "housemaid", + "retired", + "admin.", + "admin.", + "admin.", + "services", + "management", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "student", + "admin.", + "self-employed", + "management", + "services", + "admin.", + "entrepreneur", + "services", + "self-employed", + "technician", + "management", + "admin.", + "management", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "unemployed", + "retired", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "services", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "self-employed", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "technician", + "self-employed", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "self-employed", + "self-employed", + "technician", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "services", + "entrepreneur", + "admin.", + "services", + "retired", + "blue-collar", + "blue-collar", + "technician", + "services", + "entrepreneur", + "admin.", + "services", + "admin.", + "technician", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "unemployed", + "blue-collar", + "services", + "admin.", + "management", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "housemaid", + "technician", + "retired", + "housemaid", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "management", + "blue-collar", + "technician", + "services", + "admin.", + "services", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "services", + "admin.", + "services", + "admin.", + "services", + "services", + "technician", + "services", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "services", + "student", + "admin.", + "admin.", + "admin.", + "retired", + "self-employed", + "services", + "retired", + "management", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "technician", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "housemaid", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "admin.", + "housemaid", + "technician", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "technician", + "blue-collar", + "admin.", + "services", + "self-employed", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "management", + "unemployed", + "technician", + "admin.", + "admin.", + "services", + "services", + "services", + "management", + "technician", + "services", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "management", + "management", + "management", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "services", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "blue-collar", + "management", + "student", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "retired", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "management", + "entrepreneur", + "blue-collar", + "technician", + "technician", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "housemaid", + "technician", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "student", + "blue-collar", + "entrepreneur", + "housemaid", + "entrepreneur", + "technician", + "management", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "services", + "blue-collar", + "unemployed", + "technician", + "blue-collar", + "technician", + "services", + "services", + "admin.", + "technician", + "housemaid", + "admin.", + "blue-collar", + "management", + "blue-collar", + "technician", + "unemployed", + "services", + "blue-collar", + "entrepreneur", + "services", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "housemaid", + "technician", + "services", + "management", + "unemployed", + "services", + "technician", + "entrepreneur", + "services", + "housemaid", + "blue-collar", + "technician", + "blue-collar", + "technician", + "entrepreneur", + "services", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "services", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "services", + "technician", + "services", + "services", + "technician", + "management", + "services", + "admin.", + "retired", + "entrepreneur", + "technician", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "services", + "retired", + "admin.", + "services", + "unemployed", + "technician", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "self-employed", + "blue-collar", + "blue-collar", + "management", + "management", + "technician", + "technician", + "technician", + "management", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "services", + "blue-collar", + "admin.", + "management", + "housemaid", + "management", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "management", + "technician", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "services", + "blue-collar", + "self-employed", + "blue-collar", + "services", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "management", + "admin.", + "services", + "services", + "services", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "management", + "management", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "entrepreneur", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "management", + "blue-collar", + "admin.", + "admin.", + "management", + "self-employed", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "unemployed", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "unemployed", + "technician", + "admin.", + "admin.", + "technician", + "services", + "housemaid", + "admin.", + "services", + "management", + "entrepreneur", + "admin.", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "admin.", + "retired", + "technician", + "services", + "services", + "services", + "services", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "management", + "housemaid", + "blue-collar", + "admin.", + "management", + "blue-collar", + "admin.", + "services", + "services", + "retired", + "blue-collar", + "retired", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "housemaid", + "management", + "management", + "self-employed", + "admin.", + "blue-collar", + "technician", + "technician", + "self-employed", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "unemployed", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "services", + "services", + "admin.", + "management", + "self-employed", + "services", + "services", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "services", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "retired", + "management", + "entrepreneur", + "technician", + "management", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "management", + "blue-collar", + "management", + "entrepreneur", + "retired", + "retired", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "retired", + "services", + "retired", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "retired", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "services", + "management", + "management", + "retired", + "admin.", + "blue-collar", + "retired", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "services", + "entrepreneur", + "housemaid", + "blue-collar", + "management", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "management", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "services", + "blue-collar", + "management", + "blue-collar", + "services", + "management", + "services", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "management", + "management", + "blue-collar", + "services", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "blue-collar", + "unemployed", + "admin.", + "services", + "services", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "retired", + "blue-collar", + "management", + "blue-collar", + "management", + "blue-collar", + "admin.", + "retired", + "admin.", + "admin.", + "management", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "admin.", + "technician", + "services", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "management", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "technician", + "unemployed", + "services", + "entrepreneur", + "admin.", + "student", + "services", + "entrepreneur", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "management", + "services", + "self-employed", + "services", + "technician", + "technician", + "self-employed", + "services", + "admin.", + "admin.", + "services", + "services", + "technician", + "self-employed", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "admin.", + "admin.", + "technician", + "unemployed", + "management", + "self-employed", + "admin.", + "technician", + "unemployed", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "services", + "admin.", + "blue-collar", + "services", + "blue-collar", + "housemaid", + "services", + "admin.", + "housemaid", + "admin.", + "self-employed", + "retired", + "admin.", + "admin.", + "services", + "self-employed", + "technician", + "entrepreneur", + "technician", + "management", + "blue-collar", + "management", + "blue-collar", + "retired", + "services", + "self-employed", + "housemaid", + "services", + "blue-collar", + "retired", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "management", + "self-employed", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "self-employed", + "unemployed", + "technician", + "services", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "self-employed", + "services", + "self-employed", + "technician", + "admin.", + "services", + "technician", + "services", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "management", + "retired", + "blue-collar", + "blue-collar", + "services", + "services", + "entrepreneur", + "services", + "technician", + "services", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "management", + "entrepreneur", + "blue-collar", + "services", + "services", + "management", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "technician", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "self-employed", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "services", + "admin.", + "self-employed", + "services", + "technician", + "self-employed", + "technician", + "technician", + "services", + "services", + "blue-collar", + "technician", + "admin.", + "student", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "technician", + "technician", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "admin.", + "housemaid", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "services", + "services", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "technician", + "self-employed", + "services", + "technician", + "unemployed", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "housemaid", + "services", + "retired", + "services", + "admin.", + "blue-collar", + "management", + "admin.", + "services", + "admin.", + "technician", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "self-employed", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "technician", + "management", + "blue-collar", + "services", + "admin.", + "technician", + "blue-collar", + "management", + "housemaid", + "blue-collar", + "blue-collar", + "technician", + "technician", + "services", + "services", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "self-employed", + "admin.", + "technician", + "management", + "housemaid", + "admin.", + "management", + "admin.", + "services", + "services", + "housemaid", + "technician", + "self-employed", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "entrepreneur", + "management", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "admin.", + "self-employed", + "technician", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "admin.", + "services", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "housemaid", + "technician", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "admin.", + "services", + "blue-collar", + "admin.", + "unemployed", + "services", + "housemaid", + "blue-collar", + "housemaid", + "services", + "self-employed", + "unemployed", + "admin.", + "technician", + "admin.", + "unemployed", + "technician", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "unemployed", + "technician", + "blue-collar", + "services", + "self-employed", + "services", + "technician", + "retired", + "admin.", + "management", + "blue-collar", + "entrepreneur", + "self-employed", + "services", + "technician", + "technician", + "management", + "admin.", + "technician", + "admin.", + "services", + "entrepreneur", + "services", + "self-employed", + "admin.", + "retired", + "entrepreneur", + "technician", + "services", + "management", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "services", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "entrepreneur", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "services", + "admin.", + "technician", + "services", + "housemaid", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "housemaid", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "management", + "services", + "admin.", + "services", + "self-employed", + "technician", + "management", + "admin.", + "blue-collar", + "technician", + "management", + "admin.", + "self-employed", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "services", + "admin.", + "services", + "admin.", + "retired", + "admin.", + "technician", + "management", + "admin.", + "technician", + "admin.", + "retired", + "admin.", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "management", + "admin.", + "management", + "admin.", + "housemaid", + "services", + "technician", + "blue-collar", + "blue-collar", + "housemaid", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "retired", + "entrepreneur", + "blue-collar", + "entrepreneur", + "unemployed", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "housemaid", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "unemployed", + "entrepreneur", + "services", + "services", + "blue-collar", + "housemaid", + "unemployed", + "technician", + "services", + "blue-collar", + "management", + "blue-collar", + "student", + "blue-collar", + "technician", + "admin.", + "services", + "self-employed", + "services", + "entrepreneur", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "entrepreneur", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "retired", + "management", + "management", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "housemaid", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "retired", + "admin.", + "admin.", + "technician", + "unemployed", + "admin.", + "unemployed", + "self-employed", + "blue-collar", + "entrepreneur", + "technician", + "retired", + "management", + "technician", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "technician", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "student", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "technician", + "management", + "services", + "technician", + "unemployed", + "self-employed", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "management", + "blue-collar", + "admin.", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "services", + "unemployed", + "admin.", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "services", + "self-employed", + "technician", + "services", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "technician", + "housemaid", + "services", + "self-employed", + "management", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "management", + "entrepreneur", + "housemaid", + "retired", + "technician", + "self-employed", + "services", + "self-employed", + "blue-collar", + "services", + "admin.", + "management", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "student", + "services", + "retired", + "entrepreneur", + "management", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "management", + "services", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "admin.", + "retired", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "housemaid", + "student", + "blue-collar", + "admin.", + "admin.", + "student", + "housemaid", + "admin.", + "admin.", + "admin.", + "blue-collar", + "student", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "housemaid", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "management", + "entrepreneur", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "retired", + "technician", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "technician", + "blue-collar", + "services", + "services", + "technician", + "admin.", + "unemployed", + "services", + "admin.", + "technician", + "self-employed", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "management", + "technician", + "management", + "admin.", + "self-employed", + "self-employed", + "blue-collar", + "admin.", + "services", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "management", + "admin.", + "technician", + "self-employed", + "management", + "retired", + "admin.", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "self-employed", + "housemaid", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "management", + "services", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "management", + "blue-collar", + "technician", + "services", + "admin.", + "entrepreneur", + "admin.", + "retired", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "housemaid", + "services", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "services", + "services", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "management", + "services", + "blue-collar", + "services", + "retired", + "technician", + "technician", + "management", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "housemaid", + "blue-collar", + "technician", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "technician", + "technician", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "management", + "technician", + "entrepreneur", + "unemployed", + "entrepreneur", + "admin.", + "admin.", + "services", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "services", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "management", + "services", + "blue-collar", + "housemaid", + "housemaid", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "management", + "entrepreneur", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "management", + "services", + "admin.", + "self-employed", + "management", + "self-employed", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "services", + "technician", + "technician", + "retired", + "admin.", + "services", + "self-employed", + "unemployed", + "technician", + "services", + "services", + "services", + "admin.", + "admin.", + "admin.", + "unemployed", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "entrepreneur", + "management", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "technician", + "admin.", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "unemployed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "management", + "blue-collar", + "housemaid", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "retired", + "admin.", + "technician", + "management", + "admin.", + "self-employed", + "admin.", + "admin.", + "services", + "retired", + "services", + "blue-collar", + "blue-collar", + "technician", + "technician", + "housemaid", + "technician", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "unemployed", + "housemaid", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "services", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "self-employed", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "unemployed", + "services", + "services", + "technician", + "technician", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "technician", + "management", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "self-employed", + "technician", + "blue-collar", + "technician", + "technician", + "housemaid", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "unemployed", + "blue-collar", + "management", + "admin.", + "management", + "services", + "services", + "blue-collar", + "self-employed", + "retired", + "services", + "admin.", + "unemployed", + "admin.", + "entrepreneur", + "blue-collar", + "housemaid", + "self-employed", + "blue-collar", + "housemaid", + "services", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "management", + "technician", + "entrepreneur", + "retired", + "self-employed", + "admin.", + "technician", + "services", + "admin.", + "retired", + "technician", + "technician", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "admin.", + "admin.", + "technician", + "student", + "technician", + "technician", + "housemaid", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "technician", + "technician", + "entrepreneur", + "unemployed", + "blue-collar", + "technician", + "management", + "unemployed", + "services", + "technician", + "services", + "unemployed", + "management", + "technician", + "services", + "admin.", + "blue-collar", + "housemaid", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "management", + "technician", + "services", + "blue-collar", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "services", + "admin.", + "housemaid", + "blue-collar", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "management", + "admin.", + "blue-collar", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "technician", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "housemaid", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "services", + "management", + "technician", + "management", + "services", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "unemployed", + "admin.", + "blue-collar", + "management", + "admin.", + "management", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "housemaid", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "management", + "blue-collar", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "entrepreneur", + "admin.", + "management", + "admin.", + "entrepreneur", + "technician", + "technician", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "technician", + "self-employed", + "entrepreneur", + "blue-collar", + "unemployed", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "technician", + "retired", + "services", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "student", + "retired", + "admin.", + "management", + "admin.", + "services", + "student", + "entrepreneur", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "student", + "retired", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "management", + "self-employed", + "blue-collar", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "technician", + "services", + "blue-collar", + "technician", + "services", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "housemaid", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "housemaid", + "services", + "blue-collar", + "admin.", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "admin.", + "services", + "unemployed", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "services", + "services", + "management", + "management", + "blue-collar", + "entrepreneur", + "technician", + "technician", + "entrepreneur", + "blue-collar", + "management", + "technician", + "technician", + "services", + "services", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "services", + "technician", + "management", + "blue-collar", + "blue-collar", + "services", + "entrepreneur", + "technician", + "technician", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "unemployed", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "retired", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "management", + "services", + "entrepreneur", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "entrepreneur", + "unemployed", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "student", + "blue-collar", + "technician", + "management", + "admin.", + "self-employed", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "management", + "blue-collar", + "technician", + "technician", + "housemaid", + "blue-collar", + "unemployed", + "technician", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "services", + "management", + "services", + "technician", + "admin.", + "self-employed", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "technician", + "management", + "services", + "admin.", + "technician", + "services", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "management", + "technician", + "student", + "entrepreneur", + "admin.", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "retired", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "services", + "student", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "technician", + "self-employed", + "services", + "unemployed", + "self-employed", + "admin.", + "blue-collar", + "management", + "housemaid", + "self-employed", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "unemployed", + "technician", + "admin.", + "management", + "technician", + "retired", + "blue-collar", + "admin.", + "management", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "unemployed", + "technician", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "technician", + "technician", + "admin.", + "self-employed", + "services", + "admin.", + "admin.", + "technician", + "retired", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "services", + "blue-collar", + "technician", + "technician", + "technician", + "services", + "self-employed", + "blue-collar", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "services", + "services", + "management", + "admin.", + "technician", + "technician", + "services", + "technician", + "admin.", + "technician", + "services", + "admin.", + "retired", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "entrepreneur", + "services", + "admin.", + "self-employed", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "services", + "unemployed", + "blue-collar", + "management", + "unemployed", + "admin.", + "services", + "management", + "services", + "blue-collar", + "unemployed", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "services", + "services", + "technician", + "management", + "technician", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "unemployed", + "student", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "management", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "services", + "services", + "management", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "housemaid", + "blue-collar", + "housemaid", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "admin.", + "management", + "management", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "management", + "admin.", + "services", + "services", + "admin.", + "services", + "entrepreneur", + "admin.", + "unemployed", + "housemaid", + "blue-collar", + "technician", + "services", + "technician", + "housemaid", + "services", + "student", + "entrepreneur", + "blue-collar", + "technician", + "management", + "management", + "unemployed", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "self-employed", + "technician", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "retired", + "services", + "blue-collar", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "management", + "technician", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "management", + "blue-collar", + "admin.", + "services", + "management", + "blue-collar", + "technician", + "retired", + "admin.", + "blue-collar", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "management", + "admin.", + "retired", + "technician", + "retired", + "admin.", + "student", + "admin.", + "management", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "student", + "technician", + "retired", + "management", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "self-employed", + "blue-collar", + "self-employed", + "services", + "admin.", + "services", + "retired", + "services", + "admin.", + "technician", + "unemployed", + "technician", + "management", + "admin.", + "services", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "services", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "management", + "technician", + "services", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "management", + "admin.", + "technician", + "retired", + "unemployed", + "technician", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "services", + "entrepreneur", + "management", + "admin.", + "entrepreneur", + "admin.", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "management", + "management", + "blue-collar", + "technician", + "management", + "admin.", + "services", + "management", + "technician", + "technician", + "blue-collar", + "blue-collar", + "management", + "retired", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "services", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "technician", + "technician", + "management", + "admin.", + "admin.", + "services", + "services", + "technician", + "housemaid", + "entrepreneur", + "admin.", + "admin.", + "services", + "unemployed", + "management", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "entrepreneur", + "services", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "management", + "blue-collar", + "admin.", + "services", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "self-employed", + "blue-collar", + "entrepreneur", + "blue-collar", + "entrepreneur", + "services", + "management", + "entrepreneur", + "admin.", + "technician", + "admin.", + "blue-collar", + "housemaid", + "management", + "management", + "technician", + "technician", + "services", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "services", + "entrepreneur", + "admin.", + "entrepreneur", + "entrepreneur", + "retired", + "services", + "services", + "blue-collar", + "services", + "blue-collar", + "management", + "services", + "admin.", + "retired", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "unemployed", + "blue-collar", + "student", + "housemaid", + "admin.", + "blue-collar", + "management", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "management", + "unemployed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "technician", + "admin.", + "unemployed", + "management", + "blue-collar", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "self-employed", + "retired", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "services", + "housemaid", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "services", + "management", + "admin.", + "services", + "services", + "services", + "blue-collar", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "services", + "housemaid", + "technician", + "blue-collar", + "retired", + "retired", + "services", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "management", + "entrepreneur", + "technician", + "admin.", + "self-employed", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "self-employed", + "services", + "blue-collar", + "entrepreneur", + "technician", + "retired", + "technician", + "blue-collar", + "admin.", + "technician", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "retired", + "admin.", + "self-employed", + "management", + "retired", + "admin.", + "admin.", + "entrepreneur", + "technician", + "services", + "services", + "unemployed", + "services", + "services", + "admin.", + "retired", + "entrepreneur", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "services", + "student", + "services", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "retired", + "self-employed", + "admin.", + "services", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "retired", + "admin.", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "technician", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "services", + "technician", + "technician", + "management", + "blue-collar", + "services", + "blue-collar", + "technician", + "services", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "admin.", + "management", + "blue-collar", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "services", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "admin.", + "entrepreneur", + "admin.", + "housemaid", + "admin.", + "services", + "management", + "blue-collar", + "admin.", + "services", + "retired", + "services", + "unemployed", + "technician", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "retired", + "services", + "admin.", + "self-employed", + "blue-collar", + "services", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "services", + "services", + "services", + "management", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "housemaid", + "housemaid", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "management", + "admin.", + "unemployed", + "self-employed", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "technician", + "blue-collar", + "technician", + "technician", + "housemaid", + "blue-collar", + "entrepreneur", + "blue-collar", + "management", + "retired", + "services", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "services", + "technician", + "management", + "housemaid", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "retired", + "self-employed", + "retired", + "services", + "admin.", + "entrepreneur", + "admin.", + "technician", + "services", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "unemployed", + "services", + "services", + "management", + "admin.", + "services", + "self-employed", + "services", + "services", + "management", + "entrepreneur", + "housemaid", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "technician", + "retired", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "housemaid", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "management", + "blue-collar", + "housemaid", + "admin.", + "services", + "technician", + "blue-collar", + "housemaid", + "services", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "services", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "technician", + "technician", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "management", + "housemaid", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "admin.", + "services", + "technician", + "admin.", + "housemaid", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "management", + "technician", + "services", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "admin.", + "admin.", + "technician", + "self-employed", + "unemployed", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "services", + "self-employed", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "housemaid", + "blue-collar", + "technician", + "technician", + "blue-collar", + "services", + "unemployed", + "admin.", + "technician", + "services", + "blue-collar", + "blue-collar", + "management", + "services", + "admin.", + "unemployed", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "services", + "housemaid", + "admin.", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "services", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "self-employed", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "retired", + "technician", + "admin.", + "entrepreneur", + "management", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "services", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "technician", + "entrepreneur", + "blue-collar", + "management", + "entrepreneur", + "entrepreneur", + "admin.", + "technician", + "management", + "blue-collar", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "retired", + "admin.", + "technician", + "services", + "admin.", + "admin.", + "technician", + "entrepreneur", + "services", + "services", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "entrepreneur", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "management", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "unemployed", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "services", + "admin.", + "technician", + "entrepreneur", + "unemployed", + "technician", + "housemaid", + "housemaid", + "services", + "services", + "services", + "blue-collar", + "services", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "entrepreneur", + "admin.", + "technician", + "housemaid", + "blue-collar", + "blue-collar", + "services", + "services", + "services", + "services", + "services", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "services", + "services", + "services", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "management", + "technician", + "services", + "services", + "services", + "management", + "technician", + "admin.", + "management", + "management", + "management", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "technician", + "services", + "admin.", + "technician", + "technician", + "services", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "services", + "technician", + "technician", + "technician", + "management", + "services", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "admin.", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "management", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "services", + "technician", + "management", + "services", + "services", + "services", + "services", + "admin.", + "self-employed", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "services", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "services", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "management", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "admin.", + "services", + "technician", + "services", + "self-employed", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "services", + "services", + "technician", + "unemployed", + "technician", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "technician", + "retired", + "entrepreneur", + "technician", + "technician", + "technician", + "services", + "services", + "management", + "admin.", + "management", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "housemaid", + "housemaid", + "housemaid", + "housemaid", + "housemaid", + "housemaid", + "admin.", + "housemaid", + "blue-collar", + "housemaid", + "blue-collar", + "management", + "admin.", + "self-employed", + "admin.", + "management", + "management", + "management", + "housemaid", + "management", + "blue-collar", + "management", + "services", + "blue-collar", + "management", + "services", + "admin.", + "services", + "services", + "blue-collar", + "services", + "services", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "management", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "services", + "housemaid", + "management", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "services", + "entrepreneur", + "entrepreneur", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "self-employed", + "services", + "technician", + "self-employed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "housemaid", + "housemaid", + "self-employed", + "services", + "technician", + "housemaid", + "services", + "admin.", + "admin.", + "entrepreneur", + "services", + "admin.", + "technician", + "technician", + "blue-collar", + "unemployed", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "self-employed", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "unemployed", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "retired", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "services", + "admin.", + "technician", + "blue-collar", + "technician", + "management", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "services", + "blue-collar", + "housemaid", + "services", + "retired", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "housemaid", + "technician", + "management", + "blue-collar", + "blue-collar", + "technician", + "retired", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "technician", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "housemaid", + "technician", + "blue-collar", + "student", + "blue-collar", + "admin.", + "student", + "student", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "services", + "technician", + "technician", + "services", + "technician", + "technician", + "management", + "admin.", + "technician", + "student", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "student", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "self-employed", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "entrepreneur", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "technician", + "entrepreneur", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "services", + "management", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "technician", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "management", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "entrepreneur", + "services", + "entrepreneur", + "services", + "self-employed", + "management", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "technician", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "student", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "services", + "student", + "student", + "student", + "services", + "student", + "management", + "student", + "retired", + "blue-collar", + "services", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "services", + "technician", + "housemaid", + "services", + "housemaid", + "management", + "housemaid", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "student", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "retired", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "technician", + "management", + "services", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "technician", + "unemployed", + "technician", + "technician", + "services", + "entrepreneur", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "student", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "services", + "admin.", + "services", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "housemaid", + "blue-collar", + "services", + "unemployed", + "housemaid", + "admin.", + "self-employed", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "services", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "technician", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "self-employed", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "technician", + "entrepreneur", + "technician", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "entrepreneur", + "admin.", + "entrepreneur", + "self-employed", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "management", + "technician", + "admin.", + "technician", + "housemaid", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "services", + "management", + "blue-collar", + "entrepreneur", + "unemployed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "services", + "admin.", + "services", + "self-employed", + "blue-collar", + "technician", + "student", + "blue-collar", + "admin.", + "self-employed", + "management", + "entrepreneur", + "blue-collar", + "services", + "technician", + "admin.", + "self-employed", + "housemaid", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "management", + "technician", + "services", + "management", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "management", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "housemaid", + "blue-collar", + "blue-collar", + "housemaid", + "services", + "technician", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "housemaid", + "housemaid", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "housemaid", + "blue-collar", + "admin.", + "management", + "unemployed", + "admin.", + "blue-collar", + "technician", + "admin.", + "student", + "entrepreneur", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "technician", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "management", + "admin.", + "technician", + "blue-collar", + "technician", + "services", + "blue-collar", + "housemaid", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "technician", + "services", + "technician", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "retired", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "technician", + "services", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "management", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "services", + "technician", + "management", + "technician", + "admin.", + "admin.", + "unemployed", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "management", + "management", + "housemaid", + "housemaid", + "admin.", + "blue-collar", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "management", + "technician", + "blue-collar", + "technician", + "entrepreneur", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "technician", + "housemaid", + "technician", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "management", + "unemployed", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "management", + "blue-collar", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "technician", + "services", + "blue-collar", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "management", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "admin.", + "student", + "admin.", + "self-employed", + "admin.", + "admin.", + "technician", + "housemaid", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "management", + "management", + "technician", + "retired", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "self-employed", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "services", + "unemployed", + "management", + "services", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "admin.", + "technician", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "services", + "retired", + "services", + "services", + "blue-collar", + "management", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "services", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "services", + "admin.", + "housemaid", + "technician", + "admin.", + "admin.", + "technician", + "management", + "technician", + "technician", + "student", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "services", + "technician", + "admin.", + "management", + "admin.", + "management", + "technician", + "services", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "management", + "retired", + "technician", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "services", + "services", + "technician", + "blue-collar", + "entrepreneur", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "services", + "self-employed", + "services", + "services", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "student", + "admin.", + "student", + "blue-collar", + "technician", + "student", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "blue-collar", + "admin.", + "management", + "admin.", + "unemployed", + "technician", + "housemaid", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "unemployed", + "housemaid", + "housemaid", + "unemployed", + "management", + "management", + "entrepreneur", + "entrepreneur", + "management", + "blue-collar", + "entrepreneur", + "retired", + "retired", + "retired", + "technician", + "self-employed", + "student", + "student", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "student", + "technician", + "technician", + "self-employed", + "services", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "management", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "housemaid", + "unemployed", + "housemaid", + "management", + "housemaid", + "services", + "services", + "admin.", + "technician", + "admin.", + "technician", + "management", + "admin.", + "unemployed", + "admin.", + "self-employed", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "retired", + "blue-collar", + "admin.", + "management", + "admin.", + "technician", + "self-employed", + "technician", + "admin.", + "technician", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "technician", + "unemployed", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "services", + "services", + "services", + "admin.", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "housemaid", + "blue-collar", + "management", + "technician", + "admin.", + "technician", + "management", + "entrepreneur", + "self-employed", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "management", + "management", + "blue-collar", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "self-employed", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "unemployed", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "services", + "admin.", + "services", + "services", + "retired", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "technician", + "management", + "technician", + "technician", + "admin.", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "services", + "admin.", + "admin.", + "services", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "entrepreneur", + "technician", + "management", + "management", + "entrepreneur", + "entrepreneur", + "blue-collar", + "admin.", + "student", + "entrepreneur", + "technician", + "entrepreneur", + "technician", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "retired", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "entrepreneur", + "services", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "student", + "blue-collar", + "admin.", + "self-employed", + "technician", + "management", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "services", + "services", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "services", + "technician", + "technician", + "student", + "management", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "technician", + "self-employed", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "technician", + "technician", + "services", + "technician", + "admin.", + "technician", + "self-employed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "technician", + "management", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "management", + "services", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "entrepreneur", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "technician", + "technician", + "technician", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "admin.", + "self-employed", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "self-employed", + "blue-collar", + "technician", + "services", + "services", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "services", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "housemaid", + "housemaid", + "blue-collar", + "services", + "services", + "management", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "management", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "services", + "services", + "services", + "technician", + "services", + "admin.", + "services", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "management", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "services", + "student", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "technician", + "retired", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "retired", + "blue-collar", + "admin.", + "services", + "blue-collar", + "management", + "services", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "retired", + "retired", + "retired", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "services", + "blue-collar", + "student", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "unemployed", + "unemployed", + "unemployed", + "blue-collar", + "management", + "self-employed", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "management", + "blue-collar", + "services", + "services", + "technician", + "admin.", + "admin.", + "retired", + "retired", + "retired", + "services", + "retired", + "retired", + "technician", + "admin.", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "technician", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "self-employed", + "self-employed", + "entrepreneur", + "admin.", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "management", + "management", + "technician", + "admin.", + "retired", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "retired", + "blue-collar", + "entrepreneur", + "unemployed", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "technician", + "technician", + "management", + "entrepreneur", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "housemaid", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "management", + "retired", + "management", + "management", + "housemaid", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "services", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "retired", + "technician", + "services", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "self-employed", + "services", + "blue-collar", + "management", + "management", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "services", + "self-employed", + "blue-collar", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "services", + "student", + "technician", + "housemaid", + "housemaid", + "blue-collar", + "entrepreneur", + "blue-collar", + "management", + "technician", + "blue-collar", + "management", + "services", + "blue-collar", + "services", + "entrepreneur", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "technician", + "services", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "self-employed", + "retired", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "retired", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "management", + "technician", + "management", + "services", + "admin.", + "services", + "services", + "services", + "services", + "technician", + "blue-collar", + "blue-collar", + "housemaid", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "management", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "technician", + "admin.", + "housemaid", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "services", + "services", + "management", + "student", + "admin.", + "technician", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "services", + "entrepreneur", + "unemployed", + "blue-collar", + "admin.", + "retired", + "admin.", + "technician", + "management", + "admin.", + "self-employed", + "admin.", + "admin.", + "technician", + "management", + "management", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "self-employed", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "technician", + "services", + "technician", + "technician", + "technician", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "management", + "blue-collar", + "services", + "blue-collar", + "management", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "self-employed", + "self-employed", + "technician", + "admin.", + "technician", + "admin.", + "management", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "management", + "blue-collar", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "services", + "management", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "retired", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "entrepreneur", + "services", + "technician", + "services", + "services", + "blue-collar", + "blue-collar", + "services", + "technician", + "services", + "services", + "admin.", + "management", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "entrepreneur", + "technician", + "entrepreneur", + "entrepreneur", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "management", + "entrepreneur", + "blue-collar", + "services", + "technician", + "management", + "technician", + "self-employed", + "services", + "self-employed", + "technician", + "technician", + "admin.", + "technician", + "entrepreneur", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "technician", + "retired", + "services", + "services", + "technician", + "technician", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "services", + "admin.", + "technician", + "technician", + "admin.", + "self-employed", + "technician", + "blue-collar", + "housemaid", + "technician", + "self-employed", + "blue-collar", + "entrepreneur", + "housemaid", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "management", + "entrepreneur", + "services", + "management", + "admin.", + "management", + "admin.", + "services", + "admin.", + "self-employed", + "retired", + "admin.", + "entrepreneur", + "technician", + "unemployed", + "technician", + "blue-collar", + "retired", + "blue-collar", + "management", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "technician", + "admin.", + "unemployed", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "management", + "entrepreneur", + "housemaid", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "unemployed", + "entrepreneur", + "admin.", + "services", + "technician", + "unemployed", + "technician", + "retired", + "technician", + "technician", + "self-employed", + "technician", + "management", + "technician", + "self-employed", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "technician", + "management", + "technician", + "admin.", + "entrepreneur", + "technician", + "entrepreneur", + "services", + "services", + "technician", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "management", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "retired", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "retired", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "blue-collar", + "self-employed", + "retired", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "retired", + "management", + "admin.", + "technician", + "retired", + "admin.", + "retired", + "admin.", + "retired", + "blue-collar", + "admin.", + "services", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "services", + "management", + "admin.", + "unemployed", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "technician", + "admin.", + "admin.", + "services", + "technician", + "services", + "services", + "services", + "admin.", + "technician", + "retired", + "self-employed", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "management", + "admin.", + "services", + "entrepreneur", + "retired", + "retired", + "admin.", + "unemployed", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "services", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "entrepreneur", + "admin.", + "self-employed", + "management", + "admin.", + "technician", + "services", + "services", + "management", + "services", + "retired", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "management", + "admin.", + "management", + "admin.", + "services", + "services", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "management", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "management", + "self-employed", + "admin.", + "admin.", + "admin.", + "self-employed", + "services", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "services", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "self-employed", + "admin.", + "management", + "services", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "unemployed", + "housemaid", + "blue-collar", + "admin.", + "services", + "blue-collar", + "unemployed", + "admin.", + "management", + "admin.", + "self-employed", + "admin.", + "housemaid", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "services", + "housemaid", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "services", + "services", + "technician", + "housemaid", + "admin.", + "services", + "unemployed", + "retired", + "services", + "blue-collar", + "housemaid", + "self-employed", + "blue-collar", + "retired", + "retired", + "admin.", + "entrepreneur", + "technician", + "housemaid", + "housemaid", + "services", + "unemployed", + "admin.", + "retired", + "admin.", + "services", + "self-employed", + "technician", + "services", + "admin.", + "admin.", + "technician", + "retired", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "self-employed", + "technician", + "unemployed", + "admin.", + "blue-collar", + "services", + "blue-collar", + "housemaid", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "retired", + "blue-collar", + "retired", + "self-employed", + "entrepreneur", + "technician", + "technician", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "management", + "admin.", + "housemaid", + "entrepreneur", + "retired", + "management", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "management", + "blue-collar", + "admin.", + "self-employed", + "entrepreneur", + "services", + "services", + "services", + "services", + "housemaid", + "blue-collar", + "retired", + "services", + "admin.", + "technician", + "services", + "services", + "services", + "admin.", + "services", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "services", + "admin.", + "self-employed", + "admin.", + "housemaid", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "retired", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "retired", + "blue-collar", + "services", + "admin.", + "student", + "blue-collar", + "admin.", + "student", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "entrepreneur", + "admin.", + "self-employed", + "unemployed", + "admin.", + "admin.", + "admin.", + "housemaid", + "services", + "services", + "admin.", + "technician", + "retired", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "admin.", + "technician", + "blue-collar", + "services", + "technician", + "housemaid", + "housemaid", + "retired", + "retired", + "admin.", + "services", + "admin.", + "housemaid", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "services", + "admin.", + "admin.", + "entrepreneur", + "technician", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "retired", + "management", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "services", + "admin.", + "admin.", + "retired", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "retired", + "management", + "admin.", + "housemaid", + "admin.", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "services", + "services", + "management", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "unemployed", + "technician", + "admin.", + "services", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "services", + "housemaid", + "admin.", + "services", + "admin.", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "blue-collar", + "admin.", + "services", + "management", + "self-employed", + "admin.", + "entrepreneur", + "management", + "admin.", + "self-employed", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "entrepreneur", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "unemployed", + "management", + "unemployed", + "unemployed", + "services", + "admin.", + "management", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "services", + "student", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "services", + "technician", + "management", + "blue-collar", + "student", + "services", + "housemaid", + "blue-collar", + "student", + "admin.", + "technician", + "blue-collar", + "services", + "student", + "technician", + "housemaid", + "services", + "entrepreneur", + "admin.", + "self-employed", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "self-employed", + "self-employed", + "admin.", + "self-employed", + "services", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "self-employed", + "services", + "technician", + "technician", + "admin.", + "services", + "admin.", + "technician", + "services", + "admin.", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "unemployed", + "housemaid", + "retired", + "admin.", + "retired", + "unemployed", + "services", + "blue-collar", + "technician", + "management", + "self-employed", + "technician", + "self-employed", + "self-employed", + "services", + "services", + "technician", + "management", + "retired", + "blue-collar", + "management", + "services", + "entrepreneur", + "admin.", + "student", + "services", + "admin.", + "housemaid", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "services", + "self-employed", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "services", + "admin.", + "management", + "blue-collar", + "services", + "services", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "retired", + "self-employed", + "housemaid", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "unemployed", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "blue-collar", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "unemployed", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "retired", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "technician", + "management", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "unemployed", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "technician", + "student", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "self-employed", + "services", + "self-employed", + "entrepreneur", + "technician", + "technician", + "housemaid", + "entrepreneur", + "technician", + "services", + "services", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "unemployed", + "admin.", + "technician", + "admin.", + "technician", + "services", + "services", + "services", + "technician", + "services", + "management", + "management", + "admin.", + "technician", + "management", + "management", + "management", + "technician", + "technician", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "management", + "management", + "unemployed", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "self-employed", + "services", + "self-employed", + "services", + "self-employed", + "admin.", + "self-employed", + "technician", + "technician", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "management", + "services", + "services", + "housemaid", + "housemaid", + "services", + "management", + "admin.", + "self-employed", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "services", + "unemployed", + "admin.", + "admin.", + "technician", + "technician", + "management", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "self-employed", + "services", + "services", + "management", + "self-employed", + "technician", + "admin.", + "self-employed", + "unemployed", + "admin.", + "admin.", + "technician", + "services", + "services", + "admin.", + "admin.", + "management", + "technician", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "services", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "management", + "self-employed", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "services", + "technician", + "self-employed", + "admin.", + "technician", + "services", + "technician", + "technician", + "retired", + "technician", + "unemployed", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "services", + "admin.", + "services", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "services", + "services", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "self-employed", + "services", + "blue-collar", + "technician", + "admin.", + "student", + "retired", + "self-employed", + "technician", + "services", + "technician", + "admin.", + "services", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "services", + "services", + "admin.", + "self-employed", + "admin.", + "technician", + "housemaid", + "management", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "student", + "services", + "technician", + "blue-collar", + "blue-collar", + "technician", + "retired", + "technician", + "retired", + "admin.", + "housemaid", + "housemaid", + "admin.", + "admin.", + "technician", + "housemaid", + "entrepreneur", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "services", + "services", + "technician", + "technician", + "retired", + "admin.", + "technician", + "retired", + "technician", + "technician", + "admin.", + "retired", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "housemaid", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "services", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "retired", + "unemployed", + "admin.", + "entrepreneur", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "retired", + "technician", + "admin.", + "blue-collar", + "retired", + "services", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "management", + "management", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "technician", + "technician", + "services", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "housemaid", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "technician", + "technician", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "management", + "admin.", + "technician", + "technician", + "housemaid", + "technician", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "services", + "services", + "services", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "entrepreneur", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "housemaid", + "management", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "technician", + "self-employed", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "housemaid", + "blue-collar", + "admin.", + "management", + "management", + "technician", + "self-employed", + "technician", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "technician", + "retired", + "technician", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "technician", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "retired", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "management", + "technician", + "admin.", + "management", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "entrepreneur", + "management", + "admin.", + "admin.", + "management", + "retired", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "retired", + "admin.", + "technician", + "retired", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "management", + "self-employed", + "technician", + "management", + "housemaid", + "technician", + "technician", + "technician", + "technician", + "technician", + "unemployed", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "student", + "admin.", + "technician", + "admin.", + "technician", + "services", + "student", + "self-employed", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "retired", + "retired", + "technician", + "technician", + "technician", + "housemaid", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "technician", + "technician", + "admin.", + "housemaid", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "services", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "management", + "self-employed", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "management", + "management", + "self-employed", + "technician", + "services", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "housemaid", + "housemaid", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "management", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "self-employed", + "technician", + "housemaid", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "management", + "admin.", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "management", + "self-employed", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "services", + "technician", + "technician", + "retired", + "admin.", + "self-employed", + "housemaid", + "technician", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "technician", + "admin.", + "retired", + "services", + "admin.", + "blue-collar", + "services", + "technician", + "management", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "technician", + "blue-collar", + "services", + "technician", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "admin.", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "management", + "technician", + "management", + "self-employed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "services", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "management", + "services", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "technician", + "housemaid", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "unemployed", + "technician", + "admin.", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "technician", + "management", + "self-employed", + "technician", + "blue-collar", + "technician", + "self-employed", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "management", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "self-employed", + "technician", + "retired", + "technician", + "technician", + "technician", + "technician", + "technician", + "retired", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "management", + "technician", + "technician", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "management", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "self-employed", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "housemaid", + "technician", + "retired", + "admin.", + "retired", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "management", + "retired", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "housemaid", + "technician", + "management", + "technician", + "self-employed", + "admin.", + "housemaid", + "housemaid", + "management", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "management", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "entrepreneur", + "admin.", + "management", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "retired", + "blue-collar", + "technician", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "technician", + "management", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "unemployed", + "admin.", + "admin.", + "housemaid", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "management", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "technician", + "technician", + "technician", + "management", + "technician", + "technician", + "blue-collar", + "housemaid", + "management", + "admin.", + "self-employed", + "technician", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "management", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "management", + "retired", + "technician", + "retired", + "management", + "housemaid", + "housemaid", + "housemaid", + "housemaid", + "technician", + "housemaid", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "technician", + "technician", + "technician", + "unemployed", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "services", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "services", + "services", + "services", + "technician", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "management", + "unemployed", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "self-employed", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "self-employed", + "technician", + "admin.", + "technician", + "technician", + "management", + "technician", + "technician", + "admin.", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "admin.", + "management", + "self-employed", + "admin.", + "management", + "management", + "admin.", + "technician", + "admin.", + "technician", + "management", + "admin.", + "services", + "admin.", + "technician", + "management", + "technician", + "technician", + "retired", + "technician", + "technician", + "admin.", + "housemaid", + "admin.", + "technician", + "housemaid", + "services", + "management", + "admin.", + "technician", + "management", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "services", + "technician", + "technician", + "admin.", + "housemaid", + "admin.", + "technician", + "management", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "technician", + "technician", + "technician", + "admin.", + "services", + "admin.", + "technician", + "management", + "self-employed", + "admin.", + "technician", + "technician", + "management", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "retired", + "management", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "management", + "admin.", + "technician", + "services", + "services", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "management", + "management", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "management", + "admin.", + "services", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "management", + "technician", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "management", + "housemaid", + "technician", + "technician", + "entrepreneur", + "self-employed", + "technician", + "technician", + "housemaid", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "management", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "management", + "admin.", + "technician", + "technician", + "technician", + "technician", + "services", + "admin.", + "technician", + "management", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "entrepreneur", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "self-employed", + "self-employed", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "retired", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "entrepreneur", + "technician", + "admin.", + "technician", + "technician", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "retired", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "housemaid", + "blue-collar", + "technician", + "technician", + "housemaid", + "technician", + "management", + "technician", + "technician", + "admin.", + "technician", + "technician", + "management", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "management", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "housemaid", + "self-employed", + "technician", + "management", + "technician", + "management", + "housemaid", + "self-employed", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "management", + "technician", + "entrepreneur", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "unemployed", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "housemaid", + "technician", + "admin.", + "services", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "services", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "self-employed", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "technician", + "entrepreneur", + "unemployed", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "self-employed", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "self-employed", + "technician", + "technician", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "unemployed", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "technician", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "retired", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "unemployed", + "unemployed", + "self-employed", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "self-employed", + "admin.", + "technician", + "housemaid", + "admin.", + "management", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "services", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "admin.", + "management", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "management", + "management", + "management", + "management", + "management", + "technician", + "services", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "management", + "technician", + "management", + "management", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "self-employed", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "management", + "technician", + "technician", + "technician", + "self-employed", + "services", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "technician", + "services", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "unemployed", + "unemployed", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "blue-collar", + "technician", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "management", + "technician", + "technician", + "blue-collar", + "management", + "management", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "unemployed", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "unemployed", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "management", + "technician", + "admin.", + "services", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "technician", + "technician", + "retired", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "housemaid", + "technician", + "technician", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "blue-collar", + "management", + "services", + "self-employed", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "housemaid", + "services", + "technician", + "admin.", + "admin.", + "unemployed", + "technician", + "management", + "admin.", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "services", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "technician", + "technician", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "housemaid", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "management", + "admin.", + "management", + "management", + "technician", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "management", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "management", + "admin.", + "management", + "admin.", + "management", + "management", + "technician", + "technician", + "admin.", + "management", + "housemaid", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "housemaid", + "self-employed", + "technician", + "self-employed", + "technician", + "services", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "technician", + "blue-collar", + "unemployed", + "admin.", + "self-employed", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "unemployed", + "technician", + "services", + "technician", + "admin.", + "services", + "technician", + "admin.", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "housemaid", + "admin.", + "unemployed", + "technician", + "admin.", + "retired", + "admin.", + "self-employed", + "admin.", + "housemaid", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "retired", + "admin.", + "technician", + "admin.", + "housemaid", + "technician", + "technician", + "self-employed", + "technician", + "self-employed", + "services", + "admin.", + "services", + "admin.", + "services", + "technician", + "technician", + "self-employed", + "services", + "technician", + "technician", + "self-employed", + "technician", + "self-employed", + "technician", + "admin.", + "services", + "admin.", + "housemaid", + "admin.", + "housemaid", + "technician", + "technician", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "admin.", + "services", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "housemaid", + "housemaid", + "admin.", + "housemaid", + "housemaid", + "unemployed", + "self-employed", + "admin.", + "self-employed", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "retired", + "technician", + "management", + "technician", + "technician", + "technician", + "self-employed", + "admin.", + "technician", + "technician", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "housemaid", + "self-employed", + "management", + "technician", + "admin.", + "housemaid", + "services", + "admin.", + "admin.", + "blue-collar", + "technician", + "services", + "technician", + "technician", + "admin.", + "housemaid", + "technician", + "unemployed", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "housemaid", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "housemaid", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "management", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "housemaid", + "housemaid", + "housemaid", + "technician", + "blue-collar", + "technician", + "technician", + "retired", + "retired", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "retired", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "services", + "technician", + "admin.", + "technician", + "technician", + "self-employed", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "housemaid", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "self-employed", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "unemployed", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "technician", + "services", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "management", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "technician", + "technician", + "management", + "admin.", + "admin.", + "unemployed", + "technician", + "management", + "entrepreneur", + "self-employed", + "admin.", + "self-employed", + "management", + "technician", + "self-employed", + "technician", + "technician", + "housemaid", + "housemaid", + "housemaid", + "technician", + "blue-collar", + "technician", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "entrepreneur", + "technician", + "admin.", + "admin.", + "technician", + "housemaid", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "unemployed", + "technician", + "management", + "self-employed", + "housemaid", + "technician", + "housemaid", + "housemaid", + "self-employed", + "admin.", + "admin.", + "management", + "technician", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "housemaid", + "services", + "admin.", + "technician", + "housemaid", + "technician", + "housemaid", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "housemaid", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "management", + "management", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "self-employed", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "retired", + "housemaid", + "technician", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "management", + "technician", + "housemaid", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "blue-collar", + "management", + "unemployed", + "services", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "housemaid", + "housemaid", + "services", + "admin.", + "admin.", + "technician", + "housemaid", + "housemaid", + "retired", + "technician", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "self-employed", + "management", + "technician", + "admin.", + "services", + "blue-collar", + "entrepreneur", + "housemaid", + "admin.", + "housemaid", + "technician", + "retired", + "technician", + "technician", + "management", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "technician", + "admin.", + "housemaid", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "management", + "technician", + "admin.", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "housemaid", + "management", + "admin.", + "technician", + "management", + "admin.", + "management", + "blue-collar", + "technician", + "technician", + "technician", + "retired", + "technician", + "management", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "management", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "services", + "technician", + "management", + "technician", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "technician", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "housemaid", + "self-employed", + "admin.", + "blue-collar", + "services", + "admin.", + "technician", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "self-employed", + "admin.", + "self-employed", + "blue-collar", + "technician", + "technician", + "technician", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "technician", + "self-employed", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "self-employed", + "technician", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "management", + "admin.", + "technician", + "technician", + "technician", + "housemaid", + "self-employed", + "technician", + "technician", + "management", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "housemaid", + "technician", + "technician", + "technician", + "retired", + "admin.", + "unemployed", + "services", + "services", + "blue-collar", + "self-employed", + "technician", + "technician", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "retired", + "management", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "unemployed", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "technician", + "technician", + "management", + "technician", + "entrepreneur", + "technician", + "technician", + "admin.", + "management", + "services", + "admin.", + "blue-collar", + "services", + "technician", + "management", + "management", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "housemaid", + "retired", + "blue-collar", + "technician", + "housemaid", + "technician", + "management", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "admin.", + "entrepreneur", + "retired", + "technician", + "technician", + "management", + "technician", + "technician", + "blue-collar", + "blue-collar", + "retired", + "retired", + "management", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "housemaid", + "retired", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "admin.", + "management", + "technician", + "admin.", + "management", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "self-employed", + "housemaid", + "admin.", + "management", + "retired", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "technician", + "retired", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "management", + "technician", + "self-employed", + "self-employed", + "admin.", + "technician", + "technician", + "unemployed", + "housemaid", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "unemployed", + "technician", + "technician", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "unemployed", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "self-employed", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "unemployed", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "retired", + "services", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "technician", + "services", + "technician", + "admin.", + "technician", + "admin.", + "housemaid", + "technician", + "management", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "management", + "admin.", + "management", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "unemployed", + "housemaid", + "admin.", + "admin.", + "admin.", + "unemployed", + "technician", + "admin.", + "admin.", + "management", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "management", + "self-employed", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "management", + "management", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "technician", + "technician", + "self-employed", + "self-employed", + "admin.", + "admin.", + "management", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "retired", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "technician", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "self-employed", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "management", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "services", + "admin.", + "services", + "services", + "services", + "self-employed", + "technician", + "admin.", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "unemployed", + "unemployed", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "management", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "self-employed", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "technician", + "management", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "services", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "management", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "services", + "technician", + "technician", + "admin.", + "housemaid", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "entrepreneur", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "unemployed", + "technician", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "self-employed", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "retired", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "management", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "management", + "unemployed", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "retired", + "technician", + "admin.", + "self-employed", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "self-employed", + "admin.", + "technician", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "retired", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "retired", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "student", + "management", + "technician", + "management", + "services", + "admin.", + "technician", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "admin.", + "student", + "self-employed", + "student", + "self-employed", + "admin.", + "management", + "management", + "technician", + "services", + "services", + "admin.", + "technician", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "management", + "management", + "admin.", + "management", + "admin.", + "entrepreneur", + "retired", + "services", + "management", + "management", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "unemployed", + "unemployed", + "unemployed", + "unemployed", + "unemployed", + "technician", + "technician", + "entrepreneur", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "management", + "unemployed", + "services", + "technician", + "admin.", + "management", + "management", + "blue-collar", + "self-employed", + "admin.", + "services", + "services", + "technician", + "services", + "blue-collar", + "management", + "admin.", + "self-employed", + "management", + "unemployed", + "management", + "blue-collar", + "admin.", + "management", + "blue-collar", + "management", + "management", + "self-employed", + "blue-collar", + "admin.", + "technician", + "management", + "management", + "blue-collar", + "entrepreneur", + "services", + "admin.", + "admin.", + "entrepreneur", + "unemployed", + "self-employed", + "unemployed", + "entrepreneur", + "entrepreneur", + "admin.", + "technician", + "services", + "services", + "admin.", + "admin.", + "self-employed", + "entrepreneur", + "management", + "technician", + "admin.", + "management", + "retired", + "management", + "admin.", + "housemaid", + "technician", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "housemaid", + "housemaid", + "unemployed", + "entrepreneur", + "blue-collar", + "management", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "entrepreneur", + "housemaid", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "technician", + "technician", + "admin.", + "unemployed", + "management", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "entrepreneur", + "technician", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "admin.", + "technician", + "services", + "self-employed", + "services", + "unemployed", + "management", + "management", + "services", + "management", + "management", + "blue-collar", + "self-employed", + "technician", + "management", + "unemployed", + "management", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "management", + "management", + "management", + "services", + "management", + "unemployed", + "technician", + "entrepreneur", + "entrepreneur", + "management", + "management", + "management", + "self-employed", + "self-employed", + "management", + "management", + "retired", + "retired", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "services", + "entrepreneur", + "technician", + "technician", + "services", + "services", + "admin.", + "admin.", + "technician", + "blue-collar", + "management", + "blue-collar", + "entrepreneur", + "entrepreneur", + "management", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "management", + "unemployed", + "blue-collar", + "management", + "management", + "admin.", + "services", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "management", + "management", + "management", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "services", + "services", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "management", + "management", + "admin.", + "technician", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "technician", + "technician", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "self-employed", + "self-employed", + "unemployed", + "admin.", + "self-employed", + "admin.", + "management", + "housemaid", + "technician", + "management", + "management", + "services", + "services", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "self-employed", + "management", + "blue-collar", + "management", + "admin.", + "self-employed", + "technician", + "blue-collar", + "self-employed", + "management", + "admin.", + "admin.", + "self-employed", + "self-employed", + "services", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "management", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "housemaid", + "blue-collar", + "technician", + "self-employed", + "technician", + "management", + "entrepreneur", + "technician", + "admin.", + "admin.", + "entrepreneur", + "retired", + "admin.", + "management", + "admin.", + "entrepreneur", + "admin.", + "technician", + "self-employed", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "technician", + "entrepreneur", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "unemployed", + "admin.", + "services", + "technician", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "technician", + "entrepreneur", + "services", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "management", + "management", + "management", + "management", + "entrepreneur", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "management", + "technician", + "management", + "blue-collar", + "management", + "management", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "retired", + "blue-collar", + "self-employed", + "services", + "services", + "management", + "entrepreneur", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "services", + "blue-collar", + "admin.", + "management", + "admin.", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "management", + "blue-collar", + "self-employed", + "entrepreneur", + "blue-collar", + "admin.", + "entrepreneur", + "retired", + "management", + "retired", + "entrepreneur", + "technician", + "unemployed", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "self-employed", + "management", + "management", + "technician", + "blue-collar", + "admin.", + "management", + "retired", + "admin.", + "services", + "unemployed", + "self-employed", + "unemployed", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "management", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "services", + "technician", + "technician", + "entrepreneur", + "self-employed", + "technician", + "self-employed", + "admin.", + "admin.", + "technician", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "housemaid", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "self-employed", + "management", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "self-employed", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "blue-collar", + "management", + "admin.", + "management", + "management", + "housemaid", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "entrepreneur", + "unemployed", + "blue-collar", + "blue-collar", + "management", + "entrepreneur", + "admin.", + "admin.", + "management", + "blue-collar", + "services", + "management", + "technician", + "technician", + "admin.", + "admin.", + "services", + "services", + "technician", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "self-employed", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "services", + "services", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "services", + "unemployed", + "unemployed", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "technician", + "management", + "management", + "admin.", + "admin.", + "management", + "management", + "services", + "management", + "admin.", + "housemaid", + "entrepreneur", + "admin.", + "technician", + "management", + "admin.", + "management", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "admin.", + "services", + "blue-collar", + "retired", + "technician", + "retired", + "services", + "services", + "self-employed", + "admin.", + "unemployed", + "services", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "entrepreneur", + "admin.", + "technician", + "management", + "admin.", + "technician", + "management", + "self-employed", + "entrepreneur", + "management", + "technician", + "management", + "entrepreneur", + "technician", + "entrepreneur", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "technician", + "management", + "admin.", + "services", + "management", + "technician", + "admin.", + "services", + "admin.", + "technician", + "technician", + "entrepreneur", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "technician", + "technician", + "self-employed", + "management", + "management", + "services", + "management", + "admin.", + "technician", + "entrepreneur", + "management", + "housemaid", + "technician", + "admin.", + "technician", + "services", + "retired", + "services", + "technician", + "technician", + "self-employed", + "technician", + "management", + "management", + "management", + "management", + "admin.", + "services", + "retired", + "technician", + "blue-collar", + "unemployed", + "retired", + "admin.", + "technician", + "management", + "services", + "admin.", + "management", + "management", + "admin.", + "unemployed", + "admin.", + "management", + "services", + "management", + "entrepreneur", + "services", + "management", + "management", + "services", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "entrepreneur", + "blue-collar", + "management", + "blue-collar", + "unemployed", + "services", + "management", + "management", + "management", + "services", + "services", + "blue-collar", + "self-employed", + "services", + "technician", + "management", + "services", + "technician", + "admin.", + "services", + "self-employed", + "admin.", + "blue-collar", + "services", + "admin.", + "self-employed", + "entrepreneur", + "entrepreneur", + "technician", + "unemployed", + "entrepreneur", + "management", + "entrepreneur", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "management", + "self-employed", + "self-employed", + "entrepreneur", + "services", + "technician", + "admin.", + "technician", + "technician", + "services", + "services", + "blue-collar", + "management", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "technician", + "services", + "entrepreneur", + "blue-collar", + "entrepreneur", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "self-employed", + "management", + "management", + "management", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "management", + "blue-collar", + "admin.", + "management", + "management", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "self-employed", + "self-employed", + "technician", + "blue-collar", + "management", + "entrepreneur", + "admin.", + "student", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "management", + "management", + "admin.", + "services", + "admin.", + "management", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "management", + "management", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "management", + "entrepreneur", + "admin.", + "services", + "unemployed", + "management", + "admin.", + "technician", + "management", + "technician", + "technician", + "unemployed", + "blue-collar", + "technician", + "admin.", + "self-employed", + "technician", + "entrepreneur", + "housemaid", + "admin.", + "management", + "self-employed", + "technician", + "management", + "management", + "services", + "management", + "blue-collar", + "technician", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "services", + "entrepreneur", + "admin.", + "admin.", + "unemployed", + "management", + "management", + "unemployed", + "entrepreneur", + "management", + "retired", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "management", + "entrepreneur", + "housemaid", + "housemaid", + "technician", + "self-employed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "management", + "management", + "admin.", + "management", + "entrepreneur", + "self-employed", + "admin.", + "management", + "entrepreneur", + "housemaid", + "entrepreneur", + "admin.", + "retired", + "admin.", + "blue-collar", + "technician", + "management", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "services", + "services", + "technician", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "admin.", + "housemaid", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "housemaid", + "technician", + "self-employed", + "self-employed", + "technician", + "technician", + "technician", + "admin.", + "unemployed", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "self-employed", + "management", + "management", + "admin.", + "entrepreneur", + "management", + "management", + "blue-collar", + "blue-collar", + "admin.", + "management", + "admin.", + "management", + "management", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "management", + "services", + "blue-collar", + "admin.", + "management", + "retired", + "management", + "services", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "technician", + "admin.", + "management", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "management", + "management", + "admin.", + "services", + "unemployed", + "admin.", + "technician", + "unemployed", + "admin.", + "management", + "admin.", + "self-employed", + "unemployed", + "management", + "self-employed", + "technician", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "technician", + "technician", + "admin.", + "management", + "management", + "management", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "technician", + "services", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "management", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "entrepreneur", + "management", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "housemaid", + "management", + "housemaid", + "admin.", + "blue-collar", + "self-employed", + "management", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "management", + "services", + "admin.", + "services", + "services", + "student", + "management", + "admin.", + "management", + "unemployed", + "management", + "admin.", + "services", + "unemployed", + "unemployed", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "unemployed", + "services", + "services", + "blue-collar", + "technician", + "blue-collar", + "management", + "management", + "management", + "management", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "management", + "admin.", + "self-employed", + "management", + "admin.", + "services", + "admin.", + "services", + "services", + "admin.", + "management", + "admin.", + "technician", + "management", + "blue-collar", + "entrepreneur", + "entrepreneur", + "admin.", + "technician", + "entrepreneur", + "technician", + "admin.", + "entrepreneur", + "management", + "services", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "entrepreneur", + "services", + "admin.", + "technician", + "services", + "admin.", + "self-employed", + "management", + "admin.", + "technician", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "entrepreneur", + "management", + "blue-collar", + "management", + "retired", + "housemaid", + "housemaid", + "unemployed", + "management", + "retired", + "blue-collar", + "self-employed", + "management", + "technician", + "services", + "student", + "blue-collar", + "student", + "entrepreneur", + "management", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "self-employed", + "entrepreneur", + "admin.", + "services", + "technician", + "management", + "admin.", + "self-employed", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "management", + "admin.", + "technician", + "management", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "self-employed", + "admin.", + "management", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "blue-collar", + "management", + "technician", + "admin.", + "technician", + "services", + "management", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "management", + "entrepreneur", + "services", + "entrepreneur", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "entrepreneur", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "housemaid", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "management", + "management", + "management", + "management", + "technician", + "admin.", + "blue-collar", + "management", + "management", + "unemployed", + "blue-collar", + "blue-collar", + "technician", + "management", + "management", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "management", + "entrepreneur", + "services", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "technician", + "admin.", + "management", + "management", + "management", + "technician", + "services", + "admin.", + "services", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "technician", + "technician", + "admin.", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "management", + "technician", + "self-employed", + "admin.", + "entrepreneur", + "admin.", + "technician", + "management", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "management", + "management", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "blue-collar", + "management", + "entrepreneur", + "admin.", + "unemployed", + "admin.", + "self-employed", + "technician", + "blue-collar", + "unemployed", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "self-employed", + "management", + "self-employed", + "entrepreneur", + "services", + "housemaid", + "self-employed", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "admin.", + "entrepreneur", + "self-employed", + "entrepreneur", + "admin.", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "management", + "management", + "management", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "management", + "technician", + "blue-collar", + "services", + "technician", + "technician", + "management", + "management", + "admin.", + "blue-collar", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "management", + "admin.", + "management", + "management", + "housemaid", + "admin.", + "management", + "admin.", + "management", + "admin.", + "technician", + "services", + "services", + "services", + "admin.", + "services", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "entrepreneur", + "services", + "entrepreneur", + "management", + "services", + "blue-collar", + "management", + "technician", + "technician", + "blue-collar", + "technician", + "management", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "management", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "management", + "management", + "entrepreneur", + "entrepreneur", + "blue-collar", + "housemaid", + "management", + "services", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "unemployed", + "entrepreneur", + "services", + "unemployed", + "entrepreneur", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "self-employed", + "management", + "management", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "admin.", + "technician", + "unemployed", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "unemployed", + "management", + "management", + "management", + "management", + "unemployed", + "technician", + "management", + "blue-collar", + "self-employed", + "entrepreneur", + "unemployed", + "entrepreneur", + "technician", + "admin.", + "services", + "admin.", + "retired", + "management", + "services", + "entrepreneur", + "services", + "services", + "technician", + "admin.", + "technician", + "housemaid", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "entrepreneur", + "management", + "admin.", + "admin.", + "services", + "technician", + "management", + "management", + "housemaid", + "admin.", + "management", + "blue-collar", + "admin.", + "technician", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "management", + "technician", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "management", + "admin.", + "entrepreneur", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "admin.", + "housemaid", + "services", + "technician", + "entrepreneur", + "entrepreneur", + "unemployed", + "blue-collar", + "unemployed", + "technician", + "management", + "admin.", + "management", + "entrepreneur", + "technician", + "admin.", + "entrepreneur", + "retired", + "management", + "admin.", + "unemployed", + "admin.", + "admin.", + "management", + "blue-collar", + "technician", + "management", + "services", + "management", + "admin.", + "management", + "management", + "admin.", + "unemployed", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "retired", + "blue-collar", + "management", + "unemployed", + "admin.", + "self-employed", + "unemployed", + "technician", + "management", + "technician", + "admin.", + "services", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "self-employed", + "entrepreneur", + "admin.", + "entrepreneur", + "technician", + "technician", + "technician", + "management", + "admin.", + "entrepreneur", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "management", + "management", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "management", + "blue-collar", + "entrepreneur", + "self-employed", + "management", + "admin.", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "unemployed", + "management", + "admin.", + "services", + "student", + "self-employed", + "self-employed", + "entrepreneur", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "housemaid", + "technician", + "self-employed", + "admin.", + "entrepreneur", + "technician", + "retired", + "retired", + "blue-collar", + "admin.", + "self-employed", + "technician", + "management", + "management", + "management", + "self-employed", + "management", + "entrepreneur", + "entrepreneur", + "management", + "services", + "entrepreneur", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "management", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "services", + "management", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "unemployed", + "retired", + "management", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "management", + "entrepreneur", + "blue-collar", + "technician", + "self-employed", + "entrepreneur", + "blue-collar", + "services", + "unemployed", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "unemployed", + "admin.", + "services", + "management", + "management", + "admin.", + "technician", + "blue-collar", + "housemaid", + "entrepreneur", + "admin.", + "services", + "entrepreneur", + "admin.", + "technician", + "technician", + "retired", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "services", + "technician", + "management", + "services", + "services", + "management", + "self-employed", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "unemployed", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "retired", + "housemaid", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "unemployed", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "unemployed", + "blue-collar", + "management", + "technician", + "unemployed", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "management", + "student", + "housemaid", + "blue-collar", + "blue-collar", + "housemaid", + "services", + "blue-collar", + "retired", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "unemployed", + "management", + "services", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "technician", + "management", + "blue-collar", + "self-employed", + "technician", + "services", + "student", + "blue-collar", + "management", + "self-employed", + "services", + "blue-collar", + "technician", + "services", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "admin.", + "services", + "unemployed", + "admin.", + "blue-collar", + "technician", + "admin.", + "self-employed", + "management", + "admin.", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "admin.", + "services", + "admin.", + "blue-collar", + "entrepreneur", + "self-employed", + "entrepreneur", + "technician", + "technician", + "entrepreneur", + "admin.", + "self-employed", + "entrepreneur", + "services", + "technician", + "technician", + "entrepreneur", + "unemployed", + "self-employed", + "management", + "self-employed", + "technician", + "services", + "self-employed", + "unemployed", + "blue-collar", + "services", + "management", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "management", + "management", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "entrepreneur", + "management", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "services", + "self-employed", + "blue-collar", + "management", + "blue-collar", + "services", + "technician", + "services", + "admin.", + "management", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "management", + "services", + "admin.", + "admin.", + "management", + "entrepreneur", + "technician", + "management", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "self-employed", + "services", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "admin.", + "unemployed", + "management", + "blue-collar", + "management", + "services", + "technician", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "management", + "blue-collar", + "admin.", + "unemployed", + "entrepreneur", + "admin.", + "admin.", + "services", + "blue-collar", + "services", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "entrepreneur", + "admin.", + "management", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "management", + "services", + "technician", + "unemployed", + "self-employed", + "admin.", + "admin.", + "technician", + "services", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "management", + "services", + "self-employed", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "management", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "management", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "retired", + "admin.", + "management", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "self-employed", + "admin.", + "management", + "retired", + "management", + "admin.", + "housemaid", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "services", + "admin.", + "services", + "services", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "management", + "entrepreneur", + "management", + "blue-collar", + "technician", + "admin.", + "management", + "technician", + "management", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "technician", + "management", + "management", + "admin.", + "admin.", + "blue-collar", + "management", + "entrepreneur", + "management", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "entrepreneur", + "technician", + "housemaid", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "technician", + "self-employed", + "services", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "management", + "admin.", + "unemployed", + "technician", + "management", + "technician", + "blue-collar", + "technician", + "admin.", + "housemaid", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "unemployed", + "entrepreneur", + "blue-collar", + "housemaid", + "admin.", + "self-employed", + "technician", + "admin.", + "admin.", + "unemployed", + "retired", + "blue-collar", + "retired", + "admin.", + "housemaid", + "technician", + "management", + "management", + "technician", + "admin.", + "technician", + "technician", + "management", + "admin.", + "unemployed", + "unemployed", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "technician", + "technician", + "entrepreneur", + "management", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "management", + "services", + "management", + "unemployed", + "admin.", + "services", + "technician", + "unemployed", + "admin.", + "admin.", + "technician", + "management", + "entrepreneur", + "admin.", + "technician", + "self-employed", + "admin.", + "retired", + "self-employed", + "admin.", + "blue-collar", + "retired", + "management", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "admin.", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "student", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "management", + "admin.", + "services", + "services", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "admin.", + "admin.", + "services", + "management", + "admin.", + "unemployed", + "services", + "management", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "management", + "admin.", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "services", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "management", + "technician", + "entrepreneur", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "self-employed", + "technician", + "services", + "self-employed", + "admin.", + "management", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "technician", + "management", + "admin.", + "management", + "management", + "self-employed", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "student", + "technician", + "technician", + "admin.", + "management", + "management", + "admin.", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "management", + "technician", + "admin.", + "self-employed", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "technician", + "student", + "unemployed", + "housemaid", + "admin.", + "technician", + "admin.", + "retired", + "technician", + "technician", + "admin.", + "technician", + "management", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "management", + "management", + "admin.", + "management", + "technician", + "management", + "technician", + "management", + "technician", + "management", + "admin.", + "technician", + "admin.", + "self-employed", + "management", + "technician", + "admin.", + "self-employed", + "admin.", + "unemployed", + "admin.", + "technician", + "entrepreneur", + "technician", + "technician", + "admin.", + "housemaid", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "management", + "management", + "retired", + "self-employed", + "student", + "admin.", + "management", + "management", + "self-employed", + "technician", + "housemaid", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "services", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "retired", + "admin.", + "unemployed", + "blue-collar", + "services", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "retired", + "unemployed", + "technician", + "admin.", + "blue-collar", + "technician", + "unemployed", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "unemployed", + "admin.", + "self-employed", + "entrepreneur", + "retired", + "self-employed", + "unemployed", + "self-employed", + "management", + "management", + "self-employed", + "unemployed", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "entrepreneur", + "management", + "technician", + "self-employed", + "technician", + "unemployed", + "admin.", + "services", + "self-employed", + "admin.", + "retired", + "services", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "management", + "admin.", + "management", + "technician", + "self-employed", + "technician", + "admin.", + "admin.", + "technician", + "unemployed", + "entrepreneur", + "admin.", + "admin.", + "housemaid", + "technician", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "unemployed", + "student", + "student", + "management", + "student", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "management", + "student", + "technician", + "admin.", + "technician", + "admin.", + "student", + "management", + "admin.", + "management", + "technician", + "technician", + "technician", + "management", + "admin.", + "admin.", + "management", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "retired", + "technician", + "technician", + "technician", + "admin.", + "management", + "retired", + "management", + "management", + "management", + "management", + "retired", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "student", + "management", + "blue-collar", + "student", + "management", + "self-employed", + "retired", + "self-employed", + "self-employed", + "self-employed", + "retired", + "retired", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "retired", + "self-employed", + "student", + "self-employed", + "self-employed", + "unemployed", + "retired", + "retired", + "technician", + "retired", + "technician", + "technician", + "retired", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "student", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "retired", + "unemployed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "retired", + "blue-collar", + "retired", + "management", + "housemaid", + "technician", + "management", + "admin.", + "student", + "management", + "blue-collar", + "technician", + "admin.", + "student", + "housemaid", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "management", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "retired", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "management", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "technician", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "housemaid", + "technician", + "admin.", + "management", + "technician", + "technician", + "services", + "admin.", + "technician", + "services", + "entrepreneur", + "services", + "services", + "blue-collar", + "retired", + "entrepreneur", + "blue-collar", + "management", + "admin.", + "admin.", + "services", + "services", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "management", + "management", + "technician", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "services", + "services", + "entrepreneur", + "unemployed", + "unemployed", + "admin.", + "management", + "technician", + "services", + "technician", + "admin.", + "management", + "technician", + "admin.", + "retired", + "retired", + "admin.", + "management", + "technician", + "blue-collar", + "admin.", + "technician", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "housemaid", + "student", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "retired", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "management", + "student", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "student", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "management", + "technician", + "technician", + "technician", + "admin.", + "retired", + "technician", + "blue-collar", + "technician", + "management", + "student", + "admin.", + "retired", + "blue-collar", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "unemployed", + "unemployed", + "retired", + "student", + "self-employed", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "services", + "services", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "retired", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "technician", + "services", + "services", + "technician", + "technician", + "housemaid", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "unemployed", + "unemployed", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "management", + "housemaid", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "services", + "management", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "management", + "technician", + "blue-collar", + "unemployed", + "services", + "services", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "student", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "services", + "technician", + "technician", + "management", + "admin.", + "services", + "services", + "services", + "technician", + "technician", + "services", + "retired", + "technician", + "self-employed", + "self-employed", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "self-employed", + "self-employed", + "self-employed", + "self-employed", + "services", + "admin.", + "self-employed", + "technician", + "technician", + "admin.", + "entrepreneur", + "technician", + "retired", + "technician", + "self-employed", + "entrepreneur", + "services", + "technician", + "admin.", + "services", + "blue-collar", + "services", + "admin.", + "unemployed", + "technician", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "services", + "services", + "self-employed", + "self-employed", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "retired", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "technician", + "admin.", + "student", + "self-employed", + "entrepreneur", + "technician", + "technician", + "admin.", + "services", + "management", + "unemployed", + "self-employed", + "retired", + "management", + "management", + "management", + "retired", + "retired", + "technician", + "entrepreneur", + "technician", + "technician", + "technician", + "services", + "admin.", + "services", + "admin.", + "entrepreneur", + "technician", + "housemaid", + "admin.", + "admin.", + "unemployed", + "unemployed", + "housemaid", + "retired", + "unemployed", + "technician", + "admin.", + "retired", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "technician", + "management", + "student", + "student", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "management", + "blue-collar", + "blue-collar", + "retired", + "technician", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "entrepreneur", + "services", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "retired", + "admin.", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "services", + "services", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "management", + "technician", + "management", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "student", + "entrepreneur", + "student", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "student", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "admin.", + "management", + "management", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "admin.", + "management", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "entrepreneur", + "services", + "technician", + "management", + "services", + "admin.", + "technician", + "admin.", + "entrepreneur", + "services", + "services", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "student", + "management", + "entrepreneur", + "services", + "management", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "services", + "student", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "management", + "technician", + "blue-collar", + "management", + "services", + "entrepreneur", + "self-employed", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "retired", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "management", + "management", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "management", + "technician", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "entrepreneur", + "management", + "services", + "housemaid", + "blue-collar", + "services", + "blue-collar", + "admin.", + "retired", + "entrepreneur", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "management", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "services", + "blue-collar", + "technician", + "management", + "technician", + "blue-collar", + "technician", + "management", + "technician", + "services", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "management", + "technician", + "technician", + "management", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "services", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "unemployed", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "retired", + "management", + "blue-collar", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "admin.", + "services", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "services", + "self-employed", + "admin.", + "management", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "technician", + "student", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "student", + "technician", + "admin.", + "housemaid", + "services", + "technician", + "self-employed", + "management", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "services", + "unemployed", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "housemaid", + "technician", + "services", + "technician", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "services", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "services", + "management", + "management", + "admin.", + "services", + "admin.", + "admin.", + "services", + "services", + "blue-collar", + "blue-collar", + "management", + "admin.", + "student", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "unemployed", + "services", + "admin.", + "blue-collar", + "services", + "student", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "management", + "management", + "technician", + "technician", + "admin.", + "services", + "self-employed", + "student", + "blue-collar", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "services", + "services", + "admin.", + "self-employed", + "retired", + "technician", + "blue-collar", + "services", + "self-employed", + "technician", + "retired", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "student", + "services", + "admin.", + "management", + "management", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "technician", + "management", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "student", + "blue-collar", + "admin.", + "services", + "services", + "technician", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "retired", + "technician", + "technician", + "blue-collar", + "retired", + "management", + "management", + "technician", + "services", + "management", + "technician", + "services", + "services", + "services", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "management", + "technician", + "services", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "management", + "admin.", + "services", + "blue-collar", + "blue-collar", + "management", + "services", + "services", + "technician", + "technician", + "technician", + "blue-collar", + "management", + "technician", + "management", + "retired", + "management", + "management", + "blue-collar", + "services", + "management", + "entrepreneur", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "services", + "technician", + "management", + "technician", + "technician", + "management", + "services", + "self-employed", + "management", + "services", + "services", + "admin.", + "services", + "blue-collar", + "technician", + "technician", + "services", + "retired", + "student", + "technician", + "self-employed", + "technician", + "blue-collar", + "services", + "services", + "self-employed", + "technician", + "technician", + "technician", + "services", + "self-employed", + "services", + "services", + "admin.", + "management", + "blue-collar", + "technician", + "self-employed", + "unemployed", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "admin.", + "services", + "services", + "entrepreneur", + "services", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "services", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "self-employed", + "management", + "admin.", + "management", + "admin.", + "management", + "management", + "admin.", + "student", + "management", + "management", + "blue-collar", + "technician", + "blue-collar", + "services", + "self-employed", + "services", + "technician", + "services", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "management", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "technician", + "blue-collar", + "student", + "services", + "management", + "technician", + "services", + "management", + "services", + "services", + "admin.", + "entrepreneur", + "technician", + "retired", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "self-employed", + "retired", + "blue-collar", + "technician", + "housemaid", + "admin.", + "student", + "technician", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "services", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "management", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "services", + "student", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "services", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "technician", + "services", + "admin.", + "entrepreneur", + "technician", + "blue-collar", + "blue-collar", + "technician", + "services", + "technician", + "self-employed", + "admin.", + "admin.", + "self-employed", + "admin.", + "retired", + "retired", + "admin.", + "management", + "technician", + "retired", + "retired", + "retired", + "technician", + "self-employed", + "housemaid", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "admin.", + "retired", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "retired", + "technician", + "student", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "technician", + "student", + "retired", + "admin.", + "blue-collar", + "technician", + "admin.", + "retired", + "blue-collar", + "retired", + "retired", + "retired", + "services", + "retired", + "management", + "management", + "blue-collar", + "blue-collar", + "retired", + "services", + "admin.", + "admin.", + "admin.", + "retired", + "self-employed", + "technician", + "admin.", + "blue-collar", + "retired", + "retired", + "services", + "technician", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "retired", + "services", + "technician", + "management", + "technician", + "management", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "student", + "admin.", + "admin.", + "admin.", + "management", + "services", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "retired", + "management", + "management", + "admin.", + "admin.", + "services", + "retired", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "housemaid", + "technician", + "housemaid", + "self-employed", + "student", + "unemployed", + "admin.", + "admin.", + "management", + "retired", + "admin.", + "management", + "management", + "student", + "retired", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "retired", + "blue-collar", + "admin.", + "services", + "technician", + "technician", + "services", + "admin.", + "entrepreneur", + "technician", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "admin.", + "self-employed", + "admin.", + "self-employed", + "admin.", + "management", + "management", + "unemployed", + "student", + "technician", + "services", + "technician", + "technician", + "blue-collar", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "student", + "unemployed", + "management", + "admin.", + "technician", + "admin.", + "entrepreneur", + "student", + "admin.", + "entrepreneur", + "retired", + "management", + "admin.", + "retired", + "retired", + "admin.", + "retired", + "self-employed", + "admin.", + "admin.", + "student", + "student", + "admin.", + "student", + "technician", + "entrepreneur", + "admin.", + "student", + "management", + "management", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "self-employed", + "unemployed", + "admin.", + "admin.", + "services", + "management", + "blue-collar", + "entrepreneur", + "retired", + "technician", + "student", + "student", + "technician", + "management", + "admin.", + "admin.", + "entrepreneur", + "services", + "admin.", + "student", + "retired", + "admin.", + "admin.", + "student", + "unemployed", + "retired", + "retired", + "management", + "entrepreneur", + "retired", + "technician", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "management", + "self-employed", + "admin.", + "admin.", + "retired", + "retired", + "services", + "admin.", + "blue-collar", + "services", + "student", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "services", + "retired", + "student", + "management", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "retired", + "management", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "services", + "services", + "admin.", + "services", + "management", + "admin.", + "blue-collar", + "unemployed", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "services", + "technician", + "technician", + "technician", + "admin.", + "management", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "housemaid", + "technician", + "blue-collar", + "blue-collar", + "housemaid", + "technician", + "admin.", + "unemployed", + "admin.", + "services", + "technician", + "housemaid", + "admin.", + "self-employed", + "admin.", + "self-employed", + "services", + "blue-collar", + "entrepreneur", + "services", + "retired", + "technician", + "technician", + "admin.", + "management", + "admin.", + "entrepreneur", + "management", + "technician", + "blue-collar", + "services", + "student", + "services", + "admin.", + "admin.", + "self-employed", + "unemployed", + "services", + "technician", + "admin.", + "technician", + "admin.", + "unemployed", + "self-employed", + "self-employed", + "management", + "unemployed", + "housemaid", + "admin.", + "technician", + "management", + "services", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "services", + "retired", + "blue-collar", + "retired", + "admin.", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "management", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "entrepreneur", + "services", + "blue-collar", + "blue-collar", + "management", + "services", + "blue-collar", + "retired", + "self-employed", + "management", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "services", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "self-employed", + "entrepreneur", + "entrepreneur", + "services", + "services", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "management", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "management", + "retired", + "management", + "blue-collar", + "services", + "management", + "entrepreneur", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "services", + "services", + "blue-collar", + "admin.", + "services", + "management", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "admin.", + "admin.", + "technician", + "blue-collar", + "self-employed", + "entrepreneur", + "entrepreneur", + "services", + "management", + "technician", + "management", + "services", + "management", + "management", + "management", + "management", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "management", + "services", + "services", + "technician", + "management", + "services", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "services", + "blue-collar", + "management", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "management", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "management", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "services", + "technician", + "technician", + "management", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "admin.", + "blue-collar", + "student", + "services", + "technician", + "services", + "housemaid", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "management", + "technician", + "blue-collar", + "blue-collar", + "student", + "blue-collar", + "student", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "admin.", + "unemployed", + "technician", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "management", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "services", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "services", + "retired", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "management", + "technician", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "services", + "admin.", + "self-employed", + "management", + "housemaid", + "technician", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "services", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "unemployed", + "retired", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "admin.", + "services", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "blue-collar", + "student", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "blue-collar", + "housemaid", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "services", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "management", + "management", + "technician", + "services", + "entrepreneur", + "admin.", + "management", + "management", + "blue-collar", + "entrepreneur", + "services", + "retired", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "unemployed", + "self-employed", + "entrepreneur", + "technician", + "services", + "admin.", + "services", + "technician", + "entrepreneur", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "student", + "blue-collar", + "services", + "technician", + "services", + "admin.", + "blue-collar", + "services", + "unemployed", + "admin.", + "technician", + "services", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "management", + "blue-collar", + "technician", + "blue-collar", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "blue-collar", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "services", + "technician", + "admin.", + "services", + "services", + "technician", + "self-employed", + "self-employed", + "admin.", + "admin.", + "admin.", + "services", + "self-employed", + "services", + "services", + "blue-collar", + "blue-collar", + "entrepreneur", + "entrepreneur", + "services", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "blue-collar", + "services", + "blue-collar", + "unemployed", + "blue-collar", + "retired", + "retired", + "retired", + "blue-collar", + "services", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "management", + "blue-collar", + "technician", + "technician", + "technician", + "blue-collar", + "services", + "management", + "unemployed", + "blue-collar", + "management", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "self-employed", + "admin.", + "student", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "services", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "services", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "management", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "technician", + "technician", + "services", + "technician", + "services", + "management", + "management", + "admin.", + "management", + "services", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "services", + "services", + "technician", + "admin.", + "student", + "management", + "self-employed", + "technician", + "blue-collar", + "self-employed", + "management", + "management", + "services", + "technician", + "services", + "management", + "management", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "admin.", + "unemployed", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "entrepreneur", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "management", + "management", + "management", + "blue-collar", + "technician", + "admin.", + "services", + "technician", + "entrepreneur", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "unemployed", + "admin.", + "technician", + "admin.", + "blue-collar", + "student", + "blue-collar", + "admin.", + "blue-collar", + "services", + "technician", + "services", + "admin.", + "blue-collar", + "management", + "blue-collar", + "services", + "services", + "services", + "blue-collar", + "blue-collar", + "services", + "services", + "blue-collar", + "unemployed", + "technician", + "blue-collar", + "management", + "technician", + "admin.", + "management", + "management", + "management", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "unemployed", + "services", + "admin.", + "blue-collar", + "blue-collar", + "services", + "services", + "technician", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "retired", + "technician", + "admin.", + "admin.", + "management", + "blue-collar", + "blue-collar", + "admin.", + "management", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "management", + "technician", + "services", + "technician", + "technician", + "student", + "student", + "services", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "management", + "services", + "admin.", + "blue-collar", + "housemaid", + "services", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "services", + "entrepreneur", + "self-employed", + "admin.", + "admin.", + "entrepreneur", + "retired", + "management", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "self-employed", + "blue-collar", + "services", + "admin.", + "management", + "entrepreneur", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "admin.", + "student", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "management", + "management", + "blue-collar", + "student", + "management", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "services", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "student", + "blue-collar", + "self-employed", + "management", + "blue-collar", + "management", + "blue-collar", + "services", + "management", + "management", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "services", + "services", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "management", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "services", + "technician", + "student", + "services", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "services", + "admin.", + "blue-collar", + "self-employed", + "services", + "services", + "admin.", + "technician", + "blue-collar", + "management", + "management", + "technician", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "management", + "management", + "admin.", + "services", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "services", + "blue-collar", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "technician", + "services", + "blue-collar", + "services", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "management", + "services", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "admin.", + "technician", + "admin.", + "entrepreneur", + "management", + "services", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "services", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "technician", + "self-employed", + "self-employed", + "blue-collar", + "housemaid", + "technician", + "unemployed", + "blue-collar", + "technician", + "management", + "entrepreneur", + "admin.", + "services", + "admin.", + "services", + "technician", + "blue-collar", + "services", + "services", + "blue-collar", + "management", + "technician", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "self-employed", + "admin.", + "student", + "self-employed", + "blue-collar", + "blue-collar", + "management", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "entrepreneur", + "entrepreneur", + "technician", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "housemaid", + "admin.", + "blue-collar", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "services", + "technician", + "services", + "services", + "admin.", + "services", + "management", + "services", + "blue-collar", + "technician", + "technician", + "management", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "services", + "admin.", + "services", + "admin.", + "admin.", + "services", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "technician", + "services", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "unemployed", + "blue-collar", + "services", + "unemployed", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "management", + "technician", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "services", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "management", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "technician", + "services", + "blue-collar", + "technician", + "management", + "admin.", + "technician", + "management", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "services", + "technician", + "technician", + "technician", + "technician", + "admin.", + "services", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "technician", + "admin.", + "technician", + "admin.", + "management", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "services", + "blue-collar", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "student", + "admin.", + "services", + "services", + "blue-collar", + "blue-collar", + "technician", + "entrepreneur", + "admin.", + "services", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "services", + "admin.", + "services", + "technician", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "services", + "management", + "admin.", + "services", + "services", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "services", + "self-employed", + "management", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "admin.", + "management", + "services", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "admin.", + "management", + "services", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "housemaid", + "housemaid", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "management", + "blue-collar", + "blue-collar", + "services", + "services", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "management", + "retired", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "services", + "student", + "blue-collar", + "admin.", + "blue-collar", + "services", + "services", + "services", + "admin.", + "services", + "blue-collar", + "services", + "self-employed", + "self-employed", + "technician", + "self-employed", + "blue-collar", + "self-employed", + "services", + "blue-collar", + "technician", + "admin.", + "services", + "admin.", + "unemployed", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "blue-collar", + "housemaid", + "technician", + "management", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "services", + "self-employed", + "admin.", + "unemployed", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "housemaid", + "services", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "services", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "entrepreneur", + "services", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "student", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "retired", + "services", + "management", + "services", + "blue-collar", + "services", + "services", + "technician", + "blue-collar", + "self-employed", + "admin.", + "technician", + "management", + "technician", + "technician", + "management", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "technician", + "services", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "technician", + "admin.", + "services", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "self-employed", + "blue-collar", + "blue-collar", + "student", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "services", + "technician", + "blue-collar", + "technician", + "student", + "admin.", + "admin.", + "student", + "blue-collar", + "management", + "blue-collar", + "technician", + "self-employed", + "services", + "management", + "services", + "blue-collar", + "blue-collar", + "housemaid", + "admin.", + "self-employed", + "services", + "admin.", + "self-employed", + "admin.", + "student", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "student", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "technician", + "self-employed", + "services", + "technician", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "retired", + "blue-collar", + "admin.", + "unemployed", + "admin.", + "services", + "admin.", + "services", + "admin.", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "technician", + "self-employed", + "unemployed", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "student", + "services", + "technician", + "management", + "admin.", + "admin.", + "management", + "housemaid", + "admin.", + "management", + "technician", + "services", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "services", + "admin.", + "management", + "blue-collar", + "services", + "entrepreneur", + "technician", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "self-employed", + "services", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "blue-collar", + "management", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "student", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "housemaid", + "blue-collar", + "services", + "services", + "blue-collar", + "admin.", + "services", + "blue-collar", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "retired", + "student", + "admin.", + "housemaid", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "services", + "unemployed", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "management", + "services", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "technician", + "management", + "technician", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "management", + "management", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "management", + "services", + "services", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "technician", + "blue-collar", + "services", + "housemaid", + "admin.", + "entrepreneur", + "blue-collar", + "housemaid", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "entrepreneur", + "services", + "blue-collar", + "technician", + "management", + "technician", + "technician", + "blue-collar", + "services", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "retired", + "blue-collar", + "services", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "student", + "blue-collar", + "services", + "unemployed", + "admin.", + "blue-collar", + "self-employed", + "technician", + "self-employed", + "services", + "blue-collar", + "admin.", + "technician", + "management", + "retired", + "student", + "technician", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "student", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "housemaid", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "management", + "services", + "blue-collar", + "technician", + "self-employed", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "student", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "admin.", + "student", + "blue-collar", + "admin.", + "admin.", + "technician", + "services", + "technician", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "services", + "technician", + "blue-collar", + "services", + "blue-collar", + "management", + "services", + "self-employed", + "management", + "services", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "management", + "entrepreneur", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "management", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "self-employed", + "self-employed", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "self-employed", + "admin.", + "admin.", + "management", + "admin.", + "technician", + "housemaid", + "admin.", + "management", + "services", + "blue-collar", + "services", + "services", + "services", + "technician", + "services", + "blue-collar", + "student", + "blue-collar", + "services", + "admin.", + "technician", + "entrepreneur", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "services", + "entrepreneur", + "student", + "self-employed", + "services", + "admin.", + "technician", + "blue-collar", + "services", + "services", + "technician", + "entrepreneur", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "services", + "student", + "services", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "technician", + "admin.", + "student", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "blue-collar", + "management", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "blue-collar", + "services", + "student", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "services", + "entrepreneur", + "admin.", + "student", + "services", + "management", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "self-employed", + "technician", + "services", + "services", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "services", + "services", + "technician", + "services", + "technician", + "admin.", + "management", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "self-employed", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "management", + "entrepreneur", + "services", + "admin.", + "student", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "services", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "student", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "services", + "blue-collar", + "technician", + "services", + "admin.", + "student", + "blue-collar", + "blue-collar", + "self-employed", + "student", + "admin.", + "services", + "blue-collar", + "management", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "management", + "technician", + "entrepreneur", + "services", + "blue-collar", + "unemployed", + "blue-collar", + "admin.", + "services", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "admin.", + "services", + "admin.", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "services", + "management", + "self-employed", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "retired", + "services", + "technician", + "technician", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "admin.", + "technician", + "blue-collar", + "technician", + "blue-collar", + "technician", + "blue-collar", + "management", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "technician", + "services", + "admin.", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "services", + "blue-collar", + "services", + "entrepreneur", + "technician", + "admin.", + "student", + "retired", + "management", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "technician", + "services", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "self-employed", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "retired", + "entrepreneur", + "admin.", + "entrepreneur", + "technician", + "admin.", + "technician", + "entrepreneur", + "services", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "management", + "technician", + "management", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "services", + "retired", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "services", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "services", + "technician", + "technician", + "blue-collar", + "services", + "services", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "services", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "unemployed", + "self-employed", + "technician", + "admin.", + "blue-collar", + "management", + "services", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "retired", + "management", + "technician", + "blue-collar", + "services", + "services", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "technician", + "services", + "admin.", + "technician", + "management", + "admin.", + "services", + "services", + "services", + "admin.", + "services", + "services", + "services", + "unemployed", + "management", + "blue-collar", + "entrepreneur", + "admin.", + "unemployed", + "management", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "entrepreneur", + "retired", + "retired", + "services", + "services", + "admin.", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "services", + "self-employed", + "self-employed", + "management", + "technician", + "admin.", + "technician", + "services", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "services", + "management", + "services", + "management", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "admin.", + "admin.", + "blue-collar", + "services", + "entrepreneur", + "admin.", + "management", + "services", + "services", + "blue-collar", + "admin.", + "technician", + "admin.", + "retired", + "management", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "technician", + "services", + "services", + "blue-collar", + "unemployed", + "admin.", + "services", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "services", + "services", + "management", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "services", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "entrepreneur", + "retired", + "technician", + "self-employed", + "blue-collar", + "technician", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "services", + "self-employed", + "management", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "admin.", + "technician", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "blue-collar", + "student", + "technician", + "technician", + "admin.", + "services", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "self-employed", + "management", + "entrepreneur", + "services", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "management", + "services", + "technician", + "admin.", + "services", + "admin.", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "technician", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "services", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "student", + "unemployed", + "housemaid", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "management", + "technician", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "services", + "student", + "services", + "housemaid", + "services", + "retired", + "services", + "technician", + "housemaid", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "student", + "admin.", + "admin.", + "services", + "technician", + "technician", + "student", + "admin.", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "management", + "blue-collar", + "services", + "management", + "services", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "technician", + "student", + "blue-collar", + "unemployed", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "management", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "management", + "entrepreneur", + "management", + "blue-collar", + "student", + "services", + "unemployed", + "technician", + "services", + "technician", + "blue-collar", + "services", + "admin.", + "self-employed", + "blue-collar", + "technician", + "admin.", + "admin.", + "services", + "self-employed", + "services", + "technician", + "unemployed", + "unemployed", + "blue-collar", + "self-employed", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "technician", + "management", + "management", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "services", + "management", + "management", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "technician", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "unemployed", + "retired", + "blue-collar", + "admin.", + "admin.", + "student", + "management", + "services", + "management", + "management", + "management", + "admin.", + "technician", + "technician", + "blue-collar", + "management", + "housemaid", + "retired", + "student", + "technician", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "student", + "services", + "admin.", + "self-employed", + "admin.", + "services", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "entrepreneur", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "technician", + "student", + "self-employed", + "services", + "admin.", + "blue-collar", + "services", + "management", + "blue-collar", + "student", + "technician", + "management", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "self-employed", + "technician", + "unemployed", + "services", + "admin.", + "technician", + "technician", + "services", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "services", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "student", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "management", + "student", + "technician", + "admin.", + "unemployed", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "unemployed", + "technician", + "management", + "services", + "technician", + "entrepreneur", + "admin.", + "admin.", + "technician", + "unemployed", + "admin.", + "blue-collar", + "technician", + "entrepreneur", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "management", + "management", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "housemaid", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "student", + "technician", + "technician", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "unemployed", + "management", + "admin.", + "blue-collar", + "technician", + "self-employed", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "self-employed", + "blue-collar", + "housemaid", + "unemployed", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "admin.", + "admin.", + "entrepreneur", + "retired", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "self-employed", + "unemployed", + "student", + "self-employed", + "self-employed", + "unemployed", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "management", + "retired", + "self-employed", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "self-employed", + "services", + "admin.", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "self-employed", + "management", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "self-employed", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "unemployed", + "entrepreneur", + "technician", + "self-employed", + "management", + "admin.", + "blue-collar", + "admin.", + "retired", + "student", + "admin.", + "admin.", + "services", + "entrepreneur", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "student", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "services", + "services", + "services", + "admin.", + "services", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "services", + "housemaid", + "blue-collar", + "blue-collar", + "admin.", + "management", + "technician", + "admin.", + "services", + "technician", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "self-employed", + "student", + "self-employed", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "technician", + "management", + "admin.", + "student", + "unemployed", + "blue-collar", + "blue-collar", + "management", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "housemaid", + "management", + "student", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "technician", + "student", + "admin.", + "self-employed", + "admin.", + "technician", + "blue-collar", + "student", + "admin.", + "self-employed", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "retired", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "management", + "blue-collar", + "admin.", + "admin.", + "technician", + "entrepreneur", + "student", + "student", + "student", + "management", + "housemaid", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "student", + "unemployed", + "management", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "services", + "admin.", + "entrepreneur", + "technician", + "technician", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "student", + "admin.", + "technician", + "admin.", + "management", + "services", + "technician", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "student", + "services", + "housemaid", + "technician", + "management", + "management", + "management", + "housemaid", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "retired", + "technician", + "management", + "retired", + "management", + "services", + "self-employed", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "services", + "self-employed", + "retired", + "admin.", + "admin.", + "management", + "technician", + "technician", + "admin.", + "retired", + "admin.", + "services", + "admin.", + "management", + "technician", + "retired", + "unemployed", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "services", + "student", + "student", + "self-employed", + "services", + "services", + "self-employed", + "management", + "unemployed", + "retired", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "management", + "unemployed", + "unemployed", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "self-employed", + "admin.", + "admin.", + "management", + "services", + "self-employed", + "admin.", + "admin.", + "management", + "admin.", + "management", + "technician", + "entrepreneur", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "technician", + "retired", + "retired", + "technician", + "management", + "retired", + "technician", + "admin.", + "retired", + "retired", + "blue-collar", + "admin.", + "student", + "services", + "technician", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "admin.", + "retired", + "admin.", + "student", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "student", + "technician", + "technician", + "management", + "management", + "admin.", + "admin.", + "services", + "management", + "management", + "technician", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "entrepreneur", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "management", + "student", + "management", + "unemployed", + "housemaid", + "admin.", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "student", + "admin.", + "technician", + "blue-collar", + "student", + "technician", + "self-employed", + "technician", + "technician", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "management", + "blue-collar", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "student", + "entrepreneur", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "student", + "admin.", + "self-employed", + "management", + "management", + "services", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "management", + "services", + "student", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "management", + "services", + "self-employed", + "technician", + "management", + "self-employed", + "self-employed", + "blue-collar", + "retired", + "entrepreneur", + "management", + "admin.", + "admin.", + "retired", + "management", + "unemployed", + "technician", + "admin.", + "retired", + "entrepreneur", + "admin.", + "services", + "services", + "admin.", + "admin.", + "services", + "admin.", + "housemaid", + "technician", + "self-employed", + "self-employed", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "unemployed", + "services", + "admin.", + "admin.", + "housemaid", + "admin.", + "blue-collar", + "management", + "self-employed", + "admin.", + "unemployed", + "admin.", + "unemployed", + "admin.", + "retired", + "unemployed", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "self-employed", + "self-employed", + "admin.", + "services", + "admin.", + "self-employed", + "self-employed", + "self-employed", + "entrepreneur", + "technician", + "technician", + "technician", + "services", + "services", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "blue-collar", + "housemaid", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "self-employed", + "admin.", + "technician", + "technician", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "blue-collar", + "retired", + "management", + "admin.", + "housemaid", + "admin.", + "admin.", + "retired", + "retired", + "technician", + "technician", + "retired", + "housemaid", + "technician", + "self-employed", + "unemployed", + "technician", + "admin.", + "admin.", + "retired", + "retired", + "technician", + "technician", + "technician", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "services", + "student", + "unemployed", + "unemployed", + "admin.", + "technician", + "services", + "blue-collar", + "technician", + "technician", + "student", + "admin.", + "technician", + "management", + "retired", + "technician", + "admin.", + "student", + "admin.", + "technician", + "student", + "admin.", + "student", + "technician", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "management", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "student", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "technician", + "student", + "admin.", + "admin.", + "admin.", + "management", + "unemployed", + "admin.", + "services", + "self-employed", + "management", + "admin.", + "admin.", + "unemployed", + "technician", + "management", + "student", + "student", + "retired", + "retired", + "technician", + "student", + "admin.", + "management", + "services", + "management", + "retired", + "unemployed", + "unemployed", + "services", + "entrepreneur", + "blue-collar", + "admin.", + "admin.", + "retired", + "technician", + "management", + "self-employed", + "housemaid", + "technician", + "blue-collar", + "retired", + "admin.", + "technician", + "retired", + "technician", + "technician", + "retired", + "retired", + "unemployed", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "housemaid", + "unemployed", + "student", + "unemployed", + "technician", + "retired", + "admin.", + "retired", + "student", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "self-employed", + "admin.", + "retired", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "student", + "retired", + "admin.", + "student", + "blue-collar", + "admin.", + "self-employed", + "self-employed", + "admin.", + "blue-collar", + "retired", + "admin.", + "admin.", + "student", + "blue-collar", + "student", + "student", + "technician", + "management", + "management", + "retired", + "entrepreneur", + "blue-collar", + "technician", + "technician", + "services", + "housemaid", + "admin.", + "retired", + "technician", + "management", + "admin.", + "management", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "self-employed", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "technician", + "management", + "unemployed", + "management", + "management", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "admin.", + "student", + "admin.", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "services", + "admin.", + "unemployed", + "admin.", + "housemaid", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "management", + "technician", + "technician", + "retired", + "retired", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "retired", + "management", + "admin.", + "housemaid", + "retired", + "admin.", + "housemaid", + "admin.", + "unemployed", + "management", + "admin.", + "student", + "self-employed", + "student", + "retired", + "technician", + "management", + "services", + "services", + "self-employed", + "technician", + "unemployed", + "technician", + "admin.", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "self-employed", + "admin.", + "admin.", + "student", + "unemployed", + "unemployed", + "unemployed", + "unemployed", + "management", + "retired", + "technician", + "student", + "student", + "retired", + "technician", + "admin.", + "unemployed", + "admin.", + "student", + "management", + "retired", + "retired", + "unemployed", + "management", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "unemployed", + "unemployed", + "student", + "student", + "student", + "admin.", + "student", + "blue-collar", + "admin.", + "services", + "student", + "admin.", + "retired", + "entrepreneur", + "technician", + "retired", + "retired", + "unemployed", + "technician", + "student", + "management", + "student", + "retired", + "retired", + "admin.", + "technician", + "management", + "retired", + "admin.", + "technician", + "student", + "student", + "unemployed", + "retired", + "technician", + "admin.", + "technician", + "technician", + "management", + "blue-collar", + "services", + "technician", + "student", + "self-employed", + "admin.", + "management", + "entrepreneur", + "unemployed", + "housemaid", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "management", + "management", + "retired", + "admin.", + "admin.", + "services", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "retired", + "technician", + "housemaid", + "student", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "admin.", + "technician", + "student", + "admin.", + "retired", + "retired", + "retired", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "technician", + "student", + "student", + "student", + "student", + "management", + "admin.", + "retired", + "admin.", + "self-employed", + "admin.", + "retired", + "housemaid", + "retired", + "retired", + "admin.", + "retired", + "self-employed", + "retired", + "retired", + "technician", + "admin.", + "retired", + "technician", + "services", + "retired", + "admin.", + "admin.", + "technician", + "housemaid", + "retired", + "admin.", + "admin.", + "retired", + "entrepreneur", + "technician", + "retired", + "admin.", + "retired", + "retired", + "housemaid", + "retired", + "self-employed", + "retired", + "retired", + "self-employed", + "admin.", + "admin.", + "services", + "student", + "student", + "student", + "technician", + "student", + "admin.", + "technician", + "student", + "technician", + "technician", + "technician", + "self-employed", + "technician", + "retired", + "admin.", + "technician", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "self-employed", + "retired", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "entrepreneur", + "technician", + "management", + "admin.", + "admin.", + "management", + "management", + "blue-collar", + "technician", + "entrepreneur", + "student", + "admin.", + "unemployed", + "unemployed", + "admin.", + "management", + "technician", + "retired", + "admin.", + "technician", + "technician", + "retired", + "services", + "admin.", + "retired", + "technician", + "management", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "retired", + "self-employed", + "services", + "blue-collar", + "admin.", + "retired", + "retired", + "retired", + "self-employed", + "services", + "retired", + "retired", + "retired", + "retired", + "self-employed", + "retired", + "admin.", + "housemaid", + "student", + "retired", + "entrepreneur", + "admin.", + "technician", + "retired", + "management", + "retired", + "housemaid", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "retired", + "unemployed", + "self-employed", + "admin.", + "technician", + "unemployed", + "blue-collar", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "unemployed", + "unemployed", + "technician", + "retired", + "unemployed", + "technician", + "blue-collar", + "retired", + "self-employed", + "admin.", + "unemployed", + "admin.", + "technician", + "technician", + "retired", + "retired", + "technician", + "blue-collar", + "admin.", + "management", + "retired", + "management", + "retired", + "retired", + "retired", + "technician", + "admin.", + "blue-collar", + "retired", + "retired", + "services", + "services", + "unemployed", + "housemaid", + "housemaid", + "housemaid", + "technician", + "unemployed", + "technician", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "admin.", + "management", + "retired", + "admin.", + "technician", + "admin.", + "technician", + "unemployed", + "retired", + "unemployed", + "retired", + "blue-collar", + "retired", + "housemaid", + "management", + "management", + "retired", + "retired", + "retired", + "retired", + "technician", + "admin.", + "admin.", + "retired", + "unemployed", + "management", + "technician", + "admin.", + "management", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "technician", + "unemployed", + "technician", + "management", + "retired", + "unemployed", + "blue-collar", + "retired", + "technician", + "technician", + "admin.", + "retired", + "retired", + "retired", + "blue-collar", + "unemployed", + "unemployed", + "technician", + "technician", + "technician", + "technician", + "admin.", + "student", + "admin.", + "admin.", + "retired", + "blue-collar", + "retired", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "entrepreneur", + "technician", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "student", + "technician", + "self-employed", + "admin.", + "admin.", + "retired", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "admin.", + "retired", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "self-employed", + "technician", + "services", + "services", + "admin.", + "admin.", + "management", + "blue-collar", + "admin.", + "management", + "admin.", + "management", + "student", + "retired", + "retired", + "admin.", + "admin.", + "entrepreneur", + "retired", + "entrepreneur", + "services", + "services", + "unemployed", + "student", + "management", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "entrepreneur", + "housemaid", + "retired", + "housemaid", + "entrepreneur", + "housemaid", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "entrepreneur", + "retired", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "self-employed", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "management", + "admin.", + "admin.", + "unemployed", + "admin.", + "management", + "unemployed", + "admin.", + "technician", + "retired", + "blue-collar", + "retired", + "student", + "student", + "technician", + "admin.", + "admin.", + "technician", + "housemaid", + "blue-collar", + "services", + "management", + "admin.", + "retired", + "housemaid", + "management", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "retired", + "admin.", + "blue-collar", + "technician", + "admin.", + "management", + "retired", + "technician", + "admin.", + "admin.", + "technician", + "retired", + "retired", + "admin.", + "retired", + "self-employed", + "retired", + "technician", + "retired", + "technician", + "retired", + "technician", + "retired", + "admin.", + "retired", + "admin.", + "blue-collar", + "retired", + "admin.", + "retired", + "retired", + "student", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "management", + "student", + "technician", + "housemaid", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "unemployed", + "admin.", + "admin.", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "management", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "management", + "admin.", + "retired", + "technician", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "housemaid", + "admin.", + "technician", + "retired", + "student", + "management", + "student", + "management", + "admin.", + "services", + "retired", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "admin.", + "student", + "services", + "admin.", + "technician", + "self-employed", + "retired", + "admin.", + "management", + "admin.", + "unemployed", + "retired", + "blue-collar", + "blue-collar", + "housemaid", + "student", + "blue-collar", + "admin.", + "unemployed", + "housemaid", + "admin.", + "technician", + "student", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "student", + "technician", + "admin.", + "admin.", + "housemaid", + "admin.", + "management", + "entrepreneur", + "entrepreneur", + "entrepreneur", + "self-employed", + "admin.", + "admin.", + "management", + "admin.", + "self-employed", + "services", + "management", + "technician", + "retired", + "technician", + "blue-collar", + "admin.", + "management", + "technician", + "technician", + "admin.", + "management", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "retired", + "unemployed", + "management", + "management", + "management", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "management", + "retired", + "admin.", + "self-employed", + "self-employed", + "admin.", + "retired", + "retired", + "student", + "management", + "admin.", + "entrepreneur", + "retired", + "admin.", + "management", + "retired", + "retired", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "retired", + "blue-collar", + "retired", + "admin.", + "management", + "blue-collar", + "admin.", + "student", + "management", + "admin.", + "retired", + "admin.", + "admin.", + "retired", + "admin.", + "housemaid", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "unemployed", + "student", + "management", + "student", + "student", + "retired", + "unemployed", + "housemaid", + "housemaid", + "admin.", + "admin.", + "technician", + "student", + "technician", + "retired", + "student", + "admin.", + "retired", + "housemaid", + "management", + "retired", + "student", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "unemployed", + "student", + "student", + "blue-collar", + "retired", + "blue-collar", + "unemployed", + "admin.", + "retired", + "self-employed", + "admin.", + "student", + "retired", + "admin.", + "management", + "admin.", + "technician", + "admin.", + "student", + "admin.", + "management", + "management", + "technician", + "admin.", + "technician", + "technician", + "technician", + "retired", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "retired", + "admin.", + "student", + "retired", + "retired", + "technician", + "technician", + "student", + "management", + "technician", + "admin.", + "services", + "management", + "services", + "admin.", + "technician", + "self-employed", + "self-employed", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "services", + "self-employed", + "admin.", + "admin.", + "retired", + "retired", + "technician", + "management", + "unemployed", + "technician", + "technician", + "admin.", + "admin.", + "unemployed", + "unemployed", + "technician", + "retired", + "admin.", + "technician", + "services", + "retired", + "self-employed", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "retired", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "services", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "services", + "services", + "admin.", + "services", + "services", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "retired", + "technician", + "retired", + "technician", + "management", + "management", + "retired", + "management", + "admin.", + "admin.", + "housemaid", + "entrepreneur", + "housemaid", + "admin.", + "housemaid", + "admin.", + "housemaid", + "technician", + "admin.", + "management", + "admin.", + "services", + "admin.", + "services", + "retired", + "technician", + "admin.", + "admin.", + "retired", + "retired", + "retired", + "admin.", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "housemaid", + "admin.", + "retired", + "admin.", + "technician", + "admin.", + "student", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "technician", + "blue-collar", + "student", + "student", + "student", + "admin.", + "admin.", + "retired", + "admin.", + "unemployed", + "technician", + "management", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "retired", + "retired", + "student", + "student", + "housemaid", + "student", + "student", + "admin.", + "blue-collar", + "student", + "admin.", + "management", + "technician", + "admin.", + "student", + "retired", + "retired", + "technician", + "retired", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "management", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "unemployed", + "admin.", + "admin.", + "services", + "management", + "technician", + "retired", + "retired", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "retired", + "unemployed", + "admin.", + "unemployed", + "technician", + "retired", + "unemployed", + "retired", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "services", + "retired", + "technician", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "services", + "self-employed", + "blue-collar", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "student", + "unemployed", + "entrepreneur", + "unemployed", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "services", + "admin.", + "services", + "services", + "admin.", + "student", + "technician", + "unemployed", + "management", + "entrepreneur", + "blue-collar", + "services", + "technician", + "blue-collar", + "student", + "student", + "admin.", + "admin.", + "retired", + "entrepreneur", + "admin.", + "technician", + "technician", + "student", + "student", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "blue-collar", + "student", + "management", + "student", + "retired", + "admin.", + "management", + "self-employed", + "unemployed", + "unemployed", + "admin.", + "technician", + "retired", + "services", + "management", + "admin.", + "unemployed", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "housemaid", + "unemployed", + "unemployed", + "retired", + "management", + "services", + "technician", + "blue-collar", + "management", + "self-employed", + "self-employed", + "retired", + "blue-collar", + "unemployed", + "student", + "admin.", + "entrepreneur", + "management", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "admin.", + "student", + "entrepreneur", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "retired", + "retired", + "admin.", + "entrepreneur", + "blue-collar", + "unemployed", + "unemployed", + "blue-collar", + "retired", + "technician", + "blue-collar", + "student", + "blue-collar", + "student", + "admin.", + "admin.", + "services", + "admin.", + "student", + "retired", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "student", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "technician", + "retired", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "housemaid", + "admin.", + "retired", + "technician", + "services", + "housemaid", + "technician", + "blue-collar", + "unemployed", + "admin.", + "technician", + "admin.", + "retired", + "student", + "retired", + "technician", + "self-employed", + "services", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "student", + "retired", + "retired", + "admin.", + "retired", + "admin.", + "management", + "admin.", + "unemployed", + "management", + "admin.", + "admin.", + "retired", + "unemployed", + "retired", + "services", + "admin.", + "services", + "student", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "student", + "admin.", + "self-employed", + "services", + "technician", + "admin.", + "services", + "admin.", + "retired", + "student", + "student", + "admin.", + "admin.", + "student", + "admin.", + "student", + "student", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "student", + "retired", + "retired", + "admin.", + "housemaid", + "entrepreneur", + "technician", + "admin.", + "technician", + "services", + "self-employed", + "admin.", + "management", + "management", + "blue-collar", + "housemaid", + "unemployed", + "technician", + "admin.", + "management", + "technician", + "retired", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "management", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "management", + "retired", + "technician", + "technician", + "technician", + "admin.", + "entrepreneur", + "student", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "self-employed", + "admin.", + "retired", + "unemployed", + "student", + "student", + "technician", + "entrepreneur", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "retired", + "admin.", + "retired", + "retired", + "admin.", + "self-employed", + "admin.", + "technician", + "retired", + "management", + "services", + "retired", + "blue-collar", + "admin.", + "management", + "services", + "technician", + "admin.", + "technician", + "retired", + "admin.", + "management", + "retired", + "admin.", + "services", + "unemployed", + "technician", + "technician", + "retired", + "admin.", + "student", + "unemployed", + "blue-collar", + "entrepreneur", + "retired", + "entrepreneur", + "services", + "retired", + "unemployed", + "services", + "admin.", + "retired", + "services", + "technician", + "blue-collar", + "blue-collar", + "retired", + "services", + "admin.", + "self-employed", + "admin.", + "entrepreneur", + "unemployed", + "management", + "management", + "admin.", + "retired", + "retired", + "technician", + "admin.", + "technician", + "services", + "admin.", + "services", + "technician", + "management", + "retired", + "technician", + "student", + "services", + "blue-collar", + "services", + "admin.", + "housemaid", + "technician", + "management", + "technician", + "unemployed", + "management", + "student", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "housemaid", + "unemployed", + "management", + "management", + "blue-collar", + "admin.", + "self-employed", + "technician", + "admin.", + "self-employed", + "services", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "services", + "technician", + "admin.", + "management", + "admin.", + "student", + "technician", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "student", + "student", + "student", + "admin.", + "admin.", + "student", + "student", + "student", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "management", + "unemployed", + "admin.", + "admin.", + "retired", + "student", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "retired", + "unemployed", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "housemaid", + "services", + "housemaid", + "admin.", + "admin.", + "services", + "services", + "admin.", + "services", + "blue-collar", + "retired", + "services", + "services", + "technician", + "unemployed", + "retired", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "student", + "admin.", + "admin.", + "technician", + "housemaid", + "student", + "technician", + "retired", + "admin.", + "management", + "self-employed", + "retired", + "technician", + "self-employed", + "admin.", + "admin.", + "self-employed", + "admin.", + "self-employed", + "admin.", + "retired", + "retired", + "student", + "retired", + "student", + "admin.", + "technician", + "retired", + "retired", + "services", + "retired", + "technician", + "student", + "retired", + "services", + "student", + "technician", + "housemaid", + "admin.", + "student", + "retired", + "unemployed", + "self-employed", + "unemployed", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "student", + "student", + "technician", + "student", + "retired", + "services", + "admin.", + "services", + "technician", + "technician", + "admin.", + "admin.", + "services", + "admin.", + "retired", + "student", + "admin.", + "blue-collar", + "admin.", + "services", + "student", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "student", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "self-employed", + "unemployed", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "blue-collar", + "management", + "technician", + "housemaid", + "housemaid", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "services", + "management", + "housemaid", + "retired", + "retired", + "admin.", + "unemployed", + "blue-collar", + "retired", + "retired" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
job=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "technician", + "blue-collar", + "housemaid", + "services", + "technician", + "management", + "blue-collar", + "admin.", + "entrepreneur", + "blue-collar", + "admin.", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "technician", + "services", + "entrepreneur", + "services", + "blue-collar", + "blue-collar", + "services", + "admin.", + "management", + "services", + "admin.", + "management", + "management", + "admin.", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "services", + "entrepreneur", + "technician", + "admin.", + "unemployed", + "blue-collar", + "student", + "blue-collar", + "blue-collar", + "technician", + "housemaid", + "services", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "student", + "services", + "blue-collar", + "technician", + "blue-collar", + "services", + "services", + "blue-collar", + "services", + "technician", + "services", + "blue-collar", + "services", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "technician", + "blue-collar", + "retired", + "technician", + "admin.", + "services", + "blue-collar", + "technician", + "services", + "blue-collar", + "admin.", + "student", + "admin.", + "entrepreneur", + "management", + "self-employed", + "entrepreneur", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "management", + "management", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "admin.", + "management", + "management", + "retired", + "admin.", + "technician", + "services", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "housemaid", + "services", + "blue-collar", + "admin.", + "technician", + "services", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "services", + "admin.", + "admin.", + "unemployed", + "services", + "admin.", + "unemployed", + "management", + "services", + "services", + "blue-collar", + "blue-collar", + "technician", + "retired", + "technician", + "blue-collar", + "blue-collar", + "management", + "management", + "blue-collar", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "retired", + "student", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "housemaid", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "entrepreneur", + "technician", + "services", + "blue-collar", + "services", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "blue-collar", + "services", + "admin.", + "student", + "services", + "admin.", + "technician", + "technician", + "entrepreneur", + "technician", + "admin.", + "management", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "management", + "technician", + "self-employed", + "entrepreneur", + "management", + "blue-collar", + "blue-collar", + "entrepreneur", + "management", + "blue-collar", + "entrepreneur", + "self-employed", + "blue-collar", + "technician", + "technician", + "blue-collar", + "management", + "blue-collar", + "management", + "technician", + "retired", + "blue-collar", + "management", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "technician", + "self-employed", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "entrepreneur", + "admin.", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "retired", + "services", + "self-employed", + "technician", + "services", + "blue-collar", + "management", + "admin.", + "management", + "admin.", + "entrepreneur", + "management", + "services", + "retired", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "services", + "admin.", + "management", + "technician", + "management", + "blue-collar", + "technician", + "management", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "admin.", + "services", + "services", + "self-employed", + "admin.", + "technician", + "management", + "technician", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "services", + "technician", + "blue-collar", + "technician", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "technician", + "services", + "technician", + "services", + "services", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "self-employed", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "management", + "admin.", + "entrepreneur", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "services", + "technician", + "management", + "services", + "technician", + "retired", + "self-employed", + "technician", + "entrepreneur", + "services", + "housemaid", + "blue-collar", + "admin.", + "services", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "retired", + "housemaid", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "services", + "services", + "blue-collar", + "unemployed", + "management", + "housemaid", + "admin.", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "admin.", + "services", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "services", + "services", + "services", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "services", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "admin.", + "admin.", + "blue-collar", + "admin.", + "management", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "technician", + "entrepreneur", + "self-employed", + "self-employed", + "services", + "student", + "entrepreneur", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "technician", + "admin.", + "services", + "technician", + "retired", + "services", + "admin.", + "retired", + "technician", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "management", + "technician", + "retired", + "admin.", + "management", + "services", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "retired", + "admin.", + "retired", + "technician", + "blue-collar", + "services", + "services", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "self-employed", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "self-employed", + "services", + "admin.", + "management", + "services", + "management", + "blue-collar", + "entrepreneur", + "services", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "services", + "technician", + "unemployed", + "admin.", + "services", + "blue-collar", + "student", + "technician", + "management", + "entrepreneur", + "entrepreneur", + "admin.", + "admin.", + "technician", + "services", + "technician", + "technician", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "management", + "technician", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "management", + "self-employed", + "admin.", + "blue-collar", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "blue-collar", + "technician", + "technician", + "self-employed", + "technician", + "self-employed", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "housemaid", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "management", + "technician", + "technician", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "management", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "services", + "admin.", + "management", + "admin.", + "management", + "management", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "services", + "housemaid", + "self-employed", + "self-employed", + "admin.", + "admin.", + "services", + "technician", + "technician", + "technician", + "technician", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "services", + "management", + "blue-collar", + "admin.", + "technician", + "admin.", + "housemaid", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "retired", + "services", + "admin.", + "management", + "blue-collar", + "technician", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "admin.", + "self-employed", + "management", + "blue-collar", + "management", + "management", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "management", + "admin.", + "admin.", + "retired", + "retired", + "retired", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "technician", + "technician", + "technician", + "technician", + "technician", + "housemaid", + "admin.", + "admin.", + "admin.", + "blue-collar", + "entrepreneur", + "self-employed", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "housemaid", + "admin.", + "services", + "student", + "technician", + "technician", + "self-employed", + "admin.", + "admin.", + "services", + "technician", + "blue-collar", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "technician", + "admin.", + "blue-collar", + "self-employed", + "technician", + "technician", + "blue-collar", + "entrepreneur", + "management", + "technician", + "blue-collar", + "entrepreneur", + "management", + "management", + "self-employed", + "admin.", + "technician", + "blue-collar", + "admin.", + "retired", + "unemployed", + "services", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "retired", + "entrepreneur", + "technician", + "management", + "entrepreneur", + "technician", + "unemployed", + "admin.", + "management", + "entrepreneur", + "technician", + "self-employed", + "housemaid", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "technician", + "admin.", + "management", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "housemaid", + "housemaid", + "blue-collar", + "management", + "services", + "entrepreneur", + "services", + "self-employed", + "technician", + "admin.", + "admin.", + "management", + "entrepreneur", + "entrepreneur", + "management", + "blue-collar", + "services", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "services", + "management", + "admin.", + "management", + "entrepreneur", + "technician", + "entrepreneur", + "technician", + "management", + "retired", + "blue-collar", + "student", + "technician", + "technician", + "management", + "entrepreneur", + "technician", + "unemployed", + "management", + "management", + "admin.", + "services", + "blue-collar", + "admin.", + "technician", + "entrepreneur", + "admin.", + "admin.", + "blue-collar", + "retired", + "management", + "unemployed", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "management", + "management", + "self-employed", + "blue-collar", + "blue-collar", + "housemaid", + "services", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "services", + "blue-collar", + "self-employed", + "management", + "self-employed", + "admin.", + "technician", + "services", + "technician", + "admin.", + "admin.", + "technician", + "management", + "technician", + "technician", + "management", + "blue-collar", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "housemaid", + "admin.", + "admin.", + "management", + "retired", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "student", + "admin.", + "admin.", + "management", + "admin.", + "blue-collar", + "admin.", + "technician", + "student", + "retired", + "admin.", + "student", + "admin.", + "technician", + "management", + "admin.", + "student", + "student", + "admin.", + "blue-collar", + "student", + "services", + "services", + "technician", + "management", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "management", + "technician", + "technician", + "management", + "blue-collar", + "management", + "technician", + "admin.", + "technician", + "admin.", + "management", + "retired", + "self-employed", + "retired", + "self-employed", + "retired", + "retired", + "retired", + "retired", + "retired", + "retired", + "student", + "management", + "retired", + "technician", + "management", + "student", + "student", + "self-employed", + "self-employed", + "technician", + "admin.", + "student", + "unemployed", + "admin.", + "technician", + "admin.", + "blue-collar", + "management", + "admin.", + "retired", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "student", + "student", + "retired", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "retired", + "technician", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "management", + "blue-collar", + "retired", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "entrepreneur", + "blue-collar", + "admin.", + "retired", + "housemaid", + "technician", + "blue-collar", + "retired", + "admin.", + "admin.", + "technician", + "student", + "blue-collar", + "services", + "student", + "student", + "admin.", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "services", + "admin.", + "unemployed", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "technician", + "self-employed", + "self-employed", + "self-employed", + "blue-collar", + "self-employed", + "self-employed", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "unemployed", + "services", + "retired", + "services", + "services", + "admin.", + "self-employed", + "unemployed", + "unemployed", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "technician", + "admin.", + "retired", + "retired", + "unemployed", + "admin.", + "retired", + "unemployed", + "retired", + "management", + "student", + "admin.", + "retired", + "management", + "unemployed", + "blue-collar", + "technician", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "student", + "admin.", + "retired", + "services", + "management", + "entrepreneur", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "services", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "services", + "student", + "admin.", + "management", + "technician", + "technician", + "retired", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "technician", + "management", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "housemaid", + "services", + "services", + "services", + "self-employed", + "self-employed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "management", + "retired", + "admin.", + "entrepreneur", + "blue-collar", + "services", + "blue-collar", + "technician", + "retired", + "housemaid", + "retired", + "entrepreneur", + "housemaid", + "admin.", + "technician", + "self-employed", + "self-employed", + "self-employed", + "management", + "blue-collar", + "admin.", + "technician", + "admin.", + "services", + "admin.", + "admin.", + "retired", + "admin.", + "blue-collar", + "admin.", + "retired", + "technician", + "self-employed", + "retired", + "retired", + "technician", + "retired", + "housemaid", + "management", + "management", + "admin.", + "retired", + "admin.", + "technician", + "housemaid", + "retired", + "retired", + "services", + "admin.", + "unemployed", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "technician", + "retired", + "retired", + "technician", + "blue-collar", + "retired", + "blue-collar", + "student", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "student", + "admin.", + "management", + "student", + "technician", + "unemployed", + "admin.", + "management", + "admin.", + "management", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "retired", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "services", + "admin.", + "entrepreneur", + "management", + "technician", + "entrepreneur", + "management", + "student", + "admin.", + "blue-collar", + "management", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "entrepreneur", + "self-employed", + "admin.", + "admin.", + "admin.", + "housemaid", + "technician", + "self-employed", + "services", + "admin.", + "retired", + "entrepreneur", + "management", + "self-employed", + "blue-collar", + "technician", + "technician", + "technician", + "technician", + "technician", + "technician", + "services", + "technician", + "technician", + "technician", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "student", + "entrepreneur", + "unemployed", + "services", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "retired", + "admin.", + "technician", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "student", + "technician", + "admin.", + "technician", + "management", + "student", + "admin.", + "technician", + "blue-collar", + "technician", + "admin.", + "retired", + "technician", + "technician", + "technician", + "management", + "entrepreneur", + "admin.", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "student", + "unemployed", + "blue-collar", + "services", + "admin.", + "entrepreneur", + "admin.", + "student", + "services", + "entrepreneur", + "blue-collar", + "housemaid", + "entrepreneur", + "admin.", + "services", + "blue-collar", + "management", + "admin.", + "services", + "management", + "admin.", + "admin.", + "unemployed", + "admin.", + "management", + "admin.", + "unemployed", + "blue-collar", + "services", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "retired", + "admin.", + "technician", + "technician", + "admin.", + "self-employed", + "blue-collar", + "admin.", + "self-employed", + "admin.", + "student", + "technician", + "student", + "admin.", + "retired", + "technician", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "management", + "entrepreneur", + "entrepreneur", + "self-employed", + "technician", + "services", + "self-employed", + "admin.", + "retired", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "technician", + "services", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "admin.", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "technician", + "blue-collar", + "technician", + "services", + "services", + "management", + "blue-collar", + "services", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "self-employed", + "entrepreneur", + "technician", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "admin.", + "admin.", + "technician", + "blue-collar", + "technician", + "management", + "admin.", + "services", + "blue-collar", + "blue-collar", + "services", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "self-employed", + "management", + "management", + "services", + "technician", + "blue-collar", + "self-employed", + "services", + "management", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "student", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "housemaid", + "blue-collar", + "management", + "blue-collar", + "admin.", + "services", + "blue-collar", + "management", + "technician", + "services", + "technician", + "blue-collar", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "blue-collar", + "management", + "blue-collar", + "admin.", + "technician", + "management", + "admin.", + "technician", + "technician", + "blue-collar", + "blue-collar", + "management", + "admin.", + "blue-collar", + "services", + "services", + "services", + "student", + "services", + "services", + "blue-collar", + "blue-collar", + "self-employed", + "admin.", + "technician", + "admin.", + "unemployed", + "blue-collar", + "entrepreneur", + "blue-collar", + "blue-collar", + "student", + "housemaid", + "blue-collar", + "admin.", + "technician", + "services", + "services", + "services", + "admin.", + "services", + "blue-collar", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "services", + "blue-collar", + "blue-collar", + "unemployed", + "unemployed", + "blue-collar", + "self-employed", + "admin.", + "services", + "admin.", + "admin.", + "blue-collar", + "services", + "technician", + "blue-collar", + "housemaid", + "blue-collar", + "housemaid", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "blue-collar", + "services", + "blue-collar", + "management", + "management", + "technician", + "services", + "services", + "blue-collar", + "services", + "management", + "services", + "entrepreneur", + "blue-collar", + "blue-collar", + "services", + "admin.", + "admin.", + "services", + "technician", + "technician", + "blue-collar", + "blue-collar", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "student", + "blue-collar", + "admin.", + "blue-collar", + "student", + "blue-collar", + "technician", + "blue-collar", + "admin.", + "admin.", + "services", + "blue-collar", + "technician", + "entrepreneur", + "blue-collar", + "technician", + "admin.", + "admin.", + "self-employed", + "entrepreneur", + "management", + "blue-collar", + "admin.", + "services", + "blue-collar", + "technician", + "technician", + "management", + "technician", + "services", + "technician", + "self-employed", + "management", + "blue-collar", + "unemployed", + "blue-collar", + "blue-collar", + "self-employed", + "blue-collar", + "blue-collar", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "entrepreneur", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "blue-collar", + "services", + "admin.", + "services", + "admin.", + "technician", + "blue-collar", + "management", + "admin.", + "admin.", + "admin.", + "technician", + "services", + "management", + "services", + "unemployed", + "technician", + "technician", + "technician", + "admin.", + "blue-collar", + "admin.", + "entrepreneur", + "technician", + "management", + "admin.", + "admin.", + "technician", + "services", + "admin.", + "technician", + "technician", + "entrepreneur", + "student", + "admin.", + "student", + "entrepreneur", + "admin.", + "technician", + "student", + "technician", + "services", + "technician", + "admin.", + "admin.", + "housemaid", + "services", + "technician", + "admin.", + "management", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "services", + "self-employed", + "self-employed", + "technician", + "retired", + "admin.", + "management", + "blue-collar", + "student", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "student", + "blue-collar", + "services", + "technician", + "admin.", + "student", + "services", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "unemployed", + "admin.", + "blue-collar", + "admin.", + "technician", + "management", + "self-employed", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "management", + "retired", + "student", + "services", + "management", + "management", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "admin.", + "entrepreneur", + "unemployed", + "technician", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "services", + "services", + "retired", + "technician", + "admin.", + "admin.", + "blue-collar", + "retired", + "management", + "student", + "admin.", + "admin.", + "management", + "unemployed", + "self-employed", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "technician", + "blue-collar", + "admin.", + "student", + "retired", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "technician", + "entrepreneur", + "technician", + "blue-collar", + "technician", + "admin.", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "student", + "admin.", + "admin.", + "technician", + "admin.", + "management", + "admin.", + "unemployed", + "blue-collar", + "management", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "admin.", + "services", + "retired", + "admin.", + "technician", + "admin.", + "blue-collar", + "management", + "blue-collar", + "self-employed", + "student", + "technician", + "admin.", + "technician", + "technician", + "services", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "self-employed", + "student", + "services", + "entrepreneur", + "services", + "entrepreneur", + "admin.", + "entrepreneur", + "admin.", + "management", + "admin.", + "blue-collar", + "unemployed", + "unemployed", + "admin.", + "admin.", + "admin.", + "student", + "services", + "admin.", + "admin.", + "services", + "admin.", + "technician", + "services", + "management", + "management", + "admin.", + "student", + "admin.", + "self-employed", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "technician", + "management", + "services", + "blue-collar", + "blue-collar", + "student", + "blue-collar", + "technician", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "student", + "self-employed", + "student", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "student", + "technician", + "technician", + "student", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "management", + "technician", + "management", + "blue-collar", + "retired", + "admin.", + "blue-collar", + "admin.", + "management", + "blue-collar", + "self-employed", + "services", + "admin.", + "technician", + "unemployed", + "entrepreneur", + "blue-collar", + "blue-collar", + "retired", + "self-employed", + "technician", + "admin.", + "unemployed", + "admin.", + "technician", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "self-employed", + "admin.", + "blue-collar", + "retired", + "services", + "unemployed", + "unemployed", + "admin.", + "self-employed", + "admin.", + "admin.", + "technician", + "management", + "housemaid", + "housemaid", + "unemployed", + "management", + "retired", + "technician", + "unemployed", + "student", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "management", + "blue-collar", + "admin.", + "admin.", + "services", + "technician", + "entrepreneur", + "management", + "housemaid", + "admin.", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "technician", + "admin.", + "entrepreneur", + "self-employed", + "self-employed", + "admin.", + "housemaid", + "technician", + "admin.", + "retired", + "unemployed", + "admin.", + "blue-collar", + "technician", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "student", + "admin.", + "services", + "admin.", + "management", + "services", + "student", + "services", + "student", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "student", + "admin.", + "admin.", + "admin.", + "student", + "blue-collar", + "technician", + "management", + "entrepreneur", + "admin.", + "student", + "admin.", + "admin.", + "management", + "admin.", + "admin.", + "retired", + "student", + "admin.", + "management", + "management", + "technician", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "student", + "services", + "admin.", + "blue-collar", + "admin.", + "technician", + "retired", + "technician", + "retired", + "student", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "admin.", + "retired", + "retired", + "housemaid", + "blue-collar", + "admin.", + "retired", + "admin.", + "technician", + "retired", + "student", + "services", + "services", + "admin.", + "retired", + "entrepreneur", + "admin.", + "services", + "services", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "retired", + "admin.", + "housemaid", + "admin.", + "technician", + "admin.", + "blue-collar", + "technician", + "admin.", + "technician", + "admin.", + "student", + "management", + "management", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "admin.", + "student", + "student", + "admin.", + "retired", + "technician", + "retired", + "admin.", + "admin.", + "technician", + "entrepreneur", + "student", + "student", + "services", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "unemployed", + "student", + "admin.", + "blue-collar", + "services", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "technician", + "student", + "services", + "admin.", + "retired", + "services", + "blue-collar", + "admin.", + "management", + "unemployed", + "student", + "technician", + "technician", + "management", + "management", + "admin.", + "blue-collar", + "retired", + "retired", + "retired", + "unemployed", + "technician", + "technician", + "admin.", + "self-employed", + "unemployed", + "admin.", + "blue-collar", + "entrepreneur", + "management", + "retired", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "student", + "retired", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "blue-collar", + "student", + "technician", + "retired", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "blue-collar", + "management", + "retired", + "admin.", + "student", + "technician", + "technician", + "management", + "retired", + "retired", + "retired", + "admin.", + "student", + "unemployed", + "admin.", + "admin.", + "housemaid", + "blue-collar", + "admin.", + "admin.", + "housemaid", + "unemployed", + "housemaid", + "admin.", + "retired", + "housemaid", + "retired", + "retired", + "services", + "admin.", + "admin.", + "retired", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "entrepreneur", + "student", + "retired", + "student", + "student", + "student", + "admin.", + "admin.", + "management", + "entrepreneur", + "admin.", + "retired", + "entrepreneur", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "admin.", + "management", + "technician", + "technician", + "blue-collar", + "retired", + "student", + "admin.", + "housemaid", + "retired", + "housemaid", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "admin.", + "retired", + "management", + "self-employed", + "self-employed", + "self-employed", + "technician", + "self-employed", + "technician", + "admin.", + "retired", + "services", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "management", + "admin.", + "management", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "admin.", + "management", + "entrepreneur", + "entrepreneur", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "self-employed", + "unemployed", + "unemployed", + "admin.", + "self-employed", + "unemployed", + "admin.", + "technician", + "services", + "self-employed", + "technician", + "services", + "services", + "housemaid", + "retired", + "retired", + "admin.", + "services", + "management", + "retired", + "admin.", + "management", + "admin.", + "admin.", + "unemployed", + "retired", + "retired", + "retired", + "retired", + "retired", + "housemaid", + "admin.", + "self-employed", + "management", + "management", + "retired", + "management", + "management", + "management", + "management", + "technician", + "management", + "admin.", + "management", + "retired", + "admin.", + "management", + "student", + "management", + "retired", + "admin.", + "student", + "unemployed", + "blue-collar", + "student", + "technician", + "admin.", + "technician", + "management", + "admin.", + "services", + "retired", + "blue-collar", + "admin.", + "management", + "admin.", + "services", + "services", + "student", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "admin.", + "admin.", + "retired", + "retired", + "services", + "student", + "management", + "admin.", + "services", + "admin.", + "technician", + "housemaid", + "technician", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "blue-collar", + "unemployed", + "technician", + "unemployed", + "unemployed", + "technician", + "services", + "management", + "retired", + "technician", + "admin.", + "technician", + "services", + "admin.", + "unemployed", + "management", + "student", + "admin.", + "technician", + "student", + "admin.", + "student", + "student", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "management", + "unemployed", + "retired", + "technician", + "housemaid", + "retired", + "services", + "services", + "management", + "technician", + "management", + "retired", + "retired", + "student", + "technician", + "retired", + "unemployed", + "admin.", + "admin.", + "retired", + "retired", + "student", + "retired", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "retired", + "retired", + "admin.", + "technician", + "technician", + "technician", + "technician", + "retired", + "technician", + "admin.", + "blue-collar", + "retired", + "retired", + "retired", + "student", + "technician", + "self-employed", + "technician", + "student", + "retired", + "student", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "blue-collar", + "management", + "retired", + "admin.", + "admin.", + "retired", + "housemaid", + "unemployed", + "blue-collar", + "admin.", + "admin.", + "technician", + "self-employed", + "admin.", + "technician", + "retired", + "technician", + "retired", + "retired", + "unemployed", + "admin.", + "admin.", + "management", + "technician", + "retired", + "admin.", + "student", + "admin.", + "admin.", + "unemployed", + "housemaid", + "student", + "management", + "retired", + "admin.", + "blue-collar", + "housemaid", + "admin.", + "technician", + "management", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "retired", + "admin.", + "services", + "retired", + "student", + "management", + "retired", + "student", + "student", + "management", + "retired", + "admin.", + "student", + "admin.", + "housemaid", + "admin.", + "services", + "student", + "student", + "retired", + "management", + "retired", + "admin.", + "admin.", + "retired", + "self-employed", + "unemployed", + "admin.", + "admin.", + "admin.", + "blue-collar", + "self-employed", + "retired", + "technician", + "self-employed", + "unemployed", + "admin.", + "admin.", + "admin.", + "student", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "retired", + "technician", + "technician", + "technician", + "management", + "services", + "blue-collar", + "retired", + "student", + "technician", + "admin.", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "blue-collar", + "retired", + "retired", + "retired", + "technician", + "technician", + "retired", + "self-employed", + "management", + "management", + "retired", + "management", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "retired", + "retired", + "management", + "retired", + "technician", + "admin.", + "retired", + "retired", + "retired", + "management", + "housemaid", + "technician", + "technician", + "technician", + "technician", + "retired", + "retired", + "admin.", + "technician", + "unemployed", + "technician", + "technician", + "technician", + "retired", + "retired", + "admin.", + "retired", + "technician", + "blue-collar", + "admin.", + "housemaid", + "technician", + "technician", + "admin.", + "services", + "self-employed", + "admin.", + "retired", + "admin.", + "housemaid", + "retired", + "admin.", + "unemployed", + "housemaid", + "housemaid", + "retired", + "housemaid", + "retired", + "retired", + "retired", + "admin.", + "services", + "retired", + "retired", + "student", + "retired", + "student", + "retired", + "unemployed", + "student", + "technician", + "entrepreneur", + "technician", + "admin.", + "technician", + "student", + "student", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "unemployed", + "unemployed", + "admin.", + "self-employed", + "management", + "self-employed", + "retired", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "blue-collar", + "admin.", + "blue-collar", + "retired", + "retired", + "retired", + "blue-collar", + "technician", + "retired", + "technician", + "student", + "admin.", + "blue-collar", + "services", + "technician", + "admin.", + "student", + "blue-collar", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "student", + "management", + "technician", + "technician", + "technician", + "management", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "unemployed", + "retired", + "entrepreneur", + "technician", + "student", + "technician", + "admin.", + "technician", + "admin.", + "admin.", + "self-employed", + "services", + "blue-collar", + "self-employed", + "admin.", + "retired", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "blue-collar", + "blue-collar", + "unemployed", + "self-employed", + "admin.", + "admin.", + "admin.", + "services", + "self-employed", + "student", + "housemaid", + "student", + "services", + "services", + "retired", + "admin.", + "admin.", + "retired", + "admin.", + "self-employed", + "technician", + "admin.", + "unemployed", + "self-employed", + "unemployed", + "technician", + "unemployed", + "admin.", + "admin.", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "retired", + "unemployed", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "technician", + "housemaid", + "self-employed", + "services", + "management", + "blue-collar", + "retired", + "admin.", + "admin.", + "self-employed", + "admin.", + "technician", + "retired", + "unemployed", + "unemployed", + "admin.", + "admin.", + "admin.", + "housemaid", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "retired", + "management", + "housemaid", + "unemployed", + "retired", + "technician", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "housemaid", + "admin.", + "student", + "student", + "entrepreneur", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "retired", + "technician", + "retired", + "retired", + "retired", + "retired", + "retired", + "retired", + "housemaid", + "retired", + "retired", + "retired", + "housemaid", + "unemployed", + "housemaid", + "retired", + "retired", + "retired", + "admin.", + "admin.", + "admin.", + "retired", + "student", + "admin.", + "management", + "technician", + "technician", + "student", + "retired", + "management", + "admin.", + "admin.", + "services", + "technician", + "admin.", + "admin.", + "admin.", + "self-employed", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "student", + "student", + "admin.", + "blue-collar", + "technician", + "admin.", + "student", + "technician", + "services", + "student", + "student", + "admin.", + "admin.", + "retired", + "technician", + "services", + "admin.", + "admin.", + "admin.", + "technician", + "management", + "technician", + "student", + "student", + "admin.", + "entrepreneur", + "technician", + "admin.", + "admin.", + "admin.", + "retired", + "management", + "unemployed", + "unemployed", + "technician", + "unemployed", + "retired", + "blue-collar", + "management", + "admin.", + "unemployed", + "admin.", + "admin.", + "services", + "retired", + "admin.", + "admin.", + "admin.", + "management", + "admin.", + "retired", + "technician", + "retired", + "admin.", + "management", + "admin.", + "admin.", + "student", + "admin.", + "blue-collar", + "retired", + "technician", + "retired", + "services", + "unemployed", + "self-employed", + "student", + "retired", + "admin.", + "admin.", + "management", + "admin.", + "services", + "blue-collar", + "admin.", + "self-employed", + "unemployed", + "retired", + "unemployed", + "retired", + "technician", + "admin.", + "admin.", + "retired", + "student", + "blue-collar", + "retired", + "technician", + "admin.", + "admin.", + "retired", + "services", + "retired", + "technician", + "admin.", + "student", + "technician", + "admin.", + "student", + "services", + "technician", + "admin.", + "unemployed", + "student", + "admin.", + "housemaid", + "admin.", + "housemaid", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "unemployed", + "admin.", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "services", + "admin.", + "management", + "management", + "student", + "technician", + "retired", + "self-employed", + "student", + "self-employed", + "self-employed", + "technician", + "unemployed", + "admin.", + "student", + "self-employed", + "student", + "technician", + "admin.", + "management", + "housemaid", + "technician", + "technician", + "admin.", + "admin.", + "student", + "management", + "management", + "blue-collar", + "management", + "student", + "blue-collar", + "admin.", + "management", + "management", + "admin.", + "admin.", + "blue-collar", + "admin.", + "blue-collar", + "admin.", + "technician", + "self-employed", + "retired", + "technician", + "student", + "retired", + "admin.", + "admin.", + "admin.", + "management", + "blue-collar", + "admin.", + "blue-collar", + "self-employed", + "blue-collar", + "technician", + "management", + "unemployed", + "retired", + "retired", + "admin.", + "student", + "entrepreneur", + "admin.", + "unemployed", + "admin.", + "technician", + "services", + "retired", + "student", + "admin.", + "retired", + "admin.", + "management", + "admin.", + "admin.", + "services", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "technician", + "admin.", + "admin.", + "student", + "admin.", + "admin.", + "admin.", + "admin.", + "self-employed", + "housemaid", + "admin.", + "admin.", + "admin.", + "services", + "admin.", + "retired", + "admin.", + "services", + "admin.", + "admin.", + "self-employed", + "admin.", + "retired", + "unemployed", + "admin.", + "retired", + "admin.", + "retired", + "admin.", + "technician", + "admin.", + "student", + "retired", + "student", + "retired", + "admin.", + "services", + "retired", + "retired", + "retired", + "retired", + "unemployed", + "technician", + "technician", + "services", + "technician", + "admin.", + "blue-collar", + "student", + "technician", + "blue-collar", + "management", + "technician", + "admin.", + "services", + "blue-collar", + "admin.", + "blue-collar", + "technician", + "management", + "services", + "services", + "admin.", + "student", + "retired", + "retired", + "admin.", + "blue-collar", + "self-employed", + "admin.", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "technician", + "admin.", + "technician", + "technician", + "retired", + "retired", + "retired", + "technician", + "unemployed", + "retired", + "retired", + "admin.", + "technician", + "technician", + "retired", + "housemaid", + "housemaid", + "retired", + "unemployed", + "technician", + "admin.", + "services", + "technician", + "admin.", + "management", + "management", + "admin.", + "admin.", + "services", + "student", + "management", + "student", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "technician", + "management", + "retired", + "retired", + "technician", + "retired", + "admin.", + "admin.", + "admin.", + "housemaid", + "retired", + "student", + "blue-collar", + "student", + "retired", + "housemaid", + "housemaid", + "technician", + "retired", + "admin.", + "housemaid", + "entrepreneur", + "technician", + "admin.", + "technician", + "blue-collar", + "retired", + "technician", + "admin.", + "services", + "management", + "admin.", + "retired", + "management", + "admin.", + "management", + "services", + "retired", + "retired", + "admin.", + "retired", + "technician", + "admin.", + "unemployed", + "student", + "admin.", + "student", + "student", + "blue-collar", + "admin.", + "technician", + "technician", + "student", + "student", + "retired", + "student", + "student", + "blue-collar", + "admin.", + "admin.", + "admin.", + "admin.", + "services", + "blue-collar", + "admin.", + "unemployed", + "unemployed", + "admin.", + "admin.", + "admin.", + "retired", + "entrepreneur", + "entrepreneur", + "management", + "technician", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "unemployed", + "services", + "technician", + "admin.", + "admin.", + "management", + "admin.", + "management", + "blue-collar", + "admin.", + "retired", + "admin.", + "retired", + "admin.", + "admin.", + "technician", + "admin.", + "student", + "blue-collar", + "retired", + "admin.", + "admin.", + "admin.", + "technician", + "housemaid", + "management", + "admin.", + "technician", + "retired", + "admin.", + "admin.", + "management", + "blue-collar", + "student", + "self-employed", + "entrepreneur", + "services", + "services", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "retired", + "student", + "self-employed", + "admin.", + "blue-collar", + "retired", + "retired", + "retired", + "admin.", + "retired", + "retired", + "technician", + "admin.", + "admin.", + "admin.", + "blue-collar", + "admin.", + "student", + "management", + "retired", + "management", + "management", + "retired", + "management", + "retired", + "services", + "admin.", + "unemployed", + "management", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "entrepreneur", + "admin.", + "admin.", + "retired", + "retired", + "admin.", + "management", + "management", + "admin.", + "retired", + "admin.", + "management", + "services", + "blue-collar", + "management", + "blue-collar", + "unemployed", + "technician", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "admin.", + "technician", + "retired", + "technician", + "retired", + "services", + "student", + "technician", + "retired", + "admin.", + "management", + "housemaid", + "technician", + "admin.", + "admin.", + "admin.", + "management", + "student", + "admin.", + "retired", + "student", + "student", + "retired", + "admin.", + "entrepreneur", + "technician", + "student", + "student", + "admin.", + "unemployed", + "retired", + "student", + "admin.", + "technician", + "admin.", + "admin.", + "admin.", + "retired", + "student", + "student", + "technician", + "technician", + "technician", + "technician", + "management", + "technician", + "technician", + "technician", + "services", + "student", + "blue-collar", + "unemployed", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "unemployed", + "admin.", + "admin.", + "admin.", + "student", + "technician", + "technician", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "technician", + "admin.", + "services", + "admin.", + "unemployed", + "student", + "admin.", + "management", + "admin.", + "admin.", + "technician", + "technician", + "technician", + "blue-collar", + "technician", + "technician", + "technician", + "self-employed", + "admin.", + "admin.", + "retired", + "technician", + "admin.", + "technician", + "retired", + "unemployed", + "technician", + "technician", + "admin.", + "services", + "retired", + "services", + "technician", + "student", + "blue-collar", + "retired", + "blue-collar", + "retired", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "blue-collar", + "admin.", + "admin.", + "retired", + "admin.", + "retired", + "technician", + "technician", + "technician", + "admin.", + "admin.", + "retired", + "admin.", + "technician", + "entrepreneur", + "services", + "retired", + "services", + "management", + "retired", + "housemaid", + "housemaid", + "blue-collar", + "admin.", + "housemaid", + "admin.", + "management", + "admin.", + "unemployed", + "student", + "student", + "student", + "student", + "retired", + "services", + "admin.", + "unemployed", + "admin.", + "services", + "technician", + "student", + "admin.", + "technician", + "student", + "admin.", + "admin.", + "admin.", + "student", + "management", + "retired", + "student", + "technician", + "management", + "retired", + "management", + "admin.", + "technician", + "blue-collar", + "blue-collar", + "admin.", + "technician", + "admin.", + "student", + "blue-collar", + "admin.", + "student", + "admin.", + "admin.", + "retired", + "blue-collar", + "technician", + "blue-collar", + "blue-collar", + "technician", + "technician", + "admin.", + "admin.", + "admin.", + "admin.", + "unemployed", + "student", + "unemployed", + "management", + "admin.", + "admin.", + "admin.", + "admin.", + "technician", + "admin.", + "technician", + "housemaid", + "technician", + "technician", + "technician", + "admin.", + "technician", + "admin.", + "housemaid", + "admin.", + "student", + "admin.", + "retired", + "retired", + "retired", + "admin.", + "retired", + "technician" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "job" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
marital=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "divorced", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "divorced", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "divorced", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
marital=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "divorced", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "divorced", + "single", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "divorced", + "divorced", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "divorced", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "divorced", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "married", + "single", + "single", + "married", + "divorced", + "single", + "single", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "divorced", + "single", + "single", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "single", + "divorced", + "divorced", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "single", + "single", + "married", + "divorced", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "divorced", + "single", + "single", + "single", + "married", + "single", + "divorced", + "divorced", + "single", + "divorced", + "single", + "married", + "single", + "married", + "married", + "divorced", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "divorced", + "single", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "divorced", + "divorced", + "single", + "single", + "divorced", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "divorced", + "divorced", + "single", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "divorced", + "divorced", + "single", + "single", + "single", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "single", + "single", + "married", + "divorced", + "married", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "married", + "married", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "divorced", + "single", + "divorced", + "single", + "single", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "married", + "married", + "divorced", + "single", + "married", + "divorced", + "divorced", + "divorced", + "single", + "single", + "married", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "divorced", + "married", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "divorced", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "divorced", + "married", + "single", + "married", + "single", + "married", + "divorced", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "divorced", + "single", + "divorced", + "divorced", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "single", + "single", + "married", + "single", + "single", + "single", + "single", + "single", + "divorced", + "single", + "divorced", + "single", + "single", + "single", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "single", + "divorced", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "divorced", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "married", + "single", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "divorced", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "divorced", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "married", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "married", + "single", + "single", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "single", + "married", + "married", + "single", + "single", + "married", + "married", + "married", + "married", + "single", + "divorced", + "married", + "married", + "single", + "divorced", + "single", + "divorced", + "single", + "single", + "divorced", + "married", + "married", + "single", + "single", + "single", + "single", + "single", + "single", + "married", + "married", + "single", + "single", + "married", + "single", + "married", + "married", + "married", + "divorced", + "single", + "married", + "single", + "single", + "married", + "divorced", + "married", + "divorced", + "divorced", + "married", + "divorced", + "married", + "divorced", + "married", + "married", + "single", + "married", + "married", + "married", + "married", + "married", + "married" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "marital" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
education=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "high.school", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.6y", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "basic.6y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "basic.6y", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "professional.course", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "professional.course", + "basic.6y", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.6y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "basic.6y", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "basic.6y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.6y", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "illiterate", + "professional.course", + "basic.6y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "illiterate", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.6y", + "professional.course", + "basic.6y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "professional.course", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "basic.6y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "illiterate", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "basic.6y", + "professional.course", + "illiterate", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "professional.course", + "basic.4y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "basic.6y", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "illiterate", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "illiterate", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.6y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "illiterate", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "basic.6y", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.4y", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.6y", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "basic.6y", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.6y", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "basic.6y", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "basic.6y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "high.school", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.6y", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "basic.6y", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "basic.6y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.6y", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.6y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "basic.9y", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "basic.6y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "basic.9y", + "basic.6y", + "basic.6y", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "basic.6y", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.4y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "illiterate", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "basic.4y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.9y", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.6y", + "basic.4y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "basic.6y", + "professional.course", + "high.school", + "professional.course", + "basic.9y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
education=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "basic.4y", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "basic.9y", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "basic.6y", + "professional.course", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "basic.6y", + "basic.4y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "illiterate", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "basic.6y", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.6y", + "basic.4y", + "basic.4y", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "illiterate", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.6y", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.6y", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "basic.9y", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.6y", + "basic.4y", + "high.school", + "basic.6y", + "basic.6y", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "basic.4y", + "basic.9y", + "university.degree", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "basic.9y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "basic.6y", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "basic.6y", + "basic.9y", + "basic.9y", + "basic.9y", + "basic.6y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "basic.6y", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "basic.6y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "basic.6y", + "basic.9y", + "basic.4y", + "basic.9y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "basic.9y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "basic.6y", + "basic.9y", + "professional.course", + "basic.4y", + "basic.9y", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.9y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "basic.6y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "basic.6y", + "high.school", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "basic.9y", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "basic.4y", + "high.school", + "basic.9y", + "university.degree", + "basic.9y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "basic.6y", + "basic.6y", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "basic.6y", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.9y", + "professional.course", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "illiterate", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "basic.9y", + "basic.6y", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "high.school", + "high.school", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "high.school", + "professional.course", + "basic.6y", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "basic.6y", + "high.school", + "high.school", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.9y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "professional.course", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "professional.course", + "high.school", + "university.degree", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "high.school", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.4y", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "basic.9y", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "basic.4y", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.6y", + "basic.4y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "high.school", + "basic.6y", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "basic.9y", + "basic.4y", + "high.school", + "basic.4y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "high.school", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "basic.9y", + "professional.course", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "basic.9y", + "basic.6y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "basic.9y", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "professional.course", + "basic.4y", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "basic.4y", + "basic.4y", + "basic.6y", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "professional.course", + "basic.4y", + "university.degree", + "basic.6y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.4y", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "basic.9y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.6y", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.9y", + "university.degree", + "professional.course", + "university.degree", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "university.degree", + "high.school", + "basic.9y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "basic.9y", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "professional.course", + "university.degree", + "high.school", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "basic.4y", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "basic.4y", + "high.school", + "professional.course", + "high.school", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "professional.course", + "basic.4y", + "professional.course", + "basic.4y", + "high.school", + "basic.9y", + "professional.course", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "professional.course", + "basic.6y", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "basic.9y", + "basic.4y", + "basic.6y", + "basic.9y", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "professional.course", + "basic.9y", + "basic.9y", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "high.school", + "basic.6y", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "university.degree", + "basic.6y", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "high.school", + "university.degree", + "basic.4y", + "professional.course", + "high.school", + "professional.course", + "basic.4y", + "basic.4y", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "high.school", + "high.school", + "professional.course", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "professional.course", + "high.school", + "professional.course", + "professional.course", + "high.school", + "high.school", + "basic.4y", + "university.degree", + "high.school", + "high.school", + "professional.course", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "high.school", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "university.degree", + "high.school", + "university.degree", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "high.school", + "university.degree", + "high.school", + "professional.course", + "high.school", + "university.degree", + "professional.course", + "high.school", + "high.school", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "basic.4y", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "high.school", + "university.degree", + "university.degree", + "high.school", + "basic.4y", + "professional.course", + "university.degree", + "high.school", + "high.school", + "university.degree", + "basic.4y", + "basic.6y", + "professional.course", + "basic.6y", + "basic.6y", + "professional.course", + "professional.course", + "high.school", + "high.school", + "high.school", + "university.degree", + "basic.9y", + "high.school", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "professional.course", + "basic.4y", + "basic.4y", + "university.degree", + "basic.4y", + "professional.course", + "university.degree", + "university.degree", + "professional.course", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "university.degree", + "professional.course", + "professional.course" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "education" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
default=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
default=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "default" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
housing=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
housing=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "housing" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
loan=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
loan=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "yes", + "yes", + "yes", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "yes", + "yes", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "yes", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "loan" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
contact=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
contact=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "telephone", + "telephone", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular", + "cellular" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "contact" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
month=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
month=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "dec", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "dec", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "mar", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "apr", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "may", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jun", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "jul", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "aug", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "sep", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "oct", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov", + "nov" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "month" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
day_of_week=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "wed", + "wed", + "thu", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "wed", + "thu", + "thu", + "fri", + "mon", + "wed", + "thu", + "fri", + "fri", + "mon", + "tue", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "wed", + "wed", + "wed", + "thu", + "mon", + "mon", + "tue", + "thu", + "thu", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "tue", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "tue", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "tue", + "tue", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "tue", + "tue", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "tue", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
day_of_week=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "tue", + "tue", + "tue", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "mon", + "tue", + "tue", + "wed", + "wed", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "fri", + "fri", + "mon", + "wed", + "fri", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "fri", + "fri", + "fri", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "fri", + "fri", + "mon", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "fri", + "fri", + "mon", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "thu", + "thu", + "thu", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "mon", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "wed", + "mon", + "mon", + "mon", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "wed", + "thu", + "thu", + "fri", + "fri", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "wed", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "fri", + "mon", + "mon", + "mon", + "tue", + "tue", + "tue", + "tue", + "tue", + "wed", + "wed", + "thu", + "thu", + "thu", + "thu", + "thu", + "fri", + "fri", + "fri" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "day_of_week" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
poutcome=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "failure", + "success", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "success", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "failure", + "success", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "success", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "failure", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
poutcome=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "success", + "failure", + "success", + "failure", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "success", + "failure", + "success", + "failure", + "failure", + "failure", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "failure", + "nonexistent", + "failure", + "success", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "success", + "failure", + "failure", + "success", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "success", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "success", + "failure", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "failure", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "failure", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "failure", + "failure", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "failure", + "success", + "success", + "failure", + "success", + "nonexistent", + "failure", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "success", + "failure", + "failure", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "success", + "failure", + "success", + "success", + "failure", + "failure", + "success", + "nonexistent", + "failure", + "success", + "success", + "success", + "success", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "failure", + "success", + "nonexistent", + "nonexistent", + "failure", + "success", + "failure", + "success", + "nonexistent", + "failure", + "success", + "success", + "success", + "failure", + "nonexistent", + "success", + "success", + "success", + "success", + "failure", + "failure", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "success", + "failure", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "failure", + "failure", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "failure", + "failure", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "failure", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "success", + "failure", + "failure", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "success", + "success", + "success", + "success", + "failure", + "success", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "failure", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "failure", + "nonexistent", + "success", + "failure", + "failure", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "failure", + "success", + "failure", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "failure", + "success", + "nonexistent", + "failure", + "nonexistent", + "failure", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "success", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "success", + "failure", + "failure", + "success", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "failure", + "success", + "success", + "success", + "success", + "success", + "failure", + "nonexistent", + "success", + "success", + "success", + "failure", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "success", + "success", + "failure", + "failure", + "success", + "success", + "success", + "success", + "success", + "success", + "success", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "nonexistent", + "nonexistent", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "nonexistent", + "success", + "nonexistent", + "success", + "success", + "nonexistent", + "failure", + "nonexistent", + "nonexistent", + "failure", + "success", + "success", + "nonexistent", + "nonexistent", + "nonexistent" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "poutcome" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "categoryarray": [ + "no", + "yes" + ], + "categoryorder": "array", + "domain": [ + 0, + 1 + ], + "title": { + "text": "y" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Define a function to plot histograms of categorical features\n", + "\n", + "def plot(col):\n", + " fig=px.histogram(df1,x=col,color='y')\n", + " fig.show()\n", + "for col in categorical_cols :\n", + " plot(col)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "c085fdc9", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
age=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 56, + 37, + 40, + 56, + 59, + 24, + 25, + 25, + 29, + 57, + 35, + 35, + 50, + 30, + 55, + 41, + 37, + 35, + 54, + 34, + 52, + 41, + 56, + 32, + 38, + 57, + 57, + 40, + 35, + 45, + 54, + 39, + 60, + 53, + 25, + 51, + 48, + 37, + 44, + 56, + 41, + 44, + 55, + 38, + 31, + 41, + 39, + 34, + 35, + 33, + 42, + 45, + 42, + 37, + 44, + 49, + 52, + 52, + 34, + 35, + 35, + 37, + 36, + 52, + 49, + 41, + 45, + 32, + 42, + 50, + 31, + 56, + 37, + 37, + 52, + 39, + 34, + 43, + 39, + 53, + 35, + 51, + 36, + 43, + 59, + 24, + 37, + 38, + 54, + 45, + 43, + 46, + 44, + 51, + 28, + 37, + 34, + 36, + 57, + 34, + 41, + 38, + 45, + 42, + 48, + 43, + 33, + 32, + 39, + 44, + 35, + 36, + 36, + 55, + 59, + 40, + 35, + 40, + 58, + 42, + 35, + 45, + 39, + 50, + 44, + 56, + 48, + 57, + 36, + 34, + 34, + 32, + 36, + 36, + 33, + 40, + 41, + 51, + 36, + 53, + 45, + 33, + 33, + 42, + 43, + 42, + 27, + 34, + 54, + 47, + 32, + 34, + 47, + 51, + 47, + 56, + 53, + 36, + 42, + 44, + 37, + 36, + 42, + 31, + 45, + 37, + 47, + 49, + 36, + 35, + 42, + 57, + 42, + 41, + 54, + 27, + 36, + 33, + 56, + 42, + 43, + 54, + 53, + 54, + 40, + 26, + 33, + 36, + 29, + 36, + 35, + 50, + 49, + 36, + 32, + 49, + 58, + 52, + 50, + 33, + 57, + 55, + 38, + 38, + 53, + 43, + 36, + 32, + 33, + 58, + 57, + 45, + 46, + 36, + 41, + 57, + 56, + 37, + 37, + 46, + 22, + 43, + 41, + 38, + 33, + 49, + 33, + 34, + 41, + 35, + 42, + 45, + 36, + 29, + 41, + 52, + 42, + 52, + 39, + 36, + 41, + 55, + 30, + 27, + 34, + 43, + 49, + 58, + 43, + 43, + 30, + 27, + 37, + 46, + 35, + 47, + 26, + 45, + 34, + 38, + 60, + 48, + 47, + 40, + 48, + 54, + 40, + 42, + 52, + 31, + 32, + 44, + 52, + 43, + 31, + 57, + 57, + 38, + 42, + 35, + 34, + 41, + 38, + 53, + 33, + 45, + 40, + 33, + 48, + 43, + 37, + 50, + 59, + 52, + 38, + 39, + 39, + 38, + 30, + 38, + 39, + 44, + 36, + 41, + 35, + 41, + 35, + 33, + 32, + 30, + 43, + 46, + 35, + 34, + 39, + 42, + 57, + 40, + 40, + 41, + 41, + 35, + 23, + 45, + 42, + 41, + 46, + 30, + 24, + 34, + 59, + 32, + 33, + 32, + 46, + 57, + 42, + 48, + 34, + 32, + 48, + 47, + 32, + 32, + 36, + 50, + 46, + 41, + 43, + 51, + 38, + 41, + 52, + 37, + 41, + 46, + 47, + 35, + 46, + 30, + 35, + 40, + 34, + 30, + 38, + 55, + 45, + 36, + 32, + 55, + 29, + 34, + 36, + 30, + 33, + 37, + 33, + 32, + 32, + 39, + 33, + 33, + 33, + 43, + 27, + 47, + 31, + 32, + 54, + 44, + 46, + 45, + 43, + 56, + 47, + 36, + 46, + 38, + 27, + 46, + 40, + 33, + 54, + 49, + 40, + 51, + 38, + 52, + 26, + 35, + 51, + 36, + 30, + 43, + 40, + 45, + 56, + 46, + 41, + 42, + 56, + 43, + 34, + 38, + 40, + 38, + 48, + 24, + 31, + 56, + 49, + 47, + 48, + 55, + 44, + 46, + 36, + 29, + 31, + 30, + 36, + 60, + 36, + 32, + 30, + 46, + 43, + 37, + 38, + 31, + 44, + 43, + 38, + 41, + 32, + 43, + 36, + 35, + 50, + 38, + 50, + 31, + 40, + 44, + 47, + 35, + 42, + 36, + 35, + 26, + 31, + 39, + 43, + 50, + 39, + 36, + 27, + 28, + 31, + 30, + 52, + 37, + 30, + 54, + 49, + 44, + 53, + 43, + 31, + 38, + 50, + 24, + 34, + 40, + 57, + 31, + 38, + 42, + 40, + 42, + 48, + 33, + 37, + 43, + 46, + 40, + 40, + 43, + 44, + 41, + 31, + 27, + 43, + 29, + 54, + 36, + 30, + 39, + 33, + 39, + 38, + 44, + 33, + 37, + 32, + 46, + 34, + 32, + 31, + 59, + 40, + 46, + 35, + 28, + 35, + 48, + 32, + 59, + 49, + 51, + 38, + 53, + 49, + 31, + 29, + 35, + 38, + 48, + 51, + 52, + 45, + 41, + 41, + 46, + 29, + 44, + 29, + 48, + 31, + 44, + 31, + 38, + 33, + 53, + 33, + 37, + 55, + 32, + 48, + 34, + 35, + 55, + 48, + 34, + 34, + 37, + 54, + 39, + 39, + 32, + 41, + 59, + 57, + 34, + 34, + 31, + 36, + 44, + 51, + 28, + 50, + 51, + 38, + 44, + 32, + 48, + 43, + 40, + 32, + 58, + 49, + 30, + 28, + 44, + 28, + 58, + 35, + 57, + 35, + 48, + 39, + 52, + 51, + 49, + 44, + 37, + 47, + 43, + 42, + 32, + 35, + 56, + 26, + 57, + 51, + 31, + 31, + 29, + 26, + 54, + 29, + 33, + 35, + 42, + 51, + 59, + 36, + 51, + 40, + 45, + 42, + 31, + 38, + 39, + 34, + 41, + 34, + 36, + 33, + 44, + 30, + 34, + 58, + 29, + 41, + 35, + 34, + 31, + 50, + 34, + 39, + 54, + 54, + 31, + 35, + 28, + 56, + 38, + 42, + 44, + 58, + 43, + 37, + 59, + 41, + 33, + 46, + 30, + 28, + 58, + 43, + 39, + 43, + 43, + 33, + 41, + 48, + 40, + 40, + 55, + 39, + 35, + 38, + 51, + 41, + 31, + 40, + 38, + 48, + 32, + 47, + 50, + 48, + 30, + 34, + 36, + 32, + 35, + 28, + 48, + 53, + 31, + 51, + 42, + 40, + 50, + 29, + 43, + 35, + 48, + 49, + 55, + 41, + 45, + 36, + 54, + 33, + 44, + 50, + 32, + 32, + 40, + 24, + 32, + 35, + 52, + 30, + 36, + 39, + 39, + 36, + 39, + 31, + 41, + 38, + 52, + 60, + 24, + 38, + 44, + 25, + 32, + 28, + 27, + 35, + 45, + 30, + 60, + 37, + 37, + 36, + 49, + 34, + 31, + 39, + 33, + 38, + 31, + 39, + 32, + 48, + 37, + 37, + 26, + 54, + 35, + 45, + 33, + 37, + 49, + 43, + 43, + 39, + 47, + 30, + 51, + 59, + 31, + 39, + 37, + 42, + 37, + 37, + 36, + 48, + 43, + 28, + 30, + 60, + 31, + 38, + 36, + 50, + 33, + 20, + 55, + 25, + 39, + 27, + 27, + 25, + 36, + 36, + 27, + 45, + 43, + 29, + 35, + 43, + 36, + 36, + 45, + 35, + 30, + 29, + 34, + 36, + 43, + 35, + 42, + 35, + 36, + 47, + 30, + 45, + 28, + 37, + 38, + 28, + 31, + 37, + 36, + 54, + 43, + 49, + 32, + 36, + 51, + 38, + 44, + 29, + 46, + 53, + 35, + 49, + 40, + 29, + 47, + 48, + 53, + 35, + 46, + 28, + 50, + 32, + 31, + 41, + 31, + 45, + 32, + 28, + 40, + 55, + 41, + 44, + 38, + 34, + 36, + 39, + 30, + 35, + 60, + 35, + 38, + 57, + 40, + 46, + 45, + 57, + 35, + 38, + 30, + 25, + 37, + 60, + 37, + 43, + 32, + 41, + 36, + 33, + 58, + 33, + 30, + 32, + 28, + 46, + 35, + 36, + 36, + 31, + 47, + 35, + 29, + 29, + 35, + 54, + 31, + 55, + 38, + 41, + 49, + 39, + 34, + 39, + 37, + 45, + 49, + 40, + 42, + 47, + 56, + 43, + 34, + 29, + 53, + 50, + 20, + 47, + 48, + 29, + 28, + 31, + 29, + 33, + 33, + 36, + 35, + 38, + 31, + 30, + 42, + 27, + 39, + 38, + 30, + 52, + 38, + 54, + 29, + 28, + 30, + 37, + 29, + 39, + 39, + 31, + 38, + 32, + 31, + 39, + 39, + 39, + 37, + 30, + 32, + 37, + 27, + 33, + 47, + 54, + 51, + 41, + 51, + 55, + 39, + 37, + 39, + 33, + 33, + 59, + 36, + 40, + 37, + 56, + 32, + 30, + 32, + 31, + 20, + 42, + 46, + 41, + 33, + 24, + 31, + 25, + 35, + 25, + 31, + 39, + 37, + 30, + 60, + 37, + 28, + 31, + 36, + 33, + 39, + 39, + 56, + 39, + 35, + 35, + 29, + 32, + 35, + 26, + 31, + 39, + 31, + 49, + 49, + 36, + 52, + 40, + 36, + 39, + 39, + 58, + 29, + 39, + 31, + 39, + 49, + 41, + 32, + 46, + 51, + 50, + 35, + 24, + 59, + 33, + 24, + 30, + 38, + 34, + 25, + 36, + 32, + 33, + 42, + 37, + 35, + 48, + 50, + 39, + 33, + 29, + 33, + 41, + 46, + 42, + 44, + 24, + 53, + 36, + 49, + 41, + 40, + 40, + 49, + 25, + 34, + 34, + 28, + 39, + 34, + 36, + 32, + 40, + 36, + 27, + 36, + 47, + 47, + 40, + 30, + 39, + 58, + 30, + 52, + 46, + 32, + 53, + 31, + 51, + 45, + 32, + 43, + 34, + 25, + 25, + 44, + 59, + 39, + 42, + 30, + 49, + 41, + 27, + 32, + 27, + 29, + 30, + 29, + 32, + 55, + 39, + 37, + 26, + 52, + 28, + 33, + 32, + 50, + 47, + 40, + 45, + 43, + 28, + 36, + 37, + 32, + 26, + 35, + 56, + 37, + 43, + 41, + 43, + 31, + 39, + 56, + 34, + 34, + 45, + 59, + 46, + 25, + 33, + 27, + 33, + 25, + 38, + 33, + 33, + 34, + 50, + 38, + 33, + 42, + 52, + 35, + 32, + 30, + 46, + 34, + 33, + 50, + 48, + 44, + 32, + 34, + 27, + 40, + 29, + 25, + 29, + 44, + 33, + 33, + 40, + 38, + 33, + 36, + 48, + 50, + 35, + 24, + 32, + 50, + 38, + 41, + 27, + 39, + 25, + 33, + 37, + 46, + 53, + 32, + 43, + 38, + 26, + 42, + 26, + 41, + 26, + 43, + 28, + 35, + 45, + 40, + 37, + 52, + 36, + 43, + 36, + 39, + 47, + 36, + 46, + 47, + 47, + 42, + 48, + 53, + 51, + 37, + 44, + 48, + 44, + 35, + 53, + 55, + 37, + 36, + 45, + 35, + 32, + 36, + 55, + 39, + 32, + 57, + 41, + 59, + 44, + 39, + 39, + 33, + 42, + 33, + 29, + 35, + 54, + 34, + 51, + 33, + 32, + 47, + 26, + 26, + 25, + 39, + 29, + 36, + 31, + 40, + 56, + 38, + 42, + 42, + 48, + 36, + 30, + 39, + 35, + 33, + 39, + 41, + 34, + 30, + 38, + 37, + 34, + 33, + 33, + 36, + 33, + 38, + 50, + 32, + 45, + 36, + 57, + 57, + 44, + 46, + 32, + 41, + 33, + 30, + 51, + 39, + 50, + 53, + 51, + 40, + 47, + 37, + 37, + 30, + 38, + 31, + 48, + 29, + 48, + 41, + 56, + 39, + 33, + 31, + 54, + 26, + 45, + 41, + 35, + 28, + 34, + 57, + 39, + 35, + 58, + 34, + 29, + 37, + 25, + 39, + 39, + 34, + 47, + 31, + 33, + 41, + 29, + 39, + 37, + 56, + 51, + 47, + 57, + 44, + 35, + 31, + 40, + 45, + 47, + 26, + 36, + 33, + 38, + 37, + 39, + 36, + 35, + 31, + 31, + 32, + 39, + 25, + 40, + 28, + 29, + 30, + 34, + 43, + 38, + 35, + 26, + 31, + 48, + 37, + 30, + 30, + 53, + 34, + 43, + 54, + 46, + 57, + 34, + 33, + 48, + 33, + 36, + 28, + 30, + 31, + 51, + 30, + 34, + 51, + 33, + 45, + 50, + 28, + 33, + 37, + 35, + 48, + 26, + 54, + 40, + 35, + 35, + 34, + 28, + 36, + 42, + 37, + 45, + 42, + 34, + 48, + 34, + 49, + 48, + 50, + 41, + 45, + 53, + 36, + 45, + 37, + 25, + 35, + 34, + 32, + 39, + 36, + 46, + 56, + 39, + 34, + 28, + 41, + 54, + 53, + 39, + 37, + 38, + 41, + 45, + 38, + 40, + 42, + 32, + 42, + 37, + 32, + 36, + 48, + 46, + 48, + 34, + 38, + 42, + 57, + 58, + 32, + 35, + 47, + 38, + 49, + 33, + 27, + 34, + 45, + 39, + 40, + 59, + 42, + 42, + 37, + 35, + 32, + 42, + 25, + 42, + 56, + 47, + 30, + 48, + 58, + 54, + 33, + 49, + 33, + 49, + 40, + 32, + 53, + 26, + 38, + 36, + 45, + 47, + 36, + 47, + 31, + 29, + 41, + 27, + 35, + 50, + 49, + 27, + 39, + 41, + 43, + 43, + 38, + 34, + 35, + 36, + 35, + 29, + 36, + 51, + 39, + 36, + 30, + 36, + 37, + 46, + 30, + 30, + 33, + 54, + 35, + 55, + 29, + 55, + 36, + 39, + 58, + 37, + 34, + 54, + 27, + 31, + 48, + 46, + 40, + 36, + 47, + 36, + 25, + 49, + 37, + 36, + 57, + 39, + 28, + 47, + 34, + 51, + 33, + 58, + 31, + 34, + 33, + 39, + 37, + 29, + 59, + 32, + 25, + 36, + 23, + 42, + 43, + 29, + 45, + 35, + 35, + 39, + 29, + 39, + 34, + 44, + 33, + 37, + 42, + 55, + 37, + 39, + 40, + 52, + 51, + 54, + 36, + 45, + 46, + 45, + 31, + 35, + 48, + 44, + 38, + 53, + 37, + 29, + 35, + 59, + 34, + 28, + 45, + 31, + 34, + 38, + 29, + 34, + 32, + 41, + 49, + 33, + 52, + 44, + 33, + 57, + 31, + 37, + 39, + 34, + 43, + 33, + 51, + 51, + 50, + 41, + 47, + 29, + 39, + 48, + 52, + 35, + 38, + 55, + 42, + 40, + 49, + 37, + 54, + 49, + 48, + 35, + 51, + 48, + 50, + 39, + 34, + 37, + 26, + 52, + 42, + 41, + 53, + 39, + 40, + 42, + 29, + 30, + 41, + 30, + 52, + 41, + 34, + 40, + 34, + 42, + 35, + 28, + 29, + 56, + 48, + 29, + 42, + 51, + 29, + 41, + 28, + 34, + 31, + 47, + 31, + 39, + 36, + 29, + 29, + 34, + 29, + 29, + 41, + 34, + 48, + 38, + 32, + 35, + 39, + 47, + 41, + 35, + 49, + 44, + 28, + 41, + 35, + 45, + 36, + 41, + 40, + 41, + 35, + 56, + 25, + 59, + 33, + 36, + 41, + 24, + 32, + 29, + 42, + 29, + 38, + 33, + 36, + 45, + 32, + 37, + 26, + 35, + 35, + 36, + 36, + 26, + 51, + 45, + 36, + 58, + 33, + 33, + 31, + 34, + 34, + 27, + 30, + 23, + 33, + 23, + 36, + 42, + 36, + 26, + 32, + 37, + 36, + 35, + 36, + 37, + 56, + 28, + 43, + 30, + 33, + 30, + 33, + 39, + 37, + 41, + 53, + 31, + 52, + 28, + 50, + 31, + 39, + 27, + 33, + 47, + 32, + 37, + 31, + 32, + 48, + 32, + 38, + 39, + 32, + 26, + 38, + 35, + 33, + 36, + 44, + 35, + 42, + 35, + 36, + 26, + 27, + 44, + 33, + 29, + 55, + 41, + 39, + 49, + 30, + 31, + 59, + 33, + 44, + 28, + 26, + 28, + 32, + 47, + 33, + 28, + 31, + 38, + 33, + 41, + 29, + 46, + 36, + 58, + 46, + 41, + 36, + 60, + 43, + 30, + 43, + 41, + 29, + 29, + 33, + 41, + 43, + 40, + 30, + 29, + 30, + 36, + 41, + 34, + 45, + 31, + 49, + 48, + 30, + 32, + 30, + 39, + 37, + 37, + 41, + 42, + 42, + 58, + 26, + 31, + 37, + 32, + 33, + 35, + 32, + 32, + 31, + 51, + 40, + 40, + 44, + 31, + 30, + 31, + 45, + 29, + 34, + 30, + 38, + 33, + 46, + 41, + 44, + 46, + 44, + 35, + 52, + 33, + 33, + 26, + 41, + 53, + 41, + 49, + 31, + 37, + 43, + 49, + 52, + 52, + 34, + 34, + 33, + 46, + 37, + 35, + 41, + 46, + 41, + 48, + 59, + 40, + 50, + 45, + 42, + 36, + 47, + 45, + 48, + 31, + 40, + 34, + 33, + 30, + 38, + 36, + 34, + 34, + 34, + 33, + 46, + 48, + 48, + 55, + 41, + 36, + 36, + 46, + 57, + 48, + 58, + 34, + 42, + 55, + 37, + 46, + 52, + 54, + 32, + 36, + 32, + 35, + 37, + 38, + 37, + 31, + 45, + 36, + 49, + 34, + 39, + 26, + 36, + 31, + 54, + 39, + 43, + 53, + 28, + 45, + 35, + 47, + 35, + 24, + 31, + 39, + 39, + 53, + 54, + 39, + 48, + 32, + 36, + 42, + 36, + 38, + 34, + 36, + 48, + 32, + 47, + 43, + 29, + 38, + 59, + 29, + 36, + 34, + 48, + 27, + 44, + 36, + 31, + 30, + 31, + 42, + 28, + 58, + 32, + 29, + 34, + 32, + 26, + 47, + 41, + 24, + 26, + 28, + 38, + 35, + 30, + 28, + 38, + 34, + 44, + 36, + 40, + 32, + 29, + 50, + 53, + 45, + 57, + 29, + 25, + 26, + 34, + 37, + 34, + 53, + 28, + 48, + 54, + 56, + 35, + 31, + 31, + 38, + 44, + 36, + 49, + 30, + 28, + 49, + 29, + 29, + 46, + 54, + 41, + 26, + 43, + 35, + 34, + 36, + 45, + 49, + 35, + 41, + 34, + 46, + 27, + 55, + 36, + 57, + 37, + 34, + 32, + 40, + 25, + 36, + 48, + 57, + 42, + 44, + 30, + 37, + 35, + 43, + 31, + 49, + 36, + 40, + 29, + 37, + 36, + 32, + 36, + 28, + 35, + 47, + 31, + 51, + 34, + 39, + 32, + 37, + 30, + 58, + 38, + 32, + 25, + 56, + 39, + 40, + 48, + 38, + 37, + 26, + 53, + 57, + 35, + 46, + 27, + 43, + 59, + 38, + 41, + 29, + 35, + 25, + 44, + 28, + 45, + 39, + 28, + 42, + 59, + 34, + 39, + 41, + 39, + 48, + 52, + 35, + 56, + 60, + 34, + 29, + 38, + 35, + 32, + 24, + 53, + 34, + 52, + 40, + 37, + 45, + 57, + 33, + 35, + 52, + 48, + 44, + 52, + 39, + 50, + 29, + 25, + 32, + 30, + 28, + 41, + 34, + 42, + 39, + 24, + 29, + 26, + 35, + 32, + 36, + 33, + 27, + 28, + 41, + 33, + 36, + 29, + 32, + 53, + 37, + 46, + 28, + 44, + 31, + 31, + 36, + 51, + 29, + 28, + 49, + 30, + 52, + 45, + 52, + 24, + 46, + 25, + 33, + 29, + 44, + 50, + 48, + 26, + 36, + 35, + 28, + 52, + 28, + 32, + 38, + 36, + 31, + 38, + 39, + 31, + 39, + 36, + 37, + 28, + 31, + 36, + 37, + 28, + 38, + 37, + 30, + 33, + 52, + 48, + 40, + 53, + 33, + 35, + 33, + 36, + 48, + 35, + 42, + 35, + 34, + 29, + 32, + 31, + 46, + 25, + 28, + 32, + 30, + 32, + 28, + 28, + 40, + 38, + 47, + 37, + 28, + 43, + 33, + 33, + 35, + 29, + 30, + 51, + 34, + 46, + 31, + 30, + 47, + 41, + 27, + 32, + 37, + 48, + 36, + 50, + 25, + 33, + 48, + 35, + 45, + 28, + 56, + 37, + 38, + 23, + 33, + 48, + 31, + 43, + 44, + 33, + 36, + 30, + 28, + 46, + 32, + 36, + 24, + 35, + 31, + 33, + 28, + 43, + 33, + 31, + 39, + 52, + 28, + 39, + 37, + 51, + 53, + 52, + 33, + 36, + 43, + 52, + 36, + 35, + 30, + 30, + 38, + 38, + 39, + 34, + 32, + 37, + 29, + 44, + 37, + 46, + 32, + 28, + 32, + 38, + 32, + 34, + 36, + 44, + 44, + 37, + 58, + 28, + 46, + 48, + 41, + 32, + 49, + 27, + 46, + 42, + 32, + 33, + 50, + 49, + 45, + 36, + 38, + 30, + 35, + 36, + 41, + 37, + 35, + 28, + 54, + 30, + 31, + 42, + 37, + 50, + 47, + 42, + 56, + 45, + 31, + 39, + 29, + 41, + 35, + 29, + 34, + 31, + 36, + 41, + 31, + 32, + 37, + 47, + 28, + 36, + 32, + 36, + 51, + 32, + 52, + 36, + 48, + 28, + 28, + 34, + 39, + 42, + 57, + 28, + 25, + 29, + 28, + 32, + 55, + 25, + 53, + 36, + 49, + 44, + 37, + 41, + 40, + 24, + 34, + 30, + 27, + 40, + 35, + 26, + 33, + 35, + 32, + 34, + 33, + 27, + 43, + 26, + 48, + 42, + 35, + 42, + 28, + 32, + 28, + 41, + 22, + 34, + 52, + 55, + 24, + 31, + 34, + 45, + 44, + 29, + 32, + 32, + 48, + 29, + 32, + 38, + 28, + 27, + 26, + 33, + 28, + 35, + 46, + 26, + 47, + 26, + 34, + 24, + 31, + 26, + 31, + 60, + 24, + 28, + 55, + 38, + 37, + 36, + 31, + 29, + 31, + 36, + 32, + 30, + 27, + 57, + 27, + 46, + 43, + 38, + 48, + 33, + 37, + 34, + 34, + 34, + 29, + 46, + 32, + 51, + 34, + 30, + 39, + 47, + 36, + 47, + 49, + 35, + 25, + 26, + 36, + 27, + 59, + 54, + 36, + 53, + 31, + 53, + 34, + 31, + 40, + 31, + 25, + 49, + 53, + 46, + 58, + 54, + 45, + 34, + 50, + 25, + 50, + 43, + 34, + 41, + 35, + 34, + 47, + 42, + 28, + 43, + 41, + 33, + 53, + 33, + 30, + 49, + 38, + 39, + 46, + 40, + 36, + 53, + 42, + 39, + 34, + 40, + 46, + 30, + 42, + 38, + 33, + 36, + 21, + 29, + 39, + 31, + 36, + 27, + 34, + 40, + 36, + 40, + 53, + 40, + 25, + 46, + 35, + 43, + 43, + 33, + 49, + 35, + 36, + 45, + 30, + 40, + 31, + 46, + 39, + 55, + 42, + 42, + 45, + 38, + 49, + 31, + 57, + 47, + 42, + 31, + 43, + 32, + 33, + 22, + 41, + 60, + 50, + 30, + 42, + 45, + 40, + 41, + 57, + 34, + 40, + 42, + 32, + 33, + 37, + 37, + 37, + 28, + 45, + 52, + 33, + 43, + 41, + 31, + 51, + 31, + 41, + 51, + 51, + 30, + 35, + 35, + 57, + 38, + 30, + 31, + 37, + 29, + 41, + 27, + 34, + 44, + 42, + 29, + 57, + 50, + 58, + 34, + 40, + 46, + 33, + 27, + 41, + 39, + 31, + 48, + 30, + 58, + 41, + 44, + 47, + 32, + 33, + 57, + 32, + 33, + 34, + 50, + 44, + 48, + 56, + 42, + 29, + 32, + 40, + 39, + 28, + 27, + 37, + 43, + 35, + 51, + 34, + 28, + 26, + 52, + 45, + 46, + 45, + 31, + 55, + 55, + 27, + 24, + 36, + 33, + 30, + 28, + 38, + 42, + 35, + 24, + 35, + 25, + 56, + 32, + 27, + 34, + 31, + 37, + 29, + 35, + 43, + 49, + 50, + 34, + 24, + 44, + 37, + 39, + 33, + 39, + 28, + 25, + 39, + 31, + 32, + 39, + 29, + 46, + 39, + 43, + 31, + 46, + 56, + 42, + 41, + 41, + 53, + 25, + 41, + 38, + 31, + 46, + 58, + 39, + 31, + 40, + 56, + 41, + 33, + 33, + 48, + 39, + 35, + 45, + 36, + 33, + 46, + 32, + 42, + 37, + 35, + 47, + 33, + 38, + 39, + 55, + 35, + 55, + 32, + 32, + 56, + 55, + 33, + 46, + 33, + 26, + 36, + 28, + 36, + 41, + 31, + 32, + 25, + 22, + 43, + 35, + 60, + 40, + 37, + 37, + 36, + 35, + 43, + 39, + 37, + 38, + 37, + 38, + 35, + 37, + 32, + 42, + 52, + 33, + 32, + 33, + 34, + 34, + 55, + 34, + 52, + 53, + 43, + 33, + 39, + 35, + 45, + 35, + 37, + 35, + 36, + 30, + 53, + 36, + 36, + 38, + 35, + 35, + 30, + 40, + 27, + 42, + 49, + 38, + 31, + 57, + 29, + 36, + 30, + 48, + 30, + 53, + 40, + 45, + 56, + 31, + 56, + 60, + 34, + 56, + 29, + 53, + 43, + 38, + 48, + 43, + 30, + 31, + 41, + 44, + 40, + 39, + 40, + 33, + 57, + 31, + 57, + 48, + 33, + 51, + 43, + 55, + 37, + 40, + 31, + 32, + 32, + 35, + 36, + 31, + 46, + 39, + 58, + 44, + 33, + 24, + 33, + 44, + 30, + 32, + 33, + 58, + 42, + 29, + 52, + 36, + 29, + 46, + 58, + 57, + 29, + 33, + 35, + 47, + 26, + 34, + 38, + 46, + 26, + 30, + 40, + 30, + 30, + 27, + 26, + 33, + 50, + 38, + 35, + 42, + 29, + 38, + 45, + 30, + 58, + 39, + 30, + 46, + 57, + 36, + 45, + 28, + 49, + 26, + 38, + 37, + 57, + 42, + 52, + 41, + 38, + 45, + 57, + 32, + 43, + 31, + 24, + 53, + 31, + 42, + 49, + 32, + 47, + 56, + 28, + 34, + 29, + 31, + 25, + 40, + 36, + 49, + 29, + 38, + 32, + 35, + 54, + 32, + 30, + 25, + 52, + 43, + 38, + 45, + 33, + 30, + 26, + 34, + 33, + 37, + 32, + 35, + 50, + 35, + 36, + 29, + 36, + 46, + 37, + 26, + 28, + 50, + 54, + 37, + 49, + 55, + 50, + 36, + 35, + 44, + 30, + 40, + 29, + 34, + 58, + 34, + 36, + 59, + 32, + 50, + 45, + 48, + 35, + 46, + 28, + 34, + 39, + 37, + 38, + 35, + 36, + 39, + 41, + 41, + 26, + 54, + 41, + 38, + 26, + 42, + 35, + 30, + 57, + 37, + 46, + 37, + 41, + 53, + 36, + 55, + 47, + 47, + 50, + 53, + 37, + 53, + 39, + 46, + 28, + 40, + 37, + 39, + 36, + 29, + 31, + 47, + 38, + 43, + 46, + 33, + 27, + 30, + 47, + 48, + 42, + 48, + 48, + 42, + 46, + 36, + 29, + 37, + 42, + 24, + 55, + 38, + 45, + 38, + 48, + 46, + 47, + 33, + 39, + 47, + 37, + 47, + 29, + 47, + 25, + 55, + 44, + 40, + 48, + 37, + 58, + 50, + 51, + 45, + 39, + 47, + 55, + 41, + 41, + 41, + 53, + 39, + 48, + 42, + 36, + 35, + 38, + 59, + 34, + 53, + 33, + 42, + 51, + 35, + 32, + 42, + 57, + 46, + 42, + 38, + 31, + 44, + 29, + 56, + 47, + 39, + 42, + 27, + 27, + 59, + 43, + 38, + 38, + 33, + 41, + 32, + 46, + 49, + 33, + 42, + 23, + 28, + 27, + 49, + 55, + 38, + 29, + 36, + 58, + 45, + 40, + 37, + 31, + 29, + 50, + 30, + 35, + 43, + 57, + 53, + 37, + 41, + 29, + 30, + 32, + 38, + 36, + 48, + 39, + 32, + 34, + 41, + 32, + 38, + 41, + 27, + 57, + 37, + 44, + 37, + 50, + 41, + 31, + 40, + 43, + 41, + 32, + 31, + 46, + 31, + 47, + 39, + 52, + 49, + 39, + 49, + 39, + 35, + 28, + 55, + 36, + 49, + 25, + 33, + 37, + 53, + 38, + 48, + 40, + 35, + 51, + 37, + 34, + 32, + 58, + 35, + 47, + 33, + 34, + 48, + 38, + 40, + 26, + 42, + 59, + 43, + 33, + 47, + 30, + 35, + 31, + 33, + 31, + 28, + 26, + 35, + 43, + 37, + 28, + 36, + 50, + 52, + 31, + 56, + 51, + 36, + 39, + 37, + 48, + 55, + 34, + 33, + 32, + 39, + 32, + 36, + 43, + 31, + 25, + 49, + 53, + 26, + 41, + 39, + 33, + 39, + 30, + 44, + 31, + 40, + 27, + 35, + 31, + 47, + 30, + 37, + 33, + 38, + 46, + 57, + 34, + 33, + 43, + 32, + 38, + 38, + 28, + 42, + 49, + 30, + 35, + 35, + 40, + 42, + 51, + 49, + 48, + 29, + 44, + 41, + 28, + 42, + 43, + 57, + 47, + 42, + 33, + 35, + 26, + 35, + 39, + 52, + 47, + 44, + 36, + 48, + 30, + 28, + 41, + 32, + 42, + 55, + 33, + 42, + 48, + 50, + 42, + 36, + 34, + 27, + 44, + 44, + 52, + 39, + 43, + 41, + 41, + 41, + 39, + 36, + 44, + 47, + 44, + 42, + 44, + 59, + 42, + 36, + 42, + 49, + 37, + 45, + 46, + 39, + 35, + 37, + 49, + 37, + 40, + 34, + 38, + 43, + 33, + 30, + 24, + 26, + 32, + 38, + 50, + 45, + 35, + 46, + 43, + 28, + 29, + 44, + 30, + 26, + 39, + 32, + 41, + 39, + 44, + 36, + 24, + 35, + 40, + 32, + 26, + 56, + 35, + 34, + 54, + 43, + 28, + 44, + 58, + 31, + 37, + 52, + 36, + 31, + 30, + 41, + 26, + 38, + 44, + 28, + 29, + 35, + 50, + 33, + 57, + 28, + 50, + 30, + 48, + 43, + 39, + 39, + 36, + 29, + 31, + 43, + 46, + 45, + 30, + 30, + 46, + 49, + 38, + 58, + 33, + 33, + 31, + 39, + 30, + 35, + 57, + 34, + 30, + 40, + 37, + 40, + 42, + 41, + 31, + 29, + 33, + 27, + 35, + 31, + 37, + 48, + 37, + 33, + 40, + 29, + 35, + 35, + 35, + 38, + 46, + 35, + 41, + 47, + 28, + 35, + 34, + 25, + 33, + 33, + 35, + 35, + 36, + 33, + 27, + 41, + 36, + 30, + 58, + 43, + 31, + 30, + 31, + 30, + 42, + 31, + 43, + 58, + 31, + 28, + 35, + 30, + 52, + 47, + 36, + 36, + 31, + 36, + 34, + 32, + 32, + 51, + 28, + 54, + 59, + 33, + 35, + 48, + 50, + 29, + 39, + 36, + 35, + 38, + 34, + 45, + 38, + 33, + 31, + 32, + 55, + 37, + 34, + 36, + 39, + 31, + 34, + 32, + 35, + 44, + 38, + 37, + 30, + 31, + 29, + 52, + 32, + 47, + 39, + 38, + 30, + 32, + 27, + 46, + 54, + 35, + 33, + 37, + 41, + 44, + 33, + 49, + 23, + 49, + 38, + 37, + 39, + 43, + 44, + 40, + 41, + 32, + 38, + 41, + 52, + 34, + 56, + 51, + 40, + 39, + 28, + 32, + 38, + 46, + 37, + 30, + 34, + 46, + 37, + 24, + 30, + 36, + 48, + 47, + 36, + 38, + 30, + 38, + 37, + 43, + 32, + 41, + 31, + 28, + 50, + 35, + 39, + 40, + 34, + 27, + 33, + 39, + 39, + 43, + 26, + 36, + 40, + 50, + 46, + 40, + 28, + 34, + 51, + 32, + 34, + 34, + 31, + 29, + 27, + 49, + 39, + 31, + 46, + 44, + 33, + 35, + 38, + 33, + 41, + 35, + 24, + 25, + 34, + 31, + 38, + 26, + 29, + 50, + 27, + 34, + 43, + 37, + 45, + 30, + 43, + 47, + 53, + 47, + 37, + 41, + 26, + 31, + 36, + 46, + 50, + 45, + 45, + 29, + 26, + 45, + 46, + 37, + 46, + 42, + 25, + 45, + 40, + 49, + 51, + 35, + 32, + 29, + 41, + 37, + 35, + 31, + 27, + 37, + 43, + 37, + 51, + 34, + 30, + 36, + 34, + 37, + 38, + 55, + 31, + 56, + 35, + 48, + 53, + 37, + 30, + 47, + 26, + 33, + 22, + 51, + 29, + 31, + 48, + 38, + 31, + 27, + 35, + 34, + 30, + 38, + 32, + 33, + 57, + 37, + 37, + 42, + 52, + 33, + 27, + 35, + 29, + 31, + 26, + 49, + 35, + 37, + 34, + 29, + 52, + 53, + 32, + 46, + 52, + 48, + 32, + 46, + 28, + 31, + 29, + 30, + 39, + 55, + 28, + 52, + 38, + 22, + 31, + 31, + 33, + 31, + 34, + 30, + 29, + 50, + 39, + 36, + 35, + 28, + 38, + 30, + 52, + 28, + 45, + 31, + 28, + 33, + 38, + 37, + 30, + 36, + 50, + 38, + 42, + 37, + 28, + 32, + 49, + 44, + 40, + 42, + 31, + 54, + 34, + 53, + 27, + 57, + 32, + 39, + 36, + 38, + 28, + 26, + 45, + 50, + 46, + 35, + 34, + 35, + 34, + 24, + 26, + 52, + 37, + 37, + 43, + 29, + 34, + 51, + 48, + 37, + 42, + 40, + 30, + 46, + 31, + 43, + 38, + 57, + 55, + 48, + 41, + 30, + 32, + 34, + 35, + 41, + 34, + 57, + 55, + 52, + 30, + 41, + 37, + 31, + 30, + 24, + 31, + 38, + 25, + 39, + 33, + 28, + 40, + 33, + 41, + 39, + 28, + 31, + 32, + 39, + 50, + 50, + 24, + 45, + 33, + 43, + 45, + 47, + 50, + 40, + 52, + 28, + 38, + 51, + 29, + 35, + 37, + 39, + 29, + 56, + 41, + 52, + 30, + 39, + 53, + 27, + 30, + 29, + 35, + 39, + 28, + 53, + 32, + 29, + 34, + 35, + 45, + 59, + 26, + 50, + 51, + 25, + 29, + 35, + 49, + 33, + 32, + 38, + 45, + 37, + 47, + 45, + 35, + 31, + 35, + 32, + 33, + 39, + 49, + 30, + 37, + 42, + 57, + 57, + 45, + 34, + 35, + 50, + 56, + 38, + 56, + 49, + 41, + 32, + 43, + 53, + 31, + 31, + 33, + 43, + 32, + 30, + 53, + 36, + 33, + 35, + 36, + 41, + 59, + 33, + 59, + 35, + 35, + 25, + 27, + 37, + 34, + 34, + 33, + 34, + 43, + 41, + 26, + 26, + 30, + 43, + 34, + 35, + 56, + 34, + 34, + 47, + 34, + 30, + 32, + 34, + 34, + 42, + 38, + 29, + 47, + 51, + 41, + 33, + 38, + 33, + 33, + 36, + 44, + 44, + 31, + 45, + 48, + 25, + 37, + 27, + 34, + 38, + 46, + 42, + 42, + 31, + 28, + 29, + 32, + 39, + 34, + 27, + 27, + 30, + 39, + 37, + 31, + 20, + 53, + 40, + 30, + 30, + 41, + 53, + 36, + 39, + 40, + 33, + 29, + 55, + 38, + 35, + 33, + 28, + 34, + 30, + 27, + 42, + 55, + 35, + 25, + 27, + 50, + 48, + 35, + 30, + 31, + 49, + 43, + 36, + 31, + 35, + 56, + 37, + 38, + 25, + 32, + 48, + 30, + 49, + 33, + 48, + 55, + 38, + 45, + 31, + 45, + 44, + 36, + 33, + 30, + 31, + 27, + 39, + 55, + 51, + 29, + 33, + 46, + 31, + 39, + 45, + 32, + 36, + 42, + 39, + 35, + 34, + 55, + 29, + 31, + 33, + 31, + 40, + 47, + 42, + 35, + 24, + 49, + 36, + 34, + 28, + 42, + 34, + 44, + 39, + 50, + 27, + 58, + 32, + 41, + 46, + 32, + 31, + 34, + 41, + 33, + 37, + 38, + 25, + 29, + 28, + 35, + 46, + 36, + 28, + 32, + 41, + 41, + 28, + 35, + 34, + 59, + 37, + 42, + 43, + 36, + 25, + 51, + 37, + 35, + 21, + 39, + 46, + 52, + 42, + 30, + 52, + 36, + 25, + 25, + 33, + 33, + 43, + 32, + 25, + 40, + 30, + 34, + 36, + 34, + 35, + 29, + 39, + 41, + 25, + 50, + 37, + 28, + 31, + 50, + 46, + 52, + 35, + 42, + 25, + 37, + 41, + 35, + 49, + 36, + 28, + 42, + 42, + 33, + 29, + 27, + 35, + 40, + 33, + 41, + 43, + 31, + 35, + 40, + 27, + 47, + 45, + 27, + 44, + 40, + 32, + 34, + 44, + 31, + 26, + 40, + 43, + 34, + 36, + 34, + 29, + 22, + 48, + 46, + 34, + 56, + 36, + 56, + 36, + 36, + 52, + 59, + 33, + 54, + 47, + 40, + 39, + 58, + 33, + 30, + 30, + 47, + 46, + 45, + 35, + 33, + 43, + 26, + 29, + 41, + 35, + 34, + 40, + 29, + 42, + 35, + 37, + 34, + 37, + 42, + 42, + 58, + 38, + 38, + 34, + 45, + 53, + 36, + 42, + 32, + 38, + 44, + 48, + 46, + 44, + 40, + 43, + 41, + 37, + 48, + 32, + 45, + 43, + 32, + 48, + 50, + 41, + 31, + 37, + 33, + 36, + 39, + 31, + 34, + 52, + 30, + 30, + 44, + 47, + 41, + 48, + 31, + 52, + 43, + 46, + 34, + 35, + 29, + 55, + 24, + 29, + 39, + 30, + 30, + 33, + 38, + 41, + 40, + 38, + 33, + 41, + 38, + 28, + 51, + 41, + 56, + 26, + 44, + 42, + 35, + 28, + 30, + 45, + 41, + 47, + 36, + 28, + 26, + 36, + 36, + 38, + 45, + 33, + 34, + 46, + 39, + 40, + 36, + 30, + 42, + 59, + 51, + 49, + 44, + 39, + 59, + 43, + 29, + 56, + 41, + 47, + 43, + 31, + 60, + 29, + 54, + 31, + 36, + 34, + 42, + 55, + 50, + 50, + 51, + 44, + 57, + 30, + 54, + 24, + 45, + 49, + 51, + 37, + 54, + 30, + 42, + 37, + 34, + 49, + 53, + 30, + 35, + 55, + 27, + 30, + 33, + 33, + 39, + 25, + 35, + 37, + 34, + 38, + 45, + 31, + 41, + 29, + 50, + 25, + 29, + 33, + 41, + 38, + 37, + 40, + 25, + 59, + 45, + 36, + 37, + 31, + 28, + 52, + 59, + 36, + 35, + 32, + 34, + 32, + 33, + 46, + 42, + 37, + 36, + 33, + 29, + 30, + 48, + 38, + 38, + 41, + 39, + 54, + 29, + 51, + 41, + 54, + 31, + 54, + 36, + 31, + 55, + 55, + 30, + 39, + 27, + 34, + 51, + 49, + 37, + 53, + 34, + 50, + 35, + 28, + 36, + 35, + 26, + 32, + 32, + 59, + 30, + 48, + 35, + 37, + 39, + 57, + 42, + 25, + 46, + 34, + 44, + 42, + 42, + 41, + 48, + 33, + 58, + 52, + 31, + 28, + 32, + 37, + 51, + 34, + 40, + 47, + 43, + 30, + 35, + 26, + 36, + 42, + 30, + 35, + 33, + 38, + 34, + 28, + 33, + 39, + 26, + 36, + 35, + 33, + 34, + 41, + 25, + 50, + 25, + 37, + 49, + 38, + 52, + 34, + 26, + 37, + 37, + 37, + 35, + 34, + 38, + 25, + 41, + 25, + 26, + 37, + 39, + 49, + 41, + 33, + 30, + 35, + 40, + 32, + 45, + 29, + 36, + 35, + 40, + 46, + 30, + 36, + 32, + 26, + 32, + 26, + 42, + 32, + 33, + 43, + 26, + 41, + 39, + 48, + 41, + 60, + 44, + 30, + 30, + 27, + 57, + 47, + 28, + 44, + 46, + 29, + 46, + 41, + 38, + 37, + 38, + 55, + 31, + 46, + 39, + 46, + 43, + 28, + 53, + 28, + 33, + 36, + 59, + 36, + 36, + 32, + 49, + 34, + 37, + 23, + 26, + 31, + 37, + 31, + 30, + 33, + 33, + 34, + 34, + 39, + 30, + 28, + 33, + 25, + 43, + 46, + 35, + 53, + 29, + 51, + 33, + 35, + 36, + 39, + 25, + 26, + 40, + 32, + 59, + 38, + 30, + 49, + 37, + 39, + 31, + 31, + 48, + 49, + 38, + 46, + 38, + 36, + 34, + 41, + 35, + 37, + 54, + 29, + 43, + 31, + 39, + 38, + 37, + 47, + 39, + 29, + 34, + 29, + 59, + 38, + 41, + 44, + 32, + 55, + 47, + 32, + 27, + 35, + 59, + 35, + 33, + 56, + 44, + 43, + 29, + 40, + 49, + 33, + 27, + 45, + 34, + 35, + 35, + 34, + 47, + 27, + 54, + 50, + 44, + 52, + 33, + 51, + 30, + 36, + 42, + 30, + 23, + 44, + 28, + 39, + 27, + 37, + 44, + 35, + 35, + 44, + 39, + 53, + 28, + 57, + 34, + 48, + 36, + 31, + 30, + 57, + 45, + 42, + 31, + 30, + 37, + 41, + 34, + 47, + 38, + 55, + 42, + 30, + 38, + 50, + 44, + 40, + 34, + 33, + 37, + 30, + 56, + 31, + 36, + 40, + 41, + 42, + 51, + 33, + 35, + 48, + 33, + 26, + 30, + 55, + 41, + 47, + 42, + 45, + 39, + 52, + 58, + 29, + 36, + 30, + 46, + 46, + 25, + 49, + 38, + 37, + 47, + 26, + 35, + 48, + 42, + 41, + 44, + 30, + 54, + 48, + 33, + 44, + 39, + 56, + 46, + 38, + 35, + 51, + 33, + 35, + 47, + 35, + 42, + 25, + 32, + 30, + 31, + 35, + 45, + 40, + 30, + 58, + 39, + 35, + 49, + 49, + 32, + 44, + 35, + 35, + 33, + 30, + 55, + 47, + 51, + 44, + 41, + 32, + 41, + 38, + 41, + 25, + 33, + 24, + 36, + 40, + 45, + 26, + 32, + 47, + 51, + 37, + 47, + 33, + 57, + 26, + 56, + 43, + 36, + 29, + 48, + 47, + 45, + 41, + 51, + 40, + 33, + 28, + 27, + 25, + 55, + 53, + 31, + 55, + 34, + 47, + 29, + 36, + 37, + 25, + 40, + 36, + 38, + 28, + 25, + 45, + 39, + 33, + 36, + 39, + 33, + 58, + 36, + 28, + 37, + 45, + 43, + 30, + 39, + 35, + 33, + 37, + 49, + 39, + 37, + 45, + 40, + 52, + 41, + 30, + 34, + 41, + 45, + 42, + 58, + 58, + 32, + 33, + 56, + 37, + 35, + 24, + 54, + 42, + 47, + 27, + 33, + 34, + 51, + 30, + 58, + 31, + 33, + 47, + 32, + 30, + 52, + 38, + 36, + 47, + 28, + 34, + 33, + 30, + 41, + 36, + 48, + 44, + 34, + 42, + 28, + 30, + 40, + 38, + 36, + 39, + 35, + 54, + 33, + 39, + 41, + 29, + 50, + 32, + 31, + 29, + 44, + 48, + 47, + 34, + 36, + 39, + 43, + 39, + 50, + 24, + 38, + 34, + 48, + 54, + 31, + 42, + 45, + 57, + 33, + 35, + 28, + 57, + 41, + 41, + 38, + 48, + 39, + 33, + 52, + 42, + 33, + 39, + 28, + 36, + 26, + 40, + 43, + 32, + 48, + 57, + 30, + 34, + 32, + 38, + 43, + 52, + 43, + 46, + 44, + 24, + 58, + 29, + 32, + 35, + 45, + 33, + 38, + 36, + 39, + 43, + 33, + 31, + 34, + 39, + 59, + 42, + 48, + 46, + 41, + 29, + 38, + 50, + 30, + 36, + 38, + 51, + 55, + 58, + 41, + 31, + 34, + 35, + 49, + 58, + 48, + 35, + 35, + 37, + 31, + 44, + 38, + 30, + 36, + 28, + 57, + 56, + 27, + 34, + 50, + 31, + 40, + 37, + 31, + 40, + 43, + 35, + 38, + 46, + 39, + 42, + 35, + 57, + 37, + 41, + 32, + 46, + 53, + 43, + 49, + 50, + 26, + 53, + 48, + 27, + 53, + 44, + 54, + 30, + 32, + 43, + 43, + 34, + 49, + 39, + 50, + 30, + 37, + 43, + 29, + 31, + 38, + 43, + 29, + 35, + 27, + 57, + 30, + 43, + 32, + 34, + 31, + 29, + 58, + 52, + 27, + 28, + 42, + 29, + 45, + 26, + 51, + 36, + 35, + 39, + 31, + 40, + 40, + 46, + 39, + 36, + 42, + 39, + 51, + 50, + 27, + 38, + 50, + 46, + 26, + 29, + 32, + 33, + 59, + 33, + 58, + 42, + 28, + 29, + 31, + 31, + 31, + 27, + 58, + 31, + 60, + 38, + 27, + 35, + 54, + 42, + 36, + 31, + 33, + 40, + 30, + 46, + 30, + 29, + 35, + 37, + 59, + 45, + 29, + 45, + 32, + 33, + 38, + 47, + 41, + 41, + 43, + 34, + 48, + 37, + 47, + 42, + 28, + 36, + 49, + 28, + 35, + 42, + 36, + 36, + 45, + 36, + 30, + 42, + 44, + 26, + 30, + 26, + 50, + 34, + 58, + 50, + 43, + 31, + 46, + 30, + 41, + 48, + 41, + 31, + 42, + 32, + 47, + 26, + 32, + 30, + 25, + 33, + 29, + 42, + 60, + 48, + 46, + 30, + 34, + 37, + 24, + 58, + 59, + 36, + 28, + 31, + 23, + 34, + 40, + 25, + 33, + 26, + 32, + 50, + 32, + 26, + 31, + 34, + 31, + 26, + 26, + 27, + 30, + 50, + 55, + 52, + 36, + 29, + 36, + 26, + 25, + 45, + 28, + 31, + 32, + 57, + 27, + 39, + 29, + 25, + 49, + 35, + 28, + 33, + 25, + 25, + 32, + 25, + 31, + 42, + 52, + 26, + 29, + 31, + 56, + 48, + 27, + 26, + 35, + 56, + 34, + 39, + 31, + 49, + 42, + 37, + 39, + 51, + 33, + 25, + 23, + 35, + 29, + 42, + 32, + 38, + 41, + 40, + 32, + 27, + 35, + 30, + 36, + 26, + 26, + 32, + 29, + 26, + 46, + 39, + 46, + 27, + 32, + 48, + 32, + 23, + 27, + 53, + 52, + 36, + 27, + 38, + 29, + 29, + 45, + 56, + 39, + 28, + 45, + 36, + 36, + 47, + 31, + 44, + 24, + 54, + 55, + 27, + 54, + 25, + 40, + 46, + 46, + 30, + 39, + 36, + 33, + 37, + 38, + 33, + 34, + 38, + 42, + 22, + 26, + 51, + 51, + 40, + 35, + 54, + 36, + 32, + 36, + 44, + 37, + 37, + 34, + 43, + 34, + 33, + 45, + 26, + 52, + 34, + 31, + 31, + 54, + 35, + 37, + 49, + 55, + 35, + 52, + 35, + 58, + 48, + 28, + 24, + 32, + 41, + 29, + 46, + 36, + 32, + 48, + 41, + 41, + 52, + 46, + 41, + 33, + 44, + 57, + 35, + 26, + 48, + 31, + 41, + 27, + 43, + 33, + 40, + 36, + 58, + 31, + 32, + 38, + 30, + 40, + 31, + 31, + 41, + 39, + 30, + 56, + 53, + 29, + 52, + 57, + 36, + 36, + 50, + 28, + 49, + 40, + 41, + 44, + 47, + 40, + 49, + 29, + 39, + 58, + 37, + 31, + 55, + 41, + 47, + 28, + 54, + 32, + 35, + 31, + 39, + 41, + 36, + 44, + 44, + 47, + 27, + 46, + 42, + 37, + 37, + 34, + 37, + 29, + 26, + 31, + 55, + 52, + 39, + 38, + 38, + 60, + 34, + 37, + 48, + 40, + 31, + 58, + 48, + 34, + 41, + 36, + 41, + 38, + 36, + 43, + 52, + 35, + 26, + 35, + 50, + 45, + 34, + 36, + 31, + 41, + 39, + 47, + 34, + 35, + 30, + 31, + 40, + 43, + 30, + 41, + 46, + 32, + 37, + 27, + 39, + 36, + 49, + 40, + 51, + 38, + 37, + 51, + 43, + 25, + 37, + 46, + 37, + 27, + 29, + 36, + 30, + 48, + 41, + 37, + 48, + 35, + 39, + 23, + 43, + 25, + 36, + 57, + 41, + 44, + 46, + 29, + 42, + 32, + 32, + 35, + 31, + 36, + 48, + 36, + 54, + 33, + 35, + 35, + 33, + 60, + 36, + 54, + 35, + 32, + 54, + 50, + 44, + 38, + 37, + 49, + 40, + 43, + 34, + 57, + 42, + 47, + 31, + 36, + 27, + 33, + 30, + 50, + 50, + 41, + 26, + 32, + 44, + 44, + 40, + 29, + 31, + 58, + 34, + 35, + 32, + 53, + 36, + 52, + 50, + 57, + 34, + 30, + 33, + 35, + 41, + 42, + 40, + 30, + 35, + 28, + 38, + 35, + 35, + 39, + 37, + 40, + 35, + 26, + 28, + 35, + 28, + 43, + 38, + 35, + 30, + 33, + 46, + 40, + 46, + 31, + 30, + 58, + 48, + 43, + 27, + 51, + 35, + 42, + 34, + 44, + 40, + 42, + 51, + 47, + 46, + 34, + 31, + 37, + 37, + 35, + 39, + 45, + 29, + 33, + 46, + 51, + 41, + 31, + 34, + 57, + 47, + 32, + 43, + 48, + 31, + 34, + 31, + 44, + 37, + 49, + 32, + 32, + 31, + 29, + 46, + 45, + 53, + 34, + 57, + 29, + 27, + 46, + 36, + 46, + 37, + 33, + 33, + 39, + 42, + 43, + 32, + 38, + 37, + 42, + 37, + 35, + 34, + 34, + 53, + 45, + 34, + 47, + 31, + 39, + 35, + 37, + 43, + 36, + 38, + 53, + 28, + 35, + 33, + 37, + 35, + 31, + 50, + 34, + 42, + 47, + 56, + 46, + 38, + 36, + 36, + 39, + 31, + 30, + 39, + 41, + 29, + 50, + 36, + 43, + 31, + 33, + 42, + 41, + 43, + 40, + 40, + 39, + 42, + 32, + 43, + 38, + 34, + 44, + 34, + 35, + 25, + 31, + 29, + 27, + 27, + 54, + 29, + 32, + 25, + 40, + 34, + 33, + 37, + 37, + 52, + 39, + 30, + 39, + 42, + 42, + 36, + 42, + 58, + 38, + 25, + 32, + 49, + 42, + 59, + 32, + 29, + 45, + 32, + 26, + 47, + 29, + 26, + 46, + 48, + 33, + 31, + 34, + 32, + 45, + 36, + 38, + 38, + 29, + 37, + 48, + 37, + 36, + 47, + 26, + 33, + 41, + 45, + 30, + 33, + 33, + 42, + 35, + 56, + 39, + 39, + 43, + 25, + 24, + 59, + 32, + 40, + 27, + 48, + 37, + 39, + 34, + 41, + 34, + 37, + 42, + 39, + 39, + 35, + 49, + 53, + 29, + 29, + 46, + 32, + 44, + 29, + 44, + 44, + 44, + 44, + 29, + 37, + 34, + 35, + 30, + 54, + 52, + 34, + 31, + 30, + 36, + 26, + 36, + 36, + 40, + 27, + 36, + 28, + 34, + 41, + 25, + 35, + 45, + 32, + 33, + 56, + 54, + 49, + 40, + 33, + 33, + 24, + 25, + 34, + 37, + 39, + 32, + 25, + 32, + 29, + 59, + 35, + 33, + 25, + 31, + 36, + 53, + 40, + 48, + 36, + 47, + 28, + 31, + 58, + 36, + 34, + 34, + 33, + 29, + 43, + 46, + 50, + 38, + 41, + 38, + 50, + 53, + 39, + 43, + 41, + 32, + 31, + 29, + 45, + 45, + 37, + 49, + 26, + 40, + 30, + 60, + 35, + 32, + 28, + 26, + 42, + 36, + 54, + 32, + 42, + 39, + 34, + 40, + 42, + 39, + 25, + 37, + 32, + 35, + 28, + 41, + 38, + 53, + 37, + 36, + 31, + 35, + 54, + 34, + 35, + 33, + 41, + 50, + 33, + 37, + 37, + 40, + 35, + 35, + 39, + 39, + 53, + 30, + 47, + 32, + 54, + 56, + 50, + 26, + 36, + 36, + 37, + 21, + 39, + 45, + 40, + 34, + 39, + 41, + 33, + 46, + 29, + 53, + 53, + 39, + 43, + 44, + 33, + 43, + 39, + 29, + 36, + 47, + 41, + 42, + 36, + 39, + 45, + 48, + 28, + 33, + 28, + 29, + 36, + 49, + 32, + 48, + 52, + 33, + 30, + 29, + 31, + 38, + 45, + 45, + 31, + 27, + 54, + 52, + 43, + 43, + 52, + 38, + 32, + 24, + 33, + 39, + 31, + 31, + 48, + 37, + 33, + 25, + 33, + 58, + 45, + 44, + 30, + 39, + 52, + 39, + 44, + 40, + 42, + 33, + 33, + 51, + 36, + 45, + 42, + 36, + 42, + 48, + 35, + 31, + 40, + 26, + 47, + 40, + 37, + 50, + 37, + 55, + 50, + 38, + 33, + 41, + 56, + 52, + 32, + 25, + 45, + 56, + 43, + 57, + 45, + 45, + 36, + 41, + 45, + 38, + 49, + 37, + 43, + 29, + 39, + 57, + 28, + 46, + 36, + 28, + 30, + 25, + 40, + 42, + 50, + 56, + 30, + 32, + 59, + 45, + 40, + 27, + 55, + 37, + 56, + 39, + 29, + 30, + 31, + 38, + 43, + 32, + 44, + 39, + 39, + 40, + 27, + 56, + 51, + 43, + 39, + 44, + 35, + 36, + 28, + 42, + 30, + 36, + 38, + 32, + 45, + 55, + 31, + 41, + 30, + 41, + 40, + 47, + 59, + 33, + 38, + 38, + 39, + 35, + 38, + 30, + 32, + 32, + 43, + 38, + 50, + 35, + 44, + 50, + 54, + 42, + 58, + 35, + 59, + 40, + 49, + 24, + 43, + 36, + 56, + 34, + 27, + 58, + 39, + 40, + 49, + 42, + 42, + 52, + 43, + 35, + 34, + 22, + 33, + 39, + 47, + 39, + 34, + 32, + 46, + 31, + 44, + 49, + 35, + 36, + 39, + 36, + 44, + 37, + 41, + 45, + 48, + 44, + 49, + 38, + 43, + 47, + 36, + 33, + 34, + 36, + 38, + 39, + 47, + 33, + 34, + 38, + 48, + 30, + 36, + 45, + 32, + 33, + 35, + 29, + 35, + 32, + 27, + 46, + 29, + 39, + 34, + 34, + 39, + 50, + 38, + 32, + 32, + 38, + 49, + 41, + 40, + 31, + 34, + 48, + 52, + 47, + 38, + 35, + 33, + 52, + 29, + 47, + 39, + 49, + 32, + 28, + 40, + 59, + 50, + 32, + 41, + 51, + 31, + 28, + 40, + 34, + 34, + 32, + 36, + 25, + 44, + 52, + 34, + 31, + 45, + 32, + 28, + 43, + 38, + 41, + 53, + 32, + 33, + 29, + 56, + 52, + 37, + 33, + 36, + 34, + 38, + 31, + 25, + 41, + 44, + 51, + 29, + 33, + 34, + 53, + 52, + 38, + 26, + 30, + 41, + 40, + 57, + 35, + 41, + 40, + 26, + 29, + 27, + 32, + 52, + 46, + 37, + 36, + 52, + 30, + 29, + 55, + 45, + 24, + 43, + 24, + 41, + 35, + 26, + 37, + 52, + 35, + 48, + 36, + 31, + 26, + 34, + 45, + 39, + 50, + 40, + 29, + 42, + 30, + 40, + 34, + 60, + 35, + 34, + 35, + 25, + 35, + 40, + 35, + 37, + 42, + 32, + 30, + 34, + 29, + 50, + 34, + 52, + 26, + 31, + 37, + 36, + 24, + 28, + 32, + 57, + 34, + 48, + 33, + 37, + 42, + 35, + 44, + 49, + 30, + 41, + 30, + 51, + 55, + 54, + 32, + 52, + 55, + 41, + 39, + 36, + 44, + 37, + 34, + 50, + 34, + 34, + 52, + 45, + 37, + 38, + 37, + 30, + 43, + 31, + 32, + 35, + 37, + 29, + 31, + 37, + 39, + 59, + 57, + 46, + 42, + 50, + 26, + 50, + 54, + 34, + 43, + 31, + 25, + 36, + 53, + 55, + 51, + 39, + 41, + 38, + 28, + 50, + 47, + 33, + 36, + 30, + 34, + 35, + 37, + 31, + 49, + 47, + 55, + 29, + 54, + 36, + 27, + 28, + 37, + 36, + 27, + 36, + 39, + 32, + 34, + 30, + 50, + 47, + 32, + 34, + 38, + 35, + 36, + 50, + 25, + 31, + 38, + 45, + 36, + 38, + 45, + 34, + 31, + 57, + 49, + 39, + 54, + 52, + 46, + 41, + 37, + 48, + 44, + 36, + 27, + 35, + 36, + 39, + 33, + 30, + 32, + 37, + 42, + 30, + 33, + 43, + 38, + 36, + 32, + 47, + 33, + 47, + 38, + 31, + 35, + 58, + 30, + 33, + 32, + 30, + 50, + 40, + 43, + 44, + 55, + 33, + 54, + 53, + 41, + 27, + 28, + 59, + 41, + 32, + 35, + 52, + 47, + 37, + 32, + 39, + 33, + 36, + 50, + 37, + 33, + 50, + 29, + 46, + 22, + 45, + 47, + 37, + 37, + 51, + 55, + 28, + 43, + 32, + 43, + 56, + 26, + 26, + 36, + 38, + 39, + 54, + 29, + 33, + 29, + 27, + 34, + 28, + 35, + 35, + 41, + 36, + 37, + 37, + 39, + 30, + 39, + 40, + 52, + 43, + 31, + 42, + 26, + 39, + 42, + 44, + 30, + 35, + 37, + 24, + 32, + 36, + 44, + 46, + 45, + 29, + 37, + 55, + 38, + 59, + 58, + 54, + 43, + 36, + 28, + 46, + 31, + 38, + 50, + 39, + 34, + 30, + 51, + 26, + 35, + 24, + 51, + 31, + 30, + 46, + 44, + 38, + 30, + 33, + 31, + 30, + 29, + 37, + 34, + 42, + 38, + 30, + 25, + 25, + 28, + 35, + 34, + 31, + 56, + 31, + 41, + 33, + 32, + 41, + 29, + 41, + 36, + 35, + 43, + 32, + 41, + 25, + 36, + 36, + 42, + 35, + 50, + 42, + 32, + 32, + 39, + 39, + 41, + 34, + 36, + 28, + 49, + 31, + 25, + 31, + 27, + 31, + 28, + 28, + 26, + 25, + 28, + 33, + 55, + 29, + 28, + 24, + 20, + 29, + 29, + 32, + 32, + 32, + 37, + 36, + 55, + 29, + 24, + 24, + 40, + 41, + 29, + 28, + 57, + 57, + 38, + 56, + 52, + 25, + 31, + 52, + 32, + 31, + 32, + 29, + 39, + 42, + 50, + 34, + 32, + 44, + 48, + 41, + 32, + 27, + 41, + 54, + 52, + 55, + 38, + 56, + 41, + 40, + 25, + 42, + 24, + 44, + 43, + 28, + 33, + 47, + 35, + 25, + 26, + 42, + 43, + 29, + 29, + 45, + 38, + 33, + 33, + 43, + 39, + 36, + 31, + 51, + 41, + 44, + 57, + 49, + 36, + 51, + 45, + 43, + 23, + 26, + 33, + 28, + 54, + 35, + 60, + 49, + 56, + 33, + 28, + 34, + 39, + 40, + 56, + 33, + 40, + 58, + 40, + 46, + 26, + 36, + 32, + 59, + 47, + 41, + 47, + 30, + 30, + 33, + 35, + 58, + 46, + 58, + 43, + 47, + 49, + 54, + 41, + 36, + 51, + 41, + 42, + 52, + 29, + 46, + 42, + 48, + 27, + 32, + 35, + 32, + 35, + 47, + 35, + 53, + 37, + 42, + 53, + 35, + 55, + 37, + 44, + 34, + 45, + 33, + 41, + 30, + 45, + 38, + 43, + 34, + 44, + 54, + 46, + 36, + 34, + 33, + 49, + 49, + 34, + 49, + 57, + 47, + 40, + 30, + 33, + 36, + 38, + 55, + 43, + 37, + 31, + 24, + 58, + 23, + 45, + 29, + 36, + 38, + 38, + 52, + 28, + 53, + 40, + 49, + 40, + 36, + 34, + 35, + 37, + 35, + 36, + 49, + 38, + 39, + 36, + 33, + 57, + 25, + 23, + 31, + 51, + 45, + 34, + 31, + 37, + 29, + 60, + 43, + 40, + 37, + 47, + 37, + 28, + 28, + 25, + 38, + 53, + 35, + 45, + 28, + 36, + 45, + 38, + 46, + 49, + 53, + 42, + 26, + 35, + 60, + 56, + 31, + 42, + 33, + 40, + 52, + 34, + 34, + 38, + 29, + 37, + 28, + 39, + 38, + 52, + 25, + 31, + 33, + 36, + 26, + 46, + 33, + 40, + 41, + 41, + 30, + 52, + 40, + 44, + 35, + 36, + 56, + 36, + 47, + 50, + 45, + 39, + 38, + 51, + 31, + 37, + 33, + 37, + 26, + 38, + 36, + 34, + 40, + 39, + 31, + 47, + 44, + 30, + 40, + 40, + 41, + 36, + 34, + 38, + 38, + 32, + 29, + 47, + 47, + 35, + 45, + 46, + 39, + 31, + 49, + 38, + 48, + 48, + 31, + 47, + 49, + 51, + 36, + 29, + 39, + 29, + 52, + 37, + 34, + 35, + 34, + 40, + 29, + 40, + 37, + 40, + 57, + 37, + 40, + 50, + 34, + 46, + 48, + 53, + 30, + 32, + 46, + 49, + 37, + 24, + 57, + 47, + 47, + 48, + 36, + 32, + 26, + 37, + 52, + 60, + 45, + 40, + 36, + 35, + 38, + 43, + 52, + 28, + 36, + 25, + 34, + 45, + 36, + 42, + 41, + 52, + 38, + 34, + 35, + 32, + 32, + 45, + 41, + 55, + 39, + 41, + 58, + 36, + 44, + 33, + 58, + 50, + 44, + 33, + 43, + 36, + 31, + 27, + 35, + 47, + 57, + 54, + 27, + 44, + 35, + 26, + 34, + 43, + 33, + 35, + 34, + 56, + 28, + 54, + 29, + 40, + 40, + 46, + 36, + 36, + 35, + 48, + 40, + 58, + 48, + 49, + 36, + 43, + 31, + 35, + 46, + 55, + 41, + 34, + 41, + 33, + 46, + 46, + 29, + 39, + 53, + 35, + 41, + 57, + 39, + 53, + 37, + 33, + 54, + 44, + 58, + 42, + 57, + 39, + 37, + 26, + 57, + 29, + 36, + 56, + 34, + 55, + 34, + 30, + 35, + 40, + 49, + 55, + 56, + 58, + 30, + 31, + 34, + 36, + 55, + 43, + 35, + 38, + 35, + 56, + 32, + 34, + 44, + 29, + 44, + 39, + 32, + 57, + 30, + 43, + 40, + 33, + 50, + 44, + 43, + 57, + 48, + 33, + 56, + 37, + 36, + 36, + 41, + 49, + 53, + 42, + 33, + 40, + 30, + 31, + 57, + 36, + 56, + 27, + 44, + 46, + 25, + 59, + 37, + 39, + 32, + 55, + 25, + 42, + 40, + 52, + 50, + 33, + 31, + 36, + 40, + 22, + 27, + 30, + 39, + 53, + 23, + 45, + 48, + 37, + 40, + 38, + 33, + 42, + 30, + 32, + 21, + 37, + 34, + 51, + 50, + 36, + 56, + 44, + 56, + 51, + 58, + 29, + 48, + 37, + 31, + 34, + 39, + 28, + 33, + 36, + 37, + 52, + 47, + 44, + 38, + 46, + 33, + 38, + 55, + 29, + 34, + 40, + 27, + 42, + 37, + 47, + 33, + 58, + 27, + 32, + 36, + 35, + 28, + 47, + 38, + 46, + 26, + 29, + 39, + 33, + 48, + 38, + 40, + 39, + 37, + 33, + 41, + 33, + 24, + 53, + 49, + 42, + 47, + 31, + 46, + 54, + 32, + 32, + 25, + 26, + 46, + 26, + 54, + 47, + 41, + 36, + 47, + 52, + 34, + 30, + 26, + 58, + 31, + 46, + 39, + 42, + 37, + 35, + 43, + 29, + 58, + 32, + 52, + 36, + 38, + 36, + 44, + 34, + 41, + 51, + 28, + 31, + 29, + 33, + 42, + 39, + 45, + 28, + 59, + 58, + 49, + 52, + 29, + 60, + 28, + 30, + 36, + 56, + 29, + 39, + 25, + 36, + 29, + 58, + 49, + 34, + 39, + 34, + 33, + 34, + 32, + 29, + 44, + 50, + 59, + 26, + 29, + 34, + 24, + 34, + 37, + 30, + 58, + 58, + 40, + 40, + 33, + 32, + 34, + 27, + 27, + 27, + 36, + 42, + 28, + 35, + 29, + 59, + 35, + 42, + 30, + 54, + 47, + 35, + 49, + 49, + 36, + 29, + 30, + 44, + 28, + 40, + 39, + 49, + 31, + 37, + 52, + 23, + 40, + 28, + 35, + 38, + 42, + 33, + 28, + 23, + 39, + 32, + 39, + 39, + 39, + 27, + 28, + 54, + 29, + 38, + 44, + 31, + 41, + 41, + 41, + 53, + 56, + 41, + 28, + 28, + 33, + 29, + 40, + 34, + 37, + 28, + 45, + 28, + 36, + 26, + 38, + 38, + 56, + 36, + 58, + 41, + 43, + 37, + 55, + 55, + 42, + 37, + 35, + 47, + 32, + 47, + 57, + 57, + 54, + 41, + 35, + 27, + 40, + 53, + 53, + 43, + 26, + 40, + 46, + 41, + 36, + 43, + 50, + 30, + 47, + 49, + 28, + 31, + 28, + 28, + 28, + 38, + 30, + 46, + 51, + 45, + 48, + 32, + 30, + 56, + 29, + 43, + 29, + 39, + 52, + 39, + 40, + 53, + 30, + 36, + 28, + 38, + 45, + 58, + 41, + 42, + 53, + 57, + 39, + 39, + 39, + 43, + 29, + 37, + 34, + 29, + 52, + 24, + 27, + 30, + 34, + 57, + 32, + 37, + 38, + 50, + 34, + 30, + 25, + 43, + 26, + 29, + 23, + 32, + 31, + 37, + 27, + 55, + 26, + 29, + 46, + 32, + 32, + 43, + 32, + 30, + 39, + 39, + 32, + 43, + 40, + 31, + 36, + 28, + 31, + 30, + 30, + 35, + 34, + 30, + 41, + 31, + 35, + 53, + 39, + 31, + 37, + 26, + 38, + 34, + 32, + 53, + 41, + 45, + 45, + 42, + 29, + 30, + 43, + 27, + 28, + 49, + 49, + 45, + 29, + 46, + 41, + 31, + 30, + 30, + 33, + 38, + 29, + 40, + 48, + 34, + 55, + 41, + 49, + 38, + 33, + 48, + 57, + 34, + 53, + 29, + 30, + 45, + 30, + 42, + 35, + 52, + 32, + 48, + 40, + 52, + 44, + 52, + 47, + 47, + 26, + 52, + 30, + 51, + 45, + 42, + 47, + 56, + 42, + 23, + 56, + 39, + 31, + 37, + 40, + 39, + 47, + 30, + 40, + 25, + 29, + 31, + 42, + 41, + 32, + 44, + 36, + 39, + 28, + 23, + 28, + 49, + 39, + 47, + 36, + 41, + 42, + 42, + 28, + 39, + 27, + 30, + 37, + 29, + 43, + 43, + 33, + 43, + 38, + 55, + 34, + 59, + 49, + 52, + 47, + 35, + 39, + 34, + 48, + 51, + 47, + 52, + 33, + 42, + 37, + 54, + 31, + 45, + 36, + 46, + 29, + 43, + 28, + 40, + 53, + 51, + 35, + 41, + 48, + 33, + 52, + 41, + 46, + 30, + 50, + 33, + 34, + 24, + 31, + 43, + 29, + 33, + 36, + 36, + 42, + 52, + 39, + 60, + 41, + 36, + 31, + 33, + 36, + 34, + 50, + 29, + 28, + 46, + 23, + 31, + 23, + 31, + 47, + 32, + 42, + 42, + 27, + 40, + 25, + 25, + 25, + 43, + 25, + 28, + 32, + 52, + 51, + 41, + 33, + 38, + 30, + 31, + 42, + 24, + 49, + 34, + 39, + 35, + 43, + 31, + 47, + 56, + 37, + 33, + 28, + 36, + 39, + 42, + 31, + 37, + 39, + 28, + 31, + 43, + 39, + 38, + 26, + 35, + 35, + 31, + 36, + 32, + 35, + 33, + 50, + 48, + 26, + 39, + 35, + 44, + 34, + 36, + 34, + 37, + 31, + 48, + 37, + 42, + 24, + 36, + 52, + 50, + 25, + 40, + 53, + 30, + 37, + 31, + 44, + 30, + 44, + 44, + 38, + 33, + 41, + 31, + 31, + 26, + 44, + 33, + 31, + 25, + 25, + 25, + 32, + 32, + 56, + 26, + 29, + 34, + 30, + 34, + 30, + 31, + 49, + 48, + 38, + 38, + 40, + 57, + 32, + 29, + 31, + 34, + 32, + 26, + 43, + 34, + 43, + 33, + 43, + 43, + 33, + 24, + 32, + 40, + 35, + 33, + 43, + 26, + 48, + 33, + 33, + 33, + 33, + 49, + 28, + 41, + 48, + 26, + 26, + 27, + 28, + 41, + 43, + 43, + 29, + 43, + 26, + 26, + 30, + 30, + 38, + 56, + 30, + 34, + 30, + 30, + 46, + 30, + 48, + 47, + 35, + 42, + 27, + 37, + 37, + 28, + 34, + 34, + 28, + 30, + 33, + 30, + 30, + 30, + 31, + 39, + 40, + 40, + 34, + 37, + 32, + 25, + 28, + 29, + 34, + 23, + 49, + 34, + 40, + 20, + 37, + 34, + 33, + 27, + 27, + 27, + 47, + 27, + 29, + 34, + 29, + 32, + 27, + 25, + 37, + 23, + 31, + 23, + 48, + 27, + 33, + 27, + 27, + 29, + 43, + 47, + 29, + 43, + 33, + 43, + 26, + 52, + 43, + 27, + 27, + 27, + 28, + 35, + 35, + 29, + 42, + 28, + 30, + 38, + 29, + 33, + 28, + 27, + 49, + 32, + 33, + 35, + 25, + 31, + 28, + 28, + 32, + 26, + 28, + 28, + 28, + 28, + 44, + 31, + 33, + 34, + 28, + 32, + 38, + 28, + 28, + 28, + 36, + 31, + 33, + 27, + 28, + 30, + 48, + 32, + 29, + 28, + 28, + 49, + 33, + 30, + 31, + 43, + 30, + 34, + 48, + 34, + 35, + 43, + 27, + 28, + 40, + 23, + 28, + 34, + 28, + 27, + 30, + 28, + 28, + 33, + 48, + 26, + 25, + 35, + 54, + 35, + 35, + 42, + 56, + 55, + 33, + 31, + 25, + 29, + 32, + 29, + 39, + 30, + 37, + 29, + 45, + 34, + 33, + 34, + 35, + 33, + 45, + 52, + 42, + 28, + 28, + 28, + 54, + 54, + 37, + 29, + 35, + 40, + 25, + 25, + 25, + 53, + 40, + 57, + 29, + 30, + 53, + 43, + 43, + 43, + 43, + 43, + 43, + 31, + 43, + 48, + 43, + 48, + 51, + 36, + 33, + 36, + 51, + 51, + 35, + 43, + 51, + 52, + 51, + 24, + 34, + 51, + 24, + 36, + 24, + 24, + 48, + 24, + 28, + 34, + 34, + 41, + 43, + 30, + 34, + 34, + 34, + 31, + 48, + 34, + 54, + 59, + 36, + 27, + 36, + 40, + 27, + 27, + 28, + 31, + 39, + 40, + 31, + 36, + 31, + 24, + 28, + 31, + 28, + 26, + 55, + 55, + 32, + 45, + 45, + 33, + 52, + 45, + 28, + 37, + 52, + 33, + 44, + 44, + 52, + 26, + 36, + 26, + 34, + 34, + 46, + 41, + 29, + 47, + 31, + 31, + 31, + 50, + 26, + 22, + 32, + 31, + 43, + 36, + 44, + 23, + 44, + 29, + 25, + 54, + 26, + 52, + 29, + 50, + 32, + 32, + 29, + 24, + 28, + 28, + 39, + 39, + 32, + 40, + 27, + 36, + 31, + 29, + 33, + 28, + 29, + 35, + 51, + 30, + 25, + 30, + 28, + 39, + 45, + 28, + 34, + 45, + 30, + 39, + 56, + 26, + 37, + 34, + 37, + 29, + 27, + 30, + 32, + 45, + 29, + 30, + 39, + 39, + 34, + 26, + 35, + 52, + 25, + 36, + 36, + 39, + 49, + 41, + 24, + 29, + 42, + 42, + 40, + 34, + 38, + 29, + 38, + 34, + 28, + 33, + 36, + 32, + 29, + 57, + 27, + 57, + 57, + 57, + 21, + 57, + 30, + 34, + 27, + 40, + 34, + 27, + 30, + 53, + 33, + 33, + 39, + 34, + 34, + 34, + 34, + 20, + 41, + 41, + 34, + 27, + 29, + 32, + 39, + 46, + 52, + 27, + 28, + 27, + 33, + 40, + 27, + 57, + 36, + 32, + 33, + 51, + 48, + 54, + 31, + 47, + 35, + 32, + 45, + 28, + 27, + 38, + 42, + 36, + 41, + 36, + 36, + 25, + 52, + 54, + 26, + 27, + 32, + 32, + 33, + 31, + 32, + 57, + 31, + 27, + 27, + 31, + 30, + 26, + 55, + 57, + 50, + 39, + 39, + 27, + 57, + 34, + 34, + 48, + 28, + 34, + 50, + 36, + 36, + 36, + 48, + 25, + 27, + 37, + 34, + 55, + 33, + 49, + 23, + 31, + 34, + 31, + 36, + 31, + 32, + 31, + 49, + 25, + 49, + 32, + 33, + 34, + 25, + 38, + 39, + 38, + 25, + 23, + 29, + 36, + 29, + 29, + 29, + 25, + 25, + 25, + 54, + 42, + 32, + 29, + 41, + 30, + 28, + 38, + 26, + 25, + 32, + 27, + 25, + 31, + 42, + 27, + 31, + 51, + 30, + 33, + 32, + 32, + 38, + 32, + 32, + 29, + 32, + 32, + 30, + 32, + 32, + 25, + 25, + 34, + 34, + 29, + 32, + 45, + 34, + 51, + 51, + 34, + 34, + 27, + 40, + 25, + 26, + 28, + 27, + 31, + 29, + 31, + 25, + 25, + 30, + 30, + 39, + 39, + 39, + 40, + 29, + 39, + 34, + 31, + 38, + 30, + 30, + 30, + 30, + 27, + 27, + 31, + 31, + 27, + 32, + 24, + 41, + 24, + 54, + 31, + 30, + 30, + 32, + 49, + 31, + 33, + 22, + 29, + 54, + 48, + 49, + 23, + 30, + 31, + 48, + 31, + 31, + 32, + 31, + 25, + 26, + 26, + 28, + 25, + 30, + 32, + 22, + 29, + 26, + 42, + 49, + 28, + 29, + 29, + 44, + 44, + 31, + 41, + 28, + 44, + 29, + 41, + 41, + 27, + 51, + 33, + 28, + 50, + 23, + 32, + 42, + 37, + 35, + 30, + 41, + 22, + 28, + 25, + 26, + 27, + 33, + 30, + 41, + 30, + 31, + 51, + 26, + 48, + 28, + 32, + 42, + 41, + 24, + 41, + 27, + 30, + 49, + 30, + 28, + 33, + 33, + 30, + 23, + 26, + 40, + 31, + 26, + 32, + 30, + 52, + 41, + 24, + 52, + 33, + 27, + 42, + 30, + 37, + 51, + 35, + 24, + 24, + 24, + 51, + 24, + 35, + 24, + 60, + 42, + 34, + 44, + 40, + 22, + 29, + 22, + 56, + 52, + 41, + 52, + 32, + 52, + 33, + 32, + 55, + 28, + 32, + 33, + 43, + 31, + 24, + 32, + 27, + 50, + 35, + 27, + 30, + 50, + 35, + 33, + 32, + 32, + 31, + 29, + 33, + 30, + 33, + 38, + 49, + 27, + 36, + 35, + 37, + 55, + 33, + 31, + 32, + 31, + 32, + 56, + 31, + 35, + 33, + 38, + 38, + 30, + 30, + 29, + 41, + 48, + 31, + 32, + 37, + 44, + 42, + 43, + 29, + 35, + 41, + 30, + 49, + 50, + 40, + 30, + 32, + 38, + 27, + 51, + 54, + 38, + 28, + 28, + 38, + 42, + 33, + 34, + 29, + 42, + 25, + 33, + 25, + 31, + 35, + 29, + 35, + 30, + 40, + 38, + 50, + 40, + 58, + 55, + 30, + 42, + 27, + 31, + 36, + 30, + 28, + 30, + 41, + 36, + 52, + 30, + 31, + 36, + 31, + 22, + 31, + 28, + 37, + 32, + 30, + 35, + 42, + 30, + 32, + 35, + 35, + 29, + 41, + 31, + 30, + 25, + 32, + 31, + 36, + 52, + 25, + 37, + 28, + 36, + 22, + 25, + 29, + 29, + 27, + 32, + 45, + 32, + 31, + 35, + 29, + 31, + 33, + 27, + 32, + 27, + 35, + 26, + 57, + 40, + 24, + 39, + 30, + 31, + 43, + 31, + 43, + 30, + 31, + 32, + 27, + 45, + 33, + 43, + 39, + 27, + 31, + 33, + 25, + 40, + 50, + 53, + 25, + 33, + 33, + 33, + 53, + 27, + 26, + 26, + 35, + 31, + 29, + 30, + 31, + 33, + 31, + 22, + 23, + 44, + 27, + 40, + 27, + 43, + 40, + 32, + 25, + 40, + 45, + 30, + 26, + 39, + 27, + 35, + 28, + 30, + 49, + 28, + 26, + 40, + 35, + 27, + 35, + 30, + 35, + 35, + 35, + 50, + 33, + 31, + 26, + 35, + 43, + 40, + 43, + 29, + 26, + 35, + 27, + 24, + 36, + 28, + 35, + 29, + 32, + 27, + 30, + 46, + 27, + 29, + 35, + 30, + 36, + 35, + 56, + 43, + 31, + 35, + 30, + 34, + 35, + 27, + 26, + 32, + 30, + 33, + 31, + 44, + 47, + 43, + 26, + 51, + 24, + 27, + 45, + 27, + 22, + 22, + 47, + 30, + 43, + 48, + 36, + 28, + 35, + 42, + 25, + 51, + 31, + 31, + 35, + 35, + 28, + 29, + 50, + 35, + 26, + 42, + 25, + 33, + 45, + 30, + 28, + 26, + 46, + 34, + 48, + 31, + 29, + 27, + 25, + 43, + 48, + 30, + 29, + 37, + 41, + 36, + 26, + 30, + 43, + 34, + 31, + 31, + 24, + 30, + 37, + 28, + 44, + 36, + 50, + 43, + 47, + 31, + 36, + 32, + 54, + 50, + 27, + 28, + 31, + 51, + 51, + 44, + 30, + 36, + 27, + 32, + 30, + 35, + 38, + 42, + 57, + 32, + 35, + 43, + 27, + 30, + 32, + 28, + 28, + 44, + 32, + 33, + 36, + 44, + 23, + 27, + 27, + 42, + 31, + 30, + 31, + 57, + 29, + 54, + 51, + 45, + 34, + 32, + 33, + 33, + 39, + 30, + 30, + 33, + 39, + 37, + 38, + 42, + 53, + 53, + 50, + 25, + 32, + 57, + 30, + 27, + 33, + 50, + 36, + 46, + 56, + 34, + 38, + 55, + 27, + 26, + 23, + 37, + 35, + 32, + 44, + 31, + 29, + 35, + 42, + 31, + 48, + 38, + 35, + 34, + 25, + 33, + 55, + 30, + 30, + 48, + 34, + 55, + 40, + 30, + 34, + 37, + 53, + 51, + 37, + 25, + 26, + 46, + 43, + 31, + 38, + 29, + 38, + 33, + 45, + 45, + 38, + 37, + 32, + 35, + 48, + 40, + 37, + 31, + 34, + 53, + 38, + 26, + 48, + 35, + 45, + 25, + 30, + 30, + 32, + 46, + 45, + 40, + 24, + 47, + 34, + 31, + 25, + 36, + 35, + 34, + 34, + 31, + 35, + 31, + 33, + 56, + 37, + 35, + 40, + 43, + 46, + 30, + 50, + 31, + 28, + 29, + 26, + 30, + 32, + 32, + 37, + 31, + 38, + 31, + 45, + 34, + 41, + 23, + 52, + 32, + 43, + 34, + 36, + 35, + 51, + 47, + 50, + 41, + 30, + 48, + 36, + 35, + 28, + 35, + 43, + 41, + 32, + 30, + 33, + 48, + 48, + 30, + 30, + 27, + 36, + 40, + 27, + 25, + 43, + 58, + 34, + 32, + 44, + 43, + 35, + 57, + 35, + 34, + 50, + 48, + 55, + 30, + 24, + 35, + 50, + 28, + 27, + 33, + 51, + 34, + 40, + 56, + 25, + 44, + 38, + 48, + 48, + 25, + 46, + 33, + 25, + 44, + 35, + 34, + 24, + 24, + 58, + 37, + 58, + 38, + 34, + 31, + 29, + 24, + 30, + 26, + 34, + 26, + 55, + 30, + 31, + 34, + 31, + 55, + 31, + 34, + 27, + 32, + 48, + 31, + 50, + 34, + 31, + 24, + 32, + 29, + 34, + 55, + 55, + 29, + 49, + 31, + 35, + 37, + 32, + 34, + 26, + 23, + 23, + 30, + 26, + 31, + 29, + 24, + 44, + 24, + 26, + 29, + 31, + 30, + 25, + 27, + 29, + 34, + 44, + 41, + 32, + 31, + 37, + 37, + 35, + 34, + 31, + 31, + 37, + 31, + 31, + 37, + 31, + 50, + 29, + 31, + 52, + 47, + 55, + 26, + 37, + 23, + 29, + 31, + 21, + 21, + 28, + 21, + 28, + 58, + 28, + 25, + 27, + 25, + 27, + 25, + 30, + 43, + 43, + 52, + 21, + 33, + 40, + 43, + 31, + 24, + 38, + 27, + 29, + 29, + 28, + 31, + 55, + 43, + 26, + 51, + 26, + 36, + 43, + 29, + 35, + 58, + 44, + 23, + 36, + 29, + 29, + 29, + 40, + 33, + 27, + 29, + 29, + 43, + 41, + 29, + 26, + 26, + 46, + 28, + 37, + 26, + 24, + 29, + 38, + 43, + 35, + 24, + 55, + 29, + 29, + 30, + 29, + 33, + 32, + 33, + 32, + 33, + 23, + 30, + 52, + 36, + 32, + 32, + 36, + 28, + 25, + 40, + 30, + 30, + 35, + 30, + 39, + 28, + 26, + 36, + 34, + 30, + 38, + 29, + 44, + 28, + 34, + 41, + 25, + 26, + 42, + 44, + 25, + 35, + 35, + 26, + 25, + 36, + 35, + 40, + 49, + 49, + 40, + 24, + 35, + 24, + 28, + 30, + 45, + 44, + 32, + 29, + 32, + 45, + 49, + 43, + 49, + 31, + 29, + 31, + 27, + 49, + 31, + 27, + 27, + 27, + 47, + 49, + 32, + 43, + 43, + 26, + 43, + 49, + 27, + 43, + 52, + 24, + 37, + 27, + 41, + 33, + 34, + 49, + 33, + 39, + 27, + 34, + 42, + 34, + 30, + 25, + 58, + 31, + 29, + 59, + 30, + 35, + 32, + 29, + 42, + 39, + 29, + 23, + 23, + 41, + 41, + 38, + 35, + 41, + 58, + 58, + 58, + 33, + 35, + 27, + 27, + 27, + 32, + 27, + 49, + 32, + 33, + 27, + 36, + 25, + 32, + 24, + 26, + 26, + 43, + 39, + 43, + 50, + 23, + 23, + 33, + 41, + 25, + 29, + 29, + 24, + 26, + 24, + 35, + 56, + 25, + 26, + 29, + 26, + 23, + 26, + 28, + 31, + 25, + 35, + 35, + 34, + 33, + 50, + 29, + 56, + 31, + 35, + 29, + 24, + 37, + 41, + 27, + 27, + 33, + 32, + 33, + 25, + 35, + 59, + 37, + 33, + 32, + 45, + 44, + 42, + 24, + 27, + 44, + 23, + 26, + 52, + 32, + 28, + 32, + 49, + 38, + 24, + 36, + 35, + 29, + 29, + 50, + 49, + 37, + 30, + 24, + 49, + 28, + 52, + 57, + 25, + 25, + 41, + 22, + 32, + 32, + 53, + 29, + 35, + 37, + 32, + 34, + 22, + 39, + 39, + 37, + 35, + 46, + 47, + 53, + 38, + 31, + 29, + 53, + 48, + 38, + 26, + 31, + 30, + 40, + 27, + 28, + 28, + 35, + 37, + 35, + 35, + 32, + 27, + 33, + 29, + 35, + 29, + 56, + 27, + 31, + 30, + 39, + 29, + 29, + 37, + 26, + 27, + 43, + 43, + 36, + 29, + 25, + 36, + 33, + 31, + 26, + 26, + 50, + 31, + 25, + 24, + 24, + 56, + 30, + 27, + 37, + 38, + 22, + 37, + 32, + 34, + 29, + 50, + 56, + 44, + 29, + 57, + 26, + 30, + 38, + 35, + 29, + 33, + 28, + 42, + 42, + 30, + 31, + 33, + 46, + 49, + 26, + 49, + 36, + 49, + 47, + 45, + 44, + 25, + 25, + 30, + 26, + 46, + 26, + 30, + 51, + 31, + 50, + 25, + 53, + 35, + 26, + 35, + 32, + 60, + 60, + 33, + 46, + 31, + 25, + 43, + 43, + 42, + 30, + 33, + 37, + 34, + 38, + 47, + 29, + 46, + 37, + 38, + 43, + 47, + 20, + 33, + 24, + 38, + 25, + 56, + 41, + 37, + 29, + 26, + 35, + 49, + 25, + 37, + 36, + 56, + 36, + 30, + 38, + 60, + 51, + 41, + 24, + 28, + 26, + 31, + 29, + 56, + 29, + 32, + 26, + 31, + 28, + 43, + 26, + 24, + 28, + 21, + 29, + 33, + 39, + 31, + 38, + 29, + 29, + 37, + 25, + 33, + 22, + 51, + 44, + 29, + 37, + 30, + 39, + 27, + 33, + 26, + 28, + 38, + 26, + 30, + 54, + 34, + 24, + 25, + 24, + 26, + 36, + 39, + 55, + 25, + 48, + 54, + 22, + 60, + 26, + 31, + 30, + 27, + 20, + 30, + 33, + 36, + 24, + 48, + 29, + 32, + 36, + 32, + 26, + 36, + 29, + 25, + 28, + 48, + 30, + 30, + 34, + 27, + 26, + 29, + 38, + 36, + 30, + 46, + 35, + 49, + 30, + 46, + 27, + 27, + 40, + 46, + 31, + 26, + 29, + 35, + 25, + 30, + 36, + 29, + 41, + 28, + 27, + 28, + 54, + 34, + 34, + 40, + 53, + 28, + 35, + 53, + 57, + 54, + 41, + 36, + 35, + 43, + 50, + 28, + 38, + 38, + 29, + 34, + 24, + 43, + 33, + 48, + 46, + 27, + 31, + 29, + 39, + 37, + 32, + 32, + 44, + 46, + 27, + 32, + 34, + 26, + 29, + 34, + 30, + 24, + 44, + 24, + 47, + 39, + 39, + 41, + 41, + 40, + 24, + 41, + 24, + 38, + 27, + 37, + 56, + 43, + 40, + 43, + 40, + 27, + 43, + 55, + 29, + 32, + 40, + 39, + 24, + 35, + 48, + 31, + 48, + 31, + 26, + 39, + 33, + 28, + 35, + 39, + 44, + 30, + 39, + 27, + 35, + 37, + 24, + 24, + 27, + 26, + 44, + 30, + 23, + 25, + 37, + 25, + 27, + 44, + 29, + 32, + 35, + 25, + 42, + 26, + 28, + 31, + 30, + 58, + 30, + 29, + 31, + 39, + 40, + 40, + 44, + 30, + 32, + 42, + 32, + 33, + 26, + 31, + 37, + 26, + 26, + 26, + 29, + 31, + 55, + 46, + 25, + 30, + 37, + 47, + 30, + 48, + 37, + 46, + 58, + 31, + 42, + 30, + 39, + 46, + 57, + 43, + 43, + 48, + 22, + 46, + 32, + 33, + 39, + 29, + 30, + 30, + 49, + 32, + 25, + 33, + 35, + 27, + 36, + 37, + 28, + 27, + 23, + 36, + 25, + 32, + 30, + 27, + 24, + 43, + 30, + 33, + 25, + 29, + 25, + 48, + 24, + 45, + 51, + 31, + 41, + 45, + 28, + 42, + 38, + 30, + 48, + 54, + 57, + 37, + 31, + 27, + 28, + 30, + 31, + 31, + 37, + 33, + 27, + 29, + 59, + 33, + 37, + 41, + 24, + 40, + 33, + 33, + 21, + 31, + 31, + 31, + 35, + 35, + 36, + 36, + 36, + 33, + 27, + 27, + 54, + 27, + 23, + 28, + 27, + 33, + 30, + 30, + 30, + 45, + 40, + 22, + 60, + 59, + 59, + 33, + 40, + 37, + 59, + 31, + 37, + 26, + 24, + 24, + 30, + 48, + 24, + 54, + 25, + 30, + 30, + 41, + 41, + 41, + 23, + 30, + 27, + 59, + 32, + 31, + 30, + 27, + 27, + 27, + 27, + 32, + 40, + 31, + 39, + 39, + 23, + 29, + 30, + 30, + 32, + 35, + 34, + 29, + 49, + 32, + 58, + 58, + 58, + 36, + 58, + 58, + 31, + 26, + 40, + 28, + 46, + 25, + 53, + 49, + 22, + 48, + 39, + 31, + 31, + 45, + 37, + 33, + 49, + 27, + 42, + 57, + 57, + 28, + 44, + 52, + 45, + 33, + 30, + 48, + 36, + 31, + 48, + 28, + 58, + 40, + 50, + 46, + 44, + 31, + 35, + 33, + 35, + 31, + 51, + 41, + 28, + 28, + 40, + 42, + 33, + 26, + 30, + 30, + 49, + 51, + 27, + 31, + 31, + 23, + 33, + 36, + 58, + 29, + 54, + 53, + 41, + 48, + 30, + 50, + 27, + 24, + 37, + 32, + 35, + 49, + 37, + 28, + 48, + 34, + 38, + 44, + 58, + 54, + 23, + 41, + 57, + 28, + 33, + 48, + 29, + 20, + 38, + 40, + 36, + 27, + 27, + 51, + 38, + 41, + 30, + 24, + 26, + 25, + 37, + 26, + 55, + 23, + 51, + 35, + 31, + 22, + 20, + 57, + 35, + 35, + 28, + 50, + 32, + 30, + 59, + 34, + 30, + 24, + 31, + 21, + 36, + 36, + 32, + 21, + 26, + 26, + 28, + 49, + 35, + 43, + 27, + 30, + 31, + 48, + 31, + 32, + 58, + 58, + 58, + 32, + 45, + 24, + 24, + 38, + 23, + 23, + 23, + 23, + 23, + 23, + 23, + 38, + 34, + 33, + 56, + 28, + 26, + 30, + 33, + 30, + 24, + 38, + 49, + 30, + 35, + 55, + 31, + 40, + 50, + 31, + 24, + 48, + 36, + 36, + 32, + 21, + 59, + 26, + 25, + 21, + 34, + 40, + 34, + 32, + 39, + 29, + 44, + 30, + 43, + 48, + 24, + 48, + 24, + 44, + 25, + 24, + 31, + 46, + 31, + 37, + 28, + 36, + 40, + 33, + 46, + 28, + 31, + 26, + 57, + 36, + 30, + 42, + 31, + 39, + 57, + 24, + 21, + 36, + 44, + 30, + 32, + 38, + 25, + 32, + 40, + 22, + 36, + 26, + 26, + 36, + 44, + 55, + 30, + 33, + 39, + 53, + 28, + 30, + 26, + 30, + 25, + 36, + 37, + 50, + 28, + 31, + 53, + 49, + 33, + 28, + 56, + 24, + 34, + 27, + 37, + 49, + 40, + 52, + 44, + 38, + 30, + 27, + 25, + 27, + 36, + 49, + 25, + 26, + 26, + 37, + 24, + 32, + 53, + 31, + 51, + 34, + 24, + 25, + 53, + 34, + 47, + 27, + 24, + 44, + 42, + 40, + 31, + 36, + 48, + 34, + 25, + 29, + 29, + 31, + 33, + 29, + 23, + 29, + 39, + 32, + 26, + 48, + 56, + 31, + 32, + 30, + 30, + 32, + 37, + 35, + 33, + 36, + 53, + 29, + 29, + 46, + 23, + 38, + 34, + 42, + 30, + 38, + 25, + 31, + 53, + 23, + 42, + 42, + 30, + 28, + 33, + 26, + 55, + 25, + 35, + 29, + 28, + 28, + 34, + 50, + 38, + 56, + 38, + 22, + 30, + 26, + 49, + 35, + 48, + 37, + 32, + 24, + 28, + 32, + 38, + 30, + 44, + 26, + 43, + 27, + 26, + 40, + 48, + 34, + 40, + 26, + 32, + 41, + 24, + 48, + 27, + 26, + 32, + 40, + 29, + 40, + 29, + 44, + 56, + 58, + 47, + 41, + 42, + 58, + 41, + 49, + 32, + 41, + 27, + 51, + 27, + 27, + 56, + 29, + 27, + 47, + 39, + 39, + 26, + 50, + 29, + 36, + 39, + 29, + 44, + 41, + 43, + 51, + 29, + 26, + 50, + 41, + 41, + 41, + 27, + 41, + 46, + 41, + 25, + 47, + 26, + 57, + 43, + 31, + 27, + 50, + 27, + 59, + 57, + 27, + 57, + 47, + 33, + 36, + 49, + 31, + 49, + 47, + 33, + 23, + 44, + 53, + 53, + 58, + 47, + 52, + 45, + 54, + 52, + 52, + 47, + 44, + 46, + 48, + 52, + 39, + 38, + 54, + 56, + 55, + 57, + 49, + 43, + 51, + 49, + 39, + 57, + 41, + 51, + 34, + 30, + 24, + 46, + 57, + 43, + 37, + 29, + 55, + 23, + 32, + 39, + 56, + 38, + 40, + 42, + 41, + 55, + 50, + 43, + 34, + 31, + 27, + 45, + 38, + 53, + 29, + 41, + 47, + 21, + 32, + 43, + 54, + 50, + 36, + 47, + 29, + 54, + 54, + 56, + 39, + 25, + 56, + 25, + 54, + 57, + 47, + 43, + 48, + 53, + 43, + 33, + 28, + 35, + 32, + 50, + 28, + 30, + 35, + 41, + 27, + 42, + 57, + 22, + 43, + 44, + 44, + 58, + 22, + 49, + 50, + 59, + 51, + 28, + 33, + 47, + 30, + 38, + 54, + 47, + 35, + 33, + 38, + 48, + 57, + 41, + 57, + 35, + 35, + 28, + 34, + 54, + 47, + 47, + 53, + 25, + 34, + 26, + 57, + 51, + 48, + 35, + 36, + 43, + 43, + 49, + 42, + 49, + 46, + 31, + 32, + 56, + 32, + 28, + 56, + 50, + 36, + 47, + 49, + 32, + 42, + 42, + 46, + 46, + 27, + 53, + 38, + 40, + 42, + 31, + 43, + 39, + 43, + 28, + 55, + 28, + 39, + 50, + 28, + 28, + 45, + 32, + 48, + 32, + 25, + 52, + 44, + 40, + 40, + 40, + 42, + 50, + 43, + 35, + 39, + 53, + 40, + 40, + 27, + 39, + 32, + 29, + 51, + 38, + 34, + 42, + 33, + 45, + 35, + 48, + 52, + 45, + 50, + 31, + 51, + 45, + 49, + 43, + 31, + 28, + 50, + 57, + 39, + 50, + 47, + 45, + 58, + 46, + 55, + 41, + 54, + 28, + 27, + 49, + 54, + 48, + 54, + 58, + 55, + 42, + 34, + 58, + 53, + 54, + 39, + 59, + 28, + 42, + 35, + 28, + 48, + 53, + 54, + 26, + 60, + 32, + 55, + 30, + 58, + 50, + 38, + 56, + 36, + 32, + 46, + 45, + 47, + 58, + 33, + 33, + 28, + 58, + 52, + 43, + 53, + 39, + 51, + 48, + 28, + 45, + 49, + 52, + 35, + 35, + 27, + 31, + 43, + 57, + 53, + 32, + 35, + 56, + 42, + 44, + 38, + 56, + 48, + 25, + 42, + 45, + 51, + 28, + 40, + 50, + 44, + 54, + 49, + 43, + 47, + 48, + 36, + 54, + 30, + 42, + 45, + 59, + 42, + 50, + 40, + 47, + 41, + 44, + 56, + 41, + 51, + 40, + 34, + 51, + 49, + 43, + 36, + 36, + 38, + 40, + 38, + 46, + 37, + 31, + 53, + 45, + 41, + 51, + 48, + 45, + 38, + 30, + 43, + 40, + 46, + 57, + 56, + 39, + 40, + 47, + 31, + 59, + 50, + 42, + 55, + 39, + 42, + 42, + 44, + 42, + 46, + 49, + 45, + 36, + 38, + 43, + 45, + 35, + 51, + 54, + 59, + 55, + 34, + 57, + 40, + 43, + 45, + 47, + 47, + 51, + 54, + 48, + 51, + 55, + 40, + 40, + 39, + 44, + 37, + 51, + 50, + 48, + 36, + 36, + 40, + 44, + 47, + 46, + 47, + 51, + 49, + 40, + 43, + 41, + 40, + 44, + 49, + 43, + 54, + 37, + 53, + 56, + 43, + 43, + 41, + 36, + 45, + 45, + 39, + 43, + 53, + 48, + 53, + 42, + 41, + 54, + 50, + 44, + 57, + 38, + 53, + 32, + 47, + 36, + 56, + 27, + 57, + 39, + 46, + 40, + 43, + 42, + 47, + 36, + 43, + 46, + 37, + 58, + 57, + 55, + 55, + 36, + 46, + 47, + 55, + 53, + 55, + 52, + 36, + 48, + 52, + 47, + 43, + 34, + 57, + 41, + 43, + 45, + 58, + 56, + 48, + 46, + 49, + 60, + 56, + 54, + 53, + 58, + 46, + 44, + 43, + 26, + 53, + 55, + 53, + 36, + 40, + 44, + 39, + 49, + 39, + 50, + 57, + 43, + 53, + 38, + 55, + 45, + 53, + 39, + 55, + 50, + 32, + 42, + 46, + 57, + 29, + 39, + 53, + 45, + 53, + 31, + 35, + 42, + 43, + 36, + 50, + 46, + 54, + 33, + 60, + 54, + 36, + 43, + 36, + 43, + 49, + 54, + 36, + 57, + 45, + 55, + 50, + 50, + 47, + 47, + 45, + 55, + 55, + 47, + 46, + 53, + 47, + 30, + 47, + 41, + 43, + 43, + 43, + 38, + 41, + 39, + 34, + 43, + 46, + 45, + 57, + 43, + 57, + 57, + 54, + 35, + 53, + 53, + 53, + 53, + 51, + 56, + 56, + 47, + 26, + 56, + 52, + 57, + 49, + 47, + 56, + 35, + 57, + 44, + 26, + 55, + 54, + 26, + 33, + 55, + 43, + 43, + 60, + 37, + 37, + 34, + 24, + 51, + 57, + 24, + 44, + 40, + 35, + 54, + 49, + 46, + 40, + 36, + 47, + 35, + 48, + 48, + 47, + 53, + 46, + 56, + 49, + 39, + 26, + 43, + 39, + 47, + 58, + 36, + 26, + 46, + 47, + 32, + 55, + 31, + 52, + 40, + 58, + 37, + 39, + 31, + 50, + 35, + 59, + 59, + 56, + 49, + 30, + 27, + 25, + 43, + 39, + 47, + 42, + 31, + 45, + 36, + 52, + 46, + 37, + 37, + 40, + 33, + 35, + 55, + 30, + 43, + 48, + 43, + 38, + 37, + 37, + 26, + 51, + 53, + 30, + 46, + 58, + 25, + 31, + 45, + 30, + 46, + 37, + 30, + 30, + 37, + 52, + 34, + 32, + 47, + 35, + 38, + 40, + 37, + 27, + 31, + 30, + 34, + 45, + 48, + 26, + 55, + 28, + 40, + 31, + 44, + 46, + 26, + 42, + 29, + 40, + 45, + 39, + 32, + 39, + 56, + 39, + 37, + 39, + 50, + 49, + 49, + 32, + 56, + 37, + 33, + 38, + 38, + 58, + 58, + 46, + 46, + 40, + 29, + 39, + 45, + 36, + 24, + 30, + 45, + 27, + 41, + 36, + 44, + 52, + 28, + 43, + 58, + 42, + 32, + 28, + 40, + 50, + 58, + 30, + 55, + 28, + 25, + 39, + 43, + 33, + 28, + 34, + 34, + 37, + 44, + 28, + 52, + 24, + 36, + 24, + 50, + 36, + 56, + 36, + 40, + 50, + 44, + 33, + 46, + 28, + 31, + 35, + 31, + 25, + 50, + 33, + 41, + 53, + 36, + 41, + 33, + 32, + 44, + 25, + 32, + 40, + 31, + 25, + 25, + 41, + 31, + 33, + 31, + 51, + 24, + 25, + 29, + 30, + 51, + 41, + 55, + 57, + 28, + 33, + 32, + 34, + 30, + 35, + 25, + 31, + 35, + 34, + 34, + 36, + 34, + 48, + 32, + 40, + 48, + 44, + 37, + 36, + 55, + 36, + 48, + 40, + 29, + 39, + 48, + 25, + 56, + 32, + 36, + 50, + 44, + 30, + 33, + 44, + 30, + 39, + 44, + 41, + 25, + 33, + 45, + 30, + 24, + 34, + 38, + 56, + 35, + 58, + 31, + 46, + 31, + 29, + 58, + 42, + 37, + 35, + 39, + 34, + 33, + 48, + 26, + 56, + 27, + 36, + 30, + 37, + 46, + 23, + 23, + 24, + 58, + 26, + 46, + 39, + 44, + 30, + 40, + 37, + 35, + 39, + 42, + 41, + 44, + 35, + 24, + 30, + 35, + 56, + 39, + 28, + 48, + 51, + 35, + 45, + 33, + 42, + 51, + 37, + 30, + 32, + 40, + 24, + 26, + 35, + 33, + 36, + 58, + 27, + 37, + 39, + 37, + 46, + 30, + 31, + 29, + 32, + 42, + 22, + 51, + 36, + 38, + 26, + 40, + 55, + 44, + 42, + 32, + 28, + 28, + 41, + 41, + 38, + 54, + 47, + 37, + 36, + 35, + 30, + 34, + 28, + 42, + 35, + 28, + 36, + 30, + 46, + 37, + 39, + 37, + 56, + 37, + 29, + 36, + 33, + 29, + 39, + 32, + 43, + 36, + 40, + 32, + 34, + 29, + 39, + 35, + 30, + 35, + 39, + 39, + 50, + 52, + 28, + 27, + 29, + 27, + 22, + 48, + 31, + 45, + 38, + 48, + 35, + 36, + 29, + 45, + 33, + 29, + 45, + 59, + 45, + 49, + 42, + 28, + 45, + 39, + 41, + 42, + 45, + 35, + 36, + 38, + 39, + 50, + 38, + 38, + 32, + 33, + 32, + 32, + 32, + 32, + 27, + 32, + 32, + 40, + 33, + 32, + 32, + 32, + 32, + 30, + 25, + 37, + 32, + 53, + 41, + 35, + 38, + 38, + 38, + 34, + 28, + 42, + 42, + 29, + 39, + 56, + 42, + 56, + 35, + 48, + 48, + 39, + 52, + 26, + 36, + 32, + 56, + 56, + 34, + 46, + 28, + 29, + 44, + 44, + 29, + 29, + 43, + 52, + 30, + 32, + 40, + 36, + 39, + 36, + 38, + 41, + 29, + 35, + 28, + 28, + 27, + 48, + 35, + 27, + 51, + 28, + 28, + 37, + 37, + 46, + 39, + 33, + 58, + 44, + 32, + 28, + 53, + 38, + 28, + 34, + 31, + 31, + 29, + 46, + 51, + 36, + 38, + 32, + 36, + 24, + 47, + 44, + 35, + 28, + 39, + 31, + 35, + 39, + 40, + 27, + 50, + 48, + 36, + 47, + 59, + 59, + 35, + 38, + 45, + 57, + 55, + 45, + 44, + 25, + 25, + 30, + 34, + 36, + 34, + 36, + 54, + 55, + 55, + 34, + 25, + 30, + 36, + 29, + 31, + 48, + 30, + 31, + 33, + 28, + 58, + 45, + 33, + 36, + 36, + 44, + 39, + 32, + 25, + 38, + 48, + 38, + 32, + 59, + 38, + 50, + 54, + 32, + 31, + 33, + 34, + 59, + 33, + 30, + 36, + 48, + 25, + 31, + 25, + 47, + 38, + 25, + 37, + 36, + 47, + 33, + 30, + 36, + 47, + 25, + 42, + 38, + 38, + 30, + 52, + 36, + 38, + 36, + 38, + 27, + 59, + 41, + 40, + 41, + 49, + 39, + 25, + 32, + 37, + 48, + 38, + 43, + 42, + 36, + 36, + 49, + 38, + 24, + 31, + 46, + 27, + 31, + 45, + 30, + 36, + 25, + 28, + 25, + 25, + 32, + 38, + 33, + 54, + 30, + 36, + 36, + 36, + 34, + 36, + 25, + 32, + 36, + 31, + 27, + 36, + 29, + 36, + 39, + 33, + 38, + 25, + 55, + 53, + 33, + 31, + 39, + 38, + 31, + 31, + 37, + 29, + 35, + 48, + 33, + 36, + 46, + 36, + 50, + 27, + 54, + 59, + 45, + 34, + 34, + 38, + 43, + 43, + 45, + 44, + 31, + 41, + 41, + 41, + 41, + 46, + 58, + 33, + 58, + 36, + 48, + 49, + 30, + 30, + 48, + 53, + 56, + 37, + 47, + 51, + 55, + 55, + 42, + 58, + 42, + 56, + 33, + 46, + 46, + 35, + 30, + 35, + 39, + 47, + 33, + 38, + 32, + 49, + 31, + 30, + 44, + 44, + 34, + 34, + 60, + 36, + 33, + 57, + 33, + 33, + 50, + 57, + 46, + 47, + 35, + 34, + 35, + 35, + 52, + 46, + 46, + 46, + 37, + 41, + 41, + 54, + 57, + 57, + 39, + 29, + 39, + 36, + 49, + 44, + 56, + 34, + 39, + 35, + 50, + 44, + 41, + 44, + 49, + 57, + 44, + 33, + 45, + 32, + 32, + 58, + 47, + 45, + 50, + 59, + 35, + 34, + 33, + 48, + 30, + 30, + 41, + 44, + 59, + 45, + 34, + 40, + 47, + 32, + 30, + 38, + 50, + 30, + 56, + 52, + 50, + 53, + 57, + 49, + 58, + 38, + 52, + 52, + 35, + 47, + 48, + 53, + 48, + 52, + 41, + 29, + 35, + 48, + 29, + 58, + 37, + 42, + 42, + 44, + 42, + 39, + 37, + 47, + 47, + 41, + 41, + 41, + 40, + 40, + 40, + 45, + 45, + 53, + 49, + 52, + 59, + 34, + 55, + 46, + 30, + 52, + 53, + 53, + 53, + 33, + 34, + 40, + 53, + 59, + 34, + 32, + 41, + 32, + 32, + 44, + 49, + 44, + 33, + 33, + 32, + 52, + 31, + 43, + 35, + 49, + 42, + 49, + 38, + 42, + 41, + 37, + 36, + 46, + 37, + 37, + 37, + 46, + 35, + 32, + 40, + 32, + 42, + 52, + 49, + 36, + 51, + 49, + 49, + 49, + 35, + 54, + 30, + 40, + 35, + 52, + 38, + 43, + 35, + 30, + 35, + 37, + 35, + 37, + 46, + 37, + 35, + 34, + 50, + 38, + 51, + 40, + 59, + 36, + 48, + 45, + 57, + 48, + 44, + 45, + 53, + 41, + 31, + 36, + 46, + 32, + 58, + 46, + 46, + 31, + 31, + 38, + 45, + 32, + 30, + 38, + 31, + 53, + 32, + 39, + 39, + 31, + 30, + 42, + 52, + 39, + 56, + 30, + 32, + 34, + 31, + 31, + 51, + 33, + 33, + 41, + 32, + 31, + 32, + 37, + 40, + 40, + 55, + 36, + 37, + 46, + 50, + 29, + 41, + 31, + 33, + 48, + 50, + 51, + 31, + 31, + 34, + 42, + 42, + 53, + 53, + 40, + 31, + 53, + 48, + 37, + 38, + 38, + 39, + 46, + 31, + 42, + 31, + 35, + 48, + 42, + 39, + 32, + 53, + 46, + 33, + 33, + 33, + 33, + 33, + 47, + 33, + 52, + 51, + 31, + 29, + 45, + 31, + 56, + 52, + 49, + 51, + 51, + 48, + 41, + 33, + 44, + 45, + 35, + 58, + 46, + 59, + 31, + 56, + 31, + 45, + 31, + 52, + 34, + 50, + 54, + 48, + 42, + 37, + 30, + 47, + 45, + 36, + 46, + 41, + 32, + 34, + 37, + 33, + 37, + 42, + 35, + 46, + 58, + 32, + 30, + 42, + 57, + 43, + 59, + 34, + 53, + 54, + 42, + 33, + 45, + 43, + 37, + 33, + 29, + 41, + 55, + 32, + 29, + 30, + 39, + 47, + 49, + 31, + 42, + 35, + 42, + 45, + 45, + 43, + 48, + 36, + 44, + 47, + 47, + 39, + 39, + 32, + 32, + 47, + 32, + 32, + 32, + 32, + 32, + 30, + 39, + 38, + 39, + 34, + 29, + 39, + 30, + 39, + 38, + 30, + 46, + 36, + 46, + 36, + 35, + 35, + 35, + 31, + 35, + 35, + 52, + 29, + 32, + 29, + 35, + 45, + 33, + 45, + 49, + 33, + 43, + 33, + 31, + 38, + 31, + 31, + 59, + 58, + 41, + 41, + 41, + 40, + 35, + 32, + 32, + 42, + 32, + 39, + 39, + 39, + 55, + 49, + 35, + 44, + 50, + 47, + 30, + 31, + 33, + 46, + 41, + 29, + 29, + 45, + 36, + 46, + 50, + 38, + 34, + 39, + 56, + 45, + 44, + 45, + 31, + 29, + 29, + 48, + 39, + 50, + 38, + 29, + 38, + 35, + 50, + 47, + 33, + 33, + 45, + 39, + 45, + 46, + 58, + 58, + 34, + 45, + 30, + 46, + 50, + 37, + 32, + 47, + 32, + 47, + 47, + 41, + 34, + 38, + 33, + 57, + 33, + 52, + 36, + 36, + 54, + 57, + 48, + 50, + 50, + 41, + 51, + 32, + 42, + 39, + 47, + 48, + 35, + 50, + 30, + 31, + 31, + 50, + 50, + 55, + 34, + 52, + 38, + 45, + 56, + 52, + 39, + 60, + 32, + 39, + 40, + 34, + 44, + 34, + 56, + 44, + 51, + 38, + 34, + 31, + 45, + 32, + 45, + 31, + 38, + 38, + 30, + 30, + 34, + 59, + 31, + 34, + 56, + 30, + 30, + 46, + 51, + 34, + 39, + 33, + 44, + 33, + 42, + 31, + 31, + 34, + 31, + 37, + 38, + 33, + 38, + 32, + 38, + 47, + 51, + 36, + 57, + 35, + 47, + 33, + 34, + 31, + 34, + 52, + 46, + 38, + 47, + 45, + 30, + 58, + 47, + 34, + 54, + 47, + 30, + 39, + 39, + 44, + 51, + 53, + 30, + 38, + 44, + 40, + 36, + 51, + 36, + 47, + 38, + 44, + 36, + 36, + 32, + 56, + 36, + 33, + 44, + 32, + 37, + 31, + 49, + 49, + 34, + 36, + 29, + 42, + 29, + 46, + 46, + 32, + 58, + 50, + 30, + 52, + 52, + 60, + 29, + 29, + 39, + 42, + 39, + 54, + 47, + 47, + 55, + 50, + 36, + 36, + 42, + 35, + 33, + 40, + 34, + 34, + 34, + 54, + 34, + 31, + 37, + 34, + 36, + 33, + 40, + 38, + 41, + 33, + 36, + 53, + 36, + 30, + 30, + 42, + 35, + 52, + 46, + 33, + 60, + 51, + 30, + 30, + 38, + 37, + 34, + 34, + 33, + 52, + 34, + 45, + 52, + 46, + 32, + 35, + 41, + 35, + 38, + 41, + 51, + 41, + 34, + 51, + 48, + 31, + 31, + 49, + 58, + 38, + 34, + 34, + 31, + 58, + 30, + 33, + 50, + 53, + 31, + 32, + 29, + 30, + 42, + 38, + 50, + 44, + 40, + 42, + 35, + 46, + 33, + 42, + 34, + 33, + 35, + 32, + 58, + 45, + 39, + 53, + 30, + 41, + 36, + 29, + 42, + 41, + 52, + 39, + 33, + 35, + 36, + 58, + 59, + 38, + 39, + 32, + 42, + 44, + 52, + 31, + 32, + 36, + 31, + 36, + 49, + 39, + 31, + 40, + 38, + 32, + 34, + 34, + 43, + 33, + 44, + 31, + 55, + 32, + 50, + 33, + 29, + 34, + 34, + 34, + 35, + 49, + 56, + 49, + 45, + 32, + 36, + 35, + 44, + 44, + 43, + 40, + 50, + 32, + 32, + 32, + 49, + 38, + 33, + 29, + 29, + 32, + 41, + 41, + 36, + 35, + 45, + 34, + 40, + 35, + 32, + 39, + 36, + 34, + 46, + 36, + 39, + 56, + 45, + 54, + 57, + 37, + 32, + 33, + 47, + 38, + 33, + 32, + 36, + 36, + 32, + 47, + 30, + 33, + 30, + 30, + 30, + 44, + 39, + 39, + 59, + 34, + 50, + 33, + 29, + 31, + 33, + 32, + 34, + 38, + 35, + 35, + 37, + 37, + 37, + 36, + 36, + 36, + 39, + 30, + 36, + 33, + 44, + 37, + 41, + 29, + 36, + 36, + 31, + 32, + 30, + 36, + 52, + 45, + 40, + 33, + 36, + 39, + 42, + 45, + 35, + 35, + 35, + 30, + 48, + 31, + 34, + 33, + 34, + 53, + 31, + 31, + 45, + 37, + 52, + 31, + 36, + 56, + 49, + 34, + 34, + 31, + 49, + 49, + 52, + 49, + 48, + 30, + 32, + 36, + 30, + 30, + 55, + 52, + 30, + 44, + 42, + 55, + 47, + 36, + 36, + 48, + 30, + 39, + 39, + 34, + 29, + 29, + 55, + 40, + 30, + 30, + 34, + 34, + 34, + 32, + 29, + 50, + 46, + 36, + 39, + 36, + 46, + 29, + 31, + 29, + 40, + 30, + 51, + 32, + 30, + 31, + 32, + 30, + 33, + 31, + 32, + 40, + 35, + 48, + 55, + 38, + 54, + 50, + 33, + 29, + 48, + 56, + 38, + 58, + 34, + 31, + 31, + 44, + 32, + 41, + 32, + 52, + 58, + 35, + 58, + 52, + 52, + 52, + 52, + 52, + 31, + 31, + 31, + 31, + 31, + 47, + 32, + 31, + 38, + 36, + 33, + 33, + 37, + 42, + 31, + 47, + 47, + 29, + 38, + 33, + 51, + 38, + 33, + 46, + 34, + 46, + 30, + 30, + 52, + 39, + 30, + 29, + 52, + 35, + 35, + 35, + 33, + 31, + 30, + 33, + 52, + 40, + 40, + 40, + 45, + 45, + 42, + 34, + 49, + 37, + 48, + 39, + 59, + 51, + 31, + 29, + 31, + 31, + 31, + 50, + 50, + 31, + 31, + 51, + 35, + 32, + 34, + 31, + 35, + 32, + 32, + 32, + 36, + 39, + 38, + 32, + 34, + 38, + 33, + 41, + 41, + 54, + 47, + 47, + 48, + 48, + 30, + 36, + 40, + 31, + 30, + 48, + 35, + 33, + 49, + 31, + 36, + 33, + 48, + 35, + 46, + 32, + 37, + 39, + 32, + 45, + 35, + 35, + 32, + 35, + 35, + 33, + 32, + 42, + 42, + 29, + 53, + 46, + 50, + 32, + 44, + 41, + 41, + 49, + 41, + 35, + 56, + 58, + 32, + 38, + 31, + 54, + 40, + 31, + 34, + 53, + 30, + 36, + 31, + 33, + 33, + 46, + 48, + 52, + 39, + 52, + 31, + 32, + 57, + 31, + 54, + 38, + 44, + 33, + 34, + 32, + 54, + 31, + 47, + 32, + 34, + 54, + 41, + 35, + 41, + 36, + 31, + 60, + 56, + 32, + 35, + 57, + 32, + 33, + 30, + 44, + 46, + 35, + 30, + 30, + 44, + 30, + 33, + 31, + 59, + 38, + 38, + 58, + 58, + 32, + 51, + 52, + 44, + 46, + 36, + 39, + 40, + 34, + 39, + 54, + 54, + 32, + 29, + 46, + 42, + 33, + 42, + 34, + 34, + 58, + 42, + 54, + 41, + 31, + 31, + 41, + 45, + 31, + 35, + 32, + 29, + 29, + 45, + 52, + 31, + 34, + 34, + 31, + 45, + 29, + 57, + 39, + 40, + 40, + 39, + 39, + 30, + 34, + 31, + 34, + 34, + 58, + 52, + 33, + 32, + 53, + 54, + 34, + 35, + 31, + 58, + 31, + 31, + 44, + 32, + 48, + 33, + 44, + 52, + 47, + 37, + 46, + 44, + 32, + 41, + 57, + 33, + 34, + 59, + 35, + 37, + 55, + 41, + 49, + 30, + 29, + 29, + 45, + 37, + 29, + 30, + 54, + 32, + 56, + 39, + 31, + 34, + 31, + 30, + 31, + 31, + 55, + 34, + 34, + 32, + 48, + 33, + 45, + 42, + 31, + 35, + 32, + 33, + 45, + 33, + 50, + 32, + 33, + 44, + 49, + 33, + 32, + 32, + 33, + 34, + 34, + 30, + 33, + 39, + 30, + 33, + 31, + 57, + 31, + 31, + 31, + 35, + 23, + 41, + 31, + 31, + 35, + 32, + 54, + 32, + 32, + 31, + 45, + 54, + 32, + 34, + 35, + 34, + 34, + 42, + 50, + 31, + 38, + 34, + 49, + 33, + 31, + 30, + 50, + 40, + 40, + 33, + 30, + 32, + 36, + 34, + 35, + 42, + 32, + 32, + 42, + 34, + 57, + 31, + 41, + 29, + 29, + 31, + 31, + 32, + 39, + 40, + 31, + 31, + 47, + 31, + 31, + 49, + 36, + 34, + 30, + 32, + 35, + 31, + 31, + 50, + 50, + 36, + 47, + 49, + 29, + 46, + 31, + 41, + 31, + 39, + 32, + 34, + 30, + 59, + 39, + 32, + 33, + 34, + 58, + 34, + 47, + 31, + 56, + 58, + 30, + 31, + 49, + 39, + 33, + 33, + 47, + 32, + 34, + 35, + 58, + 47, + 49, + 50, + 31, + 49, + 55, + 32, + 32, + 31, + 30, + 45, + 31, + 35, + 35, + 41, + 35, + 35, + 47, + 46, + 31, + 33, + 50, + 34, + 34, + 33, + 34, + 34, + 31, + 35, + 53, + 30, + 29, + 54, + 31, + 29, + 43, + 54, + 29, + 51, + 54, + 51, + 33, + 54, + 37, + 29, + 54, + 32, + 36, + 54, + 54, + 36, + 54, + 32, + 58, + 32, + 38, + 33, + 35, + 31, + 33, + 33, + 34, + 32, + 41, + 54, + 38, + 53, + 29, + 33, + 41, + 32, + 56, + 39, + 32, + 30, + 40, + 49, + 48, + 41, + 31, + 29, + 47, + 31, + 45, + 37, + 32, + 32, + 50, + 30, + 33, + 34, + 31, + 41, + 33, + 48, + 54, + 31, + 47, + 35, + 43, + 33, + 32, + 31, + 38, + 36, + 31, + 31, + 37, + 30, + 38, + 49, + 33, + 41, + 45, + 32, + 38, + 35, + 33, + 50, + 37, + 35, + 35, + 40, + 38, + 33, + 29, + 30, + 31, + 31, + 34, + 42, + 33, + 44, + 34, + 33, + 36, + 43, + 45, + 38, + 29, + 41, + 36, + 35, + 35, + 35, + 32, + 35, + 29, + 42, + 35, + 34, + 31, + 33, + 33, + 35, + 47, + 50, + 44, + 34, + 33, + 40, + 31, + 41, + 31, + 30, + 41, + 32, + 32, + 30, + 38, + 44, + 40, + 50, + 52, + 38, + 41, + 31, + 53, + 42, + 42, + 55, + 30, + 47, + 33, + 33, + 31, + 35, + 45, + 31, + 30, + 31, + 41, + 41, + 31, + 30, + 54, + 41, + 38, + 29, + 29, + 34, + 42, + 41, + 30, + 31, + 35, + 30, + 42, + 31, + 40, + 37, + 45, + 33, + 45, + 30, + 37, + 45, + 30, + 34, + 38, + 50, + 32, + 41, + 50, + 30, + 33, + 29, + 35, + 31, + 47, + 33, + 35, + 32, + 49, + 48, + 52, + 33, + 33, + 31, + 27, + 41, + 31, + 34, + 52, + 44, + 35, + 35, + 37, + 40, + 40, + 35, + 40, + 44, + 37, + 31, + 33, + 31, + 46, + 45, + 31, + 32, + 31, + 36, + 36, + 31, + 37, + 56, + 29, + 33, + 42, + 32, + 39, + 31, + 33, + 52, + 42, + 48, + 48, + 48, + 48, + 31, + 49, + 31, + 35, + 31, + 32, + 31, + 41, + 33, + 52, + 37, + 31, + 33, + 29, + 29, + 31, + 38, + 49, + 32, + 50, + 33, + 33, + 32, + 36, + 54, + 31, + 33, + 34, + 44, + 30, + 34, + 30, + 58, + 30, + 32, + 32, + 49, + 54, + 48, + 39, + 30, + 32, + 33, + 38, + 32, + 36, + 31, + 36, + 48, + 29, + 56, + 35, + 33, + 33, + 30, + 33, + 33, + 33, + 31, + 36, + 37, + 33, + 30, + 47, + 50, + 58, + 31, + 30, + 44, + 30, + 31, + 33, + 32, + 52, + 42, + 58, + 38, + 32, + 36, + 36, + 42, + 32, + 37, + 47, + 46, + 37, + 31, + 49, + 52, + 59, + 54, + 33, + 54, + 30, + 43, + 43, + 33, + 29, + 31, + 31, + 34, + 41, + 34, + 47, + 32, + 29, + 48, + 48, + 52, + 49, + 36, + 40, + 59, + 40, + 32, + 40, + 40, + 30, + 32, + 32, + 31, + 31, + 30, + 30, + 33, + 33, + 41, + 30, + 30, + 30, + 30, + 30, + 30, + 31, + 50, + 37, + 31, + 31, + 31, + 54, + 40, + 36, + 36, + 31, + 36, + 32, + 31, + 45, + 49, + 31, + 32, + 30, + 54, + 35, + 36, + 39, + 54, + 29, + 30, + 29, + 45, + 41, + 34, + 32, + 33, + 30, + 45, + 38, + 35, + 30, + 35, + 44, + 50, + 50, + 30, + 43, + 31, + 31, + 48, + 31, + 32, + 31, + 43, + 32, + 32, + 47, + 35, + 56, + 33, + 30, + 33, + 37, + 44, + 35, + 33, + 55, + 29, + 32, + 52, + 30, + 32, + 52, + 53, + 32, + 32, + 56, + 33, + 37, + 36, + 52, + 34, + 47, + 43, + 39, + 35, + 30, + 29, + 45, + 30, + 40, + 47, + 36, + 55, + 31, + 30, + 57, + 58, + 32, + 31, + 31, + 38, + 48, + 43, + 31, + 33, + 32, + 32, + 35, + 30, + 48, + 42, + 30, + 31, + 31, + 59, + 29, + 33, + 33, + 33, + 37, + 33, + 32, + 33, + 53, + 33, + 33, + 51, + 49, + 46, + 32, + 32, + 36, + 31, + 32, + 43, + 56, + 43, + 49, + 29, + 54, + 32, + 55, + 40, + 55, + 33, + 48, + 31, + 31, + 36, + 31, + 33, + 29, + 42, + 42, + 29, + 45, + 33, + 33, + 29, + 33, + 42, + 30, + 36, + 40, + 40, + 40, + 32, + 40, + 29, + 29, + 36, + 50, + 44, + 44, + 32, + 31, + 31, + 46, + 31, + 32, + 30, + 59, + 59, + 30, + 57, + 54, + 36, + 33, + 32, + 31, + 50, + 30, + 37, + 53, + 46, + 49, + 31, + 30, + 47, + 30, + 33, + 48, + 30, + 32, + 40, + 31, + 43, + 43, + 31, + 43, + 43, + 44, + 53, + 57, + 53, + 36, + 53, + 45, + 60, + 48, + 30, + 47, + 51, + 30, + 32, + 36, + 32, + 33, + 29, + 30, + 29, + 31, + 29, + 37, + 29, + 43, + 32, + 38, + 31, + 32, + 48, + 30, + 37, + 40, + 37, + 35, + 51, + 36, + 43, + 53, + 53, + 36, + 37, + 29, + 43, + 33, + 59, + 58, + 59, + 59, + 36, + 36, + 41, + 45, + 36, + 29, + 31, + 34, + 55, + 32, + 56, + 34, + 34, + 34, + 41, + 46, + 35, + 35, + 44, + 35, + 30, + 30, + 29, + 30, + 36, + 36, + 53, + 30, + 41, + 53, + 32, + 29, + 34, + 57, + 43, + 32, + 37, + 47, + 46, + 47, + 32, + 33, + 48, + 43, + 43, + 39, + 32, + 50, + 34, + 55, + 45, + 54, + 46, + 41, + 36, + 50, + 32, + 29, + 36, + 31, + 35, + 55, + 31, + 51, + 48, + 31, + 42, + 30, + 30, + 34, + 33, + 53, + 30, + 42, + 53, + 56, + 36, + 36, + 52, + 49, + 49, + 36, + 45, + 29, + 31, + 34, + 47, + 58, + 34, + 37, + 43, + 30, + 30, + 45, + 29, + 30, + 29, + 31, + 49, + 58, + 30, + 31, + 29, + 30, + 41, + 31, + 46, + 34, + 41, + 48, + 43, + 48, + 43, + 48, + 55, + 36, + 32, + 35, + 33, + 51, + 41, + 35, + 41, + 35, + 53, + 55, + 53, + 44, + 43, + 44, + 34, + 33, + 50, + 34, + 42, + 47, + 31, + 29, + 29, + 38, + 30, + 30, + 30, + 47, + 32, + 31, + 48, + 56, + 46, + 29, + 37, + 37, + 35, + 39, + 31, + 42, + 42, + 42, + 42, + 29, + 50, + 43, + 53, + 34, + 30, + 30, + 31, + 34, + 29, + 32, + 30, + 30, + 32, + 30, + 30, + 30, + 49, + 51, + 32, + 51, + 54, + 33, + 30, + 39, + 39, + 46, + 60, + 51, + 60, + 46, + 30, + 57, + 49, + 29, + 29, + 47, + 56, + 44, + 31, + 45, + 30, + 55, + 46, + 42, + 41, + 33, + 56, + 47, + 29, + 29, + 32, + 31, + 49, + 51, + 45, + 56, + 51, + 40, + 31, + 34, + 45, + 29, + 31, + 56, + 52, + 45, + 35, + 34, + 50, + 52, + 32, + 31, + 38, + 35, + 29, + 30, + 50, + 31, + 29, + 33, + 31, + 31, + 48, + 48, + 31, + 35, + 30, + 47, + 47, + 31, + 54, + 32, + 29, + 37, + 49, + 54, + 30, + 31, + 55, + 37, + 55, + 31, + 40, + 47, + 31, + 29, + 48, + 30, + 29, + 54, + 31, + 55, + 32, + 29, + 29, + 31, + 36, + 36, + 55, + 36, + 53, + 30, + 50, + 41, + 41, + 41, + 35, + 36, + 57, + 57, + 57, + 58, + 33, + 33, + 29, + 30, + 30, + 34, + 39, + 30, + 29, + 57, + 31, + 31, + 30, + 55, + 45, + 30, + 35, + 47, + 44, + 37, + 59, + 44, + 46, + 33, + 34, + 53, + 41, + 59, + 34, + 30, + 38, + 29, + 41, + 39, + 39, + 29, + 54, + 51, + 29, + 51, + 29, + 45, + 30, + 30, + 30, + 30, + 48, + 35, + 34, + 51, + 30, + 29, + 47, + 47, + 37, + 34, + 37, + 59, + 34, + 37, + 29, + 55, + 37, + 33, + 33, + 31, + 32, + 46, + 46, + 31, + 30, + 29, + 30, + 29, + 29, + 30, + 30, + 57, + 48, + 35, + 39, + 40, + 40, + 52, + 34, + 30, + 33, + 33, + 30, + 29, + 36, + 31, + 34, + 34, + 53, + 38, + 38, + 54, + 32, + 34, + 38, + 34, + 48, + 48, + 31, + 30, + 53, + 56, + 32, + 31, + 30, + 30, + 45, + 29, + 31, + 32, + 30, + 33, + 37, + 37, + 31, + 29, + 37, + 47, + 48, + 36, + 33, + 31, + 31, + 37, + 39, + 52, + 31, + 30, + 33, + 42, + 32, + 31, + 36, + 48, + 48, + 29, + 29, + 55, + 35, + 37, + 30, + 32, + 33, + 53, + 40, + 48, + 39, + 60, + 59, + 30, + 51, + 31, + 60, + 42, + 48, + 32, + 41, + 59, + 39, + 41, + 40, + 34, + 39, + 39, + 43, + 55, + 44, + 40, + 33, + 30, + 31, + 33, + 36, + 39, + 39, + 47, + 44, + 35, + 29, + 58, + 42, + 31, + 52, + 30, + 31, + 39, + 30, + 56, + 31, + 36, + 34, + 37, + 34, + 32, + 30, + 31, + 35, + 35, + 45, + 40, + 31, + 30, + 39, + 32, + 46, + 46, + 48, + 36, + 33, + 32, + 32, + 53, + 31, + 31, + 32, + 36, + 54, + 32, + 32, + 32, + 39, + 31, + 52, + 58, + 35, + 48, + 52, + 31, + 60, + 45, + 45, + 36, + 47, + 35, + 35, + 29, + 29, + 30, + 50, + 31, + 40, + 33, + 35, + 39, + 42, + 31, + 48, + 41, + 42, + 57, + 30, + 32, + 40, + 36, + 37, + 33, + 35, + 33, + 33, + 31, + 30, + 37, + 41, + 31, + 45, + 59, + 32, + 50, + 35, + 30, + 37, + 49, + 37, + 50, + 47, + 35, + 33, + 50, + 50, + 47, + 58, + 30, + 56, + 37, + 39, + 35, + 30, + 47, + 35, + 57, + 53, + 37, + 53, + 35, + 32, + 48, + 47, + 40, + 30, + 29, + 58, + 38, + 53, + 32, + 37, + 42, + 53, + 47, + 39, + 47, + 29, + 54, + 50, + 49, + 42, + 33, + 56, + 48, + 48, + 59, + 37, + 40, + 31, + 51, + 57, + 47, + 38, + 44, + 42, + 42, + 52, + 31, + 40, + 56, + 33, + 47, + 37, + 29, + 51, + 48, + 30, + 32, + 29, + 49, + 33, + 59, + 32, + 31, + 42, + 30, + 44, + 44, + 30, + 29, + 40, + 35, + 50, + 42, + 40, + 55, + 32, + 58, + 33, + 41, + 53, + 35, + 32, + 45, + 37, + 32, + 50, + 46, + 35, + 52, + 47, + 47, + 29, + 35, + 57, + 33, + 45, + 45, + 51, + 54, + 31, + 45, + 36, + 55, + 49, + 31, + 59, + 36, + 53, + 48, + 34, + 32, + 41, + 57, + 38, + 40, + 46, + 41, + 59, + 54, + 54, + 59, + 53, + 47, + 31, + 38, + 29, + 56, + 59, + 44, + 45, + 45, + 56, + 43, + 43, + 56, + 44, + 50, + 37, + 50, + 47, + 38, + 50, + 34, + 46, + 58, + 38, + 51, + 41, + 38, + 51, + 46, + 55, + 48, + 47, + 40, + 54, + 56, + 56, + 31, + 38, + 49, + 38, + 49, + 50, + 40, + 59, + 38, + 47, + 50, + 47, + 48, + 48, + 45, + 32, + 48, + 48, + 48, + 44, + 41, + 32, + 47, + 44, + 36, + 38, + 45, + 46, + 34, + 38, + 31, + 41, + 32, + 60, + 50, + 35, + 35, + 50, + 48, + 50, + 59, + 38, + 55, + 37, + 55, + 42, + 47, + 55, + 40, + 38, + 39, + 55, + 50, + 35, + 35, + 35, + 40, + 37, + 41, + 41, + 41, + 37, + 37, + 33, + 33, + 50, + 30, + 37, + 32, + 54, + 32, + 56, + 36, + 48, + 47, + 29, + 56, + 40, + 52, + 56, + 56, + 45, + 58, + 38, + 38, + 48, + 50, + 32, + 47, + 38, + 48, + 33, + 33, + 32, + 47, + 33, + 57, + 55, + 38, + 29, + 52, + 40, + 32, + 35, + 35, + 54, + 35, + 35, + 32, + 35, + 37, + 52, + 47, + 51, + 52, + 33, + 29, + 32, + 40, + 50, + 44, + 58, + 35, + 55, + 54, + 60, + 43, + 31, + 51, + 47, + 42, + 46, + 42, + 47, + 36, + 38, + 47, + 37, + 47, + 52, + 42, + 42, + 42, + 37, + 29, + 52, + 46, + 57, + 55, + 31, + 55, + 38, + 29, + 44, + 54, + 48, + 37, + 38, + 47, + 42, + 46, + 59, + 55, + 36, + 58, + 47, + 55, + 44, + 37, + 41, + 33, + 48, + 48, + 52, + 48, + 44, + 45, + 40, + 29, + 43, + 47, + 29, + 37, + 36, + 30, + 41, + 43, + 48, + 59, + 41, + 52, + 55, + 45, + 51, + 50, + 50, + 57, + 60, + 31, + 44, + 34, + 58, + 45, + 47, + 44, + 40, + 44, + 37, + 60, + 39, + 47, + 30, + 55, + 52, + 44, + 48, + 49, + 41, + 48, + 43, + 41, + 54, + 42, + 41, + 54, + 31, + 51, + 41, + 44, + 47, + 52, + 46, + 54, + 48, + 47, + 54, + 57, + 57, + 48, + 40, + 47, + 54, + 47, + 31, + 46, + 52, + 43, + 57, + 48, + 46, + 51, + 47, + 37, + 44, + 30, + 54, + 44, + 41, + 33, + 37, + 52, + 54, + 29, + 38, + 40, + 37, + 59, + 41, + 47, + 37, + 52, + 43, + 42, + 29, + 32, + 30, + 31, + 58, + 31, + 33, + 39, + 44, + 44, + 33, + 43, + 29, + 30, + 31, + 33, + 33, + 55, + 37, + 37, + 32, + 58, + 46, + 46, + 43, + 40, + 39, + 45, + 38, + 41, + 43, + 47, + 31, + 47, + 31, + 47, + 41, + 36, + 41, + 41, + 35, + 40, + 30, + 30, + 49, + 38, + 33, + 44, + 40, + 43, + 33, + 40, + 41, + 43, + 55, + 46, + 51, + 31, + 41, + 51, + 30, + 30, + 33, + 36, + 46, + 33, + 32, + 48, + 44, + 43, + 29, + 43, + 44, + 56, + 37, + 40, + 32, + 57, + 31, + 30, + 35, + 41, + 37, + 33, + 40, + 36, + 32, + 32, + 41, + 31, + 51, + 43, + 33, + 41, + 37, + 46, + 55, + 37, + 29, + 31, + 36, + 52, + 41, + 31, + 35, + 50, + 42, + 40, + 37, + 31, + 35, + 32, + 41, + 37, + 31, + 59, + 33, + 33, + 31, + 37, + 46, + 40, + 33, + 37, + 33, + 46, + 48, + 32, + 36, + 58, + 44, + 57, + 40, + 36, + 48, + 47, + 52, + 34, + 32, + 30, + 30, + 48, + 37, + 35, + 40, + 29, + 37, + 54, + 30, + 41, + 47, + 32, + 46, + 32, + 50, + 30, + 35, + 50, + 31, + 30, + 46, + 39, + 30, + 46, + 57, + 41, + 41, + 31, + 33, + 54, + 41, + 30, + 39, + 31, + 48, + 31, + 47, + 37, + 34, + 32, + 35, + 42, + 30, + 32, + 50, + 32, + 32, + 34, + 50, + 38, + 48, + 45, + 31, + 29, + 30, + 30, + 35, + 33, + 45, + 40, + 48, + 35, + 39, + 35, + 56, + 45, + 45, + 45, + 39, + 37, + 53, + 53, + 60, + 33, + 50, + 33, + 48, + 29, + 31, + 33, + 29, + 30, + 30, + 53, + 59, + 37, + 31, + 32, + 60, + 30, + 33, + 33, + 33, + 30, + 33, + 35, + 33, + 31, + 32, + 35, + 59, + 36, + 30, + 49, + 36, + 53, + 44, + 44, + 31, + 48, + 30, + 35, + 45, + 40, + 33, + 51, + 50, + 55, + 41, + 53, + 34, + 32, + 50, + 31, + 35, + 39, + 32, + 32, + 34, + 31, + 31, + 60, + 43, + 45, + 32, + 45, + 49, + 45, + 53, + 32, + 43, + 38, + 32, + 35, + 45, + 43, + 40, + 35, + 33, + 33, + 37, + 29, + 36, + 31, + 58, + 50, + 41, + 34, + 36, + 34, + 45, + 37, + 41, + 53, + 43, + 31, + 35, + 40, + 48, + 33, + 31, + 29, + 33, + 33, + 38, + 38, + 29, + 37, + 31, + 38, + 33, + 40, + 30, + 31, + 45, + 29, + 29, + 51, + 40, + 34, + 42, + 42, + 29, + 29, + 37, + 36, + 34, + 34, + 45, + 34, + 29, + 59, + 51, + 38, + 45, + 42, + 43, + 52, + 39, + 52, + 32, + 51, + 38, + 49, + 42, + 52, + 38, + 58, + 55, + 38, + 29, + 38, + 32, + 59, + 29, + 35, + 30, + 42, + 42, + 32, + 44, + 32, + 33, + 31, + 43, + 45, + 41, + 54, + 41, + 41, + 42, + 41, + 45, + 37, + 32, + 29, + 29, + 50, + 45, + 31, + 32, + 54, + 33, + 32, + 33, + 38, + 35, + 31, + 34, + 41, + 41, + 33, + 33, + 32, + 44, + 43, + 33, + 30, + 53, + 38, + 33, + 30, + 53, + 55, + 53, + 40, + 40, + 29, + 60, + 31, + 59, + 59, + 33, + 58, + 30, + 38, + 35, + 32, + 33, + 32, + 35, + 29, + 47, + 34, + 29, + 35, + 30, + 52, + 29, + 60, + 45, + 38, + 53, + 53, + 33, + 33, + 50, + 31, + 38, + 41, + 33, + 41, + 48, + 45, + 33, + 45, + 58, + 45, + 41, + 51, + 41, + 60, + 58, + 55, + 44, + 43, + 27, + 46, + 52, + 35, + 35, + 59, + 35, + 41, + 56, + 36, + 58, + 26, + 32, + 49, + 27, + 43, + 49, + 33, + 58, + 33, + 31, + 33, + 30, + 25, + 32, + 57, + 48, + 30, + 36, + 57, + 33, + 47, + 30, + 32, + 43, + 32, + 33, + 27, + 24, + 46, + 47, + 43, + 57, + 53, + 37, + 48, + 46, + 37, + 33, + 18, + 33, + 27, + 29, + 39, + 35, + 57, + 42, + 56, + 56, + 40, + 52, + 50, + 42, + 55, + 41, + 48, + 34, + 57, + 32, + 44, + 35, + 44, + 52, + 41, + 52, + 42, + 35, + 54, + 35, + 40, + 51, + 58, + 37, + 44, + 40, + 45, + 36, + 36, + 36, + 36, + 38, + 38, + 50, + 46, + 41, + 41, + 40, + 57, + 46, + 34, + 46, + 35, + 43, + 54, + 52, + 42, + 42, + 51, + 50, + 54, + 43, + 43, + 31, + 47, + 55, + 44, + 39, + 39, + 40, + 53, + 42, + 51, + 49, + 41, + 48, + 41, + 55, + 45, + 49, + 55, + 38, + 39, + 39, + 33, + 40, + 52, + 41, + 48, + 40, + 39, + 29, + 39, + 51, + 51, + 41, + 38, + 30, + 31, + 35, + 54, + 35, + 42, + 43, + 37, + 54, + 43, + 55, + 36, + 48, + 39, + 36, + 40, + 34, + 36, + 36, + 42, + 42, + 39, + 36, + 39, + 48, + 45, + 39, + 54, + 45, + 45, + 37, + 39, + 50, + 49, + 46, + 45, + 30, + 42, + 42, + 42, + 44, + 46, + 51, + 45, + 38, + 49, + 40, + 49, + 50, + 41, + 53, + 51, + 42, + 39, + 46, + 48, + 46, + 54, + 31, + 54, + 44, + 51, + 45, + 31, + 55, + 54, + 46, + 53, + 38, + 54, + 41, + 35, + 46, + 45, + 36, + 46, + 51, + 40, + 47, + 52, + 47, + 45, + 46, + 34, + 37, + 36, + 36, + 52, + 52, + 56, + 53, + 53, + 40, + 43, + 58, + 58, + 31, + 30, + 37, + 58, + 47, + 47, + 38, + 38, + 38, + 35, + 56, + 37, + 44, + 52, + 43, + 43, + 45, + 45, + 35, + 54, + 42, + 31, + 52, + 39, + 36, + 58, + 52, + 43, + 52, + 42, + 50, + 33, + 50, + 50, + 45, + 37, + 35, + 43, + 57, + 32, + 30, + 50, + 36, + 32, + 39, + 36, + 47, + 31, + 54, + 45, + 39, + 39, + 36, + 50, + 49, + 52, + 36, + 46, + 46, + 33, + 46, + 43, + 56, + 38, + 36, + 33, + 46, + 40, + 42, + 46, + 40, + 53, + 53, + 34, + 34, + 57, + 47, + 32, + 42, + 42, + 40, + 37, + 32, + 38, + 58, + 54, + 38, + 29, + 42, + 54, + 53, + 42, + 40, + 42, + 38, + 42, + 36, + 38, + 44, + 44, + 33, + 33, + 57, + 32, + 36, + 47, + 53, + 55, + 38, + 36, + 42, + 32, + 29, + 55, + 29, + 29, + 45, + 33, + 29, + 31, + 39, + 43, + 46, + 41, + 31, + 53, + 44, + 47, + 31, + 32, + 32, + 39, + 44, + 38, + 31, + 30, + 35, + 35, + 29, + 32, + 39, + 32, + 35, + 40, + 31, + 35, + 34, + 34, + 31, + 31, + 56, + 34, + 31, + 45, + 48, + 48, + 32, + 50, + 39, + 55, + 55, + 39, + 39, + 36, + 53, + 42, + 42, + 46, + 30, + 35, + 35, + 36, + 35, + 30, + 42, + 32, + 42, + 34, + 46, + 39, + 38, + 46, + 42, + 42, + 38, + 44, + 42, + 52, + 32, + 35, + 43, + 31, + 58, + 37, + 51, + 34, + 35, + 41, + 46, + 44, + 50, + 50, + 40, + 34, + 31, + 34, + 33, + 32, + 39, + 38, + 40, + 36, + 46, + 36, + 33, + 53, + 43, + 46, + 38, + 57, + 42, + 51, + 43, + 43, + 35, + 35, + 40, + 37, + 43, + 36, + 49, + 42, + 38, + 55, + 41, + 55, + 51, + 49, + 48, + 34, + 50, + 52, + 43, + 35, + 39, + 35, + 43, + 46, + 53, + 52, + 39, + 31, + 31, + 36, + 37, + 52, + 35, + 33, + 36, + 45, + 41, + 52, + 37, + 46, + 39, + 40, + 30, + 52, + 44, + 53, + 53, + 53, + 44, + 53, + 53, + 35, + 44, + 57, + 43, + 45, + 51, + 52, + 42, + 45, + 32, + 40, + 41, + 50, + 51, + 31, + 58, + 50, + 33, + 42, + 50, + 43, + 36, + 34, + 31, + 51, + 44, + 34, + 34, + 41, + 37, + 43, + 43, + 50, + 55, + 49, + 39, + 56, + 31, + 53, + 47, + 54, + 47, + 40, + 47, + 43, + 43, + 54, + 54, + 41, + 34, + 30, + 35, + 41, + 36, + 57, + 41, + 37, + 36, + 34, + 34, + 34, + 40, + 52, + 40, + 34, + 35, + 35, + 35, + 49, + 32, + 40, + 44, + 31, + 36, + 37, + 53, + 32, + 51, + 34, + 35, + 35, + 33, + 51, + 29, + 30, + 36, + 33, + 32, + 32, + 40, + 33, + 39, + 50, + 56, + 29, + 32, + 40, + 38, + 39, + 33, + 31, + 42, + 43, + 38, + 52, + 43, + 31, + 33, + 43, + 31, + 52, + 40, + 38, + 38, + 51, + 37, + 33, + 36, + 39, + 36, + 33, + 46, + 29, + 31, + 44, + 31, + 34, + 46, + 35, + 43, + 31, + 54, + 30, + 43, + 48, + 52, + 54, + 56, + 39, + 51, + 39, + 39, + 37, + 47, + 37, + 36, + 35, + 48, + 37, + 39, + 39, + 48, + 33, + 32, + 38, + 36, + 50, + 50, + 34, + 30, + 54, + 52, + 40, + 30, + 30, + 34, + 33, + 32, + 37, + 52, + 34, + 36, + 34, + 40, + 29, + 39, + 40, + 52, + 30, + 49, + 49, + 47, + 49, + 30, + 36, + 54, + 41, + 36, + 31, + 50, + 44, + 33, + 32, + 43, + 32, + 32, + 49, + 47, + 51, + 43, + 41, + 39, + 51, + 38, + 48, + 31, + 35, + 47, + 29, + 54, + 47, + 54, + 30, + 39, + 50, + 39, + 37, + 49, + 38, + 51, + 53, + 55, + 51, + 55, + 44, + 35, + 49, + 48, + 50, + 46, + 31, + 35, + 48, + 35, + 50, + 48, + 50, + 35, + 50, + 30, + 35, + 32, + 52, + 51, + 46, + 32, + 53, + 32, + 35, + 46, + 53, + 34, + 38, + 33, + 46, + 37, + 40, + 30, + 29, + 46, + 57, + 34, + 45, + 41, + 30, + 56, + 33, + 39, + 38, + 54, + 38, + 31, + 50, + 32, + 56, + 33, + 31, + 58, + 31, + 31, + 31, + 34, + 49, + 29, + 38, + 53, + 29, + 41, + 52, + 58, + 29, + 31, + 32, + 56, + 32, + 36, + 29, + 52, + 33, + 47, + 46, + 53, + 35, + 35, + 53, + 40, + 50, + 41, + 33, + 45, + 54, + 35, + 40, + 54, + 36, + 35, + 38, + 50, + 32, + 50, + 47, + 35, + 37, + 44, + 43, + 55, + 33, + 40, + 45, + 40, + 38, + 32, + 39, + 39, + 44, + 47, + 47, + 44, + 45, + 47, + 48, + 36, + 51, + 38, + 30, + 36, + 48, + 50, + 31, + 41, + 36, + 30, + 58, + 43, + 38, + 54, + 32, + 50, + 38, + 37, + 35, + 30, + 35, + 50, + 35, + 54, + 32, + 56, + 31, + 49, + 45, + 45, + 51, + 32, + 41, + 37, + 35, + 40, + 36, + 30, + 35, + 35, + 47, + 47, + 34, + 43, + 37, + 36, + 36, + 57, + 41, + 51, + 33, + 43, + 46, + 30, + 39, + 35, + 35, + 37, + 51, + 41, + 44, + 50, + 35, + 33, + 39, + 50, + 39, + 58, + 41, + 36, + 47, + 34, + 46, + 54, + 35, + 40, + 53, + 53, + 42, + 47, + 37, + 53, + 39, + 32, + 41, + 39, + 35, + 50, + 36, + 53, + 53, + 54, + 32, + 32, + 47, + 43, + 57, + 32, + 33, + 36, + 36, + 45, + 55, + 36, + 50, + 34, + 46, + 56, + 44, + 43, + 47, + 47, + 37, + 45, + 43, + 44, + 31, + 46, + 56, + 45, + 40, + 36, + 31, + 46, + 33, + 46, + 50, + 32, + 30, + 35, + 31, + 39, + 54, + 34, + 37, + 30, + 29, + 29, + 37, + 51, + 42, + 31, + 31, + 48, + 32, + 31, + 34, + 50, + 54, + 31, + 29, + 31, + 34, + 35, + 50, + 36, + 56, + 32, + 34, + 33, + 35, + 33, + 39, + 30, + 49, + 36, + 36, + 34, + 39, + 31, + 37, + 32, + 40, + 54, + 32, + 57, + 38, + 40, + 47, + 52, + 42, + 38, + 34, + 30, + 36, + 45, + 47, + 57, + 34, + 36, + 38, + 37, + 35, + 29, + 36, + 36, + 40, + 32, + 40, + 51, + 52, + 30, + 35, + 30, + 29, + 31, + 30, + 50, + 50, + 50, + 34, + 46, + 43, + 41, + 33, + 42, + 35, + 58, + 35, + 53, + 58, + 58, + 58, + 36, + 36, + 34, + 32, + 43, + 48, + 48, + 31, + 34, + 34, + 34, + 34, + 29, + 43, + 44, + 36, + 34, + 42, + 36, + 33, + 36, + 37, + 33, + 42, + 37, + 37, + 30, + 37, + 37, + 56, + 30, + 34, + 38, + 31, + 35, + 35, + 30, + 40, + 43, + 29, + 29, + 29, + 32, + 29, + 29, + 31, + 31, + 33, + 33, + 41, + 36, + 33, + 33, + 34, + 32, + 32, + 34, + 49, + 30, + 48, + 33, + 33, + 38, + 46, + 41, + 58, + 41, + 44, + 48, + 48, + 32, + 30, + 29, + 58, + 38, + 30, + 40, + 47, + 38, + 48, + 35, + 32, + 36, + 39, + 32, + 45, + 31, + 46, + 38, + 44, + 32, + 48, + 39, + 31, + 31, + 37, + 29, + 30, + 32, + 33, + 35, + 34, + 41, + 44, + 35, + 35, + 44, + 34, + 34, + 30, + 58, + 30, + 35, + 34, + 43, + 35, + 33, + 51, + 29, + 41, + 45, + 51, + 29, + 31, + 29, + 30, + 38, + 45, + 29, + 32, + 50, + 29, + 33, + 35, + 36, + 36, + 36, + 48, + 32, + 42, + 29, + 38, + 30, + 29, + 43, + 48, + 36, + 31, + 34, + 36, + 36, + 48, + 49, + 31, + 56, + 30, + 32, + 36, + 47, + 33, + 34, + 30, + 54, + 29, + 59, + 33, + 36, + 36, + 49, + 34, + 33, + 38, + 35, + 32, + 32, + 32, + 38, + 29, + 35, + 49, + 43, + 33, + 32, + 40, + 32, + 53, + 34, + 34, + 47, + 36, + 48, + 33, + 38, + 47, + 36, + 47, + 34, + 34, + 33, + 30, + 47, + 50, + 35, + 37, + 45, + 44, + 53, + 31, + 29, + 38, + 36, + 36, + 36, + 41, + 40, + 54, + 40, + 35, + 32, + 31, + 31, + 45, + 31, + 28, + 58, + 37, + 30, + 40, + 33, + 36, + 55, + 29, + 40, + 32, + 32, + 36, + 42, + 32, + 42, + 34, + 32, + 33, + 35, + 38, + 36, + 34, + 37, + 37, + 39, + 36, + 36, + 29, + 36, + 56, + 46, + 38, + 35, + 36, + 35, + 36, + 32, + 44, + 47, + 32, + 44, + 34, + 46, + 51, + 31, + 36, + 34, + 41, + 30, + 54, + 55, + 35, + 41, + 38, + 32, + 38, + 53, + 45, + 39, + 36, + 51, + 31, + 32, + 34, + 56, + 35, + 35, + 33, + 40, + 58, + 30, + 34, + 49, + 40, + 44, + 32, + 48, + 32, + 31, + 47, + 53, + 30, + 30, + 32, + 29, + 29, + 36, + 52, + 44, + 51, + 36, + 29, + 44, + 52, + 36, + 35, + 39, + 46, + 31, + 48, + 34, + 58, + 48, + 55, + 54, + 52, + 42, + 43, + 30, + 30, + 42, + 31, + 31, + 31, + 38, + 30, + 33, + 35, + 33, + 47, + 38, + 38, + 30, + 32, + 38, + 39, + 30, + 33, + 30, + 35, + 36, + 40, + 31, + 40, + 31, + 34, + 34, + 45, + 30, + 40, + 44, + 40, + 35, + 32, + 30, + 32, + 32, + 38, + 35, + 38, + 40, + 36, + 29, + 32, + 35, + 30, + 51, + 35, + 45, + 44, + 39, + 31, + 31, + 31, + 39, + 35, + 45, + 30, + 34, + 34, + 30, + 32, + 55, + 50, + 33, + 35, + 32, + 31, + 54, + 34, + 33, + 37, + 37, + 33, + 31, + 39, + 31, + 43, + 29, + 42, + 49, + 49, + 38, + 29, + 34, + 29, + 48, + 29, + 46, + 29, + 36, + 36, + 38, + 49, + 48, + 30, + 38, + 30, + 49, + 53, + 56, + 47, + 40, + 39, + 37, + 56, + 31, + 44, + 47, + 42, + 40, + 31, + 32, + 41, + 37, + 41, + 37, + 30, + 32, + 30, + 44, + 39, + 42, + 30, + 38, + 31, + 38, + 43, + 48, + 55, + 34, + 42, + 33, + 31, + 43, + 58, + 53, + 36, + 30, + 29, + 39, + 32, + 34, + 47, + 56, + 31, + 38, + 47, + 31, + 31, + 38, + 49, + 56, + 31, + 39, + 46, + 46, + 35, + 51, + 39, + 35, + 35, + 35, + 38, + 50, + 35, + 42, + 32, + 32, + 32, + 34, + 34, + 54, + 33, + 35, + 29, + 34, + 49, + 53, + 31, + 34, + 35, + 35, + 42, + 31, + 43, + 37, + 37, + 35, + 38, + 43, + 32, + 42, + 31, + 38, + 36, + 33, + 55, + 43, + 32, + 36, + 30, + 45, + 46, + 35, + 33, + 31, + 54, + 34, + 46, + 40, + 35, + 46, + 52, + 31, + 53, + 46, + 30, + 45, + 36, + 33, + 31, + 45, + 37, + 42, + 44, + 55, + 40, + 56, + 56, + 41, + 36, + 50, + 43, + 36, + 49, + 33, + 38, + 32, + 39, + 29, + 33, + 48, + 35, + 32, + 50, + 49, + 35, + 44, + 40, + 39, + 46, + 44, + 33, + 44, + 37, + 32, + 32, + 56, + 36, + 31, + 39, + 36, + 37, + 36, + 30, + 30, + 36, + 32, + 34, + 45, + 40, + 31, + 29, + 50, + 33, + 41, + 31, + 51, + 43, + 39, + 53, + 29, + 36, + 29, + 53, + 54, + 36, + 53, + 33, + 29, + 30, + 38, + 30, + 50, + 38, + 30, + 36, + 52, + 38, + 31, + 48, + 33, + 38, + 53, + 34, + 33, + 53, + 36, + 34, + 37, + 32, + 38, + 30, + 31, + 36, + 29, + 53, + 29, + 49, + 30, + 39, + 36, + 47, + 34, + 33, + 41, + 33, + 41, + 39, + 45, + 49, + 35, + 31, + 33, + 42, + 39, + 31, + 30, + 31, + 44, + 34, + 31, + 30, + 31, + 30, + 36, + 47, + 37, + 51, + 52, + 52, + 53, + 53, + 37, + 29, + 46, + 45, + 52, + 32, + 46, + 39, + 44, + 36, + 40, + 55, + 58, + 38, + 40, + 44, + 40, + 33, + 42, + 33, + 47, + 56, + 31, + 30, + 35, + 32, + 44, + 31, + 36, + 35, + 34, + 55, + 34, + 46, + 36, + 43, + 53, + 31, + 31, + 29, + 31, + 42, + 31, + 31, + 32, + 36, + 30, + 31, + 32, + 48, + 32, + 30, + 56, + 30, + 30, + 52, + 32, + 34, + 46, + 53, + 45, + 31, + 53, + 29, + 36, + 36, + 36, + 34, + 48, + 30, + 38, + 29, + 30, + 32, + 30, + 31, + 32, + 38, + 33, + 29, + 36, + 31, + 40, + 29, + 31, + 32, + 32, + 32, + 36, + 38, + 44, + 32, + 44, + 29, + 44, + 32, + 31, + 56, + 38, + 58, + 38, + 29, + 32, + 32, + 31, + 32, + 58, + 31, + 50, + 29, + 38, + 35, + 38, + 38, + 30, + 37, + 36, + 29, + 33, + 32, + 29, + 55, + 29, + 58, + 48, + 30, + 50, + 32, + 57, + 40, + 35, + 49, + 36, + 30, + 42, + 52, + 52, + 30, + 33, + 38, + 31, + 31, + 47, + 29, + 49, + 42, + 32, + 31, + 31, + 57, + 30, + 44, + 38, + 46, + 38, + 34, + 33, + 32, + 37, + 31, + 50, + 31, + 33, + 44, + 45, + 31, + 32, + 31, + 53, + 31, + 36, + 32, + 31, + 38, + 43, + 36, + 58, + 34, + 46, + 34, + 45, + 46, + 38, + 38, + 30, + 30, + 38, + 58, + 30, + 33, + 53, + 39, + 38, + 32, + 34, + 35, + 30, + 30, + 32, + 48, + 33, + 31, + 31, + 36, + 56, + 31, + 30, + 48, + 34, + 34, + 59, + 59, + 38, + 33, + 38, + 56, + 34, + 34, + 38, + 44, + 33, + 55, + 51, + 34, + 35, + 30, + 32, + 34, + 46, + 31, + 40, + 36, + 31, + 37, + 36, + 44, + 36, + 30, + 52, + 31, + 53, + 40, + 45, + 46, + 38, + 41, + 50, + 43, + 43, + 31, + 32, + 33, + 55, + 39, + 39, + 30, + 36, + 29, + 39, + 30, + 39, + 33, + 39, + 29, + 32, + 35, + 41, + 43, + 49, + 36, + 56, + 30, + 36, + 32, + 32, + 47, + 47, + 58, + 31, + 45, + 31, + 42, + 29, + 37, + 43, + 33, + 40, + 47, + 55, + 44, + 43, + 33, + 39, + 50, + 30, + 52, + 31, + 30, + 37, + 50, + 30, + 33, + 35, + 50, + 44, + 41, + 48, + 52, + 31, + 50, + 43, + 30, + 29, + 53, + 53, + 31, + 51, + 31, + 31, + 29, + 29, + 47, + 51, + 51, + 31, + 31, + 31, + 31, + 30, + 51, + 52, + 30, + 41, + 44, + 34, + 31, + 31, + 30, + 31, + 46, + 36, + 30, + 38, + 39, + 33, + 30, + 32, + 39, + 43, + 33, + 31, + 36, + 30, + 41, + 37, + 32, + 51, + 32, + 56, + 37, + 34, + 56, + 31, + 41, + 56, + 34, + 51, + 46, + 32, + 43, + 41, + 34, + 31, + 38, + 34, + 37, + 33, + 29, + 31, + 53, + 30, + 37, + 36, + 33, + 40, + 30, + 35, + 35, + 31, + 35, + 37, + 36, + 32, + 36, + 46, + 32, + 56, + 56, + 50, + 29, + 43, + 32, + 34, + 42, + 47, + 35, + 31, + 40, + 31, + 31, + 33, + 46, + 32, + 31, + 33, + 53, + 32, + 34, + 30, + 32, + 31, + 35, + 30, + 51, + 30, + 36, + 52, + 51, + 34, + 55, + 51, + 39, + 31, + 48, + 30, + 50, + 32, + 35, + 40, + 39, + 30, + 31, + 47, + 39, + 29, + 50, + 30, + 33, + 29, + 33, + 41, + 39, + 49, + 42, + 45, + 31, + 29, + 53, + 53, + 46, + 49, + 43, + 39, + 38, + 33, + 51, + 45, + 32, + 30, + 38, + 44, + 50, + 50, + 31, + 41, + 30, + 29, + 36, + 36, + 43, + 46, + 38, + 38, + 29, + 30, + 29, + 36, + 36, + 33, + 30, + 33, + 52, + 33, + 46, + 34, + 38, + 36, + 31, + 41, + 33, + 35, + 39, + 30, + 36, + 50, + 31, + 31, + 36, + 30, + 32, + 41, + 41, + 41, + 22, + 35, + 31, + 30, + 34, + 29, + 39, + 52, + 32, + 30, + 31, + 50, + 34, + 45, + 30, + 30, + 35, + 30, + 43, + 33, + 57, + 29, + 33, + 36, + 30, + 29, + 36, + 39, + 47, + 55, + 55, + 55, + 54, + 29, + 31, + 31, + 29, + 30, + 30, + 37, + 55, + 38, + 46, + 30, + 32, + 41, + 32, + 42, + 31, + 39, + 31, + 31, + 35, + 30, + 36, + 29, + 41, + 52, + 38, + 33, + 30, + 49, + 31, + 55, + 45, + 54, + 41, + 52, + 42, + 59, + 29, + 51, + 48, + 29, + 32, + 48, + 33, + 31, + 30, + 31, + 58, + 41, + 30, + 36, + 30, + 34, + 37, + 51, + 36, + 36, + 45, + 31, + 46, + 38, + 32, + 33, + 31, + 32, + 38, + 45, + 39, + 42, + 36, + 34, + 33, + 39, + 31, + 42, + 29, + 35, + 42, + 56, + 42, + 31, + 51, + 42, + 54, + 44, + 37, + 45, + 33, + 58, + 46, + 50, + 44, + 31, + 32, + 40, + 38, + 33, + 47, + 33, + 58, + 31, + 48, + 32, + 49, + 45, + 54, + 30, + 32, + 57, + 50, + 53, + 38, + 57, + 58, + 49, + 37, + 57, + 36, + 43, + 30, + 45, + 40, + 31, + 36, + 29, + 48, + 32, + 29, + 38, + 29, + 37, + 42, + 30, + 55, + 56, + 55, + 31, + 45, + 37, + 45, + 30, + 34, + 53, + 45, + 48, + 49, + 29, + 47, + 32, + 43, + 42, + 50, + 39, + 55, + 42, + 30, + 43, + 29, + 31, + 35, + 48, + 43, + 29, + 40, + 40, + 29, + 55, + 45, + 43, + 29, + 40, + 32, + 33, + 31, + 57, + 57, + 48, + 34, + 32, + 57, + 45, + 50, + 52, + 42, + 30, + 38, + 34, + 51, + 44, + 38, + 57, + 36, + 40, + 40, + 31, + 34, + 50, + 53, + 52, + 42, + 50, + 40, + 51, + 44, + 57, + 50, + 49, + 36, + 37, + 32, + 31, + 29, + 40, + 44, + 50, + 39, + 57, + 46, + 41, + 31, + 54, + 33, + 52, + 46, + 57, + 55, + 37, + 40, + 29, + 31, + 33, + 34, + 40, + 34, + 52, + 31, + 46, + 50, + 41, + 31, + 32, + 51, + 31, + 49, + 55, + 57, + 57, + 48, + 40, + 33, + 58, + 40, + 31, + 36, + 52, + 40, + 50, + 39, + 37, + 57, + 48, + 29, + 47, + 57, + 48, + 50, + 29, + 32, + 37, + 45, + 50, + 45, + 52, + 54, + 33, + 34, + 38, + 55, + 38, + 52, + 32, + 49, + 30, + 52, + 31, + 49, + 32, + 53, + 50, + 37, + 57, + 44, + 44, + 37, + 44, + 43, + 51, + 33, + 36, + 31, + 49, + 34, + 42, + 29, + 29, + 52, + 48, + 56, + 41, + 37, + 55, + 58, + 45, + 44, + 52, + 35, + 48, + 32, + 47, + 31, + 48, + 35, + 40, + 35, + 40, + 37, + 55, + 35, + 29, + 47, + 56, + 35, + 30, + 31, + 39, + 56, + 51, + 31, + 31, + 50, + 32, + 41, + 51, + 37, + 50, + 34, + 37, + 47, + 40, + 33, + 39, + 37, + 55, + 36, + 55, + 36, + 34, + 52, + 44, + 40, + 32, + 31, + 42, + 51, + 42, + 49, + 53, + 52, + 46, + 54, + 32, + 34, + 50, + 32, + 32, + 29, + 33, + 44, + 46, + 51, + 44, + 39, + 56, + 33, + 33, + 52, + 56, + 31, + 31, + 31, + 40, + 53, + 52, + 40, + 56, + 45, + 41, + 31, + 34, + 38, + 38, + 31, + 43, + 55, + 34, + 46, + 40, + 58, + 31, + 36, + 37, + 30, + 29, + 48, + 44, + 46, + 32, + 36, + 53, + 53, + 56, + 37, + 44, + 52, + 56, + 40, + 46, + 39, + 34, + 51, + 51, + 50, + 53, + 41, + 30, + 45, + 51, + 43, + 32, + 50, + 45, + 50, + 41, + 40, + 50, + 58, + 42, + 53, + 34, + 49, + 42, + 40, + 54, + 29, + 34, + 53, + 39, + 50, + 57, + 37, + 35, + 37, + 51, + 54, + 30, + 34, + 46, + 31, + 43, + 56, + 46, + 53, + 53, + 48, + 31, + 44, + 47, + 36, + 32, + 40, + 53, + 37, + 30, + 49, + 53, + 37, + 42, + 43, + 51, + 44, + 44, + 56, + 52, + 51, + 30, + 48, + 34, + 47, + 42, + 30, + 46, + 51, + 43, + 33, + 53, + 58, + 54, + 53, + 47, + 37, + 43, + 50, + 48, + 34, + 56, + 57, + 47, + 59, + 47, + 53, + 57, + 44, + 41, + 41, + 48, + 52, + 30, + 45, + 56, + 49, + 31, + 58, + 49, + 32, + 48, + 35, + 57, + 53, + 30, + 58, + 29, + 47, + 30, + 48, + 52, + 50, + 37, + 55, + 58, + 37, + 53, + 29, + 51, + 55, + 37, + 30, + 42, + 41, + 37, + 51, + 46, + 43, + 50, + 29, + 44, + 33, + 35, + 49, + 40, + 31, + 35, + 45, + 31, + 31, + 34, + 36, + 40, + 50, + 56, + 37, + 50, + 32, + 42, + 49, + 51, + 55, + 48, + 39, + 40, + 39, + 41, + 32, + 34, + 38, + 32, + 46, + 27, + 31, + 39, + 41, + 37, + 48, + 51, + 39, + 36, + 55, + 26, + 26, + 30, + 26, + 28, + 48, + 28, + 31, + 38, + 28, + 30, + 26, + 28, + 26, + 28, + 61, + 26, + 30, + 31, + 34, + 32, + 38, + 38, + 44, + 33, + 23, + 44, + 44, + 23, + 33, + 38, + 32, + 38, + 76, + 34, + 38, + 41, + 37, + 32, + 67, + 32, + 32, + 32, + 32, + 73, + 33, + 39, + 39, + 38, + 38, + 18, + 32, + 39, + 30, + 32, + 29, + 88, + 29, + 29, + 29, + 88, + 60, + 88, + 88, + 88, + 33, + 33, + 95, + 28, + 32, + 28, + 28, + 37, + 70, + 70, + 34, + 56, + 34, + 34, + 70, + 34, + 50, + 46, + 33, + 32, + 32, + 50, + 26, + 33, + 33, + 24, + 54, + 75, + 27, + 70, + 35, + 29, + 32, + 28, + 29, + 61, + 29, + 63, + 36, + 70, + 45, + 36, + 28, + 20, + 36, + 37, + 51, + 28, + 22, + 27, + 28, + 28, + 28, + 25, + 25, + 30, + 28, + 43, + 36, + 60, + 43, + 28, + 30, + 34, + 34, + 32, + 21, + 32, + 32, + 32, + 34, + 59, + 45, + 45, + 48, + 38, + 31, + 34, + 29, + 56, + 30, + 33, + 39, + 33, + 33, + 40, + 29, + 29, + 29, + 29, + 39, + 32, + 38, + 32, + 63, + 34, + 31, + 30, + 54, + 54, + 30, + 30, + 38, + 39, + 34, + 26, + 39, + 39, + 39, + 33, + 39, + 28, + 42, + 28, + 28, + 28, + 28, + 30, + 32, + 46, + 42, + 39, + 50, + 44, + 31, + 39, + 38, + 28, + 30, + 32, + 24, + 39, + 40, + 42, + 53, + 26, + 32, + 26, + 49, + 30, + 42, + 37, + 51, + 51, + 40, + 31, + 30, + 33, + 39, + 44, + 33, + 32, + 55, + 33, + 39, + 56, + 48, + 48, + 32, + 32, + 34, + 49, + 50, + 39, + 37, + 32, + 44, + 44, + 31, + 47, + 36, + 47, + 51, + 37, + 40, + 49, + 38, + 41, + 41, + 45, + 40, + 25, + 40, + 37, + 38, + 55, + 31, + 26, + 56, + 65, + 34, + 55, + 55, + 44, + 24, + 42, + 46, + 41, + 45, + 45, + 55, + 24, + 55, + 40, + 26, + 26, + 58, + 55, + 43, + 32, + 35, + 48, + 40, + 57, + 38, + 42, + 38, + 51, + 56, + 19, + 32, + 57, + 39, + 35, + 34, + 44, + 39, + 35, + 41, + 22, + 41, + 40, + 40, + 46, + 45, + 36, + 39, + 57, + 36, + 45, + 46, + 40, + 40, + 39, + 66, + 42, + 41, + 42, + 34, + 28, + 32, + 72, + 36, + 32, + 45, + 45, + 43, + 57, + 35, + 35, + 40, + 25, + 36, + 39, + 44, + 40, + 40, + 41, + 59, + 44, + 44, + 38, + 38, + 38, + 33, + 55, + 59, + 43, + 40, + 36, + 44, + 27, + 27, + 46, + 34, + 27, + 27, + 40, + 32, + 55, + 27, + 61, + 48, + 29, + 32, + 41, + 41, + 25, + 25, + 27, + 39, + 39, + 27, + 37, + 29, + 34, + 38, + 36, + 36, + 37, + 47, + 28, + 51, + 25, + 47, + 31, + 36, + 27, + 46, + 47, + 35, + 38, + 24, + 64, + 40, + 42, + 35, + 40, + 35, + 35, + 35, + 34, + 29, + 37, + 34, + 52, + 46, + 34, + 27, + 22, + 64, + 39, + 25, + 43, + 34, + 41, + 33, + 46, + 59, + 31, + 20, + 36, + 31, + 21, + 52, + 21, + 41, + 28, + 46, + 43, + 44, + 24, + 35, + 35, + 38, + 38, + 37, + 32, + 67, + 33, + 40, + 40, + 32, + 33, + 36, + 45, + 33, + 30, + 30, + 30, + 30, + 35, + 52, + 42, + 37, + 46, + 52, + 45, + 33, + 36, + 47, + 54, + 43, + 28, + 46, + 36, + 57, + 37, + 33, + 30, + 26, + 41, + 36, + 34, + 30, + 24, + 41, + 34, + 42, + 42, + 37, + 34, + 38, + 46, + 34, + 42, + 59, + 46, + 34, + 35, + 48, + 34, + 24, + 48, + 24, + 24, + 47, + 34, + 55, + 55, + 26, + 28, + 35, + 44, + 30, + 57, + 46, + 39, + 71, + 25, + 34, + 45, + 36, + 42, + 23, + 29, + 38, + 47, + 41, + 46, + 67, + 39, + 56, + 23, + 37, + 56, + 38, + 34, + 30, + 45, + 30, + 29, + 36, + 66, + 44, + 44, + 40, + 53, + 53, + 35, + 41, + 44, + 35, + 44, + 41, + 32, + 41, + 32, + 52, + 44, + 60, + 59, + 21, + 32, + 44, + 36, + 58, + 32, + 44, + 32, + 70, + 27, + 52, + 52, + 57, + 57, + 57, + 43, + 25, + 25, + 33, + 31, + 55, + 37, + 33, + 37, + 56, + 30, + 30, + 45, + 54, + 43, + 71, + 39, + 39, + 55, + 51, + 42, + 47, + 35, + 29, + 33, + 38, + 64, + 57, + 29, + 48, + 33, + 52, + 45, + 37, + 31, + 52, + 27, + 27, + 27, + 35, + 44, + 27, + 27, + 43, + 32, + 42, + 32, + 27, + 54, + 27, + 24, + 54, + 31, + 52, + 29, + 32, + 24, + 46, + 54, + 26, + 37, + 40, + 35, + 27, + 40, + 41, + 51, + 37, + 35, + 37, + 59, + 31, + 56, + 38, + 32, + 46, + 47, + 31, + 41, + 27, + 27, + 44, + 19, + 47, + 20, + 31, + 47, + 32, + 38, + 31, + 42, + 37, + 42, + 26, + 37, + 44, + 37, + 29, + 41, + 47, + 35, + 38, + 27, + 59, + 40, + 24, + 33, + 33, + 49, + 49, + 34, + 32, + 24, + 30, + 46, + 46, + 45, + 39, + 41, + 31, + 55, + 32, + 29, + 37, + 46, + 32, + 53, + 32, + 42, + 38, + 46, + 45, + 40, + 37, + 24, + 38, + 40, + 37, + 39, + 42, + 32, + 39, + 33, + 41, + 36, + 36, + 44, + 41, + 47, + 27, + 31, + 45, + 28, + 41, + 38, + 33, + 47, + 44, + 55, + 36, + 31, + 28, + 25, + 44, + 44, + 45, + 40, + 28, + 28, + 28, + 23, + 28, + 44, + 28, + 30, + 25, + 47, + 59, + 29, + 34, + 34, + 42, + 47, + 43, + 33, + 42, + 37, + 38, + 29, + 37, + 37, + 41, + 34, + 48, + 37, + 45, + 25, + 36, + 41, + 35, + 54, + 41, + 42, + 35, + 34, + 57, + 34, + 54, + 55, + 34, + 31, + 55, + 59, + 35, + 34, + 39, + 34, + 32, + 34, + 38, + 39, + 43, + 35, + 47, + 50, + 43, + 32, + 42, + 32, + 37, + 35, + 35, + 36, + 39, + 48, + 36, + 35, + 34, + 33, + 38, + 39, + 38, + 39, + 25, + 37, + 34, + 44, + 40, + 43, + 44, + 34, + 34, + 34, + 47, + 42, + 38, + 29, + 53, + 38, + 34, + 49, + 36, + 35, + 48, + 32, + 36, + 49, + 36, + 41, + 41, + 41, + 32, + 42, + 34, + 24, + 34, + 37, + 44, + 55, + 36, + 57, + 35, + 39, + 24, + 48, + 55, + 24, + 45, + 38, + 32, + 38, + 47, + 30, + 29, + 46, + 34, + 55, + 44, + 32, + 26, + 42, + 36, + 41, + 34, + 41, + 41, + 47, + 50, + 39, + 38, + 45, + 35, + 36, + 39, + 36, + 50, + 55, + 55, + 33, + 33, + 41, + 39, + 40, + 37, + 33, + 37, + 32, + 53, + 34, + 32, + 31, + 28, + 37, + 37, + 33, + 56, + 30, + 45, + 26, + 39, + 40, + 44, + 48, + 50, + 33, + 45, + 27, + 36, + 36, + 34, + 54, + 54, + 34, + 39, + 39, + 45, + 31, + 33, + 34, + 34, + 49, + 40, + 53, + 37, + 31, + 34, + 39, + 34, + 55, + 34, + 35, + 35, + 43, + 35, + 35, + 45, + 22, + 41, + 32, + 37, + 38, + 27, + 42, + 30, + 36, + 37, + 37, + 42, + 40, + 36, + 33, + 31, + 35, + 35, + 39, + 37, + 44, + 40, + 36, + 33, + 45, + 42, + 39, + 34, + 41, + 37, + 29, + 41, + 44, + 41, + 50, + 28, + 36, + 44, + 34, + 44, + 43, + 48, + 25, + 33, + 53, + 45, + 49, + 36, + 33, + 47, + 30, + 29, + 31, + 59, + 33, + 38, + 48, + 47, + 34, + 36, + 33, + 31, + 28, + 75, + 37, + 30, + 47, + 37, + 36, + 36, + 43, + 28, + 37, + 48, + 60, + 37, + 39, + 44, + 39, + 39, + 55, + 42, + 24, + 47, + 49, + 37, + 32, + 31, + 36, + 37, + 41, + 30, + 38, + 35, + 37, + 33, + 35, + 38, + 37, + 35, + 37, + 46, + 42, + 36, + 40, + 36, + 29, + 34, + 34, + 40, + 32, + 46, + 40, + 40, + 29, + 36, + 27, + 40, + 29, + 53, + 33, + 22, + 26, + 34, + 35, + 40, + 37, + 29, + 36, + 39, + 22, + 35, + 39, + 38, + 34, + 36, + 36, + 42, + 40, + 31, + 41, + 40, + 33, + 50, + 36, + 34, + 43, + 29, + 35, + 36, + 39, + 39, + 33, + 37, + 33, + 34, + 37, + 38, + 32, + 34, + 60, + 32, + 38, + 43, + 25, + 40, + 68, + 49, + 42, + 47, + 35, + 47, + 32, + 30, + 32, + 36, + 49, + 36, + 37, + 46, + 45, + 36, + 42, + 52, + 40, + 33, + 24, + 32, + 34, + 38, + 37, + 42, + 30, + 56, + 39, + 40, + 29, + 35, + 38, + 46, + 29, + 41, + 26, + 42, + 35, + 31, + 34, + 31, + 43, + 39, + 31, + 41, + 29, + 31, + 44, + 29, + 30, + 37, + 53, + 48, + 48, + 34, + 48, + 38, + 38, + 44, + 34, + 73, + 54, + 31, + 31, + 56, + 37, + 37, + 29, + 53, + 37, + 33, + 42, + 41, + 36, + 40, + 34, + 35, + 29, + 38, + 37, + 57, + 37, + 39, + 42, + 36, + 50, + 36, + 50, + 41, + 52, + 26, + 40, + 59, + 40, + 36, + 38, + 36, + 32, + 33, + 40, + 36, + 41, + 45, + 33, + 41, + 36, + 42, + 42, + 40, + 35, + 40, + 42, + 43, + 30, + 38, + 40, + 36, + 47, + 30, + 58, + 38, + 57, + 31, + 34, + 34, + 30, + 44, + 43, + 29, + 38, + 48, + 34, + 43, + 32, + 32, + 43, + 52, + 56, + 43, + 31, + 31, + 47, + 21, + 34, + 37, + 36, + 48, + 73, + 23, + 32, + 56, + 37, + 34, + 51, + 56, + 28, + 37, + 31, + 31, + 46, + 28, + 46, + 46, + 46, + 43, + 45, + 32, + 40, + 39, + 31, + 47, + 52, + 44, + 40, + 34, + 40, + 38, + 46, + 52, + 49, + 52, + 48, + 33, + 49, + 47, + 37, + 23, + 50, + 53, + 37, + 41, + 52, + 29, + 54, + 31, + 30, + 33, + 30, + 33, + 34, + 45, + 34, + 22, + 36, + 40, + 30, + 35, + 52, + 31, + 40, + 45, + 33, + 31, + 43, + 34, + 45, + 55, + 31, + 59, + 37, + 30, + 32, + 41, + 57, + 33, + 50, + 25, + 44, + 32, + 37, + 50, + 39, + 43, + 37, + 21, + 32, + 39, + 34, + 36, + 51, + 45, + 21, + 31, + 54, + 31, + 53, + 41, + 50, + 38, + 48, + 36, + 42, + 39, + 31, + 34, + 34, + 24, + 41, + 32, + 43, + 41, + 31, + 41, + 40, + 41, + 39, + 39, + 31, + 50, + 40, + 35, + 37, + 21, + 36, + 50, + 27, + 31, + 35, + 42, + 37, + 25, + 52, + 47, + 69, + 37, + 34, + 37, + 34, + 50, + 33, + 31, + 39, + 35, + 32, + 42, + 34, + 37, + 35, + 33, + 39, + 50, + 34, + 33, + 45, + 42, + 31, + 57, + 56, + 43, + 36, + 33, + 41, + 23, + 24, + 38, + 29, + 33, + 33, + 50, + 35, + 46, + 33, + 31, + 40, + 43, + 37, + 36, + 24, + 57, + 40, + 47, + 42, + 38, + 38, + 49, + 34, + 46, + 37, + 30, + 49, + 35, + 41, + 45, + 42, + 51, + 42, + 37, + 37, + 60, + 49, + 34, + 32, + 33, + 46, + 42, + 55, + 33, + 39, + 39, + 37, + 38, + 31, + 36, + 40, + 38, + 38, + 27, + 34, + 39, + 33, + 34, + 37, + 54, + 32, + 40, + 38, + 34, + 42, + 53, + 52, + 48, + 37, + 57, + 36, + 39, + 57, + 34, + 75, + 64, + 53, + 54, + 41, + 70, + 78, + 66, + 29, + 65, + 47, + 34, + 34, + 31, + 61, + 46, + 46, + 23, + 33, + 29, + 23, + 45, + 45, + 46, + 64, + 48, + 50, + 25, + 39, + 62, + 53, + 37, + 27, + 38, + 33, + 28, + 28, + 37, + 29, + 85, + 31, + 28, + 30, + 36, + 85, + 80, + 64, + 66, + 64, + 33, + 71, + 27, + 36, + 28, + 28, + 64, + 55, + 41, + 53, + 38, + 85, + 62, + 38, + 27, + 52, + 85, + 61, + 38, + 61, + 23, + 31, + 51, + 30, + 53, + 69, + 55, + 30, + 52, + 24, + 31, + 24, + 33, + 35, + 58, + 39, + 18, + 44, + 31, + 46, + 46, + 39, + 31, + 46, + 21, + 48, + 57, + 54, + 54, + 40, + 40, + 33, + 77, + 53, + 43, + 31, + 31, + 38, + 30, + 54, + 53, + 54, + 40, + 30, + 28, + 32, + 23, + 35, + 83, + 34, + 35, + 35, + 20, + 81, + 49, + 71, + 35, + 31, + 51, + 27, + 49, + 81, + 60, + 44, + 47, + 33, + 34, + 25, + 40, + 24, + 56, + 48, + 56, + 56, + 56, + 56, + 56, + 56, + 56, + 56, + 53, + 37, + 27, + 25, + 29, + 49, + 54, + 49, + 20, + 43, + 46, + 42, + 48, + 36, + 63, + 28, + 28, + 28, + 28, + 21, + 31, + 37, + 37, + 24, + 48, + 39, + 34, + 29, + 35, + 30, + 24, + 30, + 48, + 57, + 54, + 31, + 73, + 71, + 43, + 58, + 32, + 47, + 34, + 28, + 18, + 25, + 23, + 44, + 56, + 28, + 28, + 49, + 29, + 59, + 33, + 40, + 28, + 34, + 37, + 66, + 38, + 46, + 35, + 41, + 25, + 48, + 71, + 33, + 25, + 25, + 34, + 49, + 37, + 60, + 56, + 39, + 30, + 30, + 57, + 27, + 49, + 24, + 66, + 88, + 63, + 38, + 57, + 61, + 46, + 33, + 42, + 31, + 30, + 35, + 44, + 60, + 28, + 31, + 49, + 58, + 81, + 35, + 36, + 36, + 34, + 26, + 52, + 34, + 43, + 51, + 30, + 59, + 27, + 27, + 66, + 49, + 52, + 25, + 42, + 62, + 27, + 35, + 26, + 39, + 45, + 43, + 33, + 35, + 34, + 34, + 30, + 42, + 53, + 42, + 45, + 49, + 57, + 35, + 58, + 43, + 31, + 38, + 36, + 42, + 41, + 35, + 27, + 27, + 27, + 44, + 36, + 31, + 39, + 35, + 30, + 51, + 31, + 34, + 39, + 54, + 52, + 28, + 48, + 42, + 53, + 39, + 39, + 56, + 30, + 56, + 30, + 42, + 34, + 28, + 35, + 35, + 32, + 42, + 50, + 41, + 38, + 36, + 46, + 59, + 44, + 51, + 39, + 29, + 39, + 37, + 53, + 37, + 43, + 34, + 27, + 42, + 45, + 43, + 44, + 48, + 32, + 37, + 46, + 49, + 53, + 51, + 44, + 44, + 36, + 39, + 56, + 49, + 36, + 25, + 56, + 34, + 45, + 39, + 36, + 29, + 37, + 25, + 36, + 32, + 34, + 40, + 36, + 33, + 38, + 48, + 57, + 41, + 55, + 36, + 32, + 44, + 37, + 44, + 29, + 37, + 37, + 40, + 43, + 42, + 38, + 34, + 34, + 34, + 34, + 42, + 32, + 34, + 37, + 32, + 36, + 36, + 36, + 36, + 29, + 41, + 41, + 41, + 41, + 49, + 41, + 40, + 34, + 30, + 39, + 38, + 39, + 38, + 39, + 58, + 44, + 49, + 38, + 49, + 49, + 43, + 35, + 38, + 43, + 47, + 31, + 35, + 45, + 35, + 36, + 31, + 45, + 31, + 42, + 41, + 40, + 44, + 35, + 39, + 55, + 41, + 39, + 34, + 39, + 57, + 37, + 36, + 36, + 33, + 37, + 38, + 48, + 34, + 46, + 44, + 30, + 30, + 46, + 42, + 30, + 36, + 38, + 46, + 48, + 33, + 40, + 33, + 33, + 33, + 37, + 47, + 33, + 33, + 39, + 32, + 32, + 54, + 49, + 49, + 32, + 32, + 32, + 35, + 40, + 42, + 35, + 57, + 42, + 36, + 32, + 37, + 32, + 45, + 43, + 39, + 32, + 52, + 30, + 53, + 31, + 33, + 29, + 34, + 35, + 37, + 36, + 37, + 50, + 34, + 37, + 38, + 49, + 38, + 36, + 52, + 52, + 37, + 39, + 37, + 37, + 54, + 43, + 33, + 30, + 44, + 30, + 27, + 27, + 57, + 36, + 47, + 41, + 32, + 40, + 29, + 29, + 29, + 31, + 29, + 29, + 37, + 34, + 40, + 28, + 39, + 31, + 31, + 36, + 39, + 32, + 36, + 36, + 37, + 54, + 32, + 54, + 39, + 54, + 30, + 30, + 30, + 48, + 30, + 45, + 31, + 36, + 31, + 33, + 33, + 42, + 41, + 41, + 34, + 31, + 32, + 44, + 46, + 35, + 30, + 37, + 32, + 33, + 38, + 37, + 45, + 36, + 26, + 45, + 43, + 42, + 55, + 49, + 32, + 37, + 36, + 52, + 39, + 34, + 35, + 34, + 38, + 31, + 34, + 48, + 34, + 37, + 57, + 39, + 34, + 40, + 44, + 34, + 47, + 35, + 36, + 38, + 34, + 55, + 39, + 46, + 29, + 31, + 31, + 35, + 37, + 42, + 48, + 41, + 37, + 31, + 36, + 26, + 36, + 46, + 49, + 38, + 40, + 44, + 42, + 46, + 46, + 35, + 33, + 33, + 50, + 35, + 42, + 38, + 38, + 36, + 39, + 33, + 46, + 36, + 51, + 38, + 47, + 38, + 35, + 38, + 38, + 40, + 35, + 31, + 29, + 36, + 33, + 37, + 37, + 36, + 29, + 35, + 36, + 41, + 29, + 36, + 29, + 33, + 25, + 50, + 32, + 27, + 45, + 55, + 36, + 45, + 48, + 35, + 54, + 37, + 38, + 44, + 34, + 46, + 34, + 48, + 34, + 57, + 31, + 39, + 42, + 39, + 39, + 39, + 39, + 31, + 31, + 31, + 31, + 31, + 28, + 37, + 35, + 36, + 39, + 31, + 44, + 27, + 41, + 27, + 44, + 51, + 25, + 49, + 41, + 30, + 45, + 25, + 45, + 35, + 39, + 42, + 36, + 48, + 26, + 48, + 47, + 31, + 35, + 35, + 43, + 42, + 43, + 35, + 35, + 46, + 48, + 57, + 39, + 33, + 20, + 34, + 36, + 32, + 28, + 28, + 33, + 20, + 42, + 28, + 39, + 34, + 36, + 33, + 25, + 58, + 37, + 38, + 36, + 41, + 38, + 36, + 39, + 30, + 51, + 50, + 37, + 54, + 54, + 35, + 34, + 38, + 29, + 27, + 29, + 53, + 27, + 46, + 32, + 32, + 46, + 33, + 48, + 34, + 46, + 33, + 33, + 42, + 36, + 41, + 32, + 28, + 36, + 31, + 31, + 32, + 28, + 38, + 28, + 36, + 36, + 59, + 36, + 37, + 51, + 34, + 41, + 44, + 36, + 43, + 28, + 28, + 30, + 34, + 31, + 41, + 27, + 33, + 31, + 35, + 39, + 58, + 37, + 31, + 26, + 36, + 51, + 32, + 32, + 41, + 34, + 46, + 49, + 44, + 37, + 33, + 54, + 37, + 33, + 35, + 36, + 27, + 35, + 39, + 39, + 34, + 33, + 37, + 31, + 34, + 37, + 37, + 34, + 33, + 34, + 36, + 54, + 48, + 29, + 29, + 35, + 33, + 44, + 36, + 41, + 54, + 33, + 30, + 51, + 39, + 24, + 51, + 48, + 58, + 37, + 39, + 32, + 40, + 32, + 42, + 37, + 35, + 30, + 28, + 49, + 33, + 34, + 51, + 30, + 33, + 34, + 34, + 28, + 36, + 32, + 43, + 32, + 30, + 47, + 34, + 29, + 41, + 35, + 36, + 54, + 54, + 40, + 33, + 37, + 33, + 51, + 34, + 36, + 52, + 58, + 31, + 35, + 33, + 41, + 28, + 36, + 37, + 39, + 42, + 44, + 38, + 48, + 35, + 49, + 28, + 34, + 35, + 48, + 29, + 35, + 32, + 37, + 50, + 52, + 33, + 29, + 34, + 36, + 29, + 41, + 34, + 39, + 46, + 33, + 34, + 34, + 43, + 59, + 39, + 42, + 31, + 39, + 30, + 38, + 44, + 34, + 35, + 34, + 44, + 34, + 27, + 32, + 33, + 35, + 35, + 31, + 50, + 35, + 30, + 32, + 26, + 30, + 45, + 33, + 37, + 36, + 36, + 36, + 36, + 34, + 30, + 32, + 29, + 36, + 36, + 28, + 36, + 36, + 38, + 30, + 39, + 36, + 39, + 40, + 30, + 30, + 54, + 43, + 30, + 57, + 54, + 32, + 32, + 32, + 45, + 32, + 33, + 33, + 29, + 36, + 29, + 43, + 33, + 31, + 29, + 43, + 39, + 34, + 43, + 33, + 41, + 35, + 35, + 26, + 31, + 50, + 25, + 28, + 33, + 33, + 32, + 60, + 60, + 29, + 33, + 29, + 29, + 29, + 30, + 52, + 52, + 33, + 43, + 33, + 36, + 32, + 30, + 40, + 25, + 51, + 25, + 34, + 40, + 57, + 57, + 57, + 37, + 29, + 26, + 44, + 36, + 55, + 35, + 28, + 26, + 38, + 28, + 38, + 37, + 34, + 34, + 38, + 38, + 33, + 34, + 45, + 37, + 36, + 36, + 36, + 38, + 51, + 41, + 32, + 42, + 41, + 35, + 49, + 35, + 36, + 31, + 39, + 36, + 37, + 30, + 47, + 37, + 33, + 24, + 35, + 33, + 37, + 40, + 26, + 44, + 43, + 33, + 33, + 36, + 36, + 35, + 35, + 37, + 43, + 35, + 31, + 32, + 39, + 37, + 49, + 33, + 37, + 32, + 32, + 34, + 37, + 34, + 37, + 34, + 34, + 34, + 34, + 35, + 33, + 37, + 56, + 31, + 23, + 40, + 45, + 40, + 38, + 31, + 40, + 37, + 45, + 45, + 35, + 33, + 35, + 39, + 39, + 42, + 39, + 32, + 42, + 42, + 28, + 27, + 27, + 41, + 36, + 41, + 42, + 42, + 45, + 45, + 27, + 39, + 44, + 36, + 32, + 43, + 37, + 51, + 27, + 52, + 27, + 39, + 43, + 36, + 48, + 37, + 32, + 34, + 48, + 42, + 43, + 39, + 41, + 39, + 33, + 33, + 39, + 58, + 41, + 32, + 32, + 37, + 40, + 32, + 46, + 36, + 39, + 35, + 29, + 27, + 29, + 27, + 41, + 36, + 50, + 37, + 38, + 43, + 35, + 27, + 31, + 46, + 35, + 46, + 34, + 49, + 36, + 36, + 32, + 30, + 33, + 44, + 31, + 35, + 35, + 59, + 33, + 46, + 59, + 40, + 30, + 31, + 36, + 44, + 40, + 33, + 37, + 37, + 48, + 54, + 44, + 39, + 37, + 30, + 39, + 26, + 41, + 45, + 42, + 43, + 24, + 36, + 32, + 36, + 35, + 44, + 39, + 56, + 35, + 46, + 41, + 31, + 34, + 33, + 48, + 46, + 29, + 43, + 30, + 31, + 35, + 49, + 46, + 38, + 47, + 47, + 45, + 36, + 42, + 31, + 53, + 37, + 49, + 32, + 39, + 43, + 39, + 34, + 43, + 39, + 46, + 30, + 51, + 55, + 36, + 33, + 49, + 50, + 26, + 25, + 35, + 50, + 46, + 29, + 36, + 36, + 41, + 56, + 31, + 36, + 36, + 48, + 45, + 43, + 28, + 39, + 30, + 36, + 58, + 57, + 41, + 35, + 25, + 31, + 50, + 33, + 39, + 35, + 38, + 48, + 45, + 49, + 32, + 44, + 44, + 34, + 33, + 44, + 37, + 35, + 25, + 31, + 27, + 39, + 36, + 36, + 39, + 41, + 32, + 56, + 30, + 33, + 32, + 30, + 28, + 28, + 41, + 32, + 36, + 42, + 37, + 31, + 42, + 36, + 43, + 33, + 34, + 33, + 34, + 36, + 35, + 37, + 35, + 39, + 35, + 38, + 37, + 32, + 35, + 32, + 39, + 39, + 36, + 31, + 36, + 37, + 37, + 35, + 33, + 37, + 37, + 46, + 37, + 34, + 57, + 42, + 38, + 58, + 33, + 34, + 41, + 31, + 38, + 41, + 25, + 31, + 42, + 31, + 38, + 51, + 24, + 33, + 32, + 29, + 36, + 33, + 47, + 37, + 25, + 38, + 34, + 44, + 37, + 53, + 32, + 49, + 34, + 33, + 39, + 42, + 32, + 36, + 51, + 31, + 37, + 22, + 33, + 45, + 39, + 36, + 36, + 55, + 45, + 56, + 32, + 35, + 32, + 28, + 42, + 42, + 29, + 33, + 42, + 37, + 41, + 47, + 28, + 33, + 38, + 49, + 33, + 25, + 38, + 45, + 51, + 37, + 35, + 45, + 32, + 47, + 34, + 23, + 38, + 35, + 40, + 40, + 40, + 31, + 35, + 58, + 58, + 35, + 36, + 30, + 32, + 28, + 34, + 28, + 24, + 43, + 31, + 28, + 34, + 37, + 38, + 27, + 48, + 38, + 32, + 43, + 43, + 43, + 29, + 34, + 35, + 26, + 49, + 35, + 39, + 39, + 39, + 37, + 32, + 37, + 52, + 24, + 37, + 43, + 38, + 41, + 41, + 57, + 44, + 28, + 41, + 33, + 33, + 44, + 33, + 37, + 33, + 32, + 38, + 37, + 34, + 33, + 45, + 52, + 42, + 29, + 45, + 33, + 52, + 32, + 38, + 34, + 46, + 22, + 40, + 58, + 33, + 34, + 35, + 47, + 34, + 39, + 34, + 37, + 37, + 25, + 34, + 21, + 51, + 31, + 32, + 41, + 35, + 47, + 33, + 35, + 33, + 54, + 33, + 35, + 34, + 34, + 34, + 37, + 32, + 55, + 34, + 35, + 31, + 35, + 29, + 25, + 32, + 41, + 34, + 32, + 32, + 31, + 48, + 39, + 32, + 43, + 38, + 35, + 34, + 37, + 42, + 38, + 38, + 34, + 36, + 31, + 38, + 29, + 33, + 27, + 46, + 42, + 34, + 36, + 29, + 30, + 37, + 31, + 39, + 34, + 28, + 35, + 37, + 33, + 47, + 36, + 46, + 35, + 27, + 49, + 29, + 43, + 45, + 44, + 28, + 42, + 52, + 37, + 32, + 35, + 32, + 30, + 45, + 35, + 36, + 34, + 32, + 36, + 42, + 30, + 28, + 50, + 37, + 35, + 44, + 59, + 36, + 30, + 29, + 32, + 30, + 49, + 37, + 35, + 34, + 29, + 29, + 44, + 34, + 44, + 47, + 34, + 38, + 33, + 52, + 32, + 34, + 28, + 34, + 34, + 53, + 26, + 41, + 44, + 34, + 29, + 34, + 30, + 38, + 27, + 29, + 39, + 44, + 31, + 32, + 27, + 43, + 45, + 54, + 34, + 31, + 44, + 31, + 35, + 40, + 29, + 44, + 33, + 33, + 34, + 33, + 27, + 30, + 35, + 42, + 26, + 42, + 24, + 42, + 29, + 34, + 39, + 29, + 26, + 27, + 27, + 34, + 26, + 27, + 32, + 26, + 26, + 33, + 30, + 32, + 37, + 37, + 30, + 40, + 27, + 30, + 23, + 25, + 48, + 37, + 23, + 37, + 32, + 49, + 37, + 37, + 31, + 36, + 33, + 38, + 36, + 38, + 44, + 32, + 37, + 31, + 36, + 32, + 32, + 36, + 36, + 40, + 52, + 36, + 26, + 34, + 27, + 30, + 32, + 30, + 38, + 51, + 51, + 51, + 39, + 39, + 35, + 27, + 53, + 33, + 46, + 31, + 27, + 31, + 30, + 35, + 28, + 32, + 35, + 39, + 31, + 27, + 39, + 42, + 39, + 30, + 41, + 32, + 46, + 57, + 29, + 29, + 31, + 30, + 34, + 56, + 46, + 31, + 34, + 47, + 30, + 45, + 39, + 30, + 34, + 30, + 26, + 48, + 26, + 36, + 27, + 36, + 29, + 36, + 28, + 35, + 39, + 34, + 34, + 34, + 31, + 44, + 35, + 34, + 34, + 34, + 34, + 37, + 50, + 34, + 30, + 37, + 31, + 32, + 36, + 49, + 33, + 43, + 49, + 34, + 37, + 28, + 45, + 37, + 32, + 31, + 31, + 35, + 29, + 32, + 36, + 50, + 33, + 31, + 32, + 33, + 31, + 35, + 41, + 32, + 24, + 37, + 36, + 39, + 29, + 27, + 39, + 29, + 39, + 39, + 47, + 54, + 27, + 31, + 30, + 33, + 28, + 33, + 33, + 49, + 32, + 30, + 28, + 32, + 29, + 42, + 31, + 39, + 36, + 28, + 38, + 39, + 30, + 44, + 31, + 34, + 28, + 31, + 55, + 25, + 35, + 46, + 26, + 30, + 36, + 28, + 57, + 29, + 32, + 51, + 57, + 35, + 57, + 57, + 32, + 32, + 36, + 30, + 30, + 40, + 35, + 32, + 34, + 35, + 53, + 40, + 30, + 38, + 28, + 32, + 43, + 30, + 30, + 47, + 28, + 57, + 32, + 56, + 32, + 47, + 30, + 36, + 28, + 42, + 57, + 31, + 42, + 30, + 52, + 29, + 27, + 32, + 36, + 49, + 30, + 32, + 34, + 31, + 29, + 28, + 58, + 36, + 31, + 29, + 33, + 55, + 35, + 37, + 35, + 44, + 26, + 44, + 30, + 27, + 32, + 43, + 24, + 37, + 32, + 30, + 43, + 46, + 30, + 36, + 30, + 32, + 37, + 35, + 32, + 30, + 34, + 30, + 37, + 33, + 30, + 33, + 37, + 49, + 44, + 35, + 31, + 29, + 36, + 29, + 42, + 44, + 31, + 33, + 26, + 26, + 31, + 36, + 35, + 35, + 25, + 34, + 46, + 34, + 33, + 35, + 33, + 54, + 45, + 24, + 46, + 32, + 40, + 35, + 33, + 29, + 31, + 30, + 43, + 46, + 41, + 32, + 27, + 36, + 32, + 26, + 30, + 28, + 33, + 32, + 43, + 35, + 32, + 39, + 27, + 37, + 29, + 40, + 36, + 26, + 30, + 47, + 36, + 35, + 41, + 27, + 29, + 51, + 35, + 49, + 50, + 33, + 30, + 31, + 26, + 34, + 30, + 32, + 31, + 39, + 51, + 35, + 38, + 37, + 36, + 34, + 54, + 28, + 42, + 29, + 40, + 33, + 33, + 38, + 51, + 38, + 33, + 42, + 28, + 28, + 48, + 40, + 31, + 59, + 27, + 27, + 35, + 27, + 36, + 35, + 59, + 35, + 47, + 44, + 45, + 28, + 45, + 38, + 45, + 48, + 27, + 35, + 45, + 26, + 33, + 41, + 41, + 54, + 46, + 38, + 30, + 46, + 43, + 43, + 36, + 43, + 43, + 54, + 43, + 36, + 27, + 35, + 39, + 59, + 34, + 33, + 37, + 32, + 24, + 30, + 28, + 34, + 39, + 57, + 36, + 26, + 36, + 37, + 33, + 34, + 44, + 44, + 31, + 39, + 31, + 36, + 36, + 26, + 26, + 26, + 32, + 28, + 28, + 36, + 28, + 36, + 54, + 36, + 38, + 32, + 29, + 42, + 29, + 34, + 31, + 27, + 27, + 42, + 31, + 34, + 26, + 21, + 29, + 35, + 26, + 34, + 29, + 33, + 33, + 46, + 33, + 51, + 33, + 31, + 31, + 38, + 34, + 31, + 43, + 34, + 34, + 39, + 32, + 47, + 36, + 32, + 31, + 47, + 28, + 41, + 33, + 31, + 28, + 43, + 29, + 28, + 35, + 32, + 41, + 39, + 43, + 27, + 39, + 39, + 32, + 39, + 39, + 39, + 43, + 39, + 33, + 29, + 33, + 30, + 32, + 33, + 37, + 32, + 47, + 38, + 33, + 27, + 48, + 32, + 36, + 33, + 35, + 33, + 33, + 33, + 40, + 32, + 45, + 28, + 42, + 42, + 29, + 32, + 50, + 30, + 42, + 28, + 28, + 54, + 36, + 29, + 23, + 26, + 29, + 39, + 31, + 32, + 33, + 36, + 32, + 37, + 39, + 37, + 33, + 27, + 31, + 44, + 31, + 41, + 35, + 35, + 34, + 33, + 35, + 34, + 41, + 33, + 28, + 48, + 29, + 28, + 25, + 25, + 33, + 35, + 29, + 35, + 28, + 28, + 32, + 32, + 31, + 51, + 25, + 27, + 56, + 28, + 49, + 31, + 29, + 28, + 37, + 31, + 47, + 48, + 38, + 35, + 43, + 31, + 29, + 27, + 30, + 31, + 48, + 45, + 27, + 34, + 40, + 27, + 34, + 44, + 53, + 45, + 33, + 42, + 40, + 43, + 34, + 27, + 27, + 33, + 49, + 34, + 35, + 35, + 29, + 38, + 33, + 51, + 32, + 28, + 34, + 38, + 35, + 36, + 32, + 38, + 32, + 27, + 35, + 31, + 57, + 36, + 28, + 36, + 43, + 35, + 29, + 37, + 32, + 30, + 45, + 32, + 27, + 33, + 33, + 32, + 31, + 33, + 46, + 49, + 32, + 28, + 32, + 54, + 48, + 35, + 50, + 41, + 36, + 33, + 27, + 44, + 36, + 42, + 34, + 28, + 33, + 29, + 38, + 37, + 26, + 33, + 33, + 35, + 53, + 38, + 32, + 49, + 42, + 34, + 30, + 34, + 42, + 34, + 42, + 37, + 53, + 27, + 33, + 25, + 43, + 35, + 35, + 55, + 34, + 43, + 35, + 42, + 38, + 26, + 30, + 26, + 27, + 25, + 26, + 33, + 55, + 40, + 35, + 38, + 41, + 29, + 53, + 38, + 51, + 24, + 35, + 43, + 42, + 43, + 38, + 43, + 26, + 37, + 29, + 35, + 28, + 36, + 35, + 29, + 36, + 43, + 36, + 30, + 33, + 23, + 36, + 23, + 29, + 41, + 29, + 34, + 44, + 41, + 34, + 27, + 48, + 30, + 35, + 28, + 35, + 41, + 28, + 29, + 35, + 31, + 51, + 29, + 35, + 27, + 49, + 41, + 42, + 41, + 28, + 53, + 26, + 38, + 32, + 43, + 34, + 37, + 53, + 31, + 30, + 34, + 34, + 36, + 51, + 37, + 38, + 31, + 53, + 33, + 27, + 43, + 42, + 24, + 40, + 27, + 36, + 33, + 34, + 33, + 35, + 34, + 23, + 24, + 36, + 33, + 31, + 42, + 29, + 43, + 44, + 34, + 29, + 31, + 37, + 35, + 35, + 41, + 29, + 29, + 31, + 35, + 29, + 29, + 23, + 42, + 29, + 53, + 25, + 24, + 35, + 30, + 52, + 31, + 29, + 39, + 39, + 28, + 41, + 36, + 28, + 48, + 34, + 39, + 31, + 41, + 43, + 37, + 38, + 29, + 37, + 43, + 39, + 38, + 30, + 29, + 31, + 30, + 31, + 29, + 31, + 51, + 36, + 38, + 23, + 31, + 33, + 43, + 28, + 28, + 35, + 30, + 28, + 47, + 36, + 33, + 36, + 27, + 53, + 27, + 29, + 28, + 22, + 51, + 32, + 26, + 29, + 42, + 33, + 33, + 51, + 28, + 51, + 28, + 29, + 44, + 58, + 41, + 40, + 45, + 30, + 31, + 32, + 35, + 33, + 29, + 35, + 32, + 31, + 23, + 50, + 24, + 39, + 58, + 47, + 31, + 34, + 30, + 33, + 31, + 34, + 34, + 28, + 35, + 48, + 28, + 29, + 27, + 29, + 33, + 35, + 52, + 48, + 41, + 28, + 29, + 32, + 29, + 34, + 22, + 33, + 55, + 36, + 45, + 37, + 39, + 38, + 40, + 38, + 59, + 24, + 31, + 38, + 40, + 29, + 29, + 34, + 34, + 33, + 33, + 33, + 33, + 33, + 34, + 28, + 45, + 37, + 45, + 32, + 34, + 33, + 36, + 29, + 34, + 36, + 34, + 36, + 35, + 42, + 33, + 34, + 36, + 48, + 58, + 29, + 27, + 49, + 34, + 40, + 45, + 33, + 32, + 42, + 36, + 49, + 39, + 26, + 42, + 42, + 34, + 23, + 23, + 24, + 42, + 31, + 31, + 30, + 41, + 40, + 39, + 39, + 33, + 35, + 24, + 31, + 38, + 29, + 49, + 35, + 32, + 34, + 44, + 51, + 33, + 35, + 38, + 33, + 51, + 35, + 41, + 29, + 32, + 33, + 39, + 30, + 29, + 33, + 37, + 49, + 34, + 40, + 48, + 34, + 33, + 36, + 39, + 29, + 39, + 34, + 32, + 52, + 27, + 36, + 36, + 26, + 34, + 32, + 35, + 27, + 29, + 34, + 24, + 43, + 31, + 43, + 41, + 31, + 31, + 29, + 35, + 33, + 29, + 27, + 28, + 35, + 39, + 55, + 39, + 34, + 32, + 32, + 30, + 35, + 35, + 32, + 42, + 29, + 38, + 38, + 30, + 27, + 59, + 56, + 36, + 34, + 44, + 24, + 29, + 32, + 42, + 42, + 38, + 27, + 27, + 51, + 29, + 48, + 32, + 26, + 34, + 32, + 34, + 36, + 42, + 33, + 40, + 27, + 39, + 27, + 29, + 33, + 34, + 53, + 21, + 36, + 32, + 29, + 28, + 33, + 27, + 44, + 33, + 36, + 32, + 34, + 33, + 43, + 27, + 34, + 34, + 35, + 28, + 29, + 32, + 46, + 27, + 29, + 25, + 42, + 31, + 29, + 30, + 27, + 29, + 32, + 29, + 28, + 35, + 23, + 31, + 29, + 29, + 59, + 38, + 24, + 37, + 33, + 31, + 26, + 30, + 29, + 31, + 38, + 36, + 36, + 28, + 33, + 33, + 24, + 26, + 36, + 32, + 30, + 22, + 27, + 27, + 33, + 30, + 31, + 34, + 31, + 31, + 23, + 24, + 30, + 39, + 40, + 26, + 35, + 23, + 34, + 29, + 45, + 31, + 28, + 38, + 29, + 26, + 33, + 28, + 28, + 23, + 26, + 26, + 28, + 34, + 32, + 30, + 25, + 29, + 30, + 27, + 40, + 33, + 33, + 31, + 40, + 31, + 38, + 29, + 54, + 42, + 42, + 22, + 42, + 29, + 27, + 29, + 24, + 27, + 27, + 22, + 30, + 27, + 27, + 27, + 39, + 24, + 34, + 32, + 27, + 27, + 27, + 32, + 27, + 27, + 39, + 48, + 32, + 30, + 31, + 35, + 27, + 39, + 47, + 23, + 26, + 24, + 35, + 39, + 33, + 41, + 37, + 29, + 32, + 49, + 36, + 25, + 49, + 32, + 32, + 26, + 33, + 25, + 26, + 44, + 32, + 32, + 31, + 34, + 32, + 23, + 32, + 46, + 23, + 41, + 32, + 22, + 26, + 29, + 27, + 29, + 27, + 24, + 47, + 27, + 52, + 36, + 24, + 45, + 36, + 45, + 24, + 25, + 53, + 42, + 35, + 31, + 35, + 31, + 38, + 37, + 31, + 24, + 40, + 36, + 27, + 27, + 23, + 40, + 27, + 30, + 39, + 44, + 36, + 28, + 21, + 31, + 25, + 30, + 24, + 29, + 46, + 30, + 33, + 26, + 33, + 36, + 30, + 21, + 34, + 26, + 24, + 28, + 30, + 41, + 50, + 33, + 28, + 30, + 23, + 28, + 53, + 28, + 31, + 32, + 34, + 42, + 25, + 30, + 33, + 28, + 23, + 25, + 26, + 32, + 35, + 27, + 25, + 29, + 29, + 37, + 27, + 27, + 27, + 27, + 42, + 35, + 31, + 31, + 27, + 34, + 40, + 24, + 23, + 36, + 27, + 21, + 29, + 46, + 51, + 37, + 27, + 23, + 34, + 39, + 23, + 26, + 32, + 35, + 28, + 28, + 28, + 34, + 23, + 36, + 22, + 38, + 27, + 35, + 27, + 40, + 33, + 27, + 30, + 24, + 33, + 48, + 28, + 39, + 39, + 31, + 31, + 46, + 31, + 42, + 29, + 26, + 26, + 54, + 58, + 28, + 24, + 27, + 29, + 49, + 35, + 35, + 57, + 25, + 33, + 53, + 31, + 23, + 27, + 36, + 54, + 24, + 31, + 40, + 31, + 33, + 37, + 33, + 40, + 36, + 30, + 33, + 31, + 35, + 34, + 46, + 33, + 41, + 42, + 30, + 27, + 36, + 37, + 24, + 29, + 30, + 34, + 42, + 26, + 42, + 29, + 28, + 30, + 35, + 32, + 33, + 30, + 26, + 22, + 46, + 31, + 26, + 31, + 44, + 36, + 34, + 38, + 42, + 27, + 31, + 42, + 32, + 31, + 45, + 39, + 32, + 31, + 28, + 29, + 31, + 26, + 31, + 34, + 30, + 33, + 27, + 31, + 32, + 31, + 31, + 35, + 26, + 28, + 23, + 30, + 47, + 45, + 33, + 29, + 30, + 24, + 39, + 37, + 32, + 43, + 23, + 60, + 30, + 30, + 38, + 29, + 38, + 38, + 46, + 43, + 29, + 31, + 39, + 36, + 26, + 27, + 25, + 29, + 27, + 44, + 32, + 33, + 34, + 24, + 33, + 28, + 43, + 33, + 27, + 36, + 29, + 28, + 35, + 25, + 20, + 24, + 23, + 33, + 24, + 32, + 34, + 30, + 32, + 40, + 29, + 34, + 30, + 35, + 58, + 34, + 35, + 22, + 57, + 25, + 30, + 30, + 30, + 31, + 55, + 26, + 21, + 34, + 34, + 24, + 34, + 37, + 28, + 32, + 44, + 28, + 36, + 29, + 29, + 42, + 31, + 32, + 29, + 28, + 28, + 31, + 35, + 34, + 28, + 23, + 26, + 34, + 41, + 40, + 54, + 45, + 32, + 39, + 51, + 29, + 32, + 39, + 53, + 39, + 31, + 31, + 28, + 33, + 30, + 30, + 54, + 39, + 54, + 29, + 30, + 36, + 24, + 29, + 32, + 42, + 45, + 30, + 45, + 45, + 39, + 39, + 27, + 27, + 30, + 44, + 41, + 34, + 28, + 29, + 55, + 30, + 34, + 24, + 41, + 51, + 50, + 43, + 25, + 52, + 33, + 34, + 53, + 41, + 34, + 34, + 34, + 25, + 39, + 59, + 33, + 35, + 43, + 25, + 40, + 39, + 30, + 46, + 36, + 27, + 39, + 53, + 53, + 46, + 33, + 27, + 44, + 55, + 26, + 28, + 32, + 35, + 30, + 52, + 30, + 47, + 47, + 39, + 44, + 45, + 50, + 45, + 31, + 25, + 51, + 50, + 35, + 26, + 37, + 23, + 31, + 51, + 32, + 35, + 37, + 33, + 29, + 28, + 32, + 32, + 30, + 44, + 31, + 39, + 24, + 39, + 29, + 39, + 53, + 44, + 38, + 31, + 48, + 48, + 36, + 48, + 48, + 48, + 59, + 59, + 58, + 26, + 35, + 37, + 53, + 41, + 24, + 37, + 34, + 33, + 53, + 37, + 33, + 30, + 47, + 53, + 31, + 41, + 53, + 34, + 34, + 29, + 53, + 26, + 27, + 38, + 37, + 36, + 32, + 36, + 32, + 30, + 36, + 32, + 49, + 31, + 54, + 44, + 54, + 54, + 37, + 30, + 34, + 37, + 30, + 27, + 37, + 34, + 39, + 42, + 45, + 45, + 42, + 53, + 23, + 53, + 22, + 40, + 32, + 25, + 28, + 31, + 39, + 35, + 36, + 58, + 25, + 32, + 47, + 37, + 54, + 41, + 44, + 26, + 31, + 57, + 27, + 43, + 54, + 44, + 30, + 21, + 31, + 39, + 32, + 33, + 54, + 52, + 41, + 33, + 42, + 27, + 29, + 26, + 29, + 33, + 30, + 37, + 25, + 34, + 37, + 37, + 32, + 29, + 25, + 32, + 29, + 34, + 44, + 48, + 58, + 53, + 24, + 58, + 30, + 23, + 31, + 29, + 31, + 35, + 29, + 31, + 35, + 41, + 24, + 29, + 30, + 26, + 34, + 30, + 49, + 32, + 26, + 24, + 55, + 28, + 23, + 49, + 46, + 41, + 30, + 34, + 32, + 27, + 56, + 54, + 30, + 31, + 23, + 32, + 37, + 39, + 32, + 39, + 44, + 32, + 25, + 28, + 36, + 23, + 34, + 32, + 34, + 27, + 42, + 27, + 34, + 34, + 34, + 49, + 39, + 26, + 29, + 29, + 31, + 43, + 26, + 30, + 37, + 28, + 21, + 30, + 47, + 32, + 24, + 23, + 35, + 33, + 50, + 27, + 41, + 41, + 29, + 34, + 32, + 37, + 38, + 32, + 37, + 26, + 22, + 33, + 32, + 34, + 32, + 32, + 26, + 49, + 52, + 37, + 32, + 32, + 30, + 29, + 29, + 33, + 23, + 24, + 27, + 29, + 23, + 53, + 43, + 34, + 53, + 37, + 27, + 54, + 31, + 27, + 34, + 24, + 28, + 42, + 43, + 50, + 22, + 33, + 48, + 47, + 40, + 35, + 32, + 26, + 43, + 25, + 39, + 37, + 24, + 28, + 28, + 25, + 26, + 33, + 55, + 32, + 25, + 41, + 50, + 39, + 38, + 42, + 48, + 41, + 41, + 38, + 25, + 29, + 48, + 49, + 49, + 38, + 43, + 42, + 38, + 39, + 38, + 31, + 41, + 57, + 40, + 57, + 57, + 21, + 44, + 35, + 27, + 54, + 27, + 25, + 50, + 46, + 25, + 38, + 38, + 41, + 32, + 33, + 30, + 52, + 27, + 57, + 42, + 44, + 24, + 31, + 29, + 30, + 32, + 28, + 31, + 28, + 47, + 34, + 47, + 23, + 46, + 23, + 34, + 44, + 39, + 48, + 38, + 37, + 41, + 41, + 30, + 45, + 41, + 36, + 52, + 44, + 30, + 35, + 38, + 25, + 24, + 33, + 37, + 41, + 37, + 24, + 37, + 33, + 48, + 30, + 32, + 41, + 28, + 46, + 35, + 33, + 59, + 29, + 52, + 38, + 29, + 30, + 41, + 33, + 25, + 41, + 21, + 21, + 35, + 37, + 47, + 32, + 41, + 25, + 27, + 44, + 31, + 42, + 31, + 36, + 43, + 46, + 58, + 31, + 57, + 38, + 50, + 47, + 32, + 47, + 33, + 44, + 28, + 42, + 39, + 43, + 23, + 32, + 58, + 29, + 45, + 35, + 49, + 42, + 27, + 30, + 46, + 37, + 44, + 29, + 29, + 32, + 30, + 41, + 34, + 44, + 46, + 30, + 44, + 44, + 32, + 34, + 34, + 30, + 30, + 28, + 35, + 28, + 42, + 21, + 32, + 32, + 21, + 48, + 40, + 40, + 41, + 30, + 30, + 28, + 30, + 26, + 41, + 56, + 41, + 38, + 34, + 24, + 58, + 55, + 58, + 58, + 53, + 38, + 38, + 41, + 31, + 41, + 50, + 57, + 25, + 56, + 37, + 43, + 36, + 33, + 25, + 26, + 46, + 34, + 37, + 37, + 40, + 46, + 47, + 50, + 27, + 40, + 45, + 39, + 42, + 29, + 25, + 46, + 46, + 27, + 35, + 36, + 43, + 33, + 41, + 35, + 25, + 39, + 48, + 34, + 48, + 45, + 53, + 43, + 26, + 31, + 58, + 38, + 34, + 29, + 24, + 34, + 37, + 38, + 44, + 36, + 41, + 42, + 38, + 28, + 33, + 29, + 41, + 47, + 38, + 22, + 52, + 33, + 49, + 57, + 31, + 33, + 26, + 47, + 36, + 41, + 29, + 51, + 33, + 23, + 33, + 30, + 41, + 37, + 24, + 26, + 43, + 37, + 33, + 29, + 33, + 24, + 25, + 38, + 33, + 27, + 29, + 30, + 33, + 56, + 36, + 56, + 31, + 35, + 28, + 33, + 41, + 32, + 52, + 46, + 47, + 44, + 41, + 46, + 58, + 30, + 31, + 26, + 32, + 43, + 41, + 25, + 55, + 53, + 44, + 43, + 35, + 35, + 35, + 34, + 39, + 39, + 40, + 40, + 36, + 23, + 27, + 27, + 27, + 58, + 83, + 30, + 49, + 49, + 66, + 27, + 37, + 57, + 57, + 32, + 40, + 40, + 55, + 18, + 62, + 43, + 75, + 46, + 38, + 28, + 27, + 52, + 40, + 49, + 45, + 59, + 59, + 26, + 34, + 48, + 46, + 50, + 27, + 34, + 34, + 34, + 26, + 44, + 32, + 36, + 24, + 36, + 33, + 58, + 33, + 44, + 44, + 36, + 56, + 29, + 27, + 52, + 62, + 42, + 37, + 46, + 46, + 46, + 46, + 56, + 54, + 34, + 26, + 27, + 32, + 36, + 36, + 58, + 36, + 33, + 26, + 36, + 36, + 46, + 34, + 61, + 34, + 60, + 29, + 34, + 35, + 43, + 27, + 78, + 55, + 42, + 32, + 41, + 46, + 47, + 29, + 28, + 38, + 33, + 44, + 29, + 52, + 29, + 26, + 29, + 31, + 36, + 59, + 31, + 49, + 32, + 30, + 31, + 34, + 38, + 35, + 39, + 39, + 39, + 36, + 40, + 55, + 55, + 51, + 25, + 35, + 55, + 29, + 27, + 29, + 31, + 24, + 35, + 45, + 45, + 28, + 55, + 31, + 29, + 35, + 34, + 28, + 54, + 59, + 22, + 36, + 33, + 36, + 37, + 36, + 28, + 42, + 42, + 31, + 22, + 33, + 29, + 33, + 42, + 28, + 27, + 27, + 36, + 36, + 27, + 49, + 39, + 39, + 39, + 34, + 34, + 34, + 48, + 48, + 25, + 29, + 33, + 31, + 42, + 25, + 52, + 51, + 51, + 37, + 25, + 49, + 49, + 49, + 29, + 38, + 39, + 59, + 23, + 59, + 30, + 27, + 47, + 27, + 32, + 25, + 34, + 42, + 30, + 30, + 47, + 39, + 25, + 54, + 31, + 31, + 30, + 35, + 26, + 34, + 52, + 37, + 24, + 31, + 68, + 37, + 34, + 38, + 38, + 20, + 32, + 25, + 61, + 61, + 34, + 41, + 41, + 40, + 26, + 32, + 26, + 52, + 45, + 37, + 30, + 40, + 26, + 43, + 32, + 61, + 35, + 35, + 88, + 53, + 34, + 47, + 35, + 34, + 32, + 36, + 48, + 30, + 40, + 35, + 35, + 27, + 37, + 23, + 22, + 26, + 24, + 42, + 32, + 52, + 35, + 53, + 28, + 23, + 41, + 24, + 37, + 45, + 40, + 28, + 45, + 35, + 37, + 27, + 32, + 45, + 35, + 46, + 53, + 33, + 52, + 45, + 29, + 41, + 22, + 58, + 25, + 28, + 47, + 31, + 41, + 31, + 36, + 30, + 57, + 39, + 57, + 24, + 33, + 65, + 30, + 49, + 49, + 49, + 44, + 34, + 34, + 55, + 77, + 38, + 30, + 27, + 33, + 56, + 27, + 47, + 58, + 49, + 37, + 28, + 34, + 65, + 72, + 31, + 31, + 28, + 55, + 39, + 25, + 28, + 37, + 26, + 33, + 58, + 40, + 35, + 39, + 47, + 48, + 59, + 46, + 33, + 32, + 49, + 49, + 31, + 43, + 27, + 33, + 52, + 24, + 24, + 27, + 34, + 34, + 27, + 47, + 29, + 79, + 33, + 23, + 43, + 43, + 29, + 52, + 29, + 27, + 32, + 31, + 30, + 30, + 38, + 28, + 34, + 24, + 26, + 35, + 56, + 27, + 23, + 41, + 31, + 30, + 47, + 30, + 44, + 33, + 29, + 34, + 27, + 37, + 37, + 31, + 34, + 47, + 30, + 38, + 43, + 33, + 46, + 40, + 32, + 24, + 58, + 55, + 24, + 44, + 55, + 38, + 47, + 59, + 59, + 53, + 31, + 26, + 37, + 38, + 36, + 58, + 29, + 29, + 29, + 29, + 30, + 29, + 48, + 33, + 33, + 39, + 57, + 30, + 39, + 32, + 56, + 33, + 20, + 38, + 61, + 38, + 38, + 33, + 21, + 29, + 32, + 37, + 24, + 26, + 26, + 34, + 33, + 50, + 47, + 24, + 54, + 56, + 25, + 30, + 54, + 27, + 57, + 69, + 31, + 29, + 26, + 35, + 54, + 33, + 25, + 33, + 21, + 56, + 25, + 53, + 30, + 29, + 51, + 30, + 54, + 30, + 30, + 50, + 22, + 32, + 36, + 26, + 26, + 34, + 28, + 38, + 38, + 29, + 52, + 42, + 29, + 32, + 42, + 28, + 28, + 32, + 35, + 33, + 34, + 50, + 34, + 31, + 44, + 27, + 49, + 27, + 56, + 45, + 24, + 50, + 27, + 49, + 27, + 32, + 28, + 46, + 37, + 29, + 21, + 26, + 33, + 30, + 27, + 51, + 25, + 25, + 54, + 52, + 29, + 32, + 29, + 27, + 30, + 31, + 52, + 21, + 51, + 25, + 26, + 33, + 25, + 52, + 29, + 36, + 32, + 28, + 32, + 31, + 33, + 22, + 25, + 30, + 29, + 57, + 48, + 25, + 22, + 26, + 25, + 26, + 44, + 55, + 52, + 33, + 31, + 25, + 59, + 32, + 40, + 52, + 30, + 57, + 35, + 28, + 22, + 22, + 34, + 23, + 27, + 29, + 34, + 29, + 32, + 32, + 34, + 41, + 24, + 25, + 28, + 22, + 23, + 26, + 43, + 32, + 30, + 34, + 25, + 26, + 38, + 25, + 49, + 29, + 57, + 56, + 48, + 43, + 39, + 35, + 50, + 25, + 40, + 46, + 49, + 43, + 58, + 44, + 31, + 36, + 44, + 24, + 32, + 26, + 40, + 24, + 32, + 34, + 56, + 56, + 56, + 27, + 32, + 47, + 31, + 38, + 38, + 25, + 55, + 58, + 48, + 60, + 55, + 47, + 53, + 42, + 41, + 32, + 32, + 49, + 45, + 39, + 51, + 36, + 45, + 47, + 45, + 47, + 38, + 45, + 37, + 38, + 38, + 36, + 31, + 51, + 56, + 59, + 51, + 34, + 45, + 58, + 63, + 43, + 51, + 63, + 60, + 38, + 32, + 36, + 29, + 36, + 35, + 56, + 57, + 53, + 29, + 47, + 28, + 75, + 58, + 34, + 35, + 46, + 30, + 41, + 38, + 42, + 37, + 50, + 30, + 31, + 25, + 29, + 26, + 46, + 45, + 26, + 42, + 31, + 38, + 26, + 27, + 44, + 47, + 68, + 50, + 45, + 24, + 41, + 44, + 20, + 45, + 20, + 36, + 30, + 43, + 42, + 42, + 32, + 27, + 42, + 59, + 40, + 36, + 38, + 33, + 32, + 32, + 51, + 26, + 51, + 45, + 37, + 27, + 36, + 33, + 27, + 38, + 38, + 26, + 44, + 23, + 34, + 26, + 54, + 26, + 30, + 31, + 47, + 36, + 58, + 54, + 41, + 32, + 61, + 48, + 36, + 31, + 64, + 26, + 51, + 21, + 21, + 72, + 72, + 34, + 24, + 40, + 52, + 43, + 27, + 59, + 45, + 45, + 43, + 56, + 46, + 31, + 37, + 63, + 52, + 57, + 60, + 59, + 32, + 37, + 63, + 37, + 45, + 58, + 53, + 53, + 74, + 74, + 58, + 74, + 35, + 35, + 35, + 35, + 32, + 29, + 38, + 51, + 82, + 38, + 32, + 32, + 34, + 34, + 46, + 32, + 24, + 48, + 54, + 73, + 58, + 73, + 23, + 36, + 30, + 28, + 33, + 28, + 28, + 59, + 29, + 29, + 30, + 29, + 73, + 29, + 48, + 54, + 46, + 36, + 40, + 52, + 41, + 27, + 64, + 66, + 19, + 40, + 40, + 43, + 43, + 35, + 36, + 69, + 35, + 21, + 19, + 46, + 19, + 32, + 39, + 40, + 40, + 67, + 57, + 37, + 35, + 58, + 43, + 70, + 34, + 69, + 59, + 49, + 31, + 50, + 31, + 45, + 60, + 30, + 30, + 31, + 35, + 59, + 29, + 42, + 27, + 27, + 49, + 69, + 28, + 41, + 60, + 35, + 67, + 56, + 59, + 47, + 59, + 59, + 30, + 70, + 59, + 58, + 35, + 57, + 21, + 57, + 62, + 27, + 60, + 31, + 31, + 48, + 25, + 26, + 49, + 25, + 34, + 45, + 45, + 36, + 37, + 59, + 29, + 38, + 27, + 36, + 54, + 36, + 36, + 66, + 35, + 28, + 28, + 44, + 32, + 29, + 33, + 45, + 44, + 28, + 32, + 33, + 42, + 42, + 44, + 37, + 42, + 28, + 74, + 76, + 29, + 27, + 37, + 33, + 30, + 41, + 36, + 88, + 39, + 45, + 34, + 74, + 46, + 34, + 36, + 36, + 38, + 33, + 24, + 34, + 20, + 81, + 43, + 34, + 32, + 32, + 34, + 24, + 28, + 27, + 46, + 76, + 35, + 41, + 41, + 76, + 48, + 25, + 25, + 21, + 44, + 44, + 44, + 44, + 29, + 73, + 36, + 22, + 21, + 72, + 31, + 33, + 43, + 36, + 17, + 43, + 61, + 70, + 45, + 43, + 29, + 48, + 33, + 32, + 36, + 36, + 17, + 25, + 25, + 48, + 20, + 63, + 35, + 25, + 26, + 32, + 63, + 37, + 25, + 61, + 70, + 28, + 35, + 20, + 35, + 22, + 68, + 65, + 26, + 23, + 43, + 72, + 60, + 33, + 23, + 23, + 33, + 65, + 34, + 31, + 34, + 31, + 43, + 50, + 30, + 34, + 18, + 27, + 28, + 29, + 46, + 29, + 65, + 31, + 63, + 34, + 33, + 33, + 49, + 32, + 56, + 59, + 61, + 34, + 37, + 32, + 29, + 65, + 63, + 35, + 26, + 38, + 33, + 33, + 62, + 80, + 26, + 56, + 20, + 26, + 33, + 32, + 34, + 33, + 54, + 35, + 32, + 66, + 40, + 25, + 27, + 62, + 38, + 74, + 29, + 29, + 24, + 45, + 26, + 38, + 28, + 25, + 53, + 64, + 64, + 76, + 76, + 61, + 58, + 36, + 62, + 54, + 24, + 24, + 24, + 24, + 55, + 35, + 70, + 34, + 54, + 34, + 66, + 69, + 58, + 88, + 40, + 57, + 47, + 64, + 57, + 49, + 25, + 81, + 44, + 43, + 58, + 51, + 51, + 54, + 60, + 58, + 53, + 43, + 67, + 49, + 59, + 57, + 28, + 80, + 78, + 56, + 42, + 24, + 71, + 71, + 46, + 42, + 31, + 45, + 27, + 24, + 24, + 43, + 26, + 44, + 34, + 28, + 45, + 51, + 40, + 26, + 40, + 73, + 36, + 36, + 73, + 40, + 29, + 53, + 38, + 33, + 59, + 63, + 34, + 31, + 32, + 32, + 36, + 35, + 48, + 27, + 38, + 38, + 28, + 28, + 51, + 52, + 39, + 19, + 60, + 40, + 60, + 25, + 60, + 46, + 60, + 44, + 43, + 43, + 71, + 35, + 35, + 61, + 38, + 26, + 41, + 53, + 45, + 40, + 32, + 50, + 31, + 71, + 39, + 46, + 55, + 47, + 31, + 54, + 28, + 41, + 30, + 48, + 41, + 54, + 54, + 25, + 28, + 41, + 45, + 61, + 25, + 28, + 46, + 39, + 68, + 76, + 71, + 30, + 35, + 69, + 58, + 91, + 62, + 32, + 62, + 29, + 58, + 32, + 91, + 56, + 56, + 31, + 69, + 57, + 73, + 53, + 36, + 36, + 76, + 73, + 38, + 69, + 40, + 30, + 39, + 41, + 46, + 49, + 51, + 53, + 66, + 47, + 70, + 31, + 49, + 49, + 32, + 60, + 51, + 32, + 50, + 63, + 43, + 36, + 56, + 47, + 50, + 35, + 60, + 60, + 33, + 54, + 53, + 61, + 70, + 61, + 68, + 70, + 68, + 33, + 45, + 53, + 68, + 68, + 43, + 43, + 30, + 70, + 70, + 37, + 35, + 55, + 59, + 31, + 35, + 36, + 69, + 65, + 78, + 32, + 50, + 71, + 29, + 51, + 38, + 26, + 28, + 63, + 28, + 71, + 45, + 68, + 37, + 43, + 43, + 82, + 82, + 80, + 80, + 41, + 27, + 36, + 63, + 30, + 48, + 58, + 38, + 48, + 35, + 38, + 58, + 58, + 32, + 63, + 41, + 48, + 69, + 69, + 29, + 59, + 42, + 75, + 29, + 33, + 70, + 38, + 44, + 48, + 80, + 71, + 71, + 45, + 33, + 58, + 55, + 55, + 55, + 48, + 32, + 26, + 56, + 48, + 80, + 44, + 71, + 36, + 71, + 36, + 36, + 37, + 56, + 38, + 35, + 42, + 28, + 36, + 36, + 37, + 35, + 49, + 28, + 34, + 30, + 44, + 28, + 68, + 37, + 37, + 74, + 35, + 37, + 25, + 83, + 32, + 40, + 38, + 39, + 39, + 39, + 60, + 33, + 30, + 36, + 36, + 49, + 28, + 34, + 44, + 32, + 36, + 34, + 29, + 21, + 60, + 60, + 25, + 36, + 55, + 60, + 55, + 30, + 32, + 54, + 20, + 36, + 38, + 55, + 41, + 41, + 55, + 54, + 67, + 54, + 51, + 59, + 30, + 58, + 58, + 31, + 70, + 53, + 70, + 33, + 88, + 62, + 44, + 54, + 32, + 30, + 25, + 31, + 35, + 30, + 32, + 35, + 26, + 31, + 31, + 37, + 61, + 33, + 26, + 29, + 29, + 73, + 29, + 50, + 29, + 33, + 30, + 26, + 42, + 55, + 32, + 63, + 71, + 45, + 61, + 22, + 22, + 30, + 32, + 39, + 63, + 65, + 46, + 33, + 26, + 28, + 75, + 81, + 60, + 61, + 46, + 46, + 35, + 40, + 35, + 62, + 45, + 61, + 24, + 30, + 40, + 73, + 23, + 36, + 31, + 61, + 75, + 58, + 28, + 69, + 32, + 60, + 36, + 55, + 61, + 82, + 60, + 78, + 27, + 65, + 37, + 24, + 72, + 37, + 59, + 78, + 23, + 41, + 37, + 37, + 36, + 50, + 35, + 21, + 34, + 60, + 37, + 55, + 64, + 37, + 37, + 37, + 50, + 32, + 37, + 30, + 24, + 50, + 34, + 33, + 32, + 34, + 37, + 52, + 56, + 67, + 40, + 27, + 47, + 30, + 37, + 37, + 37, + 37, + 58, + 54, + 54, + 29, + 28, + 29, + 26, + 56, + 51, + 62, + 58, + 32, + 32, + 32, + 34, + 37, + 34, + 34, + 26, + 29, + 32, + 57, + 71, + 25, + 49, + 21, + 45, + 30, + 37, + 72, + 45, + 36, + 45, + 25, + 45, + 35, + 20, + 37, + 37, + 23, + 32, + 67, + 40, + 43, + 25, + 64, + 78, + 56, + 52, + 62, + 29, + 52, + 28, + 49, + 62, + 25, + 52, + 21, + 43, + 31, + 26, + 52, + 27, + 31, + 52, + 40, + 40, + 25, + 40, + 39, + 50, + 75, + 50, + 56, + 37, + 37, + 37, + 35, + 27, + 25, + 35, + 38, + 43, + 54, + 35, + 31, + 64, + 34, + 30, + 25, + 42, + 48, + 32, + 27, + 34, + 72, + 50, + 31, + 36, + 45, + 63, + 40, + 32, + 35, + 35, + 34, + 30, + 65, + 31, + 83, + 55, + 57, + 24, + 58, + 58, + 32, + 94, + 78, + 21, + 55, + 28, + 55, + 86, + 65, + 32, + 77, + 67, + 31, + 38, + 38, + 38, + 62, + 81, + 62, + 62, + 31, + 62, + 76, + 42, + 83, + 64, + 64, + 40, + 53, + 23, + 48, + 25, + 60, + 25, + 55, + 80, + 48, + 49, + 36, + 36, + 47, + 47, + 48, + 73, + 38, + 29, + 56, + 32, + 32, + 70, + 51, + 64, + 64, + 61, + 57, + 54, + 18, + 48, + 74, + 18, + 43, + 70, + 47, + 68, + 76, + 19, + 28, + 23, + 30, + 36, + 42, + 29, + 26, + 29, + 28, + 27, + 23, + 35, + 76, + 35, + 35, + 41, + 63, + 59, + 53, + 30, + 63, + 34, + 29, + 32, + 27, + 35, + 31, + 39, + 59, + 59, + 60, + 31, + 30, + 27, + 30, + 66, + 51, + 36, + 54, + 37, + 34, + 53, + 25, + 55, + 66, + 53, + 25, + 64, + 85, + 38, + 31, + 22, + 59, + 35, + 29, + 27, + 29, + 27, + 34, + 35, + 28, + 28, + 31, + 33, + 27, + 39, + 46, + 53, + 35, + 33, + 31, + 28, + 61, + 33, + 33, + 58, + 73, + 53, + 30, + 48, + 53, + 53, + 58, + 29, + 30, + 48, + 34, + 65, + 52, + 33, + 27, + 66, + 33, + 37, + 56, + 59, + 28, + 28, + 24, + 50, + 36, + 75, + 37, + 28, + 28, + 57, + 33, + 59, + 26, + 26, + 34, + 78, + 28, + 51, + 57, + 58, + 58, + 58, + 58, + 36, + 58, + 58, + 49, + 27, + 56, + 32, + 56, + 84, + 27, + 76, + 39, + 53, + 53, + 71, + 37, + 35, + 33, + 58, + 62, + 58, + 33, + 42, + 33, + 58, + 56, + 33, + 33, + 48, + 46, + 58, + 22, + 68, + 55, + 29, + 54, + 74, + 70, + 61, + 49, + 80, + 80, + 59, + 44, + 32, + 63, + 25, + 71, + 29, + 29, + 46, + 30, + 46, + 24, + 24, + 71, + 29, + 24, + 27, + 24, + 24, + 27, + 33, + 61, + 26, + 36, + 34, + 30, + 28, + 28, + 37, + 52, + 29, + 30, + 30, + 79, + 79, + 19, + 29, + 37, + 24, + 24, + 29, + 44, + 27, + 48, + 46, + 36, + 52, + 19, + 62, + 78, + 44, + 60, + 44, + 33, + 38, + 41, + 46, + 24, + 54, + 50, + 50, + 30, + 30, + 47, + 34, + 28, + 52, + 47, + 32, + 41, + 33, + 63, + 33, + 54, + 33, + 29, + 45, + 31, + 34, + 34, + 29, + 51, + 36, + 79, + 84, + 49, + 40, + 43, + 34, + 54, + 79, + 35, + 33, + 23, + 25, + 74, + 26, + 72, + 72, + 30, + 49, + 29, + 47, + 49, + 42, + 47, + 37, + 29, + 39, + 28, + 59, + 30, + 20, + 40, + 52, + 34, + 29, + 34, + 31, + 52, + 38, + 38, + 38, + 29, + 28, + 48, + 32, + 35, + 47, + 21, + 29, + 26, + 37, + 38, + 29, + 27, + 27, + 28, + 37, + 35, + 39, + 35, + 28, + 37, + 44, + 33, + 27, + 27, + 31, + 37, + 35, + 39, + 33, + 36, + 29, + 38, + 24, + 24, + 26, + 33, + 62, + 41, + 34, + 27, + 27, + 18, + 24, + 45, + 27, + 36, + 35, + 35, + 40, + 24, + 33, + 22, + 74, + 30, + 43, + 44, + 31, + 37, + 30, + 38, + 68, + 25, + 33, + 33, + 26, + 39, + 47, + 30, + 30, + 36, + 53, + 36, + 37, + 69, + 53, + 33, + 32, + 32, + 35, + 37, + 37, + 81, + 50, + 27, + 23, + 35, + 38, + 32, + 30, + 33, + 32, + 26, + 52, + 26, + 29, + 29, + 31, + 52, + 37, + 37, + 35, + 34, + 29, + 27, + 33, + 38, + 39, + 37, + 37, + 55, + 52, + 41, + 25, + 32, + 33, + 33, + 30, + 30, + 83, + 35, + 21, + 35, + 58, + 32, + 39, + 37, + 25, + 72, + 72, + 32, + 32, + 33, + 33, + 26, + 33, + 59, + 36, + 28, + 28, + 28, + 19, + 33, + 29, + 32, + 29, + 24, + 73, + 29, + 32, + 31, + 29, + 34, + 30, + 44, + 27, + 28, + 32, + 32, + 38, + 54, + 63, + 26, + 32, + 31, + 31, + 31, + 27, + 32, + 51, + 44, + 21, + 54, + 72, + 28, + 28, + 66, + 28, + 35, + 23, + 38, + 48, + 23, + 72, + 21, + 71, + 34, + 29, + 56, + 45, + 32, + 29, + 29, + 31, + 52, + 34, + 27, + 35, + 32, + 23, + 33, + 28, + 52, + 28, + 26, + 74, + 66, + 47, + 60, + 23, + 65, + 53, + 39, + 32, + 23, + 41, + 56, + 39, + 63, + 55, + 46, + 33, + 25, + 33, + 42, + 67, + 36, + 81, + 25, + 42, + 31, + 33, + 38, + 33, + 53, + 28, + 77, + 31, + 21, + 31, + 30, + 28, + 52, + 27, + 27, + 46, + 46, + 46, + 44, + 27, + 30, + 71, + 63, + 41, + 60, + 32, + 41, + 24, + 30, + 26, + 30, + 26, + 47, + 47, + 56, + 55, + 25, + 22, + 34, + 37, + 25, + 65, + 31, + 59, + 35, + 71, + 60, + 60, + 76, + 30, + 40, + 32, + 48, + 28, + 39, + 35, + 60, + 34, + 45, + 34, + 45, + 34, + 26, + 54, + 36, + 40, + 39, + 33, + 29, + 49, + 45, + 30, + 72, + 33, + 22, + 28, + 30, + 35, + 58, + 27, + 49, + 27, + 30, + 31, + 58, + 34, + 44, + 72, + 34, + 71, + 70, + 34, + 29, + 37, + 33, + 71, + 30, + 35, + 58, + 44, + 26, + 47, + 32, + 38, + 57, + 51, + 78, + 32, + 39, + 67, + 49, + 59, + 51, + 34, + 30, + 75, + 28, + 25, + 34, + 20, + 58, + 88, + 58, + 34, + 76, + 34, + 27, + 34, + 88, + 30, + 47, + 24, + 39, + 88, + 48, + 36, + 35, + 26, + 39, + 45, + 38, + 44, + 26, + 80, + 83, + 58, + 33, + 65, + 38, + 29, + 28, + 32, + 27, + 69, + 29, + 23, + 33, + 31, + 31, + 27, + 50, + 30, + 25, + 30, + 32, + 61, + 32, + 33, + 45, + 33, + 34, + 35, + 29, + 33, + 38, + 29, + 34, + 34, + 48, + 55, + 50, + 50, + 28, + 37, + 26, + 31, + 29, + 26, + 22, + 30, + 35, + 35, + 54, + 35, + 33, + 30, + 32, + 29, + 28, + 36, + 23, + 33, + 60, + 51, + 27, + 34, + 32, + 32, + 32, + 30, + 30, + 30, + 32, + 32, + 30, + 30, + 22, + 40, + 35, + 35, + 30, + 42, + 50, + 59, + 32, + 32, + 41, + 27, + 30, + 58, + 40, + 26, + 32, + 26, + 32, + 75, + 64, + 36, + 65, + 28, + 31, + 33, + 39, + 32, + 39, + 24, + 55, + 59, + 33, + 29, + 33, + 24, + 74, + 25, + 25, + 26, + 22, + 71, + 61, + 28, + 31, + 31, + 22, + 27, + 27, + 31, + 51, + 27, + 52, + 60, + 63, + 33, + 54, + 81, + 48, + 54, + 63, + 37, + 54, + 41, + 54, + 51, + 81, + 74, + 34, + 68, + 26, + 47, + 56, + 74, + 74, + 44, + 60, + 44, + 24, + 67, + 54, + 25, + 34, + 61, + 38, + 23, + 65, + 29, + 27, + 37, + 28, + 25, + 38, + 28, + 35, + 38, + 30, + 25, + 27, + 23, + 60, + 42, + 46, + 51, + 29, + 37, + 34, + 29, + 51, + 37, + 61, + 24, + 39, + 35, + 34, + 51, + 27, + 51, + 48, + 50, + 30, + 31, + 31, + 52, + 19, + 31, + 28, + 34, + 45, + 40, + 46, + 32, + 32, + 32, + 46, + 58, + 46, + 61, + 58, + 28, + 54, + 42, + 31, + 29, + 35, + 30, + 41, + 26, + 41, + 31, + 31, + 33, + 60, + 32, + 38, + 62, + 40, + 38, + 57, + 64, + 36, + 29, + 46, + 56, + 74 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
age=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 49, + 42, + 39, + 44, + 42, + 42, + 42, + 31, + 41, + 44, + 54, + 42, + 46, + 32, + 43, + 54, + 50, + 31, + 31, + 41, + 35, + 51, + 24, + 32, + 59, + 24, + 39, + 33, + 38, + 35, + 38, + 38, + 30, + 51, + 45, + 36, + 31, + 45, + 41, + 27, + 33, + 33, + 35, + 40, + 40, + 36, + 35, + 32, + 42, + 45, + 39, + 41, + 30, + 50, + 30, + 45, + 35, + 29, + 45, + 26, + 40, + 49, + 26, + 37, + 51, + 46, + 35, + 57, + 28, + 57, + 48, + 28, + 38, + 34, + 52, + 33, + 32, + 31, + 35, + 39, + 42, + 55, + 42, + 45, + 30, + 35, + 31, + 36, + 46, + 25, + 45, + 56, + 30, + 32, + 37, + 58, + 35, + 49, + 47, + 55, + 50, + 32, + 33, + 46, + 39, + 39, + 56, + 58, + 29, + 58, + 43, + 39, + 38, + 28, + 24, + 42, + 29, + 34, + 47, + 31, + 39, + 52, + 30, + 52, + 57, + 34, + 40, + 33, + 54, + 33, + 41, + 30, + 59, + 39, + 38, + 34, + 31, + 31, + 40, + 37, + 36, + 37, + 34, + 40, + 48, + 30, + 50, + 31, + 41, + 37, + 29, + 49, + 42, + 32, + 40, + 37, + 31, + 46, + 38, + 60, + 30, + 28, + 42, + 26, + 55, + 59, + 26, + 34, + 32, + 56, + 48, + 41, + 24, + 31, + 40, + 37, + 52, + 30, + 39, + 38, + 35, + 34, + 31, + 32, + 33, + 40, + 36, + 52, + 46, + 28, + 31, + 34, + 39, + 31, + 29, + 34, + 39, + 33, + 38, + 32, + 48, + 47, + 41, + 40, + 29, + 26, + 24, + 34, + 36, + 38, + 27, + 42, + 29, + 34, + 37, + 30, + 53, + 32, + 31, + 48, + 36, + 28, + 35, + 49, + 43, + 44, + 25, + 35, + 41, + 37, + 36, + 43, + 31, + 39, + 31, + 47, + 28, + 37, + 52, + 30, + 30, + 36, + 31, + 35, + 43, + 29, + 24, + 28, + 41, + 59, + 31, + 28, + 28, + 60, + 47, + 29, + 38, + 31, + 42, + 37, + 40, + 29, + 31, + 36, + 29, + 43, + 43, + 31, + 38, + 35, + 42, + 40, + 39, + 30, + 48, + 36, + 58, + 31, + 27, + 53, + 25, + 40, + 42, + 34, + 52, + 40, + 31, + 31, + 32, + 56, + 50, + 31, + 35, + 36, + 29, + 47, + 37, + 50, + 39, + 33, + 25, + 48, + 35, + 29, + 25, + 29, + 34, + 42, + 36, + 27, + 27, + 50, + 34, + 30, + 43, + 27, + 30, + 26, + 31, + 31, + 35, + 36, + 42, + 31, + 31, + 31, + 51, + 31, + 31, + 26, + 44, + 34, + 58, + 28, + 27, + 30, + 34, + 33, + 32, + 26, + 43, + 42, + 28, + 54, + 31, + 55, + 31, + 25, + 42, + 48, + 42, + 31, + 23, + 31, + 30, + 33, + 33, + 30, + 38, + 35, + 41, + 29, + 43, + 26, + 50, + 39, + 31, + 23, + 33, + 35, + 50, + 57, + 36, + 27, + 26, + 54, + 44, + 42, + 54, + 57, + 38, + 24, + 43, + 33, + 35, + 26, + 33, + 50, + 26, + 34, + 39, + 34, + 34, + 32, + 48, + 34, + 27, + 43, + 27, + 49, + 34, + 23, + 23, + 29, + 50, + 55, + 35, + 33, + 51, + 30, + 34, + 24, + 31, + 25, + 27, + 23, + 39, + 32, + 23, + 29, + 24, + 27, + 31, + 31, + 35, + 26, + 42, + 41, + 37, + 31, + 27, + 31, + 35, + 29, + 29, + 33, + 38, + 37, + 32, + 24, + 56, + 33, + 46, + 39, + 25, + 33, + 26, + 35, + 30, + 57, + 43, + 40, + 36, + 39, + 44, + 31, + 22, + 39, + 41, + 28, + 43, + 43, + 32, + 29, + 29, + 33, + 28, + 30, + 41, + 30, + 33, + 33, + 35, + 50, + 35, + 27, + 29, + 27, + 36, + 38, + 31, + 31, + 31, + 55, + 28, + 28, + 30, + 36, + 30, + 23, + 31, + 21, + 49, + 30, + 36, + 47, + 60, + 36, + 32, + 41, + 57, + 34, + 48, + 30, + 48, + 45, + 37, + 33, + 27, + 27, + 27, + 50, + 36, + 39, + 55, + 60, + 59, + 28, + 39, + 43, + 50, + 47, + 59, + 55, + 46, + 44, + 40, + 40, + 48, + 37, + 52, + 43, + 45, + 50, + 53, + 60, + 33, + 60, + 48, + 44, + 50, + 23, + 40, + 35, + 30, + 32, + 52, + 33, + 25, + 37, + 34, + 31, + 36, + 35, + 43, + 40, + 39, + 32, + 32, + 33, + 36, + 42, + 37, + 33, + 42, + 37, + 24, + 32, + 28, + 38, + 28, + 28, + 39, + 22, + 42, + 36, + 58, + 33, + 54, + 52, + 47, + 47, + 43, + 58, + 52, + 47, + 39, + 42, + 44, + 31, + 43, + 41, + 42, + 40, + 32, + 34, + 53, + 37, + 32, + 32, + 37, + 31, + 31, + 46, + 37, + 44, + 43, + 46, + 30, + 38, + 48, + 44, + 32, + 34, + 33, + 39, + 45, + 32, + 45, + 30, + 30, + 31, + 35, + 45, + 52, + 40, + 37, + 30, + 41, + 50, + 29, + 38, + 58, + 33, + 42, + 29, + 35, + 44, + 38, + 30, + 38, + 36, + 52, + 45, + 45, + 34, + 30, + 36, + 36, + 32, + 38, + 53, + 31, + 52, + 32, + 33, + 31, + 35, + 48, + 53, + 33, + 32, + 32, + 31, + 32, + 36, + 41, + 32, + 32, + 33, + 45, + 33, + 32, + 32, + 33, + 43, + 35, + 50, + 33, + 39, + 50, + 46, + 40, + 34, + 54, + 39, + 34, + 31, + 34, + 34, + 45, + 54, + 31, + 35, + 54, + 30, + 35, + 45, + 30, + 35, + 35, + 41, + 54, + 47, + 49, + 35, + 45, + 56, + 31, + 31, + 29, + 39, + 45, + 29, + 42, + 56, + 57, + 29, + 30, + 31, + 41, + 36, + 29, + 59, + 48, + 34, + 51, + 52, + 30, + 37, + 29, + 56, + 33, + 35, + 33, + 33, + 48, + 29, + 53, + 29, + 53, + 35, + 46, + 35, + 35, + 47, + 32, + 40, + 30, + 36, + 38, + 55, + 49, + 50, + 57, + 57, + 58, + 40, + 39, + 31, + 51, + 51, + 44, + 55, + 47, + 30, + 47, + 30, + 29, + 37, + 42, + 38, + 30, + 42, + 39, + 30, + 42, + 48, + 30, + 39, + 44, + 59, + 33, + 32, + 40, + 27, + 30, + 36, + 43, + 48, + 37, + 25, + 39, + 39, + 38, + 46, + 29, + 31, + 26, + 31, + 45, + 31, + 34, + 27, + 33, + 33, + 30, + 34, + 36, + 56, + 31, + 34, + 38, + 42, + 32, + 30, + 50, + 25, + 39, + 27, + 41, + 29, + 31, + 29, + 58, + 32, + 33, + 36, + 58, + 42, + 37, + 35, + 34, + 55, + 55, + 48, + 48, + 42, + 31, + 32, + 35, + 45, + 32, + 57, + 44, + 50, + 40, + 41, + 30, + 30, + 30, + 57, + 54, + 39, + 38, + 50, + 39, + 35, + 37, + 36, + 35, + 31, + 58, + 32, + 35, + 34, + 35, + 36, + 29, + 29, + 46, + 43, + 43, + 30, + 33, + 51, + 34, + 43, + 35, + 31, + 36, + 36, + 29, + 40, + 30, + 31, + 43, + 35, + 37, + 35, + 36, + 56, + 37, + 57, + 48, + 52, + 36, + 30, + 56, + 53, + 36, + 58, + 32, + 29, + 34, + 53, + 43, + 35, + 32, + 32, + 45, + 40, + 30, + 29, + 56, + 42, + 47, + 30, + 30, + 44, + 33, + 50, + 34, + 34, + 57, + 45, + 37, + 29, + 53, + 34, + 32, + 34, + 32, + 36, + 54, + 56, + 38, + 30, + 34, + 33, + 34, + 35, + 31, + 30, + 29, + 48, + 53, + 34, + 29, + 30, + 33, + 35, + 35, + 37, + 40, + 50, + 46, + 57, + 40, + 29, + 34, + 58, + 39, + 42, + 41, + 45, + 34, + 57, + 56, + 48, + 35, + 29, + 56, + 29, + 30, + 44, + 26, + 38, + 35, + 30, + 26, + 44, + 26, + 28, + 26, + 70, + 48, + 26, + 28, + 66, + 34, + 35, + 28, + 28, + 36, + 43, + 28, + 41, + 41, + 38, + 33, + 38, + 38, + 38, + 38, + 38, + 34, + 34, + 38, + 38, + 34, + 34, + 34, + 38, + 32, + 55, + 38, + 32, + 31, + 32, + 38, + 39, + 38, + 37, + 32, + 88, + 29, + 88, + 29, + 88, + 88, + 88, + 88, + 88, + 88, + 27, + 26, + 66, + 29, + 26, + 19, + 30, + 28, + 28, + 28, + 33, + 21, + 37, + 33, + 29, + 34, + 33, + 60, + 24, + 68, + 33, + 32, + 36, + 31, + 54, + 54, + 31, + 19, + 32, + 32, + 31, + 46, + 50, + 28, + 28, + 33, + 28, + 35, + 36, + 26, + 20, + 68, + 28, + 28, + 28, + 56, + 41, + 25, + 73, + 31, + 27, + 25, + 28, + 32, + 28, + 34, + 32, + 32, + 32, + 62, + 59, + 44, + 33, + 49, + 33, + 33, + 63, + 30, + 30, + 30, + 44, + 28, + 28, + 28, + 26, + 32, + 41, + 55, + 55, + 29, + 37, + 60, + 41, + 34, + 32, + 19, + 31, + 44, + 25, + 25, + 55, + 46, + 27, + 48, + 29, + 25, + 24, + 35, + 40, + 38, + 29, + 30, + 29, + 36, + 32, + 43, + 33, + 33, + 30, + 30, + 30, + 30, + 33, + 30, + 30, + 45, + 29, + 36, + 41, + 73, + 34, + 34, + 34, + 34, + 24, + 59, + 24, + 24, + 30, + 42, + 26, + 26, + 57, + 30, + 30, + 30, + 28, + 42, + 46, + 57, + 61, + 69, + 26, + 28, + 70, + 32, + 70, + 43, + 25, + 47, + 58, + 49, + 32, + 42, + 29, + 26, + 66, + 67, + 37, + 33, + 33, + 26, + 58, + 31, + 25, + 30, + 66, + 41, + 36, + 51, + 26, + 26, + 26, + 57, + 29, + 32, + 45, + 32, + 47, + 29, + 50, + 33, + 33, + 24, + 37, + 50, + 56, + 30, + 40, + 26, + 29, + 32, + 33, + 36, + 54, + 37, + 43, + 27, + 43, + 35, + 33, + 41, + 34, + 32, + 38, + 38, + 41, + 27, + 22, + 34, + 34, + 26, + 55, + 28, + 45, + 38, + 39, + 48, + 45, + 40, + 48, + 48, + 25, + 59, + 40, + 43, + 40, + 26, + 26, + 32, + 34, + 68, + 26, + 57, + 26, + 55, + 50, + 34, + 71, + 56, + 75, + 35, + 56, + 24, + 59, + 25, + 25, + 21, + 34, + 46, + 24, + 29, + 25, + 31, + 35, + 31, + 69, + 28, + 37, + 54, + 64, + 31, + 56, + 78, + 57, + 31, + 75, + 47, + 54, + 54, + 34, + 75, + 53, + 31, + 47, + 78, + 64, + 27, + 23, + 30, + 23, + 23, + 52, + 23, + 29, + 64, + 29, + 39, + 37, + 25, + 55, + 54, + 61, + 65, + 60, + 52, + 58, + 60, + 19, + 25, + 61, + 52, + 44, + 35, + 50, + 42, + 43, + 26, + 50, + 64, + 27, + 38, + 28, + 27, + 27, + 38, + 23, + 38, + 33, + 47, + 33, + 27, + 79, + 60, + 60, + 60, + 31, + 39, + 28, + 26, + 30, + 30, + 53, + 35, + 40, + 51, + 60, + 48, + 49, + 34, + 48, + 53, + 24, + 46, + 40, + 41, + 29, + 40, + 31, + 40, + 39, + 45, + 30, + 48, + 31, + 34, + 30, + 38, + 54, + 36, + 37, + 33, + 32, + 59, + 30, + 35, + 38, + 27, + 44, + 35, + 51, + 46, + 51, + 51, + 39, + 51, + 36, + 39, + 42, + 48, + 29, + 30, + 30, + 51, + 28, + 39, + 24, + 56, + 25, + 46, + 60, + 47, + 37, + 47, + 69, + 46, + 48, + 49, + 30, + 37, + 28, + 48, + 58, + 36, + 51, + 33, + 60, + 33, + 55, + 22, + 40, + 28, + 41, + 35, + 20, + 38, + 41, + 33, + 24, + 36, + 58, + 49, + 41, + 49, + 49, + 48, + 30, + 66, + 33, + 30, + 38, + 24, + 53, + 32, + 33, + 29, + 31, + 61, + 32, + 60, + 32, + 35, + 64, + 56, + 30, + 32, + 42, + 56, + 35, + 59, + 36, + 39, + 35, + 60, + 36, + 60, + 26, + 30, + 31, + 39, + 30, + 39, + 65, + 28, + 36, + 50, + 35, + 31, + 57, + 36, + 42, + 53, + 30, + 59, + 31, + 39, + 20, + 42, + 44, + 51, + 58, + 57, + 30, + 22, + 61, + 26, + 40, + 81, + 56, + 50, + 46, + 53, + 39, + 59, + 57, + 50, + 44, + 24, + 56, + 50, + 60, + 33, + 49, + 39, + 41, + 35, + 58, + 50, + 36, + 34, + 35, + 30, + 34, + 44, + 34, + 54, + 38, + 41, + 32, + 36, + 48, + 45, + 37, + 52, + 34, + 36, + 41, + 41, + 40, + 28, + 41, + 39, + 46, + 31, + 57, + 29, + 37, + 33, + 28, + 41, + 28, + 27, + 28, + 51, + 33, + 36, + 45, + 52, + 33, + 38, + 35, + 30, + 32, + 28, + 38, + 30, + 28, + 45, + 38, + 32, + 29, + 39, + 34, + 27, + 32, + 55, + 29, + 54, + 35, + 36, + 46, + 48, + 41, + 35, + 34, + 33, + 45, + 34, + 31, + 36, + 38, + 42, + 35, + 35, + 35, + 27, + 33, + 33, + 33, + 58, + 33, + 25, + 34, + 33, + 30, + 23, + 32, + 31, + 26, + 31, + 34, + 31, + 50, + 27, + 29, + 27, + 26, + 39, + 23, + 27, + 31, + 46, + 33, + 47, + 38, + 33, + 32, + 34, + 38, + 35, + 48, + 26, + 36, + 50, + 59, + 48, + 45, + 28, + 37, + 33, + 43, + 48, + 48, + 28, + 39, + 48, + 36, + 28, + 32, + 28, + 43, + 32, + 39, + 41, + 31, + 32, + 31, + 30, + 38, + 33, + 33, + 28, + 29, + 28, + 43, + 31, + 31, + 28, + 30, + 34, + 32, + 24, + 34, + 32, + 24, + 31, + 33, + 28, + 31, + 31, + 29, + 34, + 29, + 29, + 53, + 35, + 41, + 51, + 31, + 34, + 34, + 38, + 38, + 31, + 31, + 36, + 30, + 38, + 28, + 42, + 31, + 38, + 51, + 58, + 29, + 38, + 52, + 43, + 33, + 44, + 36, + 26, + 26, + 35, + 29, + 25, + 37, + 38, + 33, + 44, + 31, + 28, + 39, + 42, + 33, + 57, + 28, + 30, + 23, + 31, + 28, + 27, + 51, + 31, + 25, + 26, + 32, + 27, + 40, + 29, + 25, + 54, + 31, + 37, + 28, + 35, + 32, + 29, + 27, + 34, + 42, + 35, + 22, + 43, + 29, + 34, + 59, + 37, + 39, + 30, + 30, + 23, + 29, + 24, + 33, + 32, + 30, + 43, + 29, + 34, + 36, + 49, + 39, + 35, + 29, + 24, + 44, + 28, + 30, + 41, + 31, + 51, + 43, + 47, + 25, + 29, + 25, + 45, + 31, + 50, + 30, + 35, + 41, + 44, + 57, + 28, + 44, + 33, + 29, + 33, + 37, + 33, + 29, + 45, + 46, + 33, + 44, + 30, + 33, + 39, + 39, + 43, + 46, + 32, + 29, + 33, + 33, + 37, + 58, + 52, + 40, + 38, + 45, + 26, + 35, + 48, + 19, + 27, + 18, + 48, + 57, + 43, + 26, + 28, + 31, + 35, + 30, + 37, + 37, + 44, + 53, + 36, + 54, + 55, + 56, + 46, + 34, + 54, + 43, + 37, + 36, + 50, + 35, + 42, + 30, + 31, + 28, + 36, + 34, + 60, + 31, + 58, + 33, + 27, + 33, + 28, + 31, + 36, + 25, + 22, + 28, + 27, + 32, + 25, + 21, + 28, + 26, + 41, + 29, + 30, + 31, + 54, + 34, + 31, + 50, + 56, + 29, + 26, + 33, + 32, + 26, + 32, + 38, + 56, + 26, + 32, + 38, + 24, + 26, + 60, + 29, + 35, + 32, + 27, + 37, + 36, + 36, + 29, + 36, + 57, + 52, + 28, + 31, + 31, + 59, + 32, + 33, + 37, + 45, + 65, + 49, + 21, + 36, + 29, + 49, + 45, + 36, + 32, + 28, + 26, + 33, + 26, + 26, + 43, + 40, + 27, + 58, + 32, + 31, + 46, + 33, + 32, + 32, + 37, + 41, + 34, + 31, + 32, + 25, + 41, + 41, + 46, + 32, + 32, + 32, + 28, + 33, + 46, + 23, + 30, + 44, + 28, + 40, + 47, + 30, + 46, + 25, + 31, + 31, + 33, + 28, + 43, + 28, + 40, + 24, + 30, + 31, + 59, + 33, + 53, + 28, + 40, + 40, + 58, + 37, + 28, + 28, + 28, + 34, + 29, + 31, + 28, + 29, + 29, + 29, + 38, + 48, + 30, + 36, + 29, + 42, + 23, + 29, + 40, + 29, + 69, + 30, + 69, + 52, + 33, + 35, + 53, + 51, + 51, + 45, + 29, + 26, + 21, + 25, + 42, + 24, + 21, + 30, + 50, + 25, + 36, + 36, + 30, + 25, + 31, + 35, + 32, + 28, + 53, + 35, + 32, + 30, + 28, + 25, + 53, + 53, + 22, + 52, + 29, + 46, + 30, + 30, + 32, + 28, + 32, + 24, + 51, + 28, + 25, + 31, + 21, + 51, + 51, + 29, + 51, + 31, + 48, + 28, + 25, + 35, + 20, + 30, + 34, + 53, + 36, + 36, + 30, + 29, + 32, + 27, + 53, + 27, + 43, + 47, + 36, + 43, + 44, + 49, + 29, + 38, + 25, + 32, + 54, + 54, + 55, + 22, + 22, + 50, + 33, + 28, + 32, + 41, + 35, + 46, + 30, + 36, + 29, + 31, + 74, + 30, + 57, + 57, + 29, + 52, + 29, + 21, + 37, + 35, + 53, + 53, + 40, + 55, + 57, + 25, + 29, + 25, + 29, + 53, + 49, + 25, + 32, + 40, + 40, + 50, + 39, + 36, + 24, + 36, + 64, + 33, + 50, + 55, + 51, + 61, + 45, + 45, + 50, + 60, + 59, + 59, + 51, + 46, + 46, + 32, + 32, + 50, + 60, + 51, + 46, + 57, + 21, + 29, + 47, + 29, + 48, + 30, + 33, + 56, + 31, + 23, + 37, + 28, + 53, + 33, + 26, + 23, + 26, + 23, + 33, + 40, + 31, + 42, + 42, + 29, + 20, + 32, + 26, + 32, + 29, + 23, + 23, + 27, + 35, + 51, + 30, + 54, + 27, + 38, + 44, + 42, + 61, + 18, + 47, + 52, + 51, + 34, + 59, + 34, + 37, + 57, + 59, + 20, + 32, + 37, + 39, + 46, + 37, + 52, + 32, + 52, + 24, + 54, + 74, + 31, + 35, + 25, + 44, + 76, + 76, + 46, + 33, + 29, + 75, + 25, + 32, + 70, + 24, + 41, + 41, + 33, + 73, + 48, + 28, + 36, + 36, + 29, + 76, + 31, + 33, + 43, + 36, + 38, + 38, + 36, + 36, + 37, + 65, + 33, + 63, + 31, + 33, + 52, + 37, + 34, + 31, + 58, + 33, + 26, + 52, + 52, + 85, + 30, + 57, + 35, + 26, + 44, + 58, + 59, + 34, + 49, + 27, + 36, + 26, + 49, + 26, + 26, + 27, + 74, + 32, + 60, + 56, + 27, + 32, + 48, + 20, + 20, + 33, + 28, + 56, + 38, + 28, + 23, + 36, + 22, + 29, + 31, + 30, + 39, + 32, + 46, + 39, + 46, + 22, + 36, + 40, + 74, + 33, + 39, + 57, + 36, + 28, + 26, + 39, + 35, + 61, + 42, + 54, + 58, + 55, + 71, + 70, + 28, + 46, + 42, + 35, + 38, + 28, + 31, + 29, + 31, + 62, + 76, + 73, + 67, + 80, + 25, + 25, + 34, + 28, + 48, + 44, + 23, + 28, + 41, + 74, + 22, + 67, + 36, + 61, + 34, + 26, + 47, + 37, + 50, + 34, + 56, + 33, + 20, + 35, + 74, + 38, + 35, + 37, + 32, + 33, + 74, + 64, + 34, + 33, + 37, + 66, + 36, + 34, + 35, + 32, + 71, + 24, + 25, + 28, + 28, + 51, + 61, + 61, + 87, + 54, + 24, + 34, + 54, + 62, + 79, + 30, + 36, + 39, + 47, + 38, + 63, + 51, + 58, + 63, + 62, + 58, + 56, + 43, + 27, + 42, + 59, + 80, + 59, + 51, + 46, + 50, + 58, + 31, + 33, + 55, + 26, + 62, + 26, + 30, + 30, + 53, + 38, + 31, + 39, + 33, + 79, + 39, + 37, + 34, + 34, + 26, + 32, + 60, + 44, + 59, + 51, + 53, + 39, + 72, + 28, + 50, + 45, + 61, + 45, + 52, + 45, + 45, + 41, + 30, + 30, + 43, + 49, + 71, + 66, + 39, + 30, + 29, + 43, + 39, + 34, + 30, + 58, + 36, + 46, + 27, + 27, + 76, + 56, + 42, + 25, + 42, + 69, + 34, + 49, + 43, + 28, + 40, + 31, + 36, + 34, + 47, + 62, + 62, + 70, + 59, + 70, + 29, + 27, + 24, + 27, + 70, + 24, + 53, + 31, + 49, + 49, + 36, + 46, + 56, + 52, + 37, + 39, + 60, + 44, + 22, + 22, + 63, + 70, + 81, + 30, + 43, + 56, + 61, + 35, + 50, + 37, + 35, + 23, + 71, + 83, + 82, + 69, + 65, + 37, + 35, + 34, + 48, + 48, + 63, + 54, + 37, + 42, + 42, + 59, + 42, + 36, + 42, + 77, + 32, + 30, + 35, + 30, + 80, + 32, + 22, + 33, + 45, + 26, + 28, + 28, + 37, + 34, + 33, + 40, + 74, + 37, + 33, + 37, + 25, + 28, + 28, + 22, + 39, + 33, + 33, + 26, + 49, + 33, + 38, + 28, + 49, + 36, + 70, + 60, + 30, + 21, + 36, + 33, + 31, + 31, + 60, + 59, + 30, + 24, + 39, + 44, + 38, + 38, + 36, + 32, + 88, + 44, + 36, + 42, + 42, + 29, + 54, + 34, + 37, + 35, + 56, + 33, + 71, + 56, + 45, + 30, + 56, + 25, + 24, + 35, + 61, + 22, + 64, + 23, + 21, + 64, + 22, + 22, + 29, + 34, + 26, + 33, + 26, + 42, + 55, + 71, + 32, + 52, + 68, + 29, + 33, + 42, + 63, + 31, + 68, + 71, + 21, + 32, + 63, + 58, + 32, + 40, + 62, + 54, + 24, + 55, + 33, + 80, + 31, + 53, + 30, + 72, + 82, + 34, + 48, + 61, + 48, + 48, + 69, + 34, + 32, + 51, + 54, + 55, + 78, + 26, + 34, + 36, + 59, + 25, + 69, + 18, + 37, + 34, + 30, + 37, + 47, + 45, + 52, + 71, + 32, + 36, + 79, + 56, + 30, + 27, + 47, + 54, + 22, + 28, + 32, + 54, + 71, + 26, + 73, + 69, + 34, + 54, + 54, + 53, + 56, + 69, + 26, + 27, + 57, + 25, + 24, + 29, + 22, + 41, + 76, + 38, + 27, + 71, + 28, + 34, + 61, + 61, + 41, + 33, + 38, + 41, + 52, + 33, + 30, + 79, + 28, + 54, + 79, + 52, + 37, + 72, + 20, + 28, + 72, + 20, + 20, + 36, + 72, + 29, + 23, + 33, + 53, + 38, + 40, + 29, + 29, + 65, + 43, + 65, + 29, + 38, + 67, + 51, + 49, + 34, + 34, + 34, + 56, + 32, + 66, + 35, + 32, + 60, + 38, + 29, + 26, + 26, + 26, + 29, + 32, + 32, + 53, + 65, + 29, + 52, + 52, + 39, + 31, + 55, + 78, + 18, + 40, + 25, + 61, + 64, + 67, + 50, + 26, + 30, + 66, + 72, + 77, + 40, + 40, + 68, + 34, + 47, + 35, + 82, + 48, + 53, + 43, + 34, + 43, + 26, + 66, + 83, + 27, + 56, + 31, + 57, + 61, + 58, + 56, + 48, + 56, + 28, + 27, + 28, + 25, + 78, + 73, + 44, + 38, + 54, + 38, + 30, + 55, + 83, + 60, + 50, + 60, + 50, + 54, + 43, + 49, + 50, + 38, + 54, + 42, + 31, + 32, + 86, + 26, + 64, + 56, + 55, + 29, + 64, + 64, + 56, + 62, + 81, + 84, + 59, + 46, + 55, + 64, + 70, + 18, + 76, + 24, + 76, + 38, + 21, + 52, + 55, + 29, + 31, + 51, + 23, + 23, + 50, + 27, + 62, + 41, + 41, + 41, + 45, + 46, + 22, + 37, + 35, + 39, + 53, + 32, + 35, + 40, + 73, + 43, + 26, + 27, + 32, + 34, + 73, + 51, + 39, + 30, + 78, + 66, + 66, + 30, + 30, + 66, + 53, + 19, + 31, + 25, + 35, + 30, + 33, + 21, + 38, + 38, + 24, + 38, + 37, + 21, + 36, + 34, + 34, + 34, + 36, + 53, + 25, + 34, + 34, + 41, + 28, + 72, + 33, + 34, + 27, + 50, + 41, + 38, + 41, + 41, + 43, + 27, + 59, + 33, + 36, + 64, + 34, + 42, + 34, + 29, + 34, + 34, + 34, + 34, + 55, + 34, + 34, + 64, + 26, + 34, + 38, + 29, + 25, + 43, + 55, + 28, + 46, + 38, + 31, + 23, + 38, + 26, + 27, + 27, + 80, + 29, + 33, + 82, + 31, + 30, + 34, + 29, + 31, + 47, + 48, + 33, + 46, + 31, + 52, + 23, + 52, + 28, + 38, + 43, + 34, + 29, + 39, + 75, + 59, + 29, + 39, + 39, + 27, + 27, + 80, + 41, + 66, + 27, + 58, + 57, + 35, + 68, + 59, + 27, + 47, + 27, + 49, + 64, + 56, + 56, + 56, + 56, + 27, + 60, + 33, + 41, + 35, + 32, + 35, + 33, + 46, + 27, + 61, + 58, + 53, + 58, + 26, + 71, + 37, + 54, + 48, + 59, + 35, + 63, + 26, + 80, + 49, + 20, + 20, + 53, + 36, + 48, + 74, + 48, + 48, + 35, + 37, + 35, + 41, + 68, + 50, + 82, + 82, + 74, + 74, + 75, + 66, + 57, + 80, + 80, + 80, + 57, + 58, + 53, + 57, + 77, + 80, + 43, + 41, + 47, + 73, + 26, + 46, + 38, + 32, + 29, + 20, + 71, + 39, + 37, + 30, + 29, + 48, + 33, + 50, + 38, + 31, + 37, + 35, + 52, + 33, + 38, + 35, + 31, + 21, + 39, + 48, + 43, + 52, + 24, + 52, + 51, + 24, + 24, + 52, + 29, + 72, + 37, + 33, + 52, + 52, + 52, + 52, + 37, + 44, + 30, + 30, + 44, + 38, + 56, + 59, + 58, + 50, + 77, + 61, + 48, + 48, + 40, + 48, + 77, + 45, + 58, + 31, + 41, + 28, + 29, + 39, + 70, + 40, + 40, + 29, + 52, + 30, + 68, + 33, + 76, + 65, + 52, + 33, + 71, + 29, + 33, + 60, + 63, + 33, + 74, + 47, + 50, + 48, + 28, + 68, + 46, + 31, + 58, + 46, + 31, + 61, + 34, + 45, + 24, + 80, + 24, + 76, + 45, + 36, + 36, + 77, + 22, + 46, + 69, + 31, + 28, + 28, + 70, + 29, + 60, + 49, + 36, + 37, + 43, + 38, + 37, + 32, + 29, + 33, + 56, + 27, + 29, + 76, + 29, + 76, + 51, + 39, + 22, + 48, + 29, + 34, + 32, + 47, + 35, + 34, + 29, + 34, + 33, + 44, + 44, + 28, + 29, + 50, + 36, + 23, + 39, + 89, + 30, + 21, + 30, + 36, + 39, + 59, + 35, + 22, + 29, + 25, + 31, + 29, + 56, + 60, + 31, + 31, + 29, + 29, + 24, + 28, + 28, + 43, + 28, + 24, + 70, + 30, + 36, + 36, + 32, + 36, + 36, + 36, + 36, + 37, + 59, + 44, + 69, + 37, + 23, + 83, + 27, + 51, + 51, + 53, + 51, + 34, + 32, + 37, + 62, + 38, + 36, + 34, + 56, + 64, + 27, + 25, + 38, + 27, + 34, + 26, + 30, + 33, + 56, + 21, + 26, + 66, + 26, + 60, + 37, + 38, + 27, + 33, + 55, + 35, + 25, + 48, + 34, + 41, + 41, + 21, + 46, + 46, + 29, + 46, + 43, + 83, + 55, + 33, + 35, + 36, + 34, + 75, + 29, + 25, + 58, + 25, + 34, + 34, + 72, + 26, + 46, + 79, + 39, + 59, + 39, + 35, + 24, + 19, + 59, + 28, + 73, + 29, + 22, + 83, + 83, + 66, + 66, + 31, + 35, + 35, + 22, + 35, + 29, + 53, + 30, + 29, + 53, + 45, + 29, + 29, + 34, + 53, + 35, + 23, + 52, + 50, + 37, + 28, + 30, + 20, + 80, + 70, + 35, + 23, + 28, + 47, + 31, + 60, + 51, + 29, + 26, + 59, + 22, + 56, + 49, + 78, + 72, + 78, + 56, + 56, + 66, + 78, + 29, + 30, + 29, + 62, + 66, + 82, + 72, + 37, + 24, + 52, + 24, + 43, + 64, + 45, + 40, + 30, + 60, + 24, + 31, + 59, + 31, + 24, + 26, + 26, + 63, + 35, + 51, + 65, + 68, + 68, + 24, + 84, + 32, + 52, + 52, + 48, + 68, + 24, + 57, + 24, + 51, + 50, + 48, + 26, + 80, + 34, + 50, + 50, + 31, + 51, + 31, + 48, + 71, + 31, + 34, + 27, + 37, + 35, + 71, + 40, + 37, + 40, + 53, + 62, + 67, + 27, + 64, + 37, + 28, + 28, + 31, + 40, + 30, + 21, + 58, + 48, + 35, + 35, + 27, + 28, + 61, + 27, + 28, + 48, + 34, + 48, + 47, + 30, + 44, + 30, + 41, + 26, + 26, + 48, + 48, + 47, + 77, + 41, + 41, + 37, + 46, + 25, + 45, + 59, + 41, + 27, + 59, + 41, + 41, + 41, + 27, + 24, + 35, + 29, + 58, + 26, + 26, + 53, + 55, + 58, + 34, + 50, + 65, + 31, + 70, + 31, + 55, + 43, + 61, + 26, + 51, + 75, + 35, + 66, + 41, + 42, + 67, + 52, + 33, + 51, + 76, + 27, + 33, + 33, + 42, + 25, + 48, + 38, + 39, + 36, + 30, + 42, + 31, + 31, + 34, + 44, + 33, + 58, + 30, + 33, + 76, + 60, + 56, + 27, + 64, + 69, + 33, + 37, + 60, + 59, + 45, + 37, + 22, + 45, + 81, + 55, + 39, + 60, + 47, + 60, + 32, + 32, + 43, + 57, + 31, + 30, + 51, + 22, + 33, + 43, + 35, + 34, + 85, + 89, + 26, + 36, + 36, + 26, + 86, + 42, + 44, + 46, + 32, + 28, + 32, + 45, + 38, + 29, + 60, + 27, + 27, + 38, + 33, + 37, + 26, + 34, + 27, + 38, + 83, + 24, + 64, + 38, + 23, + 29, + 71, + 57, + 39, + 82, + 30, + 34, + 34, + 31, + 53, + 24, + 52, + 60, + 19, + 23, + 60, + 52, + 39, + 33, + 23, + 19, + 37, + 36, + 82, + 25, + 31, + 33, + 23, + 24, + 56, + 77, + 19, + 23, + 30, + 34, + 34, + 26, + 41, + 36, + 26, + 34, + 31, + 25, + 38, + 41, + 33, + 33, + 33, + 32, + 32, + 41, + 33, + 58, + 42, + 23, + 53, + 31, + 33, + 58, + 30, + 31, + 26, + 33, + 31, + 48, + 32, + 48, + 30, + 29, + 42, + 34, + 42, + 32, + 32, + 26, + 26, + 35, + 32, + 41, + 22, + 28, + 51, + 61, + 29, + 47, + 49, + 66, + 56, + 31, + 48, + 27, + 33, + 65, + 59, + 31, + 21, + 27, + 71, + 27, + 65, + 35, + 54, + 70, + 50, + 48, + 61, + 37, + 37, + 65, + 24, + 68, + 44, + 56, + 42, + 44, + 29, + 68, + 47, + 48, + 50, + 54, + 81, + 54, + 37, + 80, + 37, + 37, + 24, + 33, + 37, + 29, + 37, + 45, + 26, + 31, + 25, + 23, + 25, + 65, + 37, + 28, + 36, + 33, + 33, + 30, + 23, + 33, + 30, + 25, + 62, + 60, + 62, + 21, + 30, + 65, + 31, + 27, + 30, + 65, + 31, + 48, + 29, + 50, + 45, + 37, + 24, + 51, + 18, + 50, + 31, + 29, + 59, + 33, + 63, + 36, + 29, + 36, + 36, + 37, + 37, + 61, + 61, + 31, + 31, + 41, + 25, + 58, + 33, + 37, + 43, + 26, + 41, + 25, + 35, + 41, + 67, + 41, + 35, + 35, + 33, + 35, + 54, + 38, + 32, + 33, + 31, + 62, + 62, + 62, + 37, + 73, + 44 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "age" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
duration=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 261, + 226, + 151, + 307, + 139, + 380, + 50, + 222, + 137, + 293, + 146, + 312, + 353, + 38, + 342, + 181, + 172, + 99, + 208, + 365, + 1666, + 577, + 137, + 314, + 160, + 212, + 616, + 178, + 355, + 225, + 160, + 266, + 253, + 179, + 174, + 812, + 357, + 232, + 91, + 158, + 200, + 172, + 349, + 20, + 246, + 529, + 192, + 188, + 180, + 545, + 583, + 221, + 426, + 197, + 257, + 55, + 197, + 190, + 300, + 123, + 194, + 337, + 286, + 247, + 439, + 139, + 79, + 175, + 262, + 61, + 78, + 102, + 143, + 345, + 185, + 207, + 125, + 240, + 193, + 136, + 338, + 87, + 98, + 186, + 579, + 165, + 85, + 506, + 843, + 292, + 93, + 128, + 107, + 303, + 81, + 270, + 228, + 233, + 461, + 138, + 412, + 179, + 19, + 228, + 717, + 1077, + 146, + 167, + 356, + 172, + 67, + 291, + 256, + 286, + 477, + 322, + 216, + 168, + 132, + 64, + 209, + 177, + 580, + 165, + 300, + 136, + 125, + 238, + 124, + 18, + 730, + 79, + 142, + 389, + 702, + 151, + 211, + 117, + 232, + 370, + 46, + 50, + 181, + 361, + 73, + 67, + 350, + 150, + 611, + 89, + 611, + 962, + 10, + 118, + 92, + 143, + 189, + 75, + 189, + 55, + 56, + 225, + 125, + 286, + 164, + 98, + 446, + 742, + 120, + 122, + 248, + 205, + 261, + 83, + 106, + 106, + 108, + 364, + 136, + 173, + 241, + 224, + 148, + 196, + 111, + 231, + 316, + 669, + 425, + 121, + 174, + 88, + 135, + 402, + 158, + 220, + 254, + 503, + 680, + 130, + 164, + 113, + 195, + 347, + 208, + 404, + 396, + 98, + 229, + 350, + 379, + 168, + 158, + 210, + 102, + 306, + 218, + 77, + 54, + 344, + 195, + 202, + 278, + 189, + 83, + 18, + 235, + 290, + 402, + 144, + 69, + 243, + 769, + 231, + 442, + 455, + 154, + 393, + 203, + 140, + 483, + 259, + 227, + 245, + 186, + 623, + 102, + 342, + 225, + 87, + 262, + 271, + 198, + 150, + 241, + 196, + 246, + 140, + 175, + 144, + 451, + 159, + 170, + 243, + 112, + 262, + 53, + 204, + 678, + 182, + 162, + 177, + 358, + 310, + 47, + 30, + 116, + 169, + 145, + 278, + 226, + 157, + 349, + 233, + 198, + 82, + 198, + 120, + 128, + 166, + 211, + 369, + 91, + 371, + 310, + 158, + 198, + 145, + 102, + 179, + 73, + 263, + 342, + 13, + 79, + 358, + 150, + 792, + 242, + 123, + 161, + 268, + 259, + 26, + 424, + 179, + 383, + 195, + 217, + 189, + 260, + 179, + 266, + 352, + 695, + 76, + 310, + 112, + 140, + 262, + 424, + 1906, + 219, + 135, + 407, + 402, + 209, + 92, + 193, + 65, + 284, + 285, + 278, + 389, + 158, + 87, + 147, + 635, + 289, + 170, + 802, + 381, + 57, + 304, + 241, + 230, + 79, + 262, + 145, + 252, + 329, + 191, + 116, + 246, + 532, + 293, + 37, + 132, + 530, + 90, + 29, + 311, + 211, + 312, + 392, + 191, + 328, + 100, + 226, + 333, + 322, + 202, + 739, + 262, + 245, + 160, + 189, + 477, + 65, + 221, + 197, + 178, + 221, + 75, + 400, + 346, + 60, + 276, + 390, + 716, + 189, + 125, + 234, + 283, + 109, + 144, + 95, + 31, + 112, + 161, + 87, + 285, + 178, + 174, + 631, + 152, + 176, + 32, + 1529, + 254, + 214, + 147, + 800, + 106, + 135, + 112, + 222, + 421, + 239, + 55, + 157, + 303, + 233, + 211, + 139, + 329, + 128, + 122, + 343, + 126, + 249, + 59, + 166, + 190, + 51, + 117, + 275, + 124, + 479, + 285, + 322, + 720, + 92, + 188, + 395, + 261, + 446, + 198, + 312, + 275, + 333, + 296, + 128, + 292, + 421, + 268, + 232, + 152, + 104, + 416, + 174, + 193, + 294, + 102, + 143, + 128, + 105, + 250, + 254, + 149, + 133, + 374, + 425, + 464, + 439, + 83, + 149, + 274, + 325, + 216, + 161, + 111, + 359, + 327, + 236, + 492, + 241, + 123, + 295, + 287, + 140, + 233, + 254, + 255, + 184, + 294, + 285, + 336, + 344, + 153, + 260, + 164, + 255, + 192, + 388, + 221, + 25, + 104, + 283, + 448, + 127, + 378, + 67, + 221, + 150, + 144, + 296, + 245, + 143, + 231, + 227, + 69, + 799, + 109, + 45, + 120, + 180, + 112, + 148, + 223, + 566, + 274, + 49, + 97, + 511, + 157, + 101, + 866, + 279, + 530, + 129, + 60, + 516, + 617, + 125, + 171, + 614, + 485, + 287, + 37, + 650, + 590, + 55, + 166, + 48, + 72, + 55, + 96, + 144, + 474, + 559, + 1101, + 236, + 164, + 123, + 209, + 485, + 311, + 274, + 163, + 345, + 329, + 68, + 214, + 1062, + 253, + 170, + 78, + 194, + 126, + 224, + 98, + 252, + 607, + 103, + 241, + 96, + 238, + 245, + 152, + 418, + 198, + 175, + 51, + 229, + 154, + 306, + 114, + 24, + 353, + 108, + 222, + 1009, + 105, + 228, + 128, + 550, + 764, + 234, + 110, + 305, + 134, + 217, + 283, + 353, + 212, + 225, + 1273, + 139, + 62, + 245, + 161, + 245, + 89, + 113, + 517, + 231, + 299, + 253, + 164, + 191, + 157, + 548, + 126, + 155, + 152, + 145, + 66, + 123, + 248, + 275, + 984, + 84, + 27, + 130, + 41, + 159, + 196, + 281, + 122, + 319, + 90, + 505, + 17, + 404, + 238, + 71, + 157, + 280, + 374, + 365, + 177, + 238, + 425, + 223, + 239, + 116, + 308, + 137, + 162, + 134, + 175, + 67, + 196, + 342, + 142, + 194, + 132, + 110, + 94, + 31, + 220, + 180, + 193, + 177, + 528, + 183, + 238, + 61, + 70, + 93, + 135, + 604, + 65, + 380, + 11, + 75, + 255, + 462, + 56, + 418, + 139, + 39, + 204, + 129, + 187, + 144, + 323, + 194, + 521, + 269, + 294, + 152, + 187, + 268, + 193, + 206, + 216, + 103, + 107, + 147, + 339, + 198, + 141, + 369, + 249, + 162, + 81, + 124, + 124, + 33, + 393, + 784, + 87, + 196, + 149, + 154, + 287, + 229, + 21, + 147, + 93, + 131, + 160, + 74, + 60, + 97, + 82, + 140, + 110, + 64, + 149, + 63, + 362, + 338, + 102, + 446, + 176, + 1007, + 175, + 211, + 237, + 500, + 186, + 98, + 477, + 319, + 789, + 280, + 63, + 159, + 177, + 108, + 194, + 366, + 213, + 166, + 141, + 168, + 195, + 352, + 91, + 93, + 218, + 289, + 130, + 208, + 177, + 442, + 101, + 166, + 342, + 189, + 178, + 238, + 14, + 250, + 269, + 491, + 44, + 22, + 989, + 147, + 1170, + 807, + 534, + 159, + 343, + 152, + 389, + 90, + 103, + 32, + 369, + 149, + 210, + 180, + 92, + 102, + 193, + 245, + 223, + 42, + 66, + 477, + 77, + 219, + 205, + 376, + 453, + 151, + 767, + 200, + 305, + 627, + 242, + 287, + 119, + 403, + 626, + 12, + 266, + 10, + 240, + 312, + 202, + 144, + 543, + 237, + 209, + 442, + 186, + 226, + 275, + 81, + 74, + 261, + 151, + 78, + 15, + 352, + 345, + 230, + 296, + 181, + 335, + 139, + 163, + 956, + 166, + 95, + 71, + 191, + 459, + 100, + 255, + 128, + 4, + 43, + 210, + 21, + 67, + 219, + 248, + 223, + 112, + 205, + 105, + 112, + 207, + 10, + 249, + 672, + 390, + 21, + 393, + 246, + 330, + 84, + 399, + 297, + 111, + 170, + 141, + 886, + 49, + 461, + 515, + 123, + 179, + 102, + 272, + 17, + 291, + 209, + 1187, + 89, + 123, + 104, + 117, + 37, + 51, + 627, + 466, + 101, + 303, + 283, + 598, + 185, + 220, + 423, + 337, + 99, + 27, + 166, + 182, + 103, + 379, + 287, + 732, + 126, + 172, + 43, + 109, + 191, + 117, + 64, + 260, + 207, + 128, + 144, + 110, + 85, + 132, + 346, + 205, + 218, + 62, + 93, + 286, + 241, + 283, + 380, + 584, + 371, + 274, + 71, + 357, + 215, + 131, + 847, + 57, + 306, + 147, + 244, + 59, + 24, + 85, + 70, + 21, + 659, + 296, + 307, + 120, + 390, + 83, + 198, + 21, + 93, + 217, + 134, + 375, + 45, + 93, + 410, + 157, + 72, + 131, + 498, + 514, + 127, + 198, + 117, + 155, + 18, + 386, + 341, + 208, + 44, + 480, + 86, + 93, + 238, + 399, + 93, + 123, + 92, + 219, + 2462, + 114, + 249, + 187, + 122, + 207, + 117, + 393, + 25, + 136, + 38, + 164, + 825, + 479, + 229, + 258, + 308, + 137, + 257, + 213, + 115, + 202, + 106, + 95, + 64, + 186, + 205, + 377, + 322, + 46, + 211, + 156, + 71, + 324, + 164, + 137, + 87, + 91, + 230, + 63, + 135, + 261, + 215, + 125, + 391, + 107, + 145, + 142, + 134, + 241, + 180, + 189, + 70, + 1087, + 62, + 323, + 111, + 197, + 224, + 557, + 150, + 388, + 194, + 209, + 188, + 84, + 530, + 365, + 285, + 352, + 316, + 79, + 126, + 76, + 253, + 622, + 133, + 178, + 404, + 109, + 134, + 225, + 129, + 93, + 20, + 247, + 324, + 163, + 279, + 251, + 125, + 282, + 344, + 67, + 167, + 395, + 137, + 118, + 128, + 174, + 195, + 412, + 127, + 79, + 13, + 61, + 286, + 274, + 144, + 1713, + 241, + 338, + 182, + 551, + 663, + 338, + 153, + 188, + 305, + 1080, + 1461, + 129, + 98, + 262, + 150, + 332, + 94, + 49, + 154, + 750, + 202, + 191, + 106, + 214, + 128, + 70, + 279, + 231, + 70, + 213, + 136, + 229, + 184, + 32, + 73, + 126, + 83, + 169, + 280, + 393, + 128, + 1178, + 178, + 177, + 245, + 460, + 432, + 176, + 162, + 237, + 44, + 483, + 116, + 182, + 122, + 232, + 51, + 214, + 389, + 31, + 145, + 878, + 268, + 101, + 119, + 162, + 18, + 43, + 86, + 83, + 97, + 263, + 180, + 322, + 64, + 71, + 284, + 166, + 210, + 164, + 155, + 91, + 213, + 257, + 315, + 102, + 35, + 83, + 834, + 244, + 143, + 1534, + 163, + 40, + 147, + 290, + 148, + 289, + 345, + 1002, + 76, + 111, + 150, + 115, + 149, + 327, + 111, + 88, + 592, + 62, + 59, + 144, + 346, + 57, + 396, + 59, + 38, + 167, + 409, + 117, + 177, + 36, + 94, + 122, + 225, + 165, + 186, + 405, + 207, + 325, + 288, + 102, + 136, + 53, + 202, + 130, + 523, + 231, + 217, + 281, + 1147, + 486, + 170, + 539, + 820, + 398, + 112, + 64, + 788, + 239, + 165, + 501, + 832, + 214, + 101, + 77, + 388, + 480, + 393, + 744, + 593, + 215, + 315, + 162, + 493, + 80, + 39, + 132, + 101, + 188, + 53, + 507, + 123, + 171, + 178, + 156, + 154, + 163, + 470, + 793, + 219, + 460, + 246, + 194, + 256, + 146, + 596, + 577, + 177, + 335, + 262, + 115, + 529, + 247, + 166, + 320, + 307, + 220, + 241, + 241, + 98, + 391, + 126, + 55, + 86, + 166, + 155, + 63, + 236, + 92, + 253, + 65, + 41, + 221, + 241, + 248, + 198, + 212, + 115, + 264, + 65, + 299, + 166, + 197, + 220, + 298, + 78, + 13, + 159, + 157, + 162, + 249, + 24, + 195, + 143, + 68, + 274, + 325, + 249, + 111, + 81, + 181, + 92, + 85, + 182, + 530, + 160, + 176, + 134, + 907, + 200, + 139, + 147, + 153, + 109, + 97, + 723, + 518, + 101, + 142, + 520, + 611, + 135, + 276, + 98, + 105, + 382, + 213, + 116, + 50, + 138, + 49, + 178, + 169, + 244, + 428, + 53, + 360, + 207, + 229, + 108, + 210, + 259, + 351, + 198, + 284, + 295, + 62, + 217, + 343, + 227, + 248, + 180, + 117, + 205, + 370, + 427, + 705, + 174, + 166, + 373, + 259, + 340, + 137, + 107, + 44, + 118, + 135, + 276, + 118, + 38, + 232, + 1167, + 325, + 311, + 147, + 125, + 98, + 67, + 174, + 260, + 122, + 334, + 609, + 302, + 121, + 156, + 92, + 766, + 137, + 110, + 135, + 102, + 65, + 76, + 60, + 100, + 82, + 149, + 36, + 95, + 120, + 349, + 768, + 277, + 473, + 133, + 386, + 76, + 214, + 355, + 194, + 208, + 113, + 93, + 119, + 916, + 60, + 225, + 262, + 103, + 255, + 434, + 59, + 155, + 242, + 93, + 211, + 31, + 104, + 172, + 160, + 276, + 176, + 161, + 245, + 93, + 332, + 188, + 94, + 54, + 29, + 271, + 95, + 227, + 190, + 60, + 296, + 125, + 78, + 119, + 3, + 297, + 342, + 420, + 91, + 768, + 184, + 108, + 195, + 141, + 87, + 129, + 215, + 142, + 411, + 93, + 65, + 531, + 34, + 788, + 851, + 315, + 214, + 92, + 159, + 58, + 1052, + 165, + 309, + 163, + 210, + 165, + 230, + 584, + 134, + 185, + 295, + 86, + 151, + 259, + 198, + 168, + 247, + 151, + 64, + 232, + 647, + 322, + 337, + 133, + 87, + 771, + 76, + 318, + 209, + 1093, + 326, + 273, + 1106, + 214, + 87, + 122, + 816, + 284, + 116, + 72, + 232, + 262, + 190, + 166, + 104, + 163, + 492, + 109, + 384, + 1032, + 65, + 360, + 20, + 323, + 735, + 151, + 158, + 73, + 438, + 328, + 97, + 455, + 103, + 72, + 89, + 387, + 160, + 381, + 109, + 178, + 260, + 231, + 188, + 145, + 27, + 282, + 48, + 220, + 606, + 451, + 168, + 230, + 170, + 142, + 283, + 110, + 138, + 158, + 105, + 106, + 217, + 243, + 488, + 148, + 124, + 452, + 114, + 92, + 686, + 300, + 71, + 534, + 243, + 158, + 456, + 298, + 483, + 213, + 51, + 44, + 164, + 178, + 452, + 87, + 122, + 120, + 122, + 262, + 179, + 68, + 75, + 191, + 461, + 188, + 117, + 351, + 429, + 249, + 568, + 299, + 282, + 211, + 77, + 283, + 263, + 189, + 91, + 32, + 139, + 347, + 58, + 152, + 869, + 267, + 34, + 153, + 28, + 216, + 199, + 139, + 322, + 189, + 197, + 224, + 180, + 191, + 57, + 849, + 260, + 181, + 125, + 749, + 166, + 407, + 152, + 438, + 387, + 100, + 413, + 191, + 109, + 38, + 214, + 98, + 225, + 230, + 364, + 57, + 160, + 210, + 222, + 265, + 161, + 350, + 155, + 162, + 337, + 416, + 102, + 977, + 70, + 71, + 230, + 369, + 136, + 174, + 80, + 144, + 380, + 108, + 389, + 192, + 273, + 8, + 90, + 217, + 302, + 411, + 179, + 245, + 746, + 220, + 232, + 106, + 115, + 274, + 106, + 107, + 1044, + 354, + 55, + 180, + 95, + 331, + 148, + 74, + 374, + 295, + 668, + 95, + 286, + 242, + 335, + 343, + 85, + 360, + 183, + 726, + 158, + 514, + 382, + 142, + 264, + 161, + 49, + 326, + 183, + 634, + 339, + 125, + 423, + 191, + 248, + 146, + 17, + 546, + 162, + 174, + 180, + 282, + 126, + 554, + 21, + 246, + 141, + 427, + 97, + 402, + 360, + 852, + 241, + 133, + 122, + 167, + 133, + 594, + 86, + 166, + 303, + 636, + 341, + 483, + 234, + 211, + 738, + 482, + 238, + 370, + 76, + 225, + 582, + 270, + 52, + 254, + 1118, + 79, + 166, + 256, + 276, + 349, + 856, + 278, + 143, + 249, + 37, + 187, + 211, + 266, + 159, + 318, + 747, + 319, + 114, + 362, + 86, + 90, + 1013, + 468, + 226, + 349, + 236, + 360, + 366, + 70, + 230, + 135, + 65, + 420, + 259, + 192, + 263, + 415, + 260, + 183, + 87, + 62, + 139, + 150, + 244, + 325, + 183, + 552, + 27, + 153, + 182, + 55, + 644, + 374, + 240, + 558, + 1088, + 41, + 436, + 463, + 265, + 234, + 113, + 158, + 160, + 504, + 36, + 109, + 134, + 326, + 347, + 116, + 77, + 1036, + 303, + 80, + 111, + 435, + 397, + 208, + 168, + 1000, + 112, + 599, + 30, + 165, + 55, + 127, + 75, + 221, + 285, + 71, + 290, + 164, + 207, + 295, + 106, + 219, + 145, + 120, + 101, + 417, + 191, + 221, + 229, + 104, + 122, + 186, + 23, + 402, + 68, + 182, + 348, + 203, + 74, + 464, + 738, + 126, + 452, + 187, + 136, + 80, + 431, + 301, + 133, + 218, + 355, + 49, + 117, + 155, + 477, + 99, + 200, + 187, + 51, + 253, + 71, + 127, + 74, + 122, + 173, + 918, + 544, + 309, + 138, + 73, + 193, + 198, + 243, + 105, + 98, + 243, + 135, + 597, + 168, + 43, + 122, + 504, + 192, + 51, + 178, + 99, + 224, + 236, + 815, + 134, + 118, + 238, + 225, + 490, + 199, + 644, + 286, + 176, + 422, + 22, + 465, + 973, + 190, + 84, + 59, + 294, + 237, + 399, + 132, + 279, + 484, + 30, + 561, + 388, + 100, + 589, + 160, + 69, + 52, + 486, + 73, + 523, + 73, + 420, + 584, + 155, + 619, + 298, + 515, + 21, + 404, + 241, + 302, + 440, + 172, + 276, + 213, + 194, + 19, + 546, + 419, + 156, + 184, + 548, + 760, + 244, + 171, + 92, + 17, + 301, + 475, + 770, + 126, + 114, + 136, + 196, + 129, + 192, + 118, + 160, + 430, + 242, + 317, + 7, + 493, + 112, + 523, + 309, + 850, + 420, + 71, + 314, + 196, + 78, + 124, + 190, + 53, + 278, + 263, + 214, + 88, + 255, + 311, + 426, + 302, + 448, + 70, + 347, + 320, + 175, + 98, + 734, + 543, + 374, + 241, + 137, + 297, + 377, + 122, + 248, + 336, + 28, + 371, + 329, + 597, + 247, + 266, + 159, + 206, + 228, + 144, + 29, + 512, + 247, + 601, + 73, + 230, + 456, + 75, + 387, + 286, + 448, + 178, + 111, + 150, + 297, + 656, + 88, + 118, + 104, + 103, + 213, + 122, + 130, + 627, + 207, + 114, + 216, + 250, + 91, + 159, + 37, + 46, + 356, + 242, + 274, + 355, + 149, + 346, + 261, + 63, + 125, + 167, + 25, + 244, + 122, + 130, + 345, + 145, + 214, + 132, + 117, + 754, + 211, + 192, + 203, + 76, + 24, + 171, + 343, + 77, + 217, + 196, + 178, + 410, + 265, + 172, + 359, + 123, + 169, + 241, + 22, + 326, + 196, + 270, + 679, + 576, + 102, + 161, + 206, + 230, + 322, + 107, + 379, + 95, + 320, + 230, + 489, + 98, + 38, + 323, + 335, + 161, + 410, + 280, + 374, + 193, + 136, + 381, + 412, + 376, + 56, + 112, + 155, + 703, + 141, + 121, + 121, + 177, + 404, + 433, + 323, + 132, + 221, + 200, + 80, + 123, + 90, + 461, + 193, + 428, + 291, + 136, + 214, + 239, + 94, + 107, + 51, + 109, + 378, + 136, + 386, + 290, + 764, + 16, + 148, + 269, + 208, + 274, + 326, + 337, + 788, + 353, + 14, + 698, + 180, + 257, + 467, + 233, + 218, + 304, + 315, + 76, + 355, + 557, + 148, + 128, + 130, + 152, + 283, + 523, + 1128, + 171, + 71, + 84, + 221, + 339, + 509, + 243, + 344, + 1135, + 1106, + 292, + 279, + 293, + 198, + 303, + 680, + 251, + 476, + 81, + 4, + 227, + 427, + 408, + 255, + 236, + 428, + 851, + 522, + 1144, + 730, + 167, + 385, + 169, + 409, + 437, + 89, + 294, + 498, + 134, + 230, + 192, + 65, + 237, + 239, + 243, + 393, + 218, + 215, + 186, + 299, + 107, + 90, + 102, + 1110, + 1187, + 119, + 79, + 145, + 39, + 311, + 134, + 594, + 55, + 92, + 19, + 114, + 221, + 219, + 221, + 166, + 128, + 35, + 668, + 77, + 134, + 258, + 71, + 131, + 468, + 326, + 412, + 277, + 380, + 169, + 124, + 83, + 318, + 29, + 218, + 144, + 130, + 27, + 343, + 167, + 95, + 112, + 198, + 165, + 134, + 298, + 188, + 241, + 201, + 68, + 82, + 97, + 138, + 135, + 267, + 382, + 234, + 95, + 798, + 168, + 85, + 143, + 23, + 182, + 351, + 179, + 237, + 122, + 198, + 67, + 238, + 81, + 496, + 114, + 156, + 48, + 287, + 336, + 202, + 228, + 192, + 23, + 260, + 387, + 70, + 257, + 214, + 105, + 197, + 174, + 144, + 222, + 136, + 546, + 335, + 105, + 1203, + 258, + 199, + 201, + 480, + 396, + 124, + 13, + 259, + 723, + 89, + 257, + 314, + 83, + 215, + 147, + 102, + 19, + 346, + 643, + 193, + 181, + 513, + 109, + 104, + 191, + 107, + 219, + 148, + 400, + 503, + 329, + 194, + 7, + 53, + 345, + 263, + 44, + 207, + 401, + 53, + 349, + 34, + 457, + 193, + 142, + 123, + 65, + 420, + 100, + 403, + 229, + 182, + 183, + 140, + 134, + 234, + 194, + 394, + 408, + 114, + 210, + 243, + 180, + 8, + 313, + 324, + 194, + 165, + 86, + 160, + 492, + 187, + 159, + 124, + 162, + 211, + 73, + 220, + 110, + 168, + 283, + 235, + 138, + 147, + 332, + 396, + 492, + 360, + 97, + 84, + 57, + 105, + 470, + 120, + 298, + 249, + 87, + 622, + 195, + 179, + 58, + 66, + 328, + 21, + 150, + 91, + 19, + 182, + 257, + 280, + 16, + 249, + 184, + 20, + 224, + 172, + 125, + 216, + 109, + 409, + 226, + 13, + 133, + 656, + 206, + 186, + 532, + 97, + 234, + 216, + 297, + 243, + 98, + 190, + 142, + 775, + 335, + 168, + 68, + 119, + 294, + 57, + 297, + 90, + 217, + 26, + 369, + 29, + 214, + 793, + 71, + 167, + 394, + 320, + 618, + 101, + 85, + 224, + 171, + 67, + 269, + 115, + 148, + 507, + 27, + 116, + 124, + 66, + 233, + 380, + 90, + 423, + 215, + 181, + 360, + 155, + 447, + 184, + 138, + 207, + 284, + 70, + 774, + 247, + 277, + 85, + 83, + 71, + 869, + 208, + 199, + 244, + 177, + 217, + 189, + 151, + 24, + 140, + 172, + 396, + 129, + 474, + 268, + 309, + 205, + 347, + 381, + 256, + 211, + 211, + 66, + 610, + 120, + 464, + 522, + 227, + 1376, + 51, + 834, + 106, + 194, + 535, + 182, + 296, + 76, + 359, + 592, + 166, + 369, + 261, + 131, + 592, + 412, + 137, + 266, + 235, + 697, + 1042, + 378, + 383, + 185, + 254, + 107, + 157, + 249, + 112, + 188, + 148, + 145, + 415, + 742, + 37, + 120, + 185, + 204, + 205, + 190, + 325, + 148, + 38, + 625, + 175, + 282, + 438, + 999, + 127, + 289, + 169, + 247, + 140, + 60, + 99, + 128, + 215, + 64, + 52, + 129, + 210, + 657, + 443, + 127, + 446, + 252, + 80, + 144, + 29, + 165, + 723, + 550, + 130, + 146, + 239, + 304, + 139, + 445, + 16, + 169, + 125, + 446, + 267, + 6, + 172, + 94, + 268, + 91, + 465, + 274, + 300, + 191, + 56, + 189, + 236, + 614, + 363, + 418, + 96, + 119, + 10, + 216, + 484, + 485, + 175, + 138, + 243, + 919, + 203, + 247, + 340, + 110, + 165, + 54, + 350, + 47, + 153, + 181, + 747, + 214, + 270, + 37, + 72, + 725, + 213, + 177, + 273, + 98, + 480, + 204, + 117, + 246, + 352, + 190, + 277, + 315, + 225, + 24, + 369, + 167, + 64, + 336, + 59, + 93, + 181, + 86, + 317, + 120, + 388, + 174, + 72, + 126, + 339, + 18, + 129, + 222, + 692, + 262, + 323, + 43, + 56, + 201, + 27, + 361, + 162, + 287, + 147, + 118, + 91, + 111, + 162, + 236, + 73, + 123, + 298, + 86, + 420, + 139, + 164, + 139, + 192, + 226, + 166, + 419, + 179, + 490, + 63, + 27, + 425, + 350, + 103, + 210, + 261, + 115, + 71, + 370, + 232, + 68, + 192, + 494, + 151, + 204, + 180, + 494, + 759, + 85, + 445, + 345, + 648, + 29, + 290, + 634, + 717, + 122, + 951, + 264, + 211, + 97, + 192, + 160, + 97, + 244, + 578, + 190, + 396, + 59, + 111, + 502, + 135, + 29, + 408, + 136, + 141, + 103, + 171, + 93, + 35, + 51, + 17, + 504, + 726, + 542, + 257, + 343, + 206, + 786, + 178, + 509, + 161, + 125, + 159, + 221, + 211, + 240, + 39, + 140, + 53, + 45, + 738, + 161, + 383, + 184, + 122, + 137, + 189, + 418, + 17, + 233, + 445, + 623, + 260, + 316, + 650, + 207, + 104, + 143, + 187, + 748, + 492, + 485, + 197, + 304, + 51, + 836, + 315, + 184, + 563, + 450, + 34, + 371, + 518, + 111, + 176, + 196, + 85, + 172, + 252, + 265, + 393, + 205, + 127, + 38, + 127, + 208, + 518, + 171, + 143, + 572, + 573, + 244, + 240, + 83, + 100, + 890, + 443, + 1162, + 244, + 295, + 86, + 154, + 394, + 312, + 189, + 91, + 446, + 153, + 111, + 72, + 205, + 237, + 230, + 96, + 162, + 69, + 273, + 281, + 175, + 465, + 87, + 292, + 49, + 248, + 108, + 373, + 112, + 229, + 135, + 357, + 152, + 36, + 206, + 66, + 489, + 117, + 149, + 634, + 173, + 151, + 987, + 66, + 139, + 281, + 369, + 88, + 189, + 81, + 59, + 233, + 265, + 173, + 178, + 45, + 86, + 131, + 239, + 165, + 260, + 150, + 155, + 202, + 214, + 206, + 362, + 15, + 250, + 700, + 154, + 190, + 20, + 363, + 110, + 142, + 291, + 293, + 304, + 78, + 407, + 405, + 417, + 101, + 350, + 433, + 253, + 110, + 259, + 260, + 363, + 149, + 174, + 83, + 92, + 245, + 346, + 203, + 206, + 218, + 509, + 128, + 136, + 132, + 3, + 359, + 121, + 154, + 98, + 189, + 302, + 145, + 203, + 254, + 373, + 534, + 225, + 193, + 76, + 298, + 286, + 442, + 206, + 162, + 139, + 124, + 425, + 290, + 152, + 168, + 164, + 322, + 360, + 57, + 700, + 601, + 231, + 135, + 86, + 256, + 415, + 293, + 816, + 435, + 100, + 191, + 58, + 533, + 28, + 63, + 135, + 202, + 181, + 240, + 354, + 210, + 223, + 263, + 85, + 242, + 236, + 246, + 391, + 293, + 245, + 317, + 134, + 110, + 37, + 188, + 911, + 206, + 160, + 260, + 78, + 115, + 99, + 95, + 14, + 438, + 35, + 111, + 252, + 691, + 81, + 153, + 65, + 249, + 161, + 162, + 118, + 397, + 227, + 7, + 465, + 98, + 665, + 80, + 145, + 76, + 152, + 27, + 281, + 284, + 83, + 104, + 50, + 139, + 59, + 258, + 110, + 466, + 254, + 250, + 79, + 125, + 556, + 119, + 268, + 332, + 148, + 160, + 240, + 811, + 221, + 108, + 288, + 1003, + 542, + 541, + 198, + 268, + 154, + 66, + 216, + 206, + 28, + 101, + 186, + 189, + 215, + 216, + 361, + 116, + 150, + 228, + 411, + 253, + 144, + 248, + 138, + 147, + 773, + 122, + 193, + 111, + 166, + 469, + 106, + 165, + 364, + 185, + 451, + 226, + 128, + 97, + 24, + 232, + 201, + 83, + 339, + 478, + 210, + 423, + 114, + 274, + 83, + 123, + 327, + 167, + 34, + 117, + 82, + 76, + 147, + 243, + 700, + 281, + 160, + 138, + 92, + 247, + 253, + 153, + 241, + 211, + 493, + 1438, + 172, + 159, + 29, + 76, + 185, + 569, + 95, + 209, + 372, + 277, + 178, + 95, + 138, + 63, + 77, + 292, + 151, + 298, + 188, + 368, + 203, + 61, + 297, + 219, + 129, + 247, + 266, + 559, + 75, + 82, + 352, + 703, + 100, + 348, + 146, + 34, + 297, + 22, + 106, + 465, + 74, + 245, + 93, + 386, + 283, + 215, + 260, + 267, + 107, + 164, + 427, + 426, + 456, + 105, + 27, + 137, + 100, + 320, + 159, + 353, + 331, + 52, + 117, + 146, + 260, + 60, + 193, + 373, + 336, + 200, + 501, + 80, + 207, + 125, + 237, + 185, + 224, + 312, + 188, + 168, + 322, + 511, + 155, + 161, + 368, + 247, + 142, + 118, + 158, + 129, + 136, + 122, + 120, + 180, + 329, + 204, + 437, + 76, + 422, + 41, + 131, + 130, + 165, + 80, + 470, + 281, + 391, + 228, + 290, + 153, + 76, + 111, + 168, + 14, + 262, + 96, + 208, + 483, + 130, + 754, + 113, + 364, + 227, + 266, + 232, + 172, + 164, + 103, + 297, + 388, + 63, + 212, + 149, + 161, + 165, + 170, + 974, + 96, + 140, + 61, + 252, + 262, + 206, + 248, + 367, + 116, + 115, + 77, + 200, + 90, + 470, + 302, + 81, + 247, + 16, + 863, + 104, + 592, + 85, + 153, + 127, + 190, + 112, + 130, + 167, + 293, + 97, + 596, + 134, + 108, + 65, + 312, + 237, + 130, + 314, + 175, + 87, + 123, + 240, + 109, + 243, + 536, + 120, + 182, + 280, + 215, + 147, + 222, + 404, + 306, + 255, + 252, + 127, + 140, + 200, + 127, + 171, + 629, + 155, + 290, + 159, + 111, + 434, + 218, + 107, + 272, + 574, + 89, + 133, + 114, + 175, + 257, + 208, + 327, + 99, + 293, + 68, + 124, + 150, + 504, + 16, + 100, + 321, + 614, + 93, + 355, + 177, + 245, + 121, + 192, + 110, + 160, + 249, + 131, + 349, + 114, + 445, + 144, + 341, + 796, + 126, + 101, + 91, + 52, + 78, + 471, + 333, + 695, + 70, + 113, + 372, + 603, + 85, + 76, + 535, + 48, + 114, + 169, + 116, + 100, + 212, + 304, + 102, + 207, + 197, + 125, + 114, + 319, + 157, + 160, + 83, + 98, + 133, + 451, + 34, + 79, + 109, + 251, + 122, + 87, + 375, + 51, + 178, + 165, + 155, + 173, + 304, + 583, + 138, + 83, + 543, + 158, + 365, + 118, + 469, + 488, + 232, + 411, + 63, + 207, + 84, + 162, + 159, + 147, + 90, + 409, + 175, + 219, + 96, + 113, + 232, + 251, + 253, + 118, + 140, + 102, + 763, + 97, + 41, + 51, + 241, + 308, + 118, + 14, + 125, + 193, + 200, + 349, + 282, + 633, + 560, + 114, + 172, + 292, + 269, + 73, + 121, + 59, + 64, + 322, + 163, + 99, + 119, + 148, + 222, + 265, + 214, + 75, + 62, + 112, + 220, + 160, + 129, + 578, + 183, + 565, + 154, + 125, + 111, + 231, + 195, + 193, + 287, + 84, + 47, + 130, + 24, + 955, + 336, + 159, + 180, + 163, + 197, + 218, + 34, + 386, + 154, + 159, + 157, + 227, + 116, + 205, + 133, + 59, + 229, + 147, + 179, + 185, + 427, + 171, + 237, + 156, + 162, + 674, + 275, + 142, + 340, + 260, + 35, + 121, + 143, + 472, + 207, + 597, + 274, + 420, + 62, + 185, + 275, + 111, + 271, + 776, + 90, + 330, + 243, + 148, + 514, + 224, + 118, + 255, + 70, + 296, + 313, + 257, + 77, + 114, + 73, + 126, + 168, + 188, + 106, + 45, + 25, + 114, + 33, + 446, + 121, + 78, + 213, + 115, + 305, + 19, + 643, + 371, + 384, + 492, + 144, + 181, + 174, + 293, + 316, + 106, + 255, + 189, + 173, + 155, + 137, + 470, + 139, + 169, + 223, + 596, + 253, + 600, + 133, + 659, + 112, + 124, + 175, + 202, + 185, + 170, + 184, + 261, + 103, + 170, + 235, + 169, + 125, + 265, + 233, + 246, + 290, + 259, + 290, + 148, + 174, + 537, + 316, + 35, + 173, + 144, + 474, + 313, + 147, + 395, + 93, + 166, + 410, + 139, + 95, + 211, + 318, + 207, + 95, + 319, + 27, + 237, + 129, + 116, + 99, + 151, + 376, + 485, + 99, + 305, + 298, + 125, + 219, + 222, + 513, + 321, + 240, + 383, + 301, + 367, + 179, + 160, + 177, + 181, + 377, + 240, + 1590, + 125, + 518, + 280, + 394, + 280, + 312, + 78, + 33, + 212, + 140, + 574, + 182, + 68, + 363, + 347, + 392, + 137, + 749, + 498, + 570, + 142, + 64, + 140, + 453, + 198, + 120, + 40, + 92, + 324, + 436, + 59, + 0, + 93, + 364, + 466, + 345, + 233, + 149, + 304, + 134, + 355, + 953, + 100, + 121, + 22, + 136, + 305, + 8, + 315, + 64, + 3, + 269, + 159, + 185, + 359, + 89, + 179, + 151, + 166, + 132, + 141, + 265, + 452, + 62, + 348, + 354, + 54, + 132, + 34, + 72, + 99, + 290, + 591, + 336, + 29, + 266, + 298, + 1043, + 83, + 282, + 209, + 106, + 157, + 197, + 319, + 371, + 383, + 110, + 97, + 15, + 4, + 256, + 124, + 239, + 20, + 98, + 112, + 350, + 127, + 157, + 165, + 63, + 101, + 133, + 145, + 110, + 349, + 676, + 197, + 235, + 291, + 132, + 165, + 196, + 177, + 342, + 77, + 160, + 22, + 206, + 143, + 102, + 224, + 73, + 42, + 144, + 1224, + 50, + 132, + 108, + 265, + 167, + 145, + 20, + 78, + 153, + 121, + 110, + 117, + 201, + 230, + 152, + 215, + 332, + 385, + 193, + 195, + 198, + 79, + 95, + 130, + 190, + 102, + 231, + 132, + 738, + 283, + 224, + 519, + 593, + 102, + 49, + 88, + 124, + 199, + 58, + 430, + 674, + 112, + 248, + 350, + 252, + 147, + 141, + 163, + 195, + 61, + 95, + 166, + 39, + 212, + 55, + 209, + 68, + 181, + 136, + 373, + 199, + 582, + 210, + 222, + 217, + 85, + 396, + 58, + 263, + 160, + 418, + 64, + 181, + 223, + 204, + 52, + 199, + 195, + 139, + 63, + 226, + 141, + 165, + 156, + 174, + 221, + 104, + 136, + 72, + 125, + 307, + 154, + 357, + 202, + 227, + 166, + 143, + 119, + 268, + 507, + 126, + 268, + 386, + 63, + 75, + 89, + 96, + 209, + 439, + 119, + 713, + 202, + 72, + 78, + 217, + 392, + 188, + 151, + 211, + 249, + 680, + 206, + 227, + 124, + 821, + 189, + 352, + 126, + 211, + 742, + 134, + 143, + 497, + 105, + 294, + 289, + 461, + 162, + 207, + 185, + 67, + 302, + 344, + 8, + 201, + 117, + 226, + 97, + 438, + 174, + 675, + 123, + 145, + 232, + 97, + 91, + 83, + 314, + 149, + 71, + 275, + 170, + 177, + 152, + 157, + 74, + 160, + 272, + 125, + 81, + 189, + 597, + 61, + 53, + 159, + 198, + 132, + 119, + 68, + 99, + 285, + 247, + 81, + 536, + 173, + 269, + 176, + 88, + 279, + 294, + 116, + 217, + 298, + 469, + 67, + 89, + 244, + 136, + 110, + 433, + 66, + 89, + 54, + 172, + 72, + 24, + 357, + 84, + 239, + 383, + 413, + 314, + 315, + 229, + 94, + 338, + 83, + 193, + 249, + 629, + 202, + 471, + 217, + 94, + 397, + 157, + 238, + 389, + 376, + 23, + 251, + 115, + 259, + 330, + 198, + 429, + 362, + 99, + 207, + 297, + 172, + 180, + 57, + 424, + 109, + 52, + 26, + 643, + 77, + 95, + 463, + 25, + 104, + 340, + 325, + 1277, + 363, + 245, + 313, + 140, + 25, + 157, + 386, + 593, + 176, + 48, + 51, + 99, + 452, + 187, + 110, + 85, + 234, + 264, + 233, + 611, + 600, + 92, + 158, + 438, + 205, + 342, + 249, + 75, + 314, + 109, + 456, + 92, + 223, + 148, + 205, + 80, + 357, + 23, + 171, + 90, + 55, + 51, + 245, + 318, + 105, + 191, + 300, + 82, + 153, + 194, + 212, + 185, + 87, + 145, + 585, + 136, + 146, + 180, + 376, + 100, + 75, + 334, + 92, + 750, + 333, + 118, + 620, + 193, + 138, + 155, + 140, + 127, + 54, + 203, + 128, + 184, + 148, + 244, + 107, + 217, + 78, + 129, + 52, + 41, + 285, + 14, + 182, + 37, + 162, + 285, + 74, + 203, + 186, + 283, + 44, + 205, + 291, + 159, + 148, + 57, + 193, + 744, + 84, + 254, + 135, + 247, + 119, + 619, + 514, + 111, + 418, + 56, + 413, + 257, + 199, + 471, + 155, + 66, + 103, + 358, + 514, + 27, + 544, + 134, + 135, + 359, + 322, + 144, + 445, + 356, + 102, + 187, + 152, + 49, + 177, + 106, + 146, + 404, + 413, + 177, + 201, + 609, + 251, + 35, + 473, + 596, + 370, + 691, + 70, + 77, + 212, + 245, + 544, + 117, + 410, + 179, + 896, + 365, + 158, + 82, + 206, + 162, + 936, + 162, + 344, + 71, + 178, + 52, + 409, + 272, + 87, + 441, + 175, + 164, + 932, + 13, + 139, + 263, + 26, + 455, + 180, + 200, + 1026, + 364, + 153, + 617, + 99, + 129, + 200, + 431, + 417, + 480, + 359, + 535, + 13, + 689, + 242, + 665, + 97, + 207, + 480, + 609, + 116, + 217, + 112, + 184, + 293, + 195, + 166, + 85, + 48, + 410, + 40, + 81, + 558, + 77, + 70, + 229, + 565, + 176, + 105, + 225, + 58, + 260, + 199, + 399, + 637, + 107, + 68, + 182, + 553, + 310, + 206, + 119, + 764, + 126, + 251, + 188, + 368, + 414, + 685, + 1611, + 203, + 74, + 118, + 752, + 241, + 430, + 67, + 294, + 110, + 58, + 191, + 130, + 76, + 336, + 59, + 72, + 127, + 347, + 286, + 29, + 55, + 228, + 128, + 96, + 147, + 56, + 39, + 384, + 240, + 238, + 194, + 273, + 57, + 859, + 245, + 238, + 53, + 364, + 106, + 382, + 191, + 483, + 253, + 328, + 155, + 233, + 66, + 134, + 197, + 645, + 81, + 201, + 248, + 660, + 182, + 30, + 101, + 76, + 152, + 86, + 95, + 23, + 151, + 95, + 52, + 52, + 421, + 52, + 139, + 231, + 120, + 67, + 50, + 86, + 139, + 43, + 233, + 230, + 177, + 149, + 324, + 287, + 58, + 226, + 151, + 57, + 133, + 171, + 62, + 91, + 172, + 498, + 85, + 224, + 242, + 192, + 160, + 147, + 87, + 199, + 65, + 150, + 57, + 234, + 521, + 555, + 86, + 204, + 222, + 162, + 648, + 659, + 96, + 56, + 152, + 25, + 491, + 108, + 198, + 135, + 69, + 138, + 327, + 295, + 255, + 523, + 103, + 107, + 65, + 556, + 115, + 180, + 87, + 435, + 132, + 312, + 283, + 182, + 91, + 417, + 160, + 171, + 210, + 135, + 461, + 171, + 68, + 120, + 381, + 278, + 149, + 197, + 61, + 275, + 201, + 724, + 197, + 143, + 153, + 197, + 120, + 254, + 118, + 151, + 114, + 274, + 156, + 251, + 104, + 65, + 75, + 157, + 165, + 314, + 109, + 219, + 868, + 448, + 58, + 127, + 170, + 208, + 134, + 129, + 184, + 371, + 145, + 136, + 363, + 143, + 56, + 298, + 47, + 827, + 83, + 570, + 557, + 59, + 170, + 422, + 76, + 238, + 111, + 84, + 371, + 103, + 206, + 265, + 254, + 33, + 1212, + 201, + 515, + 178, + 422, + 76, + 296, + 58, + 60, + 522, + 159, + 113, + 123, + 148, + 322, + 475, + 224, + 88, + 152, + 97, + 113, + 465, + 294, + 224, + 142, + 825, + 116, + 103, + 31, + 66, + 512, + 188, + 80, + 398, + 62, + 265, + 256, + 199, + 510, + 355, + 150, + 159, + 170, + 243, + 267, + 167, + 78, + 363, + 109, + 67, + 41, + 156, + 108, + 408, + 272, + 135, + 107, + 742, + 138, + 363, + 339, + 161, + 28, + 170, + 66, + 274, + 136, + 62, + 58, + 135, + 319, + 352, + 230, + 171, + 66, + 130, + 390, + 101, + 78, + 100, + 212, + 181, + 72, + 390, + 324, + 163, + 110, + 231, + 833, + 124, + 57, + 115, + 43, + 229, + 86, + 30, + 288, + 85, + 76, + 170, + 370, + 137, + 153, + 281, + 46, + 26, + 104, + 205, + 34, + 292, + 135, + 84, + 435, + 29, + 510, + 122, + 43, + 223, + 288, + 306, + 53, + 41, + 147, + 81, + 232, + 60, + 141, + 206, + 170, + 25, + 120, + 123, + 58, + 395, + 72, + 100, + 80, + 132, + 140, + 130, + 71, + 108, + 150, + 90, + 361, + 372, + 360, + 63, + 550, + 175, + 202, + 192, + 403, + 338, + 205, + 92, + 185, + 163, + 367, + 26, + 493, + 113, + 215, + 177, + 123, + 1075, + 163, + 245, + 258, + 651, + 409, + 283, + 144, + 67, + 64, + 384, + 60, + 26, + 151, + 464, + 68, + 185, + 128, + 88, + 266, + 490, + 232, + 537, + 464, + 447, + 164, + 184, + 373, + 42, + 132, + 579, + 180, + 159, + 239, + 95, + 156, + 174, + 59, + 273, + 223, + 76, + 920, + 152, + 113, + 369, + 445, + 142, + 317, + 184, + 82, + 83, + 209, + 210, + 278, + 69, + 143, + 302, + 148, + 481, + 121, + 180, + 312, + 147, + 154, + 326, + 362, + 72, + 121, + 101, + 306, + 94, + 250, + 562, + 302, + 46, + 149, + 88, + 426, + 123, + 221, + 169, + 102, + 214, + 572, + 105, + 171, + 50, + 31, + 304, + 469, + 45, + 249, + 85, + 79, + 70, + 758, + 200, + 87, + 966, + 430, + 147, + 131, + 541, + 281, + 158, + 201, + 56, + 187, + 409, + 269, + 221, + 276, + 282, + 198, + 102, + 60, + 252, + 23, + 200, + 1330, + 157, + 218, + 548, + 176, + 335, + 142, + 267, + 86, + 129, + 322, + 111, + 106, + 29, + 150, + 140, + 144, + 171, + 132, + 288, + 230, + 685, + 82, + 345, + 80, + 204, + 360, + 126, + 148, + 267, + 290, + 136, + 127, + 32, + 164, + 92, + 53, + 349, + 178, + 532, + 164, + 35, + 20, + 154, + 930, + 392, + 261, + 289, + 227, + 115, + 154, + 100, + 61, + 205, + 468, + 358, + 1576, + 83, + 28, + 92, + 217, + 134, + 110, + 16, + 402, + 689, + 716, + 43, + 39, + 194, + 984, + 59, + 20, + 359, + 180, + 94, + 232, + 152, + 70, + 48, + 201, + 209, + 67, + 87, + 450, + 174, + 20, + 73, + 267, + 69, + 542, + 301, + 207, + 159, + 117, + 159, + 161, + 206, + 438, + 250, + 46, + 147, + 275, + 236, + 112, + 361, + 953, + 148, + 233, + 103, + 579, + 183, + 117, + 175, + 186, + 68, + 157, + 131, + 56, + 447, + 342, + 22, + 150, + 110, + 166, + 404, + 170, + 80, + 164, + 291, + 126, + 349, + 384, + 440, + 143, + 284, + 123, + 771, + 132, + 45, + 21, + 243, + 145, + 288, + 23, + 406, + 393, + 116, + 25, + 75, + 54, + 404, + 179, + 102, + 110, + 227, + 194, + 303, + 366, + 220, + 231, + 119, + 41, + 495, + 128, + 185, + 138, + 418, + 208, + 177, + 249, + 84, + 338, + 299, + 282, + 435, + 51, + 188, + 231, + 58, + 615, + 192, + 319, + 860, + 680, + 165, + 356, + 235, + 173, + 216, + 177, + 220, + 633, + 94, + 35, + 35, + 263, + 108, + 245, + 327, + 320, + 236, + 201, + 443, + 59, + 72, + 199, + 589, + 199, + 113, + 179, + 61, + 107, + 1340, + 129, + 239, + 178, + 81, + 137, + 72, + 246, + 199, + 372, + 167, + 30, + 189, + 277, + 215, + 133, + 183, + 134, + 157, + 81, + 441, + 662, + 230, + 323, + 380, + 214, + 136, + 350, + 56, + 497, + 184, + 68, + 11, + 397, + 164, + 1030, + 266, + 143, + 229, + 342, + 340, + 59, + 77, + 157, + 199, + 118, + 254, + 281, + 269, + 203, + 140, + 148, + 583, + 172, + 68, + 267, + 19, + 604, + 290, + 78, + 88, + 550, + 52, + 235, + 159, + 120, + 1516, + 281, + 83, + 457, + 25, + 622, + 89, + 71, + 407, + 250, + 111, + 462, + 28, + 131, + 267, + 213, + 129, + 89, + 105, + 406, + 166, + 67, + 121, + 18, + 355, + 299, + 109, + 142, + 194, + 365, + 16, + 105, + 148, + 386, + 98, + 193, + 132, + 279, + 109, + 1045, + 361, + 204, + 83, + 105, + 73, + 29, + 355, + 153, + 87, + 178, + 174, + 605, + 89, + 121, + 216, + 83, + 184, + 161, + 301, + 276, + 182, + 87, + 377, + 211, + 357, + 119, + 264, + 165, + 148, + 121, + 90, + 367, + 444, + 141, + 283, + 123, + 85, + 71, + 525, + 238, + 217, + 433, + 52, + 149, + 357, + 140, + 154, + 219, + 251, + 544, + 79, + 103, + 97, + 205, + 344, + 204, + 156, + 213, + 153, + 29, + 15, + 654, + 139, + 85, + 187, + 188, + 298, + 113, + 201, + 264, + 23, + 180, + 95, + 69, + 324, + 298, + 134, + 245, + 121, + 49, + 606, + 489, + 184, + 106, + 91, + 249, + 92, + 404, + 135, + 37, + 117, + 174, + 285, + 112, + 208, + 135, + 179, + 126, + 126, + 209, + 192, + 341, + 52, + 84, + 341, + 244, + 423, + 65, + 87, + 34, + 169, + 39, + 69, + 299, + 80, + 729, + 389, + 165, + 216, + 201, + 172, + 702, + 112, + 140, + 382, + 128, + 175, + 147, + 292, + 156, + 570, + 399, + 222, + 243, + 74, + 243, + 38, + 178, + 80, + 75, + 65, + 168, + 221, + 119, + 773, + 104, + 870, + 400, + 112, + 283, + 56, + 224, + 172, + 636, + 63, + 487, + 221, + 92, + 48, + 97, + 69, + 333, + 78, + 131, + 155, + 41, + 133, + 57, + 21, + 47, + 89, + 163, + 327, + 73, + 428, + 41, + 271, + 175, + 647, + 21, + 463, + 141, + 166, + 67, + 263, + 133, + 124, + 331, + 174, + 190, + 145, + 139, + 90, + 52, + 170, + 91, + 47, + 52, + 81, + 39, + 36, + 627, + 83, + 166, + 72, + 22, + 272, + 152, + 109, + 290, + 257, + 21, + 153, + 202, + 265, + 234, + 53, + 370, + 355, + 280, + 237, + 147, + 83, + 103, + 118, + 80, + 127, + 160, + 57, + 227, + 115, + 267, + 227, + 113, + 23, + 64, + 71, + 168, + 581, + 52, + 511, + 201, + 170, + 61, + 256, + 137, + 20, + 387, + 140, + 400, + 190, + 432, + 82, + 94, + 221, + 741, + 40, + 313, + 128, + 163, + 21, + 17, + 197, + 622, + 175, + 423, + 181, + 181, + 77, + 158, + 517, + 26, + 127, + 105, + 152, + 337, + 955, + 729, + 159, + 330, + 130, + 314, + 193, + 53, + 231, + 353, + 805, + 102, + 869, + 65, + 115, + 460, + 561, + 93, + 989, + 209, + 295, + 110, + 18, + 221, + 138, + 214, + 75, + 718, + 394, + 27, + 1011, + 204, + 222, + 240, + 18, + 31, + 173, + 246, + 128, + 285, + 451, + 96, + 172, + 234, + 240, + 175, + 372, + 406, + 463, + 130, + 178, + 94, + 82, + 40, + 164, + 582, + 188, + 432, + 118, + 193, + 63, + 246, + 143, + 249, + 219, + 447, + 220, + 26, + 79, + 18, + 404, + 186, + 351, + 60, + 72, + 19, + 49, + 106, + 248, + 101, + 114, + 414, + 266, + 363, + 431, + 110, + 113, + 161, + 29, + 672, + 80, + 1994, + 183, + 250, + 223, + 100, + 188, + 64, + 83, + 122, + 51, + 330, + 272, + 307, + 24, + 386, + 56, + 358, + 227, + 52, + 360, + 106, + 141, + 28, + 97, + 107, + 168, + 260, + 78, + 262, + 84, + 173, + 968, + 71, + 136, + 464, + 176, + 193, + 118, + 185, + 247, + 800, + 216, + 46, + 434, + 230, + 516, + 78, + 1041, + 66, + 100, + 308, + 341, + 1288, + 178, + 163, + 172, + 140, + 311, + 212, + 264, + 319, + 186, + 473, + 18, + 639, + 129, + 426, + 229, + 252, + 292, + 44, + 384, + 213, + 94, + 72, + 36, + 316, + 217, + 180, + 562, + 422, + 17, + 174, + 261, + 122, + 165, + 59, + 103, + 187, + 286, + 52, + 197, + 262, + 100, + 350, + 30, + 213, + 207, + 24, + 36, + 139, + 322, + 190, + 159, + 191, + 10, + 1330, + 48, + 236, + 503, + 108, + 47, + 319, + 42, + 461, + 86, + 197, + 80, + 113, + 613, + 1271, + 155, + 466, + 298, + 306, + 85, + 298, + 143, + 21, + 354, + 56, + 354, + 164, + 136, + 303, + 158, + 118, + 145, + 39, + 82, + 355, + 151, + 59, + 342, + 207, + 128, + 304, + 42, + 27, + 396, + 520, + 93, + 70, + 95, + 392, + 25, + 94, + 197, + 446, + 100, + 252, + 100, + 112, + 28, + 145, + 82, + 152, + 606, + 288, + 135, + 50, + 119, + 160, + 23, + 75, + 383, + 26, + 174, + 61, + 59, + 33, + 31, + 109, + 19, + 68, + 491, + 127, + 1291, + 221, + 214, + 123, + 74, + 82, + 164, + 256, + 86, + 358, + 107, + 238, + 38, + 78, + 113, + 529, + 464, + 108, + 181, + 226, + 85, + 540, + 196, + 74, + 123, + 232, + 157, + 216, + 79, + 220, + 140, + 163, + 77, + 772, + 72, + 422, + 99, + 174, + 233, + 322, + 443, + 217, + 257, + 254, + 83, + 213, + 252, + 36, + 540, + 683, + 230, + 452, + 149, + 172, + 122, + 63, + 100, + 255, + 217, + 176, + 331, + 91, + 63, + 173, + 128, + 76, + 411, + 179, + 139, + 329, + 225, + 186, + 80, + 190, + 104, + 174, + 37, + 589, + 183, + 151, + 29, + 522, + 112, + 149, + 206, + 123, + 81, + 250, + 173, + 127, + 198, + 311, + 91, + 47, + 119, + 117, + 142, + 183, + 249, + 274, + 144, + 23, + 128, + 162, + 213, + 164, + 63, + 114, + 136, + 97, + 240, + 78, + 340, + 196, + 85, + 199, + 160, + 166, + 271, + 317, + 98, + 123, + 321, + 73, + 327, + 198, + 24, + 352, + 559, + 440, + 479, + 514, + 91, + 78, + 318, + 295, + 83, + 346, + 238, + 290, + 222, + 90, + 171, + 170, + 493, + 17, + 316, + 782, + 137, + 419, + 223, + 71, + 152, + 152, + 22, + 130, + 135, + 220, + 258, + 306, + 436, + 92, + 155, + 371, + 216, + 243, + 178, + 100, + 445, + 332, + 90, + 204, + 271, + 87, + 237, + 388, + 59, + 753, + 42, + 182, + 250, + 95, + 126, + 138, + 94, + 44, + 135, + 154, + 115, + 107, + 308, + 129, + 33, + 296, + 126, + 73, + 69, + 76, + 54, + 129, + 101, + 27, + 42, + 29, + 47, + 305, + 95, + 103, + 453, + 71, + 29, + 109, + 240, + 916, + 363, + 281, + 442, + 68, + 181, + 88, + 197, + 133, + 439, + 232, + 63, + 191, + 64, + 354, + 300, + 105, + 339, + 261, + 314, + 219, + 139, + 98, + 694, + 68, + 165, + 275, + 83, + 76, + 145, + 288, + 78, + 26, + 49, + 241, + 362, + 125, + 40, + 113, + 68, + 62, + 886, + 100, + 61, + 436, + 119, + 553, + 81, + 119, + 33, + 148, + 437, + 134, + 63, + 340, + 103, + 247, + 257, + 59, + 127, + 183, + 142, + 678, + 211, + 201, + 105, + 100, + 181, + 389, + 203, + 450, + 85, + 203, + 30, + 268, + 148, + 427, + 90, + 177, + 328, + 133, + 516, + 184, + 394, + 157, + 375, + 184, + 162, + 215, + 230, + 150, + 213, + 126, + 70, + 141, + 287, + 83, + 124, + 67, + 904, + 274, + 152, + 158, + 203, + 138, + 107, + 48, + 218, + 222, + 378, + 58, + 307, + 136, + 542, + 265, + 84, + 410, + 93, + 403, + 36, + 109, + 90, + 305, + 781, + 112, + 423, + 171, + 110, + 138, + 126, + 137, + 125, + 202, + 123, + 106, + 112, + 108, + 149, + 151, + 165, + 92, + 91, + 406, + 12, + 128, + 146, + 278, + 753, + 48, + 385, + 97, + 223, + 309, + 155, + 46, + 252, + 93, + 344, + 128, + 436, + 186, + 264, + 237, + 72, + 77, + 64, + 351, + 119, + 394, + 174, + 100, + 56, + 133, + 134, + 185, + 167, + 30, + 77, + 136, + 320, + 138, + 75, + 72, + 160, + 138, + 122, + 919, + 558, + 73, + 98, + 54, + 58, + 118, + 127, + 309, + 582, + 317, + 281, + 410, + 186, + 37, + 88, + 312, + 602, + 1178, + 130, + 226, + 640, + 340, + 138, + 298, + 462, + 320, + 69, + 190, + 130, + 316, + 166, + 168, + 247, + 153, + 238, + 211, + 111, + 161, + 361, + 700, + 83, + 247, + 252, + 559, + 190, + 10, + 109, + 82, + 143, + 61, + 424, + 140, + 157, + 157, + 110, + 69, + 241, + 757, + 68, + 171, + 182, + 270, + 192, + 104, + 325, + 144, + 57, + 184, + 109, + 100, + 114, + 109, + 186, + 187, + 580, + 81, + 93, + 106, + 78, + 55, + 204, + 408, + 147, + 119, + 133, + 195, + 108, + 92, + 146, + 206, + 452, + 163, + 35, + 96, + 119, + 265, + 179, + 162, + 223, + 210, + 193, + 822, + 163, + 339, + 140, + 77, + 73, + 42, + 24, + 147, + 145, + 141, + 263, + 123, + 208, + 100, + 644, + 289, + 124, + 157, + 226, + 136, + 541, + 50, + 250, + 181, + 32, + 235, + 121, + 215, + 320, + 382, + 286, + 1021, + 203, + 209, + 39, + 162, + 418, + 348, + 135, + 401, + 332, + 78, + 394, + 287, + 266, + 153, + 298, + 66, + 62, + 50, + 599, + 92, + 52, + 92, + 99, + 27, + 41, + 191, + 523, + 358, + 46, + 112, + 359, + 88, + 342, + 78, + 76, + 420, + 41, + 442, + 41, + 178, + 36, + 20, + 15, + 87, + 298, + 244, + 169, + 14, + 81, + 162, + 18, + 111, + 102, + 19, + 394, + 301, + 341, + 406, + 226, + 168, + 703, + 119, + 314, + 182, + 362, + 142, + 17, + 26, + 141, + 14, + 80, + 368, + 303, + 77, + 295, + 69, + 143, + 153, + 83, + 214, + 118, + 638, + 222, + 78, + 260, + 150, + 62, + 100, + 138, + 329, + 331, + 131, + 315, + 37, + 45, + 33, + 117, + 170, + 287, + 43, + 110, + 193, + 187, + 198, + 256, + 285, + 160, + 442, + 183, + 83, + 128, + 57, + 173, + 145, + 116, + 126, + 83, + 196, + 75, + 123, + 138, + 355, + 115, + 147, + 133, + 134, + 60, + 147, + 296, + 70, + 156, + 187, + 269, + 71, + 483, + 881, + 121, + 98, + 243, + 181, + 139, + 198, + 132, + 129, + 72, + 285, + 255, + 241, + 705, + 423, + 43, + 48, + 107, + 61, + 157, + 105, + 98, + 189, + 652, + 206, + 174, + 150, + 91, + 78, + 79, + 139, + 89, + 168, + 436, + 88, + 171, + 130, + 50, + 49, + 259, + 79, + 128, + 108, + 187, + 67, + 344, + 167, + 226, + 179, + 353, + 161, + 346, + 269, + 229, + 24, + 16, + 88, + 291, + 166, + 92, + 254, + 19, + 176, + 1162, + 74, + 291, + 370, + 495, + 57, + 107, + 66, + 167, + 668, + 204, + 170, + 63, + 133, + 153, + 118, + 117, + 572, + 59, + 42, + 408, + 314, + 277, + 140, + 424, + 159, + 96, + 167, + 200, + 75, + 249, + 134, + 50, + 173, + 854, + 236, + 183, + 185, + 41, + 138, + 411, + 394, + 209, + 266, + 134, + 311, + 93, + 213, + 641, + 61, + 136, + 187, + 76, + 406, + 544, + 363, + 271, + 70, + 198, + 398, + 979, + 89, + 135, + 420, + 235, + 169, + 343, + 88, + 68, + 77, + 116, + 363, + 116, + 637, + 117, + 128, + 269, + 150, + 132, + 1208, + 228, + 585, + 229, + 441, + 60, + 47, + 270, + 26, + 386, + 54, + 284, + 53, + 245, + 151, + 64, + 205, + 250, + 66, + 137, + 72, + 284, + 126, + 120, + 48, + 1062, + 283, + 295, + 37, + 18, + 18, + 350, + 421, + 112, + 744, + 102, + 261, + 190, + 114, + 680, + 185, + 156, + 394, + 37, + 417, + 154, + 533, + 122, + 113, + 220, + 15, + 97, + 199, + 142, + 417, + 192, + 443, + 115, + 54, + 159, + 335, + 104, + 236, + 300, + 163, + 156, + 103, + 187, + 310, + 147, + 129, + 208, + 124, + 67, + 1218, + 362, + 132, + 55, + 105, + 355, + 466, + 94, + 227, + 387, + 379, + 205, + 332, + 200, + 476, + 290, + 26, + 632, + 316, + 440, + 52, + 190, + 81, + 58, + 356, + 221, + 453, + 248, + 324, + 609, + 392, + 422, + 101, + 112, + 308, + 43, + 149, + 36, + 324, + 209, + 119, + 13, + 11, + 255, + 50, + 373, + 18, + 108, + 307, + 78, + 376, + 188, + 443, + 802, + 36, + 18, + 89, + 359, + 19, + 404, + 13, + 297, + 300, + 37, + 61, + 793, + 1195, + 61, + 96, + 399, + 121, + 84, + 108, + 48, + 129, + 230, + 37, + 25, + 77, + 313, + 114, + 119, + 305, + 49, + 99, + 378, + 491, + 203, + 135, + 626, + 16, + 125, + 354, + 507, + 140, + 113, + 249, + 255, + 55, + 340, + 156, + 375, + 43, + 604, + 29, + 160, + 136, + 82, + 122, + 185, + 147, + 575, + 172, + 394, + 176, + 37, + 297, + 593, + 340, + 149, + 348, + 446, + 111, + 34, + 197, + 144, + 430, + 268, + 252, + 395, + 170, + 147, + 127, + 22, + 109, + 677, + 167, + 105, + 57, + 220, + 1082, + 248, + 11, + 161, + 653, + 193, + 216, + 291, + 223, + 96, + 477, + 446, + 159, + 178, + 635, + 136, + 69, + 521, + 201, + 142, + 66, + 138, + 574, + 145, + 335, + 330, + 361, + 64, + 221, + 90, + 254, + 77, + 374, + 191, + 370, + 253, + 786, + 136, + 162, + 219, + 177, + 252, + 416, + 52, + 32, + 217, + 93, + 246, + 197, + 163, + 63, + 67, + 605, + 1411, + 83, + 419, + 498, + 202, + 21, + 40, + 207, + 238, + 318, + 232, + 153, + 97, + 216, + 142, + 290, + 559, + 67, + 107, + 74, + 359, + 73, + 16, + 65, + 722, + 133, + 288, + 120, + 43, + 30, + 219, + 164, + 148, + 11, + 130, + 140, + 559, + 224, + 177, + 405, + 69, + 1017, + 385, + 237, + 202, + 153, + 163, + 97, + 399, + 184, + 155, + 89, + 92, + 296, + 92, + 149, + 354, + 106, + 549, + 267, + 117, + 15, + 216, + 225, + 233, + 129, + 339, + 112, + 9, + 26, + 55, + 2635, + 138, + 326, + 179, + 262, + 168, + 193, + 241, + 37, + 189, + 89, + 112, + 489, + 241, + 60, + 61, + 62, + 43, + 170, + 22, + 99, + 394, + 42, + 98, + 114, + 167, + 206, + 160, + 156, + 512, + 109, + 99, + 241, + 59, + 63, + 54, + 87, + 122, + 375, + 50, + 124, + 157, + 45, + 577, + 134, + 170, + 124, + 111, + 368, + 25, + 41, + 361, + 493, + 470, + 282, + 48, + 606, + 74, + 79, + 153, + 513, + 139, + 273, + 115, + 280, + 109, + 64, + 235, + 95, + 231, + 31, + 64, + 1276, + 27, + 188, + 329, + 45, + 98, + 75, + 60, + 269, + 307, + 485, + 115, + 351, + 113, + 471, + 256, + 108, + 63, + 166, + 123, + 633, + 160, + 245, + 98, + 37, + 374, + 172, + 74, + 111, + 38, + 205, + 168, + 19, + 534, + 232, + 126, + 237, + 26, + 109, + 84, + 11, + 415, + 44, + 446, + 459, + 398, + 248, + 154, + 127, + 591, + 165, + 170, + 618, + 110, + 40, + 519, + 39, + 36, + 67, + 825, + 55, + 172, + 15, + 150, + 19, + 47, + 134, + 9, + 176, + 25, + 238, + 17, + 9, + 14, + 267, + 11, + 12, + 8, + 76, + 9, + 28, + 47, + 31, + 11, + 81, + 29, + 20, + 152, + 29, + 25, + 34, + 10, + 34, + 17, + 134, + 17, + 268, + 22, + 82, + 16, + 9, + 10, + 123, + 8, + 16, + 179, + 13, + 14, + 524, + 23, + 126, + 15, + 7, + 40, + 15, + 4, + 12, + 77, + 7, + 11, + 20, + 10, + 285, + 39, + 37, + 7, + 205, + 9, + 46, + 253, + 10, + 220, + 51, + 407, + 9, + 110, + 11, + 161, + 44, + 13, + 79, + 212, + 78, + 129, + 65, + 9, + 100, + 86, + 8, + 258, + 16, + 27, + 12, + 11, + 155, + 81, + 116, + 10, + 16, + 84, + 804, + 241, + 10, + 23, + 43, + 14, + 8, + 9, + 73, + 14, + 78, + 590, + 13, + 40, + 74, + 27, + 13, + 23, + 160, + 14, + 20, + 9, + 26, + 48, + 13, + 9, + 13, + 55, + 10, + 41, + 7, + 92, + 101, + 75, + 17, + 184, + 23, + 78, + 601, + 13, + 31, + 294, + 36, + 15, + 87, + 38, + 61, + 45, + 42, + 23, + 24, + 152, + 31, + 236, + 20, + 14, + 37, + 47, + 34, + 250, + 221, + 21, + 14, + 94, + 111, + 19, + 274, + 819, + 12, + 21, + 14, + 11, + 9, + 109, + 21, + 7, + 18, + 24, + 61, + 6, + 114, + 44, + 10, + 26, + 18, + 8, + 15, + 39, + 48, + 18, + 35, + 13, + 22, + 11, + 447, + 492, + 11, + 9, + 9, + 11, + 12, + 86, + 46, + 32, + 124, + 52, + 145, + 8, + 12, + 16, + 41, + 20, + 9, + 202, + 310, + 204, + 298, + 85, + 82, + 72, + 53, + 123, + 364, + 655, + 640, + 339, + 216, + 165, + 137, + 62, + 56, + 790, + 481, + 32, + 183, + 214, + 351, + 51, + 89, + 347, + 372, + 75, + 249, + 268, + 333, + 67, + 162, + 67, + 168, + 71, + 151, + 91, + 281, + 375, + 168, + 305, + 650, + 178, + 465, + 322, + 271, + 138, + 215, + 318, + 253, + 301, + 197, + 71, + 190, + 150, + 150, + 182, + 176, + 565, + 138, + 406, + 529, + 381, + 59, + 198, + 80, + 433, + 159, + 513, + 207, + 120, + 121, + 95, + 111, + 302, + 212, + 154, + 181, + 32, + 392, + 162, + 634, + 79, + 148, + 103, + 141, + 244, + 250, + 140, + 216, + 397, + 76, + 135, + 131, + 102, + 153, + 291, + 185, + 281, + 114, + 183, + 111, + 56, + 101, + 247, + 125, + 322, + 182, + 117, + 198, + 123, + 45, + 85, + 146, + 103, + 27, + 117, + 124, + 141, + 138, + 266, + 203, + 118, + 98, + 202, + 158, + 224, + 73, + 111, + 69, + 104, + 252, + 260, + 450, + 381, + 281, + 128, + 58, + 108, + 54, + 249, + 102, + 215, + 428, + 157, + 242, + 117, + 80, + 36, + 89, + 173, + 150, + 292, + 150, + 426, + 55, + 86, + 359, + 305, + 92, + 86, + 340, + 125, + 196, + 484, + 56, + 245, + 156, + 221, + 1992, + 143, + 157, + 420, + 289, + 307, + 723, + 660, + 63, + 96, + 220, + 144, + 97, + 44, + 79, + 71, + 348, + 144, + 203, + 106, + 60, + 134, + 108, + 33, + 957, + 83, + 158, + 269, + 202, + 149, + 111, + 188, + 211, + 24, + 109, + 452, + 269, + 206, + 228, + 183, + 267, + 414, + 60, + 125, + 172, + 84, + 412, + 130, + 115, + 51, + 89, + 108, + 97, + 203, + 42, + 991, + 652, + 178, + 306, + 354, + 100, + 501, + 93, + 381, + 251, + 515, + 389, + 155, + 225, + 172, + 202, + 155, + 277, + 167, + 194, + 566, + 111, + 43, + 433, + 49, + 634, + 52, + 64, + 99, + 133, + 169, + 68, + 30, + 246, + 219, + 165, + 105, + 217, + 538, + 164, + 46, + 64, + 105, + 253, + 260, + 126, + 121, + 101, + 400, + 178, + 134, + 104, + 692, + 85, + 678, + 96, + 106, + 137, + 53, + 89, + 45, + 407, + 426, + 286, + 1576, + 468, + 178, + 327, + 235, + 333, + 297, + 668, + 65, + 1044, + 141, + 39, + 53, + 548, + 95, + 273, + 304, + 425, + 339, + 92, + 107, + 148, + 125, + 181, + 99, + 518, + 164, + 397, + 148, + 89, + 181, + 111, + 227, + 107, + 1434, + 176, + 179, + 63, + 200, + 250, + 161, + 39, + 66, + 118, + 116, + 128, + 104, + 107, + 401, + 64, + 758, + 111, + 360, + 239, + 240, + 127, + 412, + 244, + 62, + 41, + 559, + 300, + 64, + 328, + 232, + 259, + 1103, + 66, + 190, + 61, + 74, + 94, + 69, + 497, + 21, + 223, + 207, + 137, + 459, + 217, + 247, + 289, + 173, + 130, + 332, + 183, + 94, + 385, + 118, + 199, + 240, + 128, + 199, + 199, + 39, + 256, + 161, + 461, + 187, + 201, + 206, + 297, + 130, + 480, + 445, + 554, + 46, + 254, + 224, + 118, + 295, + 174, + 243, + 111, + 451, + 154, + 162, + 933, + 110, + 448, + 120, + 151, + 199, + 97, + 531, + 41, + 130, + 236, + 532, + 136, + 337, + 1467, + 117, + 234, + 387, + 500, + 267, + 313, + 535, + 175, + 188, + 141, + 422, + 354, + 209, + 194, + 166, + 1165, + 113, + 98, + 190, + 104, + 88, + 316, + 211, + 208, + 167, + 108, + 299, + 238, + 281, + 270, + 234, + 68, + 107, + 159, + 247, + 97, + 228, + 293, + 88, + 143, + 273, + 152, + 87, + 339, + 98, + 70, + 264, + 280, + 164, + 25, + 196, + 95, + 116, + 305, + 263, + 210, + 333, + 627, + 100, + 75, + 416, + 51, + 576, + 160, + 96, + 543, + 182, + 104, + 13, + 167, + 317, + 74, + 422, + 447, + 380, + 371, + 122, + 159, + 79, + 261, + 234, + 146, + 407, + 416, + 756, + 500, + 352, + 164, + 100, + 245, + 95, + 88, + 78, + 422, + 167, + 336, + 112, + 221, + 624, + 53, + 279, + 136, + 242, + 185, + 9, + 205, + 131, + 15, + 192, + 118, + 219, + 342, + 140, + 161, + 259, + 491, + 220, + 141, + 109, + 259, + 183, + 24, + 216, + 58, + 123, + 146, + 191, + 175, + 395, + 144, + 425, + 59, + 208, + 85, + 82, + 523, + 144, + 152, + 119, + 136, + 85, + 524, + 377, + 286, + 42, + 711, + 238, + 136, + 367, + 217, + 260, + 116, + 176, + 130, + 130, + 272, + 71, + 185, + 253, + 154, + 154, + 201, + 46, + 191, + 362, + 287, + 220, + 249, + 120, + 113, + 359, + 443, + 402, + 165, + 143, + 186, + 145, + 125, + 156, + 630, + 116, + 188, + 199, + 545, + 156, + 483, + 165, + 197, + 245, + 113, + 173, + 214, + 206, + 143, + 259, + 154, + 163, + 123, + 297, + 86, + 122, + 116, + 338, + 212, + 586, + 413, + 293, + 528, + 220, + 604, + 159, + 220, + 285, + 96, + 215, + 163, + 121, + 185, + 297, + 266, + 491, + 303, + 112, + 306, + 1027, + 338, + 138, + 210, + 58, + 305, + 283, + 360, + 216, + 327, + 317, + 76, + 202, + 108, + 194, + 165, + 64, + 141, + 82, + 136, + 203, + 54, + 158, + 192, + 144, + 251, + 584, + 157, + 78, + 119, + 214, + 355, + 452, + 294, + 63, + 280, + 518, + 336, + 302, + 346, + 291, + 426, + 107, + 289, + 262, + 52, + 517, + 71, + 554, + 96, + 59, + 228, + 242, + 154, + 117, + 124, + 145, + 237, + 378, + 171, + 286, + 218, + 21, + 116, + 520, + 82, + 212, + 243, + 49, + 65, + 376, + 476, + 155, + 90, + 17, + 140, + 187, + 136, + 389, + 22, + 38, + 480, + 141, + 212, + 249, + 256, + 141, + 153, + 120, + 333, + 279, + 241, + 103, + 861, + 127, + 136, + 529, + 104, + 191, + 369, + 161, + 89, + 195, + 214, + 71, + 183, + 173, + 329, + 225, + 320, + 280, + 184, + 75, + 353, + 126, + 95, + 477, + 134, + 85, + 157, + 254, + 394, + 53, + 129, + 136, + 154, + 265, + 250, + 82, + 158, + 1272, + 182, + 207, + 95, + 259, + 261, + 205, + 323, + 64, + 42, + 63, + 618, + 183, + 296, + 206, + 317, + 107, + 97, + 75, + 296, + 74, + 402, + 126, + 65, + 389, + 99, + 99, + 194, + 420, + 191, + 697, + 96, + 138, + 110, + 55, + 45, + 175, + 139, + 153, + 80, + 185, + 128, + 349, + 51, + 99, + 173, + 184, + 272, + 166, + 42, + 127, + 85, + 225, + 42, + 206, + 113, + 92, + 16, + 51, + 205, + 125, + 91, + 194, + 85, + 61, + 174, + 130, + 238, + 160, + 64, + 115, + 126, + 124, + 321, + 215, + 189, + 127, + 196, + 87, + 112, + 310, + 389, + 294, + 611, + 156, + 275, + 143, + 92, + 82, + 222, + 175, + 148, + 366, + 138, + 337, + 236, + 52, + 332, + 127, + 72, + 186, + 219, + 180, + 273, + 349, + 90, + 96, + 899, + 81, + 118, + 119, + 97, + 171, + 1156, + 71, + 668, + 183, + 128, + 171, + 76, + 89, + 188, + 242, + 98, + 175, + 87, + 100, + 89, + 31, + 205, + 167, + 108, + 31, + 494, + 96, + 161, + 130, + 145, + 80, + 108, + 532, + 145, + 178, + 71, + 90, + 144, + 332, + 693, + 225, + 289, + 224, + 224, + 118, + 362, + 125, + 672, + 219, + 192, + 160, + 360, + 173, + 94, + 102, + 378, + 70, + 294, + 728, + 643, + 111, + 203, + 1317, + 313, + 364, + 171, + 290, + 77, + 140, + 83, + 87, + 176, + 736, + 458, + 384, + 174, + 161, + 295, + 312, + 206, + 49, + 181, + 106, + 601, + 113, + 219, + 388, + 397, + 431, + 71, + 480, + 218, + 676, + 74, + 240, + 292, + 391, + 233, + 293, + 391, + 432, + 411, + 208, + 197, + 156, + 266, + 211, + 263, + 226, + 231, + 60, + 171, + 243, + 137, + 593, + 156, + 246, + 445, + 337, + 399, + 85, + 19, + 173, + 17, + 281, + 193, + 76, + 128, + 16, + 20, + 115, + 607, + 56, + 799, + 372, + 120, + 119, + 497, + 170, + 630, + 196, + 134, + 121, + 75, + 151, + 143, + 317, + 668, + 496, + 315, + 88, + 141, + 305, + 111, + 241, + 185, + 235, + 144, + 75, + 266, + 121, + 162, + 192, + 124, + 108, + 93, + 196, + 1019, + 165, + 140, + 211, + 119, + 30, + 402, + 132, + 1065, + 371, + 226, + 105, + 168, + 129, + 76, + 192, + 272, + 364, + 624, + 128, + 75, + 384, + 268, + 165, + 42, + 181, + 234, + 121, + 298, + 356, + 783, + 228, + 104, + 1102, + 441, + 370, + 489, + 103, + 67, + 277, + 154, + 214, + 176, + 37, + 473, + 140, + 964, + 503, + 439, + 71, + 174, + 347, + 660, + 221, + 324, + 171, + 149, + 147, + 45, + 165, + 150, + 117, + 95, + 349, + 96, + 292, + 792, + 100, + 369, + 184, + 285, + 418, + 532, + 467, + 185, + 613, + 152, + 542, + 210, + 132, + 108, + 481, + 815, + 212, + 154, + 68, + 182, + 123, + 185, + 136, + 173, + 259, + 157, + 506, + 66, + 421, + 301, + 742, + 188, + 123, + 633, + 288, + 111, + 133, + 268, + 262, + 307, + 58, + 446, + 252, + 102, + 143, + 380, + 114, + 207, + 139, + 421, + 165, + 313, + 328, + 361, + 45, + 85, + 645, + 486, + 180, + 83, + 190, + 445, + 81, + 161, + 245, + 228, + 293, + 92, + 244, + 363, + 144, + 197, + 604, + 269, + 71, + 310, + 189, + 573, + 136, + 227, + 525, + 559, + 57, + 351, + 270, + 227, + 125, + 121, + 186, + 107, + 82, + 229, + 839, + 189, + 72, + 99, + 340, + 151, + 90, + 363, + 192, + 119, + 359, + 154, + 171, + 480, + 156, + 194, + 834, + 164, + 326, + 290, + 377, + 524, + 85, + 61, + 180, + 374, + 460, + 270, + 171, + 721, + 182, + 229, + 140, + 113, + 109, + 184, + 148, + 144, + 150, + 535, + 465, + 154, + 311, + 123, + 924, + 296, + 200, + 117, + 122, + 166, + 89, + 159, + 545, + 264, + 191, + 104, + 504, + 252, + 23, + 48, + 116, + 67, + 159, + 57, + 484, + 378, + 772, + 304, + 55, + 143, + 684, + 170, + 131, + 102, + 151, + 143, + 196, + 479, + 211, + 347, + 128, + 183, + 439, + 165, + 188, + 106, + 321, + 80, + 1242, + 45, + 138, + 132, + 100, + 318, + 141, + 906, + 72, + 41, + 564, + 16, + 306, + 518, + 87, + 130, + 98, + 98, + 82, + 188, + 59, + 186, + 249, + 60, + 126, + 659, + 52, + 222, + 112, + 173, + 42, + 131, + 455, + 431, + 286, + 50, + 83, + 117, + 85, + 256, + 348, + 154, + 71, + 47, + 314, + 228, + 123, + 94, + 144, + 330, + 146, + 712, + 366, + 502, + 106, + 252, + 251, + 128, + 239, + 347, + 271, + 970, + 64, + 117, + 706, + 241, + 141, + 232, + 187, + 249, + 178, + 90, + 176, + 255, + 324, + 1389, + 213, + 80, + 919, + 210, + 452, + 260, + 666, + 498, + 344, + 221, + 189, + 184, + 70, + 154, + 271, + 159, + 134, + 470, + 221, + 1164, + 595, + 254, + 207, + 143, + 69, + 94, + 271, + 396, + 71, + 145, + 215, + 94, + 271, + 165, + 196, + 437, + 1180, + 103, + 128, + 328, + 261, + 119, + 425, + 163, + 773, + 188, + 549, + 172, + 161, + 1187, + 135, + 151, + 324, + 77, + 122, + 51, + 246, + 330, + 104, + 114, + 125, + 236, + 79, + 65, + 216, + 114, + 324, + 68, + 61, + 179, + 243, + 90, + 41, + 221, + 329, + 96, + 227, + 102, + 158, + 194, + 285, + 231, + 276, + 505, + 211, + 116, + 135, + 172, + 47, + 84, + 244, + 103, + 158, + 611, + 78, + 306, + 79, + 110, + 289, + 126, + 84, + 66, + 120, + 72, + 64, + 767, + 105, + 214, + 189, + 550, + 331, + 155, + 137, + 173, + 122, + 238, + 363, + 64, + 226, + 97, + 80, + 141, + 187, + 467, + 549, + 254, + 460, + 247, + 121, + 138, + 154, + 151, + 228, + 132, + 126, + 68, + 69, + 650, + 251, + 125, + 183, + 119, + 74, + 138, + 74, + 53, + 634, + 51, + 58, + 219, + 19, + 310, + 144, + 174, + 41, + 397, + 101, + 305, + 105, + 111, + 319, + 673, + 86, + 388, + 334, + 77, + 129, + 162, + 292, + 331, + 134, + 64, + 171, + 105, + 106, + 64, + 126, + 122, + 124, + 464, + 201, + 194, + 146, + 68, + 245, + 79, + 130, + 699, + 140, + 768, + 80, + 259, + 192, + 417, + 154, + 455, + 85, + 225, + 85, + 149, + 568, + 334, + 250, + 118, + 115, + 144, + 103, + 299, + 99, + 245, + 140, + 124, + 93, + 465, + 216, + 392, + 407, + 81, + 619, + 81, + 248, + 214, + 425, + 108, + 460, + 256, + 377, + 184, + 119, + 123, + 250, + 109, + 257, + 136, + 340, + 387, + 512, + 197, + 97, + 109, + 298, + 101, + 643, + 1271, + 149, + 244, + 111, + 157, + 218, + 118, + 138, + 304, + 171, + 43, + 167, + 240, + 149, + 615, + 149, + 424, + 364, + 179, + 403, + 745, + 164, + 235, + 330, + 160, + 12, + 77, + 552, + 35, + 36, + 46, + 821, + 198, + 250, + 110, + 133, + 78, + 227, + 76, + 223, + 131, + 172, + 399, + 252, + 109, + 457, + 400, + 171, + 196, + 123, + 546, + 231, + 31, + 170, + 376, + 122, + 56, + 129, + 125, + 285, + 106, + 101, + 169, + 110, + 179, + 649, + 231, + 442, + 439, + 249, + 92, + 131, + 184, + 126, + 56, + 274, + 131, + 75, + 101, + 138, + 416, + 92, + 368, + 265, + 80, + 401, + 101, + 134, + 280, + 63, + 501, + 76, + 80, + 317, + 129, + 237, + 295, + 61, + 188, + 101, + 109, + 226, + 280, + 83, + 121, + 778, + 350, + 368, + 103, + 232, + 156, + 132, + 152, + 646, + 81, + 56, + 364, + 200, + 59, + 126, + 174, + 321, + 201, + 571, + 503, + 277, + 377, + 83, + 53, + 82, + 135, + 135, + 387, + 372, + 128, + 162, + 462, + 182, + 280, + 218, + 274, + 130, + 116, + 98, + 442, + 92, + 37, + 794, + 90, + 70, + 280, + 193, + 148, + 513, + 172, + 89, + 355, + 158, + 103, + 348, + 122, + 129, + 192, + 331, + 779, + 91, + 555, + 157, + 580, + 83, + 603, + 105, + 479, + 111, + 149, + 257, + 98, + 408, + 134, + 306, + 275, + 68, + 135, + 257, + 826, + 35, + 1083, + 235, + 194, + 123, + 612, + 85, + 237, + 196, + 144, + 85, + 179, + 155, + 107, + 232, + 272, + 197, + 275, + 419, + 146, + 115, + 347, + 357, + 374, + 120, + 323, + 98, + 84, + 395, + 209, + 107, + 462, + 216, + 166, + 490, + 498, + 166, + 232, + 270, + 118, + 159, + 265, + 419, + 812, + 97, + 84, + 114, + 32, + 1142, + 62, + 160, + 1412, + 61, + 41, + 75, + 208, + 174, + 350, + 52, + 510, + 81, + 220, + 1147, + 130, + 95, + 161, + 469, + 51, + 154, + 46, + 715, + 525, + 229, + 130, + 151, + 46, + 79, + 56, + 153, + 401, + 138, + 145, + 156, + 191, + 195, + 49, + 90, + 269, + 239, + 129, + 98, + 130, + 124, + 29, + 83, + 60, + 251, + 1150, + 294, + 155, + 130, + 57, + 464, + 57, + 76, + 39, + 166, + 227, + 202, + 109, + 243, + 329, + 214, + 142, + 151, + 335, + 143, + 122, + 48, + 198, + 183, + 45, + 684, + 255, + 143, + 885, + 520, + 128, + 156, + 325, + 419, + 226, + 705, + 649, + 77, + 231, + 513, + 87, + 102, + 111, + 177, + 680, + 350, + 124, + 359, + 128, + 68, + 192, + 128, + 158, + 547, + 93, + 332, + 131, + 198, + 157, + 254, + 199, + 101, + 98, + 217, + 293, + 378, + 129, + 240, + 1432, + 141, + 322, + 455, + 69, + 173, + 101, + 110, + 128, + 156, + 231, + 191, + 240, + 118, + 164, + 73, + 77, + 282, + 169, + 202, + 357, + 159, + 1389, + 1056, + 166, + 168, + 212, + 201, + 191, + 1339, + 30, + 127, + 319, + 284, + 264, + 204, + 255, + 108, + 26, + 184, + 613, + 268, + 93, + 98, + 63, + 185, + 66, + 102, + 199, + 293, + 59, + 330, + 209, + 59, + 63, + 298, + 309, + 257, + 36, + 55, + 53, + 71, + 80, + 261, + 201, + 109, + 397, + 69, + 48, + 90, + 72, + 94, + 539, + 144, + 126, + 302, + 123, + 235, + 196, + 84, + 106, + 521, + 181, + 50, + 158, + 205, + 114, + 228, + 20, + 628, + 418, + 302, + 17, + 50, + 72, + 72, + 258, + 45, + 544, + 124, + 391, + 72, + 84, + 686, + 277, + 64, + 388, + 324, + 295, + 284, + 86, + 504, + 1171, + 430, + 201, + 50, + 224, + 272, + 344, + 818, + 534, + 402, + 127, + 89, + 324, + 156, + 234, + 54, + 167, + 509, + 354, + 143, + 28, + 410, + 109, + 11, + 692, + 158, + 120, + 109, + 143, + 536, + 490, + 80, + 202, + 301, + 105, + 509, + 49, + 134, + 115, + 179, + 68, + 225, + 219, + 119, + 232, + 245, + 260, + 109, + 172, + 393, + 130, + 79, + 655, + 123, + 96, + 654, + 747, + 54, + 312, + 630, + 360, + 22, + 184, + 345, + 388, + 377, + 683, + 796, + 804, + 127, + 168, + 309, + 504, + 353, + 18, + 275, + 378, + 54, + 174, + 420, + 62, + 104, + 695, + 271, + 1151, + 277, + 186, + 271, + 207, + 197, + 202, + 1390, + 231, + 738, + 614, + 275, + 268, + 275, + 538, + 147, + 410, + 209, + 234, + 124, + 147, + 278, + 174, + 46, + 257, + 728, + 1018, + 654, + 1673, + 330, + 171, + 248, + 170, + 408, + 81, + 770, + 57, + 77, + 610, + 122, + 395, + 444, + 207, + 230, + 169, + 51, + 43, + 143, + 27, + 546, + 91, + 75, + 602, + 125, + 188, + 487, + 735, + 172, + 138, + 64, + 157, + 185, + 121, + 21, + 156, + 74, + 302, + 95, + 100, + 76, + 113, + 69, + 455, + 142, + 165, + 91, + 53, + 85, + 67, + 127, + 145, + 59, + 287, + 85, + 292, + 85, + 146, + 83, + 103, + 14, + 354, + 91, + 199, + 91, + 149, + 72, + 11, + 222, + 135, + 383, + 41, + 800, + 84, + 178, + 90, + 33, + 274, + 116, + 71, + 226, + 377, + 225, + 274, + 467, + 262, + 191, + 110, + 115, + 102, + 411, + 143, + 164, + 203, + 482, + 569, + 167, + 110, + 383, + 286, + 106, + 223, + 313, + 108, + 116, + 60, + 359, + 238, + 337, + 75, + 174, + 483, + 47, + 308, + 269, + 384, + 292, + 147, + 287, + 159, + 65, + 90, + 439, + 133, + 494, + 96, + 381, + 354, + 239, + 508, + 56, + 130, + 263, + 362, + 199, + 342, + 207, + 115, + 104, + 111, + 95, + 259, + 503, + 187, + 140, + 642, + 141, + 179, + 144, + 169, + 199, + 143, + 835, + 83, + 54, + 146, + 70, + 595, + 328, + 49, + 215, + 352, + 652, + 317, + 92, + 102, + 297, + 183, + 1503, + 168, + 73, + 129, + 216, + 55, + 706, + 728, + 351, + 134, + 127, + 579, + 96, + 252, + 118, + 139, + 464, + 570, + 905, + 30, + 180, + 440, + 225, + 112, + 300, + 409, + 247, + 177, + 320, + 89, + 200, + 166, + 453, + 379, + 37, + 191, + 70, + 127, + 462, + 305, + 99, + 35, + 113, + 243, + 277, + 127, + 197, + 414, + 154, + 227, + 83, + 212, + 280, + 124, + 241, + 120, + 190, + 200, + 165, + 239, + 200, + 463, + 144, + 50, + 192, + 75, + 93, + 114, + 335, + 589, + 322, + 78, + 72, + 168, + 110, + 120, + 489, + 1425, + 218, + 93, + 100, + 90, + 122, + 97, + 357, + 118, + 166, + 203, + 84, + 118, + 176, + 195, + 101, + 519, + 236, + 88, + 89, + 317, + 172, + 553, + 538, + 808, + 91, + 130, + 96, + 76, + 554, + 184, + 126, + 124, + 316, + 405, + 521, + 93, + 42, + 455, + 93, + 156, + 66, + 323, + 226, + 472, + 357, + 295, + 581, + 113, + 191, + 193, + 38, + 77, + 212, + 225, + 120, + 304, + 230, + 856, + 396, + 853, + 53, + 475, + 141, + 101, + 54, + 730, + 105, + 177, + 296, + 304, + 31, + 90, + 170, + 99, + 111, + 115, + 158, + 100, + 19, + 65, + 71, + 92, + 156, + 177, + 218, + 369, + 206, + 320, + 101, + 171, + 101, + 171, + 149, + 72, + 65, + 61, + 521, + 51, + 237, + 357, + 449, + 356, + 204, + 71, + 163, + 111, + 353, + 119, + 79, + 808, + 507, + 93, + 333, + 240, + 1156, + 761, + 471, + 80, + 137, + 881, + 200, + 116, + 151, + 333, + 202, + 125, + 580, + 178, + 61, + 742, + 167, + 295, + 181, + 292, + 171, + 46, + 112, + 588, + 145, + 149, + 129, + 208, + 249, + 292, + 407, + 50, + 89, + 107, + 332, + 132, + 71, + 149, + 392, + 68, + 195, + 260, + 474, + 231, + 936, + 690, + 381, + 1089, + 312, + 211, + 147, + 378, + 60, + 366, + 71, + 172, + 291, + 91, + 509, + 256, + 363, + 522, + 168, + 306, + 354, + 106, + 87, + 930, + 342, + 564, + 157, + 181, + 418, + 199, + 251, + 833, + 452, + 241, + 564, + 132, + 250, + 313, + 138, + 338, + 67, + 121, + 929, + 126, + 90, + 173, + 86, + 130, + 83, + 482, + 88, + 150, + 185, + 167, + 105, + 86, + 34, + 105, + 898, + 549, + 177, + 357, + 595, + 24, + 100, + 145, + 184, + 189, + 322, + 54, + 722, + 68, + 166, + 78, + 126, + 80, + 72, + 125, + 85, + 383, + 93, + 152, + 87, + 46, + 17, + 68, + 261, + 102, + 95, + 420, + 75, + 312, + 29, + 82, + 153, + 376, + 135, + 77, + 211, + 314, + 278, + 263, + 344, + 72, + 137, + 214, + 178, + 123, + 90, + 80, + 259, + 132, + 66, + 185, + 422, + 168, + 255, + 139, + 81, + 702, + 168, + 254, + 176, + 89, + 305, + 107, + 268, + 196, + 367, + 152, + 490, + 125, + 807, + 274, + 108, + 56, + 114, + 273, + 189, + 271, + 115, + 152, + 599, + 204, + 215, + 88, + 285, + 200, + 246, + 68, + 292, + 89, + 117, + 89, + 455, + 65, + 27, + 272, + 120, + 605, + 630, + 151, + 62, + 90, + 164, + 106, + 127, + 1288, + 59, + 124, + 29, + 156, + 73, + 129, + 52, + 283, + 81, + 261, + 614, + 114, + 77, + 369, + 86, + 431, + 1220, + 214, + 639, + 1281, + 246, + 654, + 204, + 364, + 85, + 211, + 135, + 115, + 443, + 153, + 578, + 101, + 632, + 662, + 263, + 867, + 50, + 96, + 124, + 563, + 385, + 196, + 264, + 124, + 165, + 405, + 289, + 182, + 92, + 160, + 139, + 134, + 487, + 82, + 681, + 60, + 206, + 445, + 90, + 370, + 1408, + 514, + 135, + 608, + 145, + 160, + 236, + 241, + 387, + 211, + 1206, + 248, + 139, + 181, + 237, + 477, + 312, + 727, + 249, + 186, + 459, + 240, + 107, + 124, + 270, + 470, + 96, + 100, + 137, + 246, + 493, + 345, + 216, + 187, + 191, + 184, + 443, + 400, + 289, + 149, + 503, + 97, + 102, + 88, + 233, + 44, + 246, + 209, + 728, + 249, + 282, + 210, + 1287, + 32, + 437, + 36, + 464, + 314, + 279, + 119, + 162, + 209, + 136, + 624, + 38, + 203, + 143, + 1226, + 282, + 84, + 85, + 487, + 217, + 439, + 411, + 285, + 40, + 187, + 70, + 89, + 75, + 284, + 221, + 364, + 194, + 73, + 164, + 92, + 73, + 51, + 500, + 318, + 38, + 137, + 175, + 181, + 390, + 105, + 411, + 226, + 141, + 187, + 245, + 190, + 58, + 115, + 429, + 256, + 271, + 157, + 114, + 107, + 285, + 161, + 40, + 237, + 74, + 126, + 244, + 730, + 223, + 498, + 376, + 94, + 137, + 379, + 108, + 232, + 302, + 77, + 229, + 281, + 142, + 136, + 105, + 160, + 84, + 167, + 235, + 272, + 55, + 1089, + 43, + 87, + 471, + 18, + 184, + 178, + 250, + 115, + 18, + 115, + 61, + 36, + 421, + 178, + 156, + 238, + 319, + 371, + 194, + 35, + 284, + 182, + 194, + 56, + 31, + 73, + 952, + 111, + 158, + 163, + 150, + 423, + 368, + 280, + 40, + 122, + 123, + 183, + 639, + 123, + 157, + 190, + 172, + 143, + 70, + 387, + 74, + 155, + 81, + 159, + 73, + 465, + 312, + 717, + 355, + 191, + 538, + 102, + 118, + 197, + 97, + 98, + 273, + 179, + 135, + 135, + 511, + 435, + 36, + 207, + 366, + 216, + 96, + 76, + 103, + 158, + 90, + 55, + 335, + 126, + 439, + 169, + 979, + 256, + 134, + 172, + 383, + 152, + 25, + 874, + 396, + 322, + 545, + 34, + 586, + 698, + 73, + 212, + 1331, + 1776, + 638, + 98, + 271, + 100, + 206, + 166, + 259, + 296, + 85, + 438, + 332, + 125, + 91, + 168, + 203, + 118, + 361, + 248, + 711, + 55, + 90, + 239, + 1090, + 82, + 67, + 339, + 185, + 203, + 1118, + 400, + 580, + 179, + 475, + 58, + 229, + 530, + 497, + 81, + 362, + 206, + 185, + 673, + 180, + 510, + 162, + 413, + 421, + 350, + 322, + 201, + 437, + 147, + 248, + 110, + 328, + 1066, + 305, + 293, + 329, + 609, + 652, + 252, + 127, + 205, + 158, + 74, + 419, + 165, + 83, + 144, + 161, + 156, + 122, + 36, + 53, + 279, + 107, + 85, + 97, + 505, + 495, + 111, + 84, + 547, + 103, + 236, + 71, + 192, + 476, + 50, + 54, + 42, + 57, + 265, + 202, + 537, + 219, + 48, + 241, + 63, + 357, + 21, + 32, + 73, + 148, + 46, + 119, + 92, + 200, + 42, + 187, + 208, + 125, + 162, + 281, + 139, + 481, + 65, + 311, + 186, + 66, + 137, + 91, + 544, + 129, + 78, + 67, + 71, + 326, + 70, + 130, + 196, + 212, + 458, + 77, + 164, + 380, + 467, + 55, + 168, + 528, + 464, + 152, + 211, + 313, + 335, + 209, + 561, + 197, + 329, + 70, + 43, + 142, + 523, + 604, + 144, + 302, + 205, + 100, + 239, + 77, + 169, + 71, + 191, + 149, + 186, + 223, + 154, + 60, + 151, + 188, + 185, + 224, + 134, + 164, + 15, + 386, + 137, + 92, + 168, + 305, + 205, + 179, + 212, + 39, + 576, + 94, + 147, + 604, + 211, + 169, + 175, + 308, + 119, + 604, + 208, + 72, + 498, + 204, + 90, + 539, + 650, + 48, + 91, + 304, + 129, + 537, + 915, + 58, + 122, + 149, + 147, + 85, + 72, + 28, + 148, + 150, + 90, + 1869, + 575, + 823, + 112, + 81, + 56, + 151, + 132, + 218, + 773, + 953, + 43, + 1259, + 267, + 736, + 362, + 89, + 196, + 346, + 79, + 217, + 119, + 347, + 559, + 126, + 101, + 464, + 631, + 203, + 810, + 844, + 947, + 328, + 448, + 258, + 161, + 82, + 870, + 1820, + 144, + 303, + 553, + 137, + 268, + 828, + 136, + 180, + 513, + 347, + 1173, + 153, + 73, + 123, + 77, + 263, + 91, + 577, + 417, + 393, + 568, + 237, + 257, + 447, + 552, + 241, + 52, + 441, + 219, + 72, + 210, + 203, + 154, + 150, + 13, + 186, + 57, + 159, + 123, + 102, + 65, + 78, + 303, + 43, + 44, + 212, + 591, + 295, + 359, + 153, + 198, + 136, + 294, + 310, + 107, + 298, + 110, + 361, + 335, + 75, + 57, + 159, + 337, + 337, + 267, + 803, + 115, + 168, + 54, + 256, + 112, + 324, + 65, + 250, + 198, + 241, + 112, + 127, + 71, + 61, + 40, + 720, + 175, + 234, + 226, + 214, + 110, + 246, + 63, + 188, + 133, + 98, + 286, + 49, + 102, + 18, + 795, + 172, + 99, + 168, + 46, + 1106, + 81, + 132, + 94, + 184, + 146, + 102, + 184, + 367, + 426, + 800, + 96, + 165, + 357, + 177, + 72, + 132, + 67, + 204, + 149, + 214, + 796, + 51, + 106, + 311, + 483, + 605, + 120, + 39, + 127, + 87, + 66, + 163, + 102, + 53, + 657, + 199, + 261, + 442, + 241, + 147, + 730, + 1161, + 90, + 95, + 102, + 374, + 468, + 155, + 147, + 268, + 84, + 134, + 270, + 396, + 273, + 72, + 87, + 161, + 124, + 356, + 293, + 135, + 200, + 194, + 238, + 171, + 936, + 210, + 83, + 1319, + 250, + 93, + 99, + 143, + 50, + 87, + 400, + 185, + 164, + 188, + 237, + 114, + 96, + 144, + 163, + 63, + 481, + 460, + 41, + 395, + 190, + 32, + 147, + 63, + 230, + 177, + 52, + 49, + 123, + 44, + 243, + 60, + 52, + 108, + 95, + 119, + 180, + 56, + 70, + 62, + 295, + 117, + 69, + 48, + 57, + 31, + 55, + 108, + 110, + 89, + 131, + 30, + 124, + 307, + 82, + 151, + 115, + 340, + 319, + 219, + 200, + 108, + 87, + 68, + 139, + 84, + 240, + 330, + 173, + 551, + 130, + 97, + 73, + 50, + 24, + 84, + 112, + 388, + 59, + 263, + 19, + 63, + 101, + 337, + 296, + 180, + 359, + 54, + 86, + 404, + 435, + 231, + 40, + 73, + 300, + 502, + 83, + 289, + 89, + 157, + 438, + 155, + 189, + 96, + 25, + 395, + 60, + 470, + 85, + 60, + 719, + 234, + 81, + 89, + 82, + 76, + 86, + 1339, + 359, + 102, + 128, + 112, + 674, + 158, + 534, + 117, + 78, + 247, + 75, + 63, + 318, + 41, + 234, + 310, + 283, + 179, + 419, + 88, + 121, + 141, + 320, + 154, + 339, + 493, + 106, + 239, + 322, + 124, + 180, + 160, + 192, + 76, + 120, + 290, + 118, + 58, + 149, + 114, + 398, + 101, + 159, + 127, + 90, + 155, + 264, + 377, + 73, + 499, + 213, + 262, + 22, + 138, + 609, + 313, + 170, + 165, + 314, + 306, + 83, + 320, + 39, + 151, + 377, + 76, + 118, + 168, + 76, + 167, + 472, + 276, + 147, + 131, + 123, + 50, + 209, + 97, + 152, + 107, + 265, + 127, + 136, + 164, + 243, + 120, + 206, + 90, + 210, + 126, + 215, + 173, + 193, + 393, + 62, + 121, + 345, + 88, + 178, + 858, + 82, + 119, + 480, + 179, + 62, + 47, + 62, + 60, + 114, + 192, + 118, + 186, + 82, + 148, + 215, + 54, + 36, + 146, + 604, + 303, + 50, + 44, + 71, + 101, + 109, + 76, + 90, + 218, + 164, + 7, + 69, + 122, + 301, + 117, + 165, + 318, + 241, + 80, + 609, + 149, + 206, + 124, + 43, + 70, + 293, + 184, + 135, + 24, + 497, + 55, + 60, + 48, + 132, + 197, + 98, + 345, + 69, + 647, + 105, + 33, + 100, + 214, + 155, + 64, + 305, + 446, + 248, + 57, + 221, + 247, + 146, + 213, + 137, + 104, + 57, + 100, + 208, + 735, + 94, + 121, + 65, + 394, + 797, + 212, + 255, + 196, + 145, + 81, + 47, + 538, + 520, + 283, + 153, + 82, + 60, + 569, + 300, + 422, + 100, + 129, + 57, + 199, + 56, + 281, + 207, + 1186, + 337, + 63, + 20, + 52, + 328, + 86, + 114, + 121, + 45, + 187, + 180, + 108, + 104, + 665, + 125, + 246, + 33, + 95, + 277, + 127, + 790, + 635, + 597, + 77, + 62, + 171, + 110, + 77, + 226, + 367, + 509, + 228, + 935, + 129, + 313, + 94, + 197, + 403, + 207, + 99, + 114, + 123, + 162, + 69, + 205, + 316, + 259, + 110, + 110, + 119, + 336, + 327, + 316, + 284, + 543, + 52, + 223, + 322, + 61, + 347, + 399, + 340, + 60, + 234, + 75, + 242, + 128, + 53, + 234, + 186, + 333, + 333, + 79, + 101, + 193, + 863, + 590, + 92, + 225, + 49, + 88, + 825, + 254, + 11, + 520, + 44, + 142, + 78, + 329, + 353, + 125, + 334, + 28, + 142, + 189, + 70, + 18, + 158, + 59, + 31, + 150, + 90, + 258, + 305, + 128, + 99, + 39, + 70, + 112, + 120, + 312, + 89, + 150, + 834, + 528, + 516, + 129, + 652, + 102, + 38, + 160, + 77, + 65, + 132, + 192, + 73, + 120, + 47, + 93, + 32, + 119, + 229, + 25, + 64, + 270, + 173, + 695, + 594, + 115, + 101, + 605, + 537, + 51, + 71, + 141, + 351, + 50, + 76, + 58, + 187, + 55, + 164, + 111, + 292, + 71, + 14, + 220, + 340, + 148, + 154, + 597, + 161, + 81, + 153, + 65, + 29, + 86, + 255, + 218, + 380, + 55, + 129, + 622, + 38, + 86, + 227, + 120, + 144, + 126, + 185, + 197, + 156, + 94, + 82, + 77, + 444, + 34, + 287, + 73, + 152, + 69, + 74, + 535, + 209, + 72, + 44, + 72, + 117, + 341, + 186, + 96, + 166, + 1078, + 27, + 698, + 114, + 106, + 436, + 159, + 208, + 96, + 359, + 69, + 259, + 65, + 266, + 50, + 130, + 109, + 120, + 136, + 438, + 225, + 112, + 31, + 216, + 156, + 52, + 154, + 1165, + 117, + 89, + 266, + 107, + 486, + 72, + 63, + 100, + 174, + 62, + 520, + 103, + 233, + 109, + 41, + 335, + 246, + 86, + 85, + 104, + 149, + 85, + 115, + 109, + 155, + 242, + 288, + 339, + 29, + 139, + 72, + 352, + 173, + 168, + 50, + 22, + 245, + 251, + 139, + 207, + 100, + 638, + 142, + 90, + 53, + 269, + 251, + 251, + 411, + 100, + 184, + 130, + 300, + 70, + 126, + 141, + 95, + 1259, + 70, + 239, + 79, + 121, + 71, + 103, + 230, + 192, + 54, + 154, + 184, + 196, + 185, + 98, + 590, + 342, + 151, + 249, + 93, + 134, + 215, + 60, + 188, + 83, + 187, + 84, + 21, + 160, + 61, + 53, + 82, + 208, + 84, + 166, + 111, + 106, + 101, + 75, + 24, + 234, + 15, + 13, + 81, + 435, + 175, + 150, + 43, + 52, + 85, + 11, + 13, + 153, + 87, + 46, + 283, + 69, + 616, + 160, + 165, + 346, + 79, + 175, + 11, + 98, + 5, + 8, + 194, + 130, + 68, + 110, + 87, + 350, + 217, + 749, + 85, + 468, + 28, + 207, + 27, + 570, + 404, + 232, + 190, + 92, + 321, + 451, + 117, + 508, + 60, + 207, + 107, + 196, + 106, + 413, + 15, + 125, + 543, + 91, + 151, + 104, + 468, + 69, + 102, + 183, + 65, + 395, + 291, + 49, + 474, + 30, + 216, + 149, + 110, + 108, + 244, + 196, + 74, + 81, + 129, + 51, + 61, + 100, + 181, + 23, + 242, + 167, + 35, + 203, + 140, + 128, + 128, + 119, + 234, + 56, + 27, + 47, + 46, + 144, + 180, + 307, + 73, + 120, + 127, + 114, + 115, + 114, + 92, + 6, + 123, + 22, + 253, + 57, + 126, + 38, + 77, + 543, + 114, + 49, + 77, + 81, + 122, + 126, + 118, + 60, + 231, + 201, + 221, + 168, + 258, + 240, + 119, + 156, + 131, + 189, + 122, + 73, + 216, + 148, + 145, + 52, + 166, + 106, + 45, + 53, + 225, + 52, + 609, + 83, + 79, + 462, + 80, + 50, + 255, + 92, + 245, + 83, + 548, + 281, + 81, + 69, + 51, + 25, + 184, + 284, + 187, + 128, + 150, + 124, + 47, + 74, + 119, + 434, + 288, + 109, + 388, + 155, + 172, + 465, + 91, + 166, + 33, + 266, + 228, + 36, + 74, + 294, + 109, + 223, + 362, + 300, + 66, + 169, + 391, + 155, + 345, + 843, + 81, + 198, + 81, + 34, + 156, + 1739, + 345, + 111, + 28, + 119, + 209, + 733, + 18, + 444, + 744, + 196, + 245, + 22, + 13, + 59, + 134, + 58, + 32, + 9, + 90, + 33, + 18, + 66, + 23, + 19, + 37, + 51, + 21, + 294, + 65, + 70, + 18, + 77, + 9, + 22, + 10, + 89, + 11, + 37, + 58, + 272, + 164, + 55, + 17, + 16, + 14, + 153, + 69, + 8, + 43, + 106, + 30, + 21, + 9, + 237, + 58, + 115, + 56, + 114, + 213, + 70, + 368, + 10, + 135, + 48, + 35, + 14, + 22, + 5, + 21, + 5, + 6, + 9, + 39, + 280, + 37, + 49, + 262, + 124, + 576, + 67, + 16, + 24, + 18, + 299, + 42, + 40, + 10, + 9, + 92, + 92, + 18, + 83, + 28, + 14, + 8, + 443, + 214, + 258, + 86, + 248, + 536, + 148, + 18, + 90, + 78, + 60, + 50, + 9, + 61, + 5, + 12, + 22, + 576, + 55, + 76, + 39, + 85, + 32, + 9, + 52, + 45, + 84, + 17, + 34, + 48, + 29, + 652, + 19, + 12, + 143, + 14, + 153, + 35, + 73, + 135, + 50, + 7, + 78, + 156, + 160, + 104, + 116, + 149, + 272, + 208, + 163, + 89, + 53, + 71, + 227, + 96, + 436, + 157, + 498, + 147, + 164, + 117, + 160, + 243, + 221, + 629, + 240, + 70, + 157, + 72, + 94, + 149, + 151, + 302, + 408, + 270, + 73, + 121, + 130, + 167, + 39, + 142, + 417, + 216, + 119, + 606, + 200, + 96, + 244, + 134, + 93, + 90, + 64, + 138, + 79, + 58, + 68, + 96, + 413, + 679, + 20, + 177, + 488, + 506, + 50, + 432, + 184, + 148, + 551, + 422, + 68, + 122, + 44, + 157, + 58, + 86, + 91, + 108, + 112, + 165, + 357, + 282, + 144, + 341, + 178, + 298, + 154, + 151, + 333, + 135, + 182, + 378, + 230, + 958, + 99, + 170, + 482, + 130, + 151, + 190, + 140, + 84, + 67, + 370, + 337, + 230, + 686, + 597, + 857, + 753, + 101, + 186, + 357, + 211, + 177, + 145, + 428, + 133, + 142, + 250, + 125, + 276, + 377, + 126, + 519, + 76, + 222, + 91, + 314, + 114, + 122, + 86, + 36, + 145, + 139, + 241, + 69, + 58, + 269, + 67, + 448, + 335, + 140, + 171, + 356, + 130, + 188, + 164, + 409, + 328, + 131, + 88, + 175, + 124, + 54, + 109, + 114, + 115, + 348, + 198, + 111, + 123, + 790, + 142, + 163, + 174, + 482, + 92, + 297, + 138, + 231, + 105, + 238, + 178, + 278, + 156, + 334, + 177, + 104, + 195, + 56, + 68, + 297, + 231, + 126, + 67, + 316, + 149, + 168, + 683, + 176, + 165, + 199, + 158, + 141, + 414, + 339, + 68, + 27, + 85, + 112, + 704, + 104, + 409, + 223, + 166, + 109, + 291, + 451, + 33, + 101, + 80, + 193, + 153, + 132, + 203, + 344, + 197, + 101, + 155, + 1110, + 445, + 385, + 425, + 134, + 56, + 121, + 129, + 146, + 211, + 513, + 210, + 459, + 263, + 332, + 150, + 608, + 295, + 178, + 109, + 1197, + 223, + 996, + 92, + 115, + 78, + 116, + 314, + 384, + 146, + 81, + 205, + 192, + 103, + 84, + 175, + 273, + 92, + 347, + 120, + 80, + 153, + 218, + 898, + 71, + 115, + 142, + 224, + 254, + 90, + 89, + 81, + 165, + 50, + 58, + 182, + 499, + 224, + 113, + 38, + 81, + 102, + 184, + 159, + 117, + 194, + 281, + 585, + 65, + 71, + 358, + 81, + 133, + 131, + 467, + 225, + 91, + 184, + 123, + 103, + 88, + 221, + 126, + 166, + 165, + 68, + 127, + 169, + 78, + 302, + 375, + 329, + 119, + 341, + 246, + 181, + 127, + 124, + 113, + 68, + 232, + 199, + 179, + 150, + 2191, + 166, + 165, + 254, + 90, + 244, + 84, + 290, + 136, + 384, + 732, + 100, + 301, + 118, + 44, + 45, + 411, + 188, + 72, + 128, + 135, + 90, + 265, + 170, + 312, + 438, + 601, + 39, + 127, + 64, + 378, + 432, + 240, + 115, + 851, + 224, + 126, + 83, + 536, + 171, + 203, + 588, + 175, + 72, + 101, + 192, + 275, + 269, + 209, + 130, + 276, + 54, + 83, + 160, + 21, + 252, + 322, + 406, + 127, + 395, + 286, + 433, + 57, + 292, + 176, + 293, + 543, + 685, + 45, + 61, + 79, + 426, + 236, + 626, + 105, + 54, + 226, + 181, + 131, + 132, + 135, + 210, + 107, + 40, + 122, + 108, + 110, + 186, + 297, + 157, + 187, + 420, + 117, + 82, + 122, + 91, + 64, + 67, + 267, + 74, + 131, + 318, + 402, + 51, + 51, + 163, + 326, + 292, + 387, + 108, + 142, + 287, + 253, + 228, + 358, + 239, + 22, + 128, + 131, + 159, + 111, + 30, + 1462, + 205, + 165, + 152, + 225, + 228, + 199, + 154, + 105, + 1834, + 398, + 131, + 148, + 306, + 196, + 46, + 235, + 177, + 359, + 71, + 173, + 140, + 95, + 86, + 144, + 92, + 155, + 137, + 85, + 251, + 73, + 92, + 257, + 100, + 87, + 493, + 169, + 181, + 156, + 296, + 57, + 14, + 185, + 306, + 61, + 150, + 64, + 197, + 119, + 88, + 231, + 112, + 216, + 89, + 84, + 84, + 266, + 155, + 99, + 643, + 107, + 90, + 122, + 89, + 228, + 30, + 76, + 407, + 276, + 59, + 168, + 205, + 436, + 254, + 73, + 107, + 214, + 82, + 65, + 194, + 67, + 139, + 118, + 140, + 3422, + 159, + 20, + 152, + 314, + 414, + 122, + 83, + 1230, + 118, + 101, + 110, + 117, + 201, + 105, + 408, + 198, + 184, + 339, + 291, + 117, + 162, + 402, + 235, + 321, + 72, + 524, + 122, + 235, + 248, + 61, + 84, + 181, + 1934, + 88, + 452, + 524, + 124, + 365, + 82, + 448, + 262, + 217, + 123, + 336, + 242, + 161, + 260, + 107, + 158, + 256, + 259, + 173, + 430, + 258, + 163, + 265, + 35, + 191, + 152, + 93, + 385, + 82, + 112, + 419, + 82, + 390, + 185, + 160, + 218, + 201, + 215, + 36, + 90, + 94, + 231, + 138, + 188, + 191, + 96, + 188, + 130, + 58, + 117, + 52, + 550, + 130, + 50, + 207, + 282, + 299, + 146, + 147, + 31, + 292, + 161, + 161, + 169, + 102, + 106, + 243, + 60, + 166, + 207, + 193, + 129, + 502, + 126, + 31, + 155, + 85, + 215, + 75, + 118, + 111, + 261, + 150, + 258, + 241, + 94, + 97, + 175, + 112, + 75, + 172, + 198, + 151, + 197, + 130, + 84, + 118, + 89, + 172, + 151, + 183, + 80, + 472, + 31, + 353, + 104, + 75, + 385, + 233, + 124, + 95, + 235, + 151, + 109, + 138, + 112, + 94, + 108, + 321, + 224, + 309, + 177, + 109, + 348, + 433, + 124, + 167, + 103, + 417, + 111, + 200, + 189, + 201, + 50, + 107, + 192, + 63, + 73, + 118, + 385, + 100, + 117, + 82, + 133, + 125, + 81, + 236, + 194, + 445, + 129, + 124, + 91, + 362, + 16, + 108, + 176, + 51, + 255, + 153, + 87, + 62, + 71, + 147, + 335, + 100, + 178, + 156, + 173, + 74, + 79, + 193, + 93, + 494, + 172, + 167, + 88, + 191, + 63, + 204, + 83, + 136, + 52, + 448, + 528, + 93, + 80, + 72, + 258, + 173, + 406, + 229, + 604, + 899, + 420, + 515, + 79, + 358, + 327, + 306, + 455, + 390, + 231, + 219, + 424, + 492, + 174, + 59, + 263, + 57, + 329, + 166, + 72, + 334, + 108, + 1567, + 765, + 89, + 314, + 14, + 148, + 116, + 293, + 445, + 45, + 120, + 46, + 697, + 67, + 171, + 57, + 326, + 70, + 67, + 209, + 367, + 255, + 258, + 72, + 99, + 92, + 177, + 413, + 144, + 102, + 155, + 145, + 77, + 210, + 106, + 105, + 98, + 588, + 73, + 104, + 73, + 111, + 217, + 55, + 667, + 347, + 212, + 165, + 382, + 226, + 47, + 45, + 121, + 116, + 126, + 269, + 505, + 82, + 71, + 218, + 270, + 565, + 226, + 172, + 72, + 164, + 55, + 69, + 323, + 123, + 166, + 82, + 187, + 257, + 90, + 111, + 57, + 101, + 72, + 104, + 210, + 71, + 97, + 237, + 116, + 72, + 170, + 217, + 169, + 97, + 79, + 119, + 86, + 56, + 149, + 246, + 160, + 356, + 135, + 128, + 135, + 309, + 250, + 316, + 168, + 230, + 72, + 204, + 61, + 242, + 194, + 111, + 90, + 126, + 317, + 105, + 228, + 76, + 149, + 331, + 86, + 209, + 452, + 225, + 65, + 53, + 102, + 389, + 275, + 247, + 63, + 104, + 55, + 1099, + 331, + 79, + 83, + 79, + 177, + 146, + 104, + 103, + 230, + 289, + 216, + 189, + 185, + 163, + 214, + 105, + 121, + 80, + 566, + 468, + 182, + 317, + 370, + 103, + 63, + 27, + 69, + 92, + 153, + 133, + 262, + 382, + 55, + 383, + 280, + 93, + 76, + 121, + 176, + 187, + 246, + 107, + 132, + 381, + 445, + 71, + 64, + 173, + 190, + 549, + 61, + 67, + 429, + 117, + 154, + 77, + 118, + 80, + 214, + 248, + 385, + 249, + 104, + 117, + 312, + 271, + 95, + 157, + 1144, + 67, + 345, + 101, + 304, + 268, + 133, + 106, + 209, + 94, + 862, + 236, + 239, + 277, + 231, + 157, + 277, + 101, + 154, + 247, + 270, + 217, + 40, + 179, + 1504, + 48, + 342, + 566, + 356, + 159, + 91, + 154, + 509, + 161, + 64, + 219, + 96, + 246, + 92, + 359, + 72, + 138, + 614, + 327, + 439, + 144, + 56, + 106, + 112, + 75, + 348, + 132, + 191, + 428, + 172, + 127, + 336, + 76, + 81, + 120, + 64, + 178, + 158, + 51, + 256, + 364, + 168, + 138, + 68, + 96, + 237, + 181, + 106, + 110, + 122, + 52, + 126, + 73, + 116, + 365, + 63, + 250, + 126, + 63, + 68, + 74, + 77, + 29, + 147, + 867, + 124, + 117, + 139, + 196, + 105, + 193, + 227, + 232, + 95, + 80, + 101, + 138, + 121, + 174, + 603, + 87, + 106, + 138, + 155, + 123, + 338, + 85, + 207, + 150, + 105, + 126, + 130, + 603, + 66, + 109, + 252, + 61, + 80, + 197, + 171, + 436, + 119, + 129, + 152, + 131, + 150, + 56, + 64, + 108, + 84, + 312, + 231, + 370, + 201, + 433, + 92, + 536, + 398, + 297, + 193, + 127, + 72, + 58, + 117, + 121, + 226, + 355, + 139, + 83, + 632, + 186, + 112, + 225, + 253, + 284, + 66, + 114, + 105, + 578, + 116, + 158, + 246, + 304, + 264, + 100, + 174, + 127, + 128, + 127, + 218, + 153, + 168, + 588, + 75, + 145, + 50, + 454, + 141, + 136, + 864, + 216, + 459, + 128, + 418, + 226, + 252, + 134, + 140, + 180, + 483, + 409, + 222, + 612, + 129, + 243, + 124, + 284, + 129, + 228, + 460, + 136, + 465, + 204, + 711, + 121, + 321, + 1476, + 204, + 161, + 120, + 77, + 767, + 106, + 168, + 239, + 139, + 224, + 317, + 176, + 244, + 114, + 132, + 128, + 78, + 128, + 100, + 159, + 303, + 295, + 157, + 58, + 225, + 460, + 93, + 214, + 139, + 57, + 239, + 142, + 86, + 258, + 185, + 458, + 211, + 900, + 123, + 106, + 73, + 71, + 110, + 334, + 105, + 109, + 233, + 58, + 104, + 206, + 91, + 170, + 460, + 100, + 127, + 114, + 159, + 183, + 80, + 132, + 269, + 409, + 100, + 165, + 94, + 325, + 201, + 182, + 130, + 119, + 286, + 271, + 169, + 143, + 62, + 87, + 202, + 270, + 180, + 203, + 66, + 78, + 79, + 250, + 324, + 156, + 112, + 328, + 156, + 376, + 260, + 89, + 110, + 79, + 15, + 559, + 136, + 733, + 517, + 195, + 343, + 116, + 96, + 111, + 327, + 160, + 152, + 144, + 363, + 76, + 342, + 75, + 68, + 257, + 99, + 356, + 212, + 139, + 78, + 168, + 388, + 99, + 222, + 73, + 109, + 163, + 86, + 274, + 150, + 209, + 67, + 75, + 58, + 399, + 48, + 275, + 449, + 536, + 158, + 113, + 127, + 75, + 178, + 65, + 152, + 464, + 96, + 64, + 106, + 169, + 103, + 90, + 115, + 67, + 175, + 110, + 123, + 719, + 125, + 259, + 373, + 144, + 360, + 55, + 87, + 266, + 366, + 87, + 96, + 85, + 250, + 109, + 206, + 184, + 41, + 252, + 154, + 137, + 238, + 55, + 98, + 71, + 50, + 47, + 98, + 260, + 127, + 273, + 465, + 145, + 93, + 141, + 155, + 370, + 111, + 159, + 1217, + 313, + 38, + 213, + 356, + 605, + 935, + 143, + 92, + 95, + 127, + 103, + 90, + 515, + 214, + 457, + 421, + 374, + 95, + 67, + 93, + 230, + 113, + 103, + 106, + 294, + 165, + 59, + 51, + 56, + 108, + 89, + 174, + 112, + 168, + 260, + 85, + 87, + 104, + 511, + 197, + 78, + 118, + 221, + 280, + 265, + 158, + 133, + 924, + 85, + 64, + 214, + 3322, + 136, + 366, + 260, + 107, + 208, + 11, + 80, + 189, + 168, + 61, + 388, + 122, + 448, + 60, + 167, + 92, + 350, + 449, + 158, + 388, + 217, + 153, + 337, + 94, + 425, + 168, + 41, + 347, + 789, + 636, + 34, + 65, + 63, + 170, + 277, + 219, + 38, + 244, + 155, + 365, + 248, + 101, + 85, + 178, + 138, + 234, + 478, + 124, + 226, + 306, + 89, + 137, + 244, + 64, + 386, + 110, + 136, + 286, + 119, + 86, + 211, + 126, + 253, + 204, + 45, + 109, + 76, + 96, + 1871, + 92, + 90, + 139, + 181, + 54, + 59, + 299, + 92, + 105, + 180, + 140, + 195, + 87, + 197, + 203, + 251, + 68, + 114, + 124, + 105, + 108, + 161, + 115, + 341, + 145, + 26, + 151, + 230, + 157, + 393, + 51, + 71, + 70, + 146, + 266, + 347, + 34, + 113, + 122, + 48, + 80, + 104, + 94, + 70, + 121, + 145, + 61, + 143, + 172, + 91, + 513, + 92, + 89, + 96, + 115, + 119, + 176, + 69, + 104, + 515, + 40, + 100, + 97, + 166, + 124, + 207, + 90, + 100, + 219, + 129, + 128, + 75, + 203, + 96, + 111, + 245, + 140, + 240, + 98, + 315, + 147, + 134, + 95, + 431, + 29, + 93, + 168, + 80, + 209, + 201, + 119, + 306, + 36, + 79, + 192, + 199, + 144, + 702, + 331, + 111, + 471, + 68, + 79, + 87, + 128, + 170, + 263, + 80, + 52, + 254, + 173, + 150, + 130, + 191, + 65, + 781, + 80, + 66, + 91, + 280, + 212, + 93, + 119, + 271, + 223, + 199, + 514, + 75, + 150, + 151, + 215, + 547, + 100, + 85, + 180, + 22, + 75, + 984, + 249, + 62, + 725, + 377, + 417, + 201, + 155, + 103, + 178, + 135, + 37, + 35, + 1364, + 286, + 59, + 207, + 304, + 89, + 124, + 174, + 457, + 123, + 395, + 92, + 374, + 119, + 296, + 193, + 87, + 835, + 159, + 244, + 212, + 119, + 176, + 314, + 729, + 285, + 129, + 195, + 298, + 273, + 575, + 99, + 247, + 139, + 97, + 151, + 192, + 120, + 607, + 141, + 102, + 58, + 208, + 203, + 173, + 122, + 286, + 177, + 158, + 83, + 125, + 74, + 133, + 245, + 134, + 56, + 269, + 124, + 78, + 162, + 118, + 331, + 103, + 55, + 173, + 215, + 104, + 223, + 210, + 276, + 671, + 156, + 83, + 189, + 144, + 51, + 161, + 91, + 344, + 284, + 75, + 298, + 141, + 134, + 295, + 198, + 199, + 113, + 189, + 264, + 150, + 74, + 129, + 125, + 323, + 101, + 193, + 128, + 260, + 133, + 242, + 501, + 109, + 339, + 149, + 76, + 111, + 290, + 58, + 80, + 186, + 195, + 119, + 115, + 145, + 145, + 126, + 100, + 178, + 202, + 125, + 225, + 139, + 127, + 391, + 130, + 398, + 276, + 452, + 129, + 195, + 167, + 194, + 133, + 156, + 190, + 409, + 176, + 122, + 406, + 598, + 92, + 113, + 222, + 183, + 90, + 275, + 96, + 163, + 56, + 679, + 99, + 129, + 35, + 74, + 94, + 224, + 158, + 292, + 208, + 121, + 155, + 73, + 469, + 115, + 146, + 1241, + 299, + 128, + 209, + 166, + 131, + 58, + 191, + 274, + 80, + 95, + 128, + 220, + 168, + 360, + 66, + 133, + 12, + 120, + 69, + 119, + 258, + 195, + 696, + 105, + 172, + 387, + 377, + 243, + 91, + 103, + 111, + 205, + 116, + 120, + 102, + 92, + 108, + 124, + 142, + 79, + 41, + 551, + 98, + 386, + 135, + 358, + 154, + 153, + 197, + 245, + 168, + 111, + 288, + 69, + 438, + 28, + 15, + 824, + 451, + 385, + 99, + 471, + 486, + 156, + 53, + 139, + 19, + 144, + 42, + 117, + 149, + 231, + 80, + 141, + 474, + 153, + 98, + 405, + 202, + 294, + 178, + 264, + 729, + 18, + 285, + 367, + 155, + 88, + 220, + 174, + 88, + 199, + 178, + 373, + 211, + 44, + 302, + 171, + 271, + 59, + 61, + 105, + 118, + 392, + 82, + 78, + 121, + 97, + 221, + 329, + 268, + 160, + 599, + 109, + 238, + 249, + 629, + 231, + 119, + 308, + 123, + 199, + 219, + 386, + 112, + 706, + 173, + 207, + 256, + 85, + 117, + 60, + 207, + 187, + 166, + 152, + 93, + 242, + 235, + 303, + 343, + 159, + 173, + 46, + 125, + 108, + 129, + 118, + 113, + 80, + 582, + 68, + 264, + 216, + 43, + 154, + 155, + 72, + 162, + 30, + 81, + 50, + 134, + 86, + 142, + 64, + 377, + 73, + 55, + 76, + 240, + 160, + 120, + 68, + 104, + 87, + 256, + 50, + 132, + 64, + 18, + 212, + 64, + 329, + 239, + 90, + 129, + 295, + 25, + 133, + 127, + 138, + 391, + 128, + 140, + 88, + 243, + 97, + 192, + 340, + 157, + 142, + 84, + 113, + 500, + 179, + 53, + 195, + 155, + 72, + 70, + 312, + 152, + 124, + 158, + 82, + 90, + 428, + 97, + 339, + 351, + 202, + 153, + 203, + 79, + 117, + 322, + 60, + 93, + 387, + 162, + 108, + 414, + 552, + 209, + 263, + 185, + 105, + 75, + 360, + 219, + 102, + 113, + 196, + 118, + 94, + 138, + 204, + 535, + 112, + 107, + 160, + 103, + 123, + 277, + 88, + 332, + 184, + 237, + 49, + 122, + 215, + 25, + 211, + 172, + 113, + 111, + 214, + 95, + 195, + 210, + 97, + 472, + 157, + 352, + 171, + 78, + 72, + 76, + 112, + 161, + 140, + 599, + 75, + 1740, + 513, + 744, + 177, + 184, + 62, + 194, + 94, + 398, + 259, + 77, + 329, + 239, + 414, + 252, + 90, + 116, + 113, + 127, + 447, + 157, + 15, + 173, + 203, + 471, + 82, + 162, + 174, + 188, + 293, + 102, + 118, + 584, + 174, + 58, + 69, + 797, + 95, + 94, + 174, + 245, + 443, + 176, + 552, + 280, + 243, + 358, + 430, + 380, + 327, + 251, + 175, + 696, + 175, + 304, + 129, + 132, + 291, + 420, + 975, + 157, + 92, + 135, + 252, + 68, + 174, + 165, + 89, + 141, + 237, + 67, + 896, + 53, + 147, + 63, + 76, + 79, + 113, + 133, + 559, + 273, + 83, + 37, + 113, + 50, + 209, + 345, + 78, + 210, + 41, + 134, + 208, + 109, + 66, + 125, + 173, + 188, + 160, + 124, + 99, + 381, + 83, + 126, + 181, + 221, + 195, + 678, + 44, + 162, + 225, + 153, + 77, + 96, + 135, + 1464, + 320, + 220, + 111, + 462, + 92, + 432, + 286, + 182, + 96, + 398, + 163, + 444, + 310, + 209, + 444, + 151, + 66, + 115, + 246, + 137, + 98, + 218, + 152, + 102, + 211, + 238, + 164, + 250, + 150, + 82, + 396, + 273, + 103, + 121, + 429, + 167, + 139, + 120, + 118, + 101, + 133, + 180, + 676, + 84, + 40, + 62, + 384, + 82, + 134, + 120, + 115, + 234, + 129, + 126, + 161, + 139, + 168, + 111, + 173, + 93, + 153, + 62, + 159, + 104, + 136, + 376, + 140, + 117, + 126, + 65, + 76, + 588, + 121, + 151, + 656, + 265, + 119, + 97, + 76, + 243, + 321, + 162, + 183, + 179, + 64, + 124, + 335, + 115, + 90, + 244, + 134, + 139, + 104, + 91, + 135, + 123, + 136, + 166, + 545, + 230, + 86, + 140, + 168, + 898, + 241, + 176, + 43, + 12, + 119, + 172, + 419, + 575, + 238, + 76, + 107, + 175, + 156, + 188, + 181, + 660, + 435, + 202, + 120, + 67, + 1026, + 93, + 88, + 508, + 91, + 719, + 71, + 177, + 133, + 144, + 114, + 870, + 70, + 87, + 129, + 511, + 500, + 48, + 362, + 132, + 154, + 190, + 396, + 274, + 151, + 150, + 200, + 126, + 224, + 256, + 415, + 183, + 301, + 94, + 294, + 764, + 231, + 77, + 310, + 142, + 184, + 102, + 169, + 120, + 314, + 126, + 142, + 148, + 368, + 299, + 280, + 42, + 300, + 122, + 379, + 195, + 494, + 129, + 163, + 36, + 46, + 153, + 269, + 159, + 202, + 92, + 239, + 64, + 82, + 202, + 242, + 360, + 168, + 169, + 152, + 203, + 136, + 122, + 76, + 142, + 122, + 127, + 87, + 57, + 167, + 111, + 78, + 34, + 83, + 306, + 67, + 644, + 136, + 313, + 1241, + 136, + 73, + 119, + 65, + 326, + 80, + 158, + 164, + 86, + 246, + 77, + 393, + 296, + 234, + 90, + 82, + 54, + 254, + 192, + 16, + 107, + 146, + 705, + 33, + 94, + 77, + 177, + 944, + 139, + 492, + 82, + 125, + 190, + 188, + 82, + 115, + 78, + 73, + 136, + 119, + 314, + 129, + 358, + 73, + 55, + 268, + 63, + 111, + 72, + 160, + 67, + 65, + 192, + 73, + 85, + 78, + 64, + 197, + 64, + 278, + 1197, + 164, + 171, + 168, + 114, + 72, + 58, + 131, + 80, + 92, + 205, + 168, + 572, + 336, + 232, + 251, + 243, + 147, + 91, + 149, + 128, + 742, + 55, + 22, + 239, + 137, + 119, + 47, + 65, + 102, + 180, + 243, + 187, + 101, + 163, + 27, + 651, + 71, + 247, + 379, + 295, + 212, + 115, + 77, + 238, + 81, + 374, + 361, + 72, + 171, + 66, + 209, + 239, + 152, + 198, + 629, + 10, + 132, + 217, + 219, + 28, + 61, + 117, + 607, + 337, + 527, + 73, + 173, + 81, + 291, + 222, + 277, + 175, + 309, + 97, + 511, + 55, + 173, + 82, + 346, + 215, + 347, + 618, + 203, + 460, + 105, + 157, + 122, + 129, + 661, + 296, + 323, + 112, + 78, + 79, + 30, + 602, + 75, + 332, + 121, + 436, + 186, + 270, + 123, + 192, + 263, + 143, + 153, + 289, + 239, + 78, + 309, + 353, + 101, + 222, + 166, + 98, + 140, + 58, + 132, + 155, + 182, + 195, + 177, + 90, + 263, + 398, + 160, + 82, + 160, + 109, + 142, + 197, + 148, + 209, + 1366, + 124, + 121, + 306, + 173, + 268, + 155, + 176, + 112, + 208, + 138, + 148, + 200, + 311, + 56, + 139, + 87, + 116, + 162, + 109, + 48, + 540, + 122, + 342, + 191, + 288, + 209, + 91, + 196, + 110, + 115, + 57, + 88, + 68, + 78, + 160, + 472, + 205, + 63, + 132, + 85, + 425, + 50, + 66, + 121, + 145, + 99, + 112, + 337, + 87, + 73, + 463, + 67, + 103, + 234, + 220, + 79, + 80, + 83, + 417, + 343, + 119, + 149, + 129, + 113, + 147, + 101, + 125, + 90, + 167, + 96, + 91, + 84, + 342, + 108, + 62, + 67, + 143, + 104, + 110, + 40, + 176, + 122, + 59, + 301, + 343, + 508, + 102, + 72, + 14, + 157, + 116, + 115, + 146, + 72, + 72, + 150, + 159, + 177, + 250, + 248, + 132, + 93, + 121, + 94, + 65, + 201, + 154, + 362, + 124, + 140, + 14, + 386, + 42, + 74, + 23, + 228, + 112, + 57, + 15, + 728, + 72, + 9, + 99, + 11, + 9, + 211, + 422, + 105, + 69, + 111, + 169, + 205, + 734, + 484, + 14, + 235, + 256, + 69, + 69, + 692, + 296, + 232, + 151, + 164, + 198, + 114, + 64, + 203, + 433, + 361, + 97, + 340, + 54, + 251, + 87, + 171, + 134, + 265, + 62, + 318, + 365, + 207, + 105, + 99, + 197, + 484, + 81, + 141, + 73, + 106, + 160, + 50, + 163, + 770, + 313, + 348, + 256, + 56, + 335, + 342, + 109, + 159, + 378, + 139, + 68, + 56, + 43, + 168, + 67, + 36, + 119, + 153, + 63, + 202, + 226, + 56, + 121, + 390, + 75, + 99, + 108, + 153, + 63, + 308, + 163, + 45, + 230, + 90, + 98, + 83, + 194, + 90, + 19, + 69, + 127, + 122, + 179, + 160, + 106, + 137, + 109, + 435, + 110, + 170, + 479, + 254, + 427, + 49, + 102, + 62, + 73, + 109, + 0, + 85, + 42, + 23, + 146, + 100, + 67, + 94, + 60, + 159, + 64, + 247, + 102, + 87, + 106, + 108, + 312, + 92, + 178, + 81, + 317, + 221, + 97, + 67, + 80, + 185, + 17, + 76, + 64, + 131, + 252, + 155, + 14, + 92, + 748, + 104, + 65, + 181, + 176, + 28, + 610, + 279, + 345, + 191, + 82, + 541, + 67, + 137, + 259, + 87, + 103, + 179, + 239, + 358, + 312, + 80, + 126, + 85, + 131, + 392, + 85, + 24, + 119, + 66, + 460, + 183, + 189, + 73, + 130, + 139, + 168, + 99, + 43, + 173, + 260, + 83, + 95, + 264, + 124, + 130, + 128, + 484, + 80, + 174, + 249, + 384, + 71, + 111, + 211, + 22, + 101, + 194, + 124, + 31, + 17, + 301, + 12, + 333, + 219, + 241, + 55, + 74, + 300, + 520, + 96, + 320, + 36, + 234, + 75, + 78, + 162, + 76, + 39, + 59, + 140, + 63, + 358, + 120, + 11, + 175, + 157, + 112, + 264, + 172, + 435, + 84, + 653, + 205, + 100, + 133, + 277, + 303, + 263, + 265, + 77, + 130, + 377, + 155, + 454, + 183, + 218, + 384, + 57, + 209, + 89, + 82, + 168, + 84, + 369, + 109, + 35, + 100, + 133, + 240, + 130, + 361, + 99, + 98, + 58, + 52, + 157, + 94, + 108, + 116, + 87, + 128, + 20, + 113, + 18, + 106, + 154, + 130, + 146, + 56, + 185, + 503, + 95, + 105, + 219, + 281, + 57, + 97, + 84, + 13, + 130, + 136, + 360, + 68, + 153, + 156, + 199, + 181, + 39, + 147, + 113, + 105, + 87, + 114, + 219, + 236, + 130, + 111, + 85, + 69, + 134, + 63, + 352, + 127, + 254, + 100, + 88, + 91, + 217, + 164, + 121, + 220, + 9, + 82, + 129, + 549, + 342, + 79, + 63, + 15, + 308, + 103, + 312, + 129, + 28, + 50, + 508, + 116, + 335, + 38, + 14, + 176, + 15, + 10, + 114, + 13, + 96, + 86, + 516, + 300, + 125, + 125, + 12, + 178, + 19, + 85, + 122, + 27, + 60, + 34, + 561, + 120, + 74, + 214, + 107, + 160, + 16, + 184, + 138, + 79, + 78, + 89, + 88, + 11, + 157, + 186, + 569, + 218, + 43, + 37, + 85, + 202, + 316, + 35, + 26, + 118, + 72, + 106, + 263, + 231, + 101, + 141, + 97, + 88, + 22, + 101, + 78, + 293, + 67, + 25, + 145, + 167, + 126, + 267, + 23, + 206, + 95, + 345, + 81, + 46, + 154, + 85, + 448, + 53, + 296, + 202, + 155, + 70, + 787, + 27, + 183, + 115, + 62, + 554, + 112, + 95, + 61, + 63, + 118, + 34, + 82, + 81, + 55, + 73, + 131, + 118, + 81, + 66, + 77, + 52, + 236, + 74, + 94, + 211, + 536, + 210, + 85, + 13, + 192, + 17, + 116, + 110, + 148, + 67, + 146, + 51, + 101, + 107, + 65, + 85, + 26, + 13, + 47, + 38, + 137, + 84, + 94, + 91, + 71, + 210, + 121, + 96, + 165, + 82, + 100, + 180, + 108, + 84, + 161, + 262, + 72, + 23, + 125, + 12, + 12, + 19, + 87, + 17, + 56, + 80, + 80, + 105, + 81, + 46, + 147, + 126, + 331, + 13, + 44, + 271, + 86, + 54, + 82, + 77, + 14, + 63, + 110, + 59, + 205, + 99, + 151, + 56, + 81, + 122, + 180, + 82, + 49, + 82, + 71, + 121, + 66, + 12, + 13, + 183, + 82, + 72, + 20, + 117, + 28, + 203, + 22, + 31, + 16, + 86, + 308, + 93, + 203, + 68, + 19, + 98, + 9, + 11, + 85, + 16, + 276, + 146, + 183, + 1037, + 507, + 17, + 19, + 12, + 32, + 715, + 56, + 195, + 95, + 83, + 66, + 8, + 46, + 25, + 85, + 26, + 958, + 20, + 50, + 45, + 18, + 49, + 16, + 258, + 13, + 104, + 23, + 35, + 69, + 77, + 65, + 76, + 97, + 140, + 131, + 171, + 162, + 289, + 77, + 68, + 42, + 142, + 12, + 402, + 13, + 77, + 35, + 88, + 50, + 54, + 66, + 29, + 259, + 165, + 74, + 90, + 158, + 22, + 44, + 122, + 46, + 140, + 59, + 26, + 77, + 45, + 103, + 99, + 270, + 74, + 214, + 460, + 95, + 602, + 13, + 9, + 52, + 142, + 126, + 17, + 15, + 21, + 8, + 48, + 51, + 70, + 23, + 12, + 37, + 48, + 159, + 245, + 18, + 189, + 36, + 56, + 62, + 64, + 39, + 133, + 32, + 125, + 161, + 76, + 24, + 7, + 260, + 136, + 58, + 433, + 247, + 787, + 201, + 89, + 19, + 15, + 55, + 58, + 688, + 160, + 193, + 207, + 106, + 65, + 45, + 92, + 47, + 59, + 24, + 56, + 105, + 144, + 85, + 57, + 71, + 82, + 162, + 120, + 247, + 119, + 88, + 50, + 73, + 62, + 24, + 168, + 183, + 25, + 83, + 41, + 204, + 150, + 90, + 643, + 153, + 40, + 488, + 214, + 204, + 69, + 36, + 108, + 135, + 462, + 97, + 28, + 179, + 109, + 139, + 103, + 213, + 112, + 255, + 131, + 77, + 159, + 103, + 156, + 81, + 94, + 113, + 35, + 96, + 345, + 245, + 79, + 67, + 91, + 58, + 245, + 141, + 71, + 168, + 63, + 122, + 90, + 141, + 180, + 60, + 130, + 264, + 95, + 307, + 210, + 77, + 116, + 186, + 115, + 85, + 59, + 186, + 299, + 161, + 91, + 133, + 111, + 38, + 19, + 436, + 64, + 511, + 961, + 76, + 124, + 66, + 54, + 56, + 709, + 95, + 251, + 59, + 398, + 47, + 173, + 69, + 77, + 300, + 94, + 39, + 81, + 18, + 36, + 24, + 92, + 162, + 94, + 58, + 76, + 90, + 14, + 129, + 157, + 145, + 122, + 133, + 493, + 451, + 168, + 370, + 93, + 201, + 85, + 301, + 60, + 27, + 20, + 81, + 74, + 53, + 35, + 215, + 43, + 73, + 106, + 120, + 51, + 669, + 46, + 127, + 17, + 68, + 215, + 63, + 8, + 6, + 515, + 89, + 77, + 159, + 147, + 24, + 3253, + 164, + 309, + 2429, + 19, + 4, + 49, + 73, + 41, + 12, + 5, + 27, + 51, + 3284, + 10, + 11, + 167, + 81, + 18, + 44, + 98, + 95, + 5, + 15, + 21, + 217, + 6, + 449, + 5, + 68, + 23, + 26, + 132, + 83, + 1239, + 4918, + 125, + 107, + 98, + 74, + 133, + 119, + 320, + 129, + 24, + 238, + 119, + 109, + 75, + 168, + 72, + 86, + 51, + 24, + 76, + 200, + 92, + 156, + 53, + 215, + 238, + 128, + 98, + 238, + 82, + 303, + 221, + 80, + 130, + 139, + 669, + 161, + 163, + 147, + 252, + 113, + 375, + 121, + 52, + 81, + 70, + 64, + 115, + 550, + 75, + 57, + 68, + 59, + 55, + 61, + 113, + 134, + 123, + 297, + 353, + 146, + 59, + 210, + 92, + 595, + 57, + 118, + 78, + 74, + 93, + 178, + 69, + 223, + 178, + 75, + 92, + 396, + 334, + 236, + 231, + 44, + 85, + 56, + 64, + 44, + 65, + 265, + 49, + 219, + 155, + 81, + 89, + 192, + 288, + 99, + 33, + 125, + 214, + 121, + 40, + 57, + 76, + 364, + 63, + 378, + 151, + 81, + 89, + 479, + 68, + 135, + 90, + 38, + 77, + 81, + 127, + 55, + 79, + 238, + 179, + 120, + 84, + 309, + 130, + 38, + 70, + 110, + 206, + 160, + 176, + 85, + 483, + 292, + 107, + 112, + 58, + 97, + 55, + 150, + 149, + 96, + 112, + 58, + 259, + 119, + 527, + 88, + 140, + 149, + 76, + 124, + 90, + 96, + 591, + 99, + 118, + 80, + 165, + 93, + 64, + 545, + 346, + 164, + 407, + 61, + 191, + 110, + 56, + 412, + 193, + 180, + 1070, + 349, + 266, + 330, + 59, + 132, + 125, + 435, + 216, + 59, + 214, + 78, + 275, + 279, + 173, + 89, + 215, + 53, + 161, + 97, + 581, + 116, + 155, + 70, + 41, + 104, + 578, + 534, + 52, + 62, + 169, + 52, + 150, + 34, + 49, + 213, + 104, + 386, + 73, + 58, + 138, + 64, + 112, + 80, + 42, + 74, + 148, + 164, + 67, + 190, + 294, + 86, + 96, + 49, + 94, + 103, + 257, + 89, + 190, + 77, + 104, + 68, + 42, + 98, + 73, + 186, + 69, + 249, + 336, + 73, + 55, + 345, + 65, + 62, + 137, + 213, + 1449, + 391, + 160, + 407, + 406, + 104, + 560, + 167, + 623, + 102, + 71, + 264, + 199, + 96, + 529, + 64, + 165, + 141, + 94, + 64, + 107, + 76, + 1081, + 251, + 101, + 504, + 111, + 215, + 622, + 325, + 181, + 166, + 105, + 54, + 89, + 240, + 92, + 124, + 86, + 55, + 52, + 105, + 63, + 48, + 287, + 253, + 142, + 131, + 62, + 352, + 62, + 128, + 120, + 240, + 375, + 131, + 117, + 101, + 114, + 318, + 76, + 168, + 348, + 200, + 135, + 44, + 165, + 70, + 166, + 191, + 134, + 58, + 277, + 155, + 183, + 554, + 218, + 51, + 182, + 187, + 139, + 581, + 268, + 37, + 53, + 396, + 131, + 369, + 161, + 111, + 78, + 184, + 136, + 44, + 48, + 128, + 146, + 127, + 256, + 58, + 223, + 115, + 143, + 62, + 171, + 56, + 113, + 69, + 60, + 578, + 355, + 332, + 113, + 52, + 106, + 66, + 116, + 501, + 179, + 40, + 310, + 148, + 88, + 158, + 65, + 199, + 48, + 711, + 747, + 690, + 48, + 159, + 563, + 90, + 109, + 295, + 196, + 171, + 590, + 136, + 569, + 70, + 124, + 555, + 231, + 226, + 173, + 333, + 131, + 92, + 118, + 224, + 283, + 326, + 113, + 101, + 60, + 78, + 291, + 55, + 609, + 1121, + 564, + 673, + 62, + 98, + 242, + 148, + 204, + 124, + 85, + 148, + 193, + 309, + 242, + 170, + 130, + 221, + 117, + 116, + 178, + 488, + 49, + 142, + 63, + 69, + 176, + 507, + 1735, + 340, + 126, + 501, + 286, + 110, + 99, + 198, + 308, + 156, + 212, + 35, + 127, + 70, + 330, + 272, + 397, + 222, + 333, + 212, + 215, + 57, + 113, + 107, + 86, + 188, + 85, + 140, + 681, + 139, + 61, + 149, + 102, + 99, + 966, + 49, + 132, + 329, + 22, + 200, + 179, + 93, + 68, + 353, + 107, + 247, + 211, + 762, + 181, + 414, + 446, + 189, + 172, + 151, + 487, + 249, + 108, + 295, + 92, + 94, + 104, + 318, + 408, + 293, + 154, + 166, + 127, + 82, + 105, + 41, + 143, + 189, + 41, + 150, + 41, + 237, + 42, + 99, + 46, + 204, + 295, + 88, + 79, + 64, + 233, + 94, + 139, + 65, + 55, + 283, + 326, + 465, + 67, + 119, + 140, + 386, + 228, + 114, + 57, + 130, + 93, + 176, + 79, + 101, + 95, + 64, + 91, + 40, + 54, + 67, + 164, + 95, + 72, + 114, + 116, + 105, + 348, + 155, + 290, + 94, + 39, + 76, + 36, + 132, + 333, + 155, + 106, + 184, + 271, + 224, + 55, + 52, + 341, + 47, + 55, + 71, + 52, + 46, + 132, + 79, + 42, + 295, + 134, + 76, + 194, + 214, + 51, + 278, + 188, + 154, + 79, + 89, + 58, + 84, + 145, + 346, + 75, + 181, + 213, + 353, + 104, + 1268, + 47, + 59, + 108, + 132, + 273, + 50, + 636, + 466, + 132, + 111, + 135, + 281, + 276, + 74, + 71, + 79, + 196, + 175, + 71, + 67, + 149, + 635, + 95, + 280, + 107, + 51, + 850, + 253, + 118, + 141, + 169, + 835, + 200, + 95, + 122, + 148, + 51, + 132, + 180, + 144, + 90, + 129, + 54, + 613, + 150, + 296, + 66, + 155, + 145, + 117, + 435, + 266, + 963, + 385, + 257, + 99, + 82, + 130, + 127, + 84, + 131, + 183, + 198, + 37, + 188, + 99, + 197, + 464, + 242, + 134, + 62, + 91, + 82, + 128, + 638, + 113, + 78, + 84, + 250, + 288, + 34, + 352, + 119, + 89, + 93, + 305, + 109, + 205, + 122, + 107, + 17, + 103, + 272, + 145, + 233, + 172, + 154, + 109, + 103, + 50, + 95, + 48, + 15, + 122, + 505, + 106, + 125, + 191, + 75, + 159, + 204, + 82, + 389, + 162, + 152, + 417, + 208, + 52, + 59, + 346, + 100, + 35, + 2, + 288, + 220, + 77, + 97, + 118, + 530, + 118, + 69, + 91, + 52, + 226, + 172, + 78, + 90, + 70, + 103, + 199, + 110, + 92, + 206, + 91, + 48, + 131, + 79, + 349, + 322, + 125, + 105, + 328, + 67, + 432, + 224, + 74, + 109, + 89, + 124, + 117, + 61, + 191, + 68, + 90, + 67, + 37, + 267, + 73, + 61, + 60, + 232, + 143, + 251, + 90, + 155, + 65, + 329, + 130, + 398, + 18, + 708, + 655, + 100, + 126, + 140, + 140, + 98, + 84, + 756, + 51, + 600, + 120, + 102, + 69, + 53, + 281, + 72, + 339, + 201, + 134, + 133, + 79, + 61, + 46, + 84, + 63, + 95, + 182, + 257, + 71, + 295, + 67, + 401, + 137, + 97, + 98, + 435, + 368, + 152, + 107, + 97, + 52, + 475, + 164, + 86, + 68, + 236, + 142, + 157, + 87, + 137, + 123, + 60, + 190, + 51, + 52, + 164, + 63, + 131, + 127, + 432, + 94, + 76, + 475, + 348, + 309, + 112, + 66, + 91, + 72, + 73, + 199, + 165, + 163, + 124, + 178, + 93, + 265, + 77, + 96, + 140, + 179, + 155, + 384, + 98, + 90, + 110, + 62, + 120, + 154, + 157, + 177, + 82, + 244, + 137, + 110, + 125, + 40, + 97, + 69, + 123, + 188, + 172, + 114, + 55, + 54, + 120, + 174, + 250, + 45, + 251, + 234, + 219, + 240, + 32, + 94, + 139, + 79, + 107, + 399, + 231, + 129, + 597, + 464, + 166, + 196, + 71, + 146, + 123, + 203, + 102, + 175, + 86, + 87, + 75, + 313, + 244, + 355, + 74, + 145, + 141, + 51, + 192, + 464, + 125, + 67, + 79, + 72, + 47, + 722, + 175, + 133, + 163, + 147, + 170, + 727, + 96, + 187, + 135, + 633, + 55, + 231, + 715, + 135, + 116, + 191, + 103, + 255, + 204, + 354, + 61, + 148, + 878, + 138, + 89, + 271, + 171, + 361, + 244, + 218, + 658, + 136, + 54, + 154, + 242, + 275, + 217, + 84, + 110, + 373, + 115, + 259, + 202, + 286, + 98, + 97, + 170, + 129, + 400, + 282, + 241, + 267, + 972, + 194, + 87, + 143, + 372, + 86, + 58, + 117, + 177, + 84, + 171, + 131, + 115, + 174, + 238, + 61, + 139, + 810, + 296, + 218, + 390, + 271, + 195, + 173, + 100, + 192, + 411, + 108, + 163, + 167, + 1014, + 486, + 140, + 160, + 425, + 84, + 79, + 920, + 893, + 240, + 33, + 203, + 394, + 515, + 285, + 65, + 62, + 200, + 55, + 39, + 493, + 40, + 99, + 189, + 581, + 154, + 166, + 105, + 188, + 491, + 263, + 64, + 139, + 105, + 80, + 180, + 158, + 111, + 246, + 83, + 247, + 173, + 193, + 141, + 176, + 106, + 66, + 110, + 201, + 366, + 82, + 129, + 136, + 251, + 203, + 34, + 1476, + 216, + 252, + 436, + 288, + 164, + 91, + 679, + 400, + 372, + 90, + 77, + 139, + 59, + 167, + 427, + 187, + 308, + 178, + 206, + 89, + 62, + 308, + 56, + 209, + 103, + 98, + 180, + 84, + 113, + 135, + 157, + 299, + 100, + 347, + 126, + 108, + 740, + 364, + 706, + 43, + 375, + 125, + 112, + 184, + 140, + 189, + 192, + 305, + 167, + 207, + 104, + 30, + 133, + 577, + 305, + 204, + 210, + 126, + 137, + 530, + 400, + 295, + 221, + 158, + 58, + 193, + 187, + 499, + 125, + 277, + 194, + 210, + 70, + 192, + 162, + 140, + 134, + 67, + 351, + 143, + 197, + 82, + 369, + 130, + 114, + 112, + 289, + 36, + 145, + 589, + 168, + 493, + 265, + 905, + 97, + 682, + 244, + 355, + 161, + 296, + 278, + 286, + 224, + 215, + 155, + 236, + 110, + 770, + 441, + 77, + 139, + 648, + 902, + 470, + 106, + 89, + 72, + 288, + 140, + 61, + 202, + 64, + 109, + 336, + 239, + 473, + 424, + 298, + 183, + 70, + 169, + 808, + 298, + 436, + 108, + 225, + 86, + 723, + 311, + 122, + 85, + 154, + 133, + 103, + 69, + 578, + 217, + 177, + 182, + 203, + 375, + 157, + 630, + 223, + 361, + 125, + 426, + 117, + 185, + 582, + 466, + 222, + 44, + 76, + 154, + 164, + 102, + 111, + 98, + 226, + 256, + 210, + 233, + 211, + 130, + 248, + 52, + 249, + 419, + 117, + 202, + 206, + 201, + 144, + 137, + 75, + 140, + 212, + 219, + 122, + 20, + 75, + 94, + 264, + 118, + 46, + 59, + 94, + 79, + 79, + 66, + 363, + 242, + 20, + 308, + 274, + 84, + 631, + 244, + 86, + 123, + 117, + 186, + 352, + 39, + 325, + 145, + 100, + 72, + 53, + 190, + 200, + 47, + 388, + 498, + 149, + 171, + 357, + 138, + 118, + 149, + 402, + 154, + 68, + 66, + 87, + 661, + 95, + 270, + 142, + 74, + 60, + 258, + 222, + 132, + 103, + 122, + 93, + 133, + 40, + 292, + 58, + 63, + 198, + 63, + 51, + 392, + 122, + 405, + 291, + 137, + 90, + 46, + 64, + 87, + 196, + 161, + 96, + 75, + 60, + 69, + 41, + 162, + 341, + 332, + 126, + 187, + 281, + 37, + 138, + 141, + 135, + 274, + 169, + 205, + 113, + 114, + 60, + 161, + 128, + 187, + 134, + 87, + 133, + 152, + 133, + 68, + 50, + 565, + 405, + 134, + 416, + 17, + 201, + 374, + 581, + 105, + 1548, + 150, + 210, + 131, + 97, + 124, + 742, + 151, + 360, + 96, + 117, + 70, + 89, + 69, + 414, + 323, + 168, + 111, + 227, + 72, + 76, + 448, + 514, + 482, + 50, + 101, + 77, + 638, + 59, + 779, + 198, + 190, + 363, + 155, + 130, + 19, + 319, + 116, + 1283, + 293, + 62, + 148, + 111, + 186, + 164, + 220, + 296, + 267, + 231, + 178, + 547, + 161, + 59, + 121, + 477, + 384, + 149, + 59, + 125, + 201, + 230, + 180, + 98, + 391, + 131, + 174, + 147, + 126, + 265, + 67, + 136, + 174, + 299, + 392, + 780, + 159, + 127, + 418, + 259, + 295, + 138, + 124, + 146, + 145, + 57, + 69, + 166, + 82, + 277, + 194, + 138, + 175, + 117, + 134, + 117, + 187, + 107, + 40, + 161, + 71, + 772, + 128, + 195, + 353, + 175, + 55, + 137, + 98, + 208, + 131, + 47, + 140, + 286, + 690, + 102, + 93, + 120, + 570, + 456, + 49, + 54, + 160, + 385, + 250, + 164, + 234, + 177, + 50, + 457, + 20, + 1206, + 559, + 205, + 1065, + 401, + 50, + 113, + 213, + 340, + 90, + 286, + 342, + 394, + 63, + 214, + 88, + 96, + 171, + 434, + 54, + 86, + 104, + 251, + 328, + 88, + 220, + 118, + 520, + 139, + 501, + 408, + 292, + 95, + 77, + 62, + 359, + 640, + 178, + 112, + 433, + 122, + 236, + 60, + 216, + 70, + 541, + 199, + 191, + 300, + 362, + 208, + 377, + 54, + 157, + 47, + 625, + 88, + 89, + 616, + 56, + 238, + 112, + 748, + 184, + 202, + 273, + 223, + 382, + 278, + 294, + 1662, + 79, + 115, + 101, + 223, + 73, + 163, + 299, + 107, + 70, + 223, + 184, + 523, + 77, + 252, + 174, + 354, + 231, + 130, + 111, + 130, + 374, + 95, + 191, + 193, + 221, + 59, + 314, + 154, + 432, + 584, + 140, + 635, + 108, + 53, + 287, + 266, + 105, + 225, + 221, + 209, + 356, + 259, + 91, + 729, + 744, + 222, + 406, + 307, + 1337, + 178, + 1307, + 93, + 225, + 515, + 312, + 243, + 117, + 207, + 67, + 581, + 676, + 611, + 52, + 188, + 130, + 46, + 143, + 214, + 159, + 307, + 37, + 193, + 167, + 590, + 196, + 228, + 575, + 322, + 546, + 1435, + 332, + 214, + 501, + 723, + 89, + 284, + 214, + 64, + 146, + 281, + 182, + 291, + 616, + 186, + 248, + 380, + 314, + 206, + 519, + 209, + 185, + 335, + 131, + 71, + 323, + 62, + 596, + 517, + 208, + 11, + 206, + 107, + 54, + 107, + 102, + 201, + 844, + 1311, + 255, + 599, + 558, + 800, + 854, + 635, + 72, + 14, + 274, + 291, + 82, + 97, + 130, + 88, + 132, + 36, + 348, + 161, + 77, + 80, + 366, + 298, + 51, + 75, + 69, + 37, + 48, + 57, + 48, + 42, + 91, + 78, + 105, + 340, + 379, + 114, + 667, + 286, + 21, + 104, + 186, + 136, + 145, + 179, + 466, + 834, + 26, + 459, + 113, + 997, + 284, + 281, + 107, + 209, + 125, + 149, + 308, + 191, + 373, + 100, + 66, + 291, + 93, + 86, + 49, + 251, + 137, + 120, + 25, + 220, + 174, + 370, + 116, + 68, + 125, + 358, + 428, + 81, + 322, + 46, + 140, + 408, + 68, + 110, + 415, + 166, + 245, + 228, + 114, + 463, + 329, + 364, + 199, + 145, + 110, + 52, + 34, + 232, + 505, + 140, + 884, + 319, + 71, + 157, + 405, + 93, + 42, + 231, + 107, + 30, + 90, + 106, + 166, + 114, + 85, + 59, + 180, + 101, + 370, + 103, + 422, + 23, + 120, + 45, + 20, + 99, + 173, + 47, + 67, + 126, + 46, + 163, + 1058, + 485, + 176, + 103, + 277, + 74, + 137, + 88, + 158, + 234, + 258, + 523, + 640, + 60, + 1816, + 203, + 63, + 155, + 146, + 91, + 112, + 333, + 124, + 172, + 34, + 318, + 1040, + 103, + 8, + 88, + 25, + 26, + 168, + 67, + 60, + 167, + 59, + 73, + 302, + 541, + 92, + 85, + 128, + 278, + 316, + 278, + 202, + 171, + 352, + 252, + 114, + 53, + 223, + 57, + 91, + 59, + 90, + 228, + 148, + 199, + 1031, + 147, + 82, + 60, + 204, + 500, + 70, + 18, + 174, + 189, + 222, + 290, + 220, + 22, + 35, + 365, + 106, + 244, + 290, + 48, + 302, + 151, + 88, + 95, + 113, + 70, + 178, + 96, + 308, + 29, + 73, + 88, + 86, + 94, + 26, + 78, + 186, + 321, + 220, + 77, + 81, + 19, + 83, + 40, + 640, + 371, + 151, + 88, + 73, + 111, + 757, + 62, + 149, + 164, + 67, + 232, + 385, + 301, + 69, + 183, + 80, + 117, + 89, + 49, + 24, + 162, + 1256, + 244, + 82, + 39, + 133, + 45, + 139, + 116, + 410, + 45, + 125, + 80, + 145, + 86, + 180, + 775, + 207, + 89, + 283, + 107, + 59, + 85, + 200, + 90, + 227, + 119, + 71, + 292, + 69, + 120, + 160, + 340, + 352, + 475, + 322, + 153, + 178, + 73, + 281, + 80, + 96, + 62, + 240, + 197, + 150, + 200, + 42, + 88, + 356, + 150, + 283, + 69, + 30, + 59, + 487, + 418, + 287, + 147, + 282, + 70, + 187, + 554, + 282, + 454, + 95, + 324, + 120, + 256, + 197, + 104, + 377, + 128, + 124, + 90, + 329, + 141, + 50, + 161, + 224, + 188, + 395, + 145, + 252, + 475, + 363, + 172, + 305, + 743, + 62, + 81, + 89, + 139, + 452, + 75, + 661, + 174, + 278, + 184, + 73, + 184, + 123, + 124, + 359, + 60, + 249, + 164, + 64, + 244, + 70, + 96, + 250, + 211, + 74, + 259, + 339, + 195, + 168, + 96, + 144, + 51, + 111, + 214, + 188, + 352, + 118, + 597, + 190, + 193, + 55, + 125, + 113, + 10, + 94, + 176, + 277, + 105, + 197, + 80, + 75, + 382, + 486, + 151, + 80, + 340, + 223, + 212, + 151, + 136, + 258, + 51, + 140, + 790, + 75, + 72, + 604, + 154, + 131, + 733, + 266, + 130, + 98, + 143, + 559, + 350, + 293, + 138, + 105, + 195, + 215, + 311, + 633, + 191, + 239, + 125, + 63, + 219, + 65, + 61, + 123, + 141, + 51, + 149, + 547, + 337, + 47, + 35, + 48, + 230, + 109, + 361, + 67, + 107, + 435, + 140, + 294, + 205, + 470, + 427, + 175, + 380, + 215, + 98, + 267, + 51, + 207, + 20, + 186, + 120, + 319, + 52, + 154, + 267, + 113, + 159, + 249, + 195, + 16, + 330, + 25, + 340, + 158, + 192, + 426, + 260, + 539, + 230, + 9, + 44, + 142, + 315, + 326, + 240, + 517, + 73, + 77, + 279, + 40, + 93, + 102, + 144, + 265, + 115, + 61, + 201, + 106, + 37, + 418, + 106, + 187, + 101, + 619, + 93, + 127, + 88, + 104, + 808, + 600, + 627, + 329, + 399, + 87, + 911, + 352, + 20, + 108, + 262, + 196, + 43, + 128, + 104, + 111, + 61, + 119, + 105, + 133, + 179, + 206, + 240, + 129, + 182, + 642, + 434, + 163, + 214, + 1145, + 148, + 329, + 221, + 339, + 135, + 41, + 159, + 75, + 155, + 147, + 167, + 268, + 16, + 533, + 264, + 303, + 91, + 225, + 90, + 283, + 208, + 56, + 319, + 57, + 354, + 165, + 88, + 180, + 218, + 248, + 75, + 986, + 172, + 315, + 117, + 151, + 513, + 281, + 317, + 116, + 115, + 303, + 97, + 104, + 68, + 136, + 251, + 231, + 341, + 106, + 361, + 212, + 131, + 60, + 378, + 282, + 197, + 217, + 250, + 172, + 210, + 332, + 194, + 233, + 197, + 168, + 688, + 205, + 713, + 176, + 215, + 90, + 232, + 88, + 693, + 430, + 134, + 761, + 233, + 134, + 290, + 370, + 766, + 279, + 298, + 157, + 324, + 537, + 182, + 96, + 59, + 222, + 178, + 146, + 769, + 192, + 156, + 1329, + 76, + 310, + 56, + 40, + 104, + 843, + 185, + 1476, + 476, + 139, + 283, + 165, + 738, + 265, + 442, + 164, + 422, + 91, + 489, + 391, + 1855, + 21, + 83, + 86, + 91, + 149, + 249, + 10, + 358, + 81, + 138, + 275, + 312, + 69, + 37, + 159, + 116, + 21, + 358, + 144, + 41, + 124, + 271, + 152, + 322, + 336, + 441, + 149, + 118, + 85, + 65, + 239, + 267, + 225, + 54, + 108, + 49, + 1221, + 71, + 289, + 127, + 846, + 215, + 75, + 248, + 163, + 337, + 179, + 111, + 63, + 569, + 153, + 208, + 261, + 43, + 321, + 104, + 63, + 81, + 423, + 113, + 71, + 348, + 588, + 76, + 73, + 567, + 13, + 470, + 228, + 22, + 91, + 345, + 346, + 107, + 86, + 40, + 195, + 183, + 195, + 585, + 501, + 222, + 158, + 215, + 30, + 263, + 344, + 74, + 206, + 132, + 175, + 140, + 148, + 66, + 149, + 1166, + 161, + 262, + 60, + 106, + 59, + 181, + 218, + 429, + 327, + 216, + 201, + 102, + 65, + 58, + 221, + 202, + 161, + 167, + 89, + 306, + 56, + 189, + 74, + 154, + 89, + 79, + 169, + 80, + 44, + 133, + 49, + 586, + 218, + 235, + 105, + 5, + 271, + 230, + 68, + 74, + 115, + 100, + 1182, + 144, + 189, + 169, + 42, + 81, + 199, + 184, + 18, + 451, + 51, + 70, + 44, + 54, + 13, + 401, + 484, + 59, + 64, + 526, + 105, + 128, + 115, + 573, + 996, + 206, + 135, + 36, + 425, + 288, + 244, + 378, + 252, + 283, + 109, + 162, + 144, + 49, + 70, + 71, + 306, + 70, + 221, + 44, + 202, + 552, + 97, + 48, + 89, + 171, + 744, + 79, + 233, + 70, + 38, + 8, + 18, + 164, + 100, + 18, + 165, + 296, + 203, + 55, + 186, + 532, + 79, + 197, + 84, + 35, + 26, + 102, + 100, + 164, + 67, + 180, + 182, + 450, + 66, + 119, + 135, + 661, + 492, + 43, + 28, + 82, + 63, + 264, + 118, + 124, + 218, + 232, + 190, + 10, + 456, + 176, + 45, + 124, + 42, + 189, + 126, + 11, + 64, + 28, + 148, + 104, + 45, + 62, + 10, + 102, + 52, + 226, + 58, + 224, + 48, + 207, + 24, + 103, + 219, + 152, + 171, + 94, + 104, + 62, + 220, + 50, + 112, + 381, + 226, + 157, + 673, + 347, + 58, + 85, + 224, + 127, + 366, + 162, + 197, + 47, + 98, + 72, + 182, + 183, + 158, + 57, + 36, + 380, + 78, + 161, + 455, + 83, + 184, + 295, + 551, + 101, + 294, + 13, + 51, + 93, + 48, + 50, + 718, + 161, + 41, + 240, + 75, + 108, + 47, + 408, + 290, + 229, + 148, + 185, + 68, + 54, + 906, + 186, + 124, + 319, + 157, + 106, + 94, + 123, + 12, + 75, + 408, + 119, + 159, + 297, + 61, + 142, + 34, + 79, + 7, + 186, + 105, + 661, + 45, + 14, + 155, + 78, + 10, + 379, + 21, + 85, + 106, + 50, + 757, + 103, + 570, + 139, + 157, + 328, + 366, + 150, + 139, + 51, + 175, + 128, + 11, + 82, + 33, + 52, + 289, + 43, + 101, + 402, + 59, + 39, + 57, + 608, + 430, + 240, + 173, + 137, + 379, + 1036, + 675, + 139, + 377, + 394, + 70, + 61, + 163, + 302, + 41, + 39, + 360, + 230, + 155, + 32, + 61, + 251, + 38, + 36, + 165, + 11, + 98, + 544, + 122, + 695, + 369, + 88, + 64, + 90, + 164, + 147, + 268, + 169, + 585, + 36, + 129, + 33, + 888, + 14, + 305, + 18, + 77, + 382, + 13, + 1032, + 64, + 634, + 138, + 225, + 855, + 258, + 484, + 229, + 330, + 41, + 395, + 39, + 639, + 711, + 178, + 104, + 432, + 1195, + 168, + 229, + 322, + 127, + 59, + 246, + 140, + 11, + 208, + 358, + 407, + 903, + 66, + 127, + 307, + 27, + 163, + 136, + 95, + 505, + 170, + 1162, + 122, + 72, + 294, + 15, + 7, + 21, + 118, + 21, + 345, + 96, + 211, + 73, + 6, + 110, + 321, + 56, + 125, + 328, + 13, + 296, + 48, + 77, + 8, + 182, + 12, + 9, + 11, + 24, + 175, + 69, + 37, + 240, + 11, + 13, + 234, + 30, + 8, + 80, + 12, + 85, + 143, + 14, + 12, + 51, + 12, + 33, + 72, + 1067, + 10, + 273, + 11, + 189, + 61, + 10, + 10, + 47, + 38, + 219, + 205, + 49, + 114, + 8, + 24, + 36, + 11, + 18, + 12, + 291, + 170, + 183, + 234, + 136, + 42, + 169, + 213, + 78, + 76, + 139, + 142, + 145, + 69, + 54, + 170, + 59, + 56, + 76, + 131, + 136, + 889, + 88, + 39, + 225, + 92, + 66, + 92, + 61, + 86, + 64, + 218, + 53, + 90, + 41, + 119, + 115, + 84, + 167, + 136, + 119, + 101, + 161, + 78, + 70, + 75, + 93, + 97, + 164, + 179, + 56, + 100, + 119, + 59, + 113, + 103, + 59, + 137, + 70, + 230, + 60, + 48, + 74, + 231, + 101, + 96, + 74, + 85, + 103, + 82, + 56, + 71, + 85, + 186, + 61, + 41, + 114, + 432, + 61, + 422, + 80, + 104, + 93, + 44, + 147, + 83, + 74, + 163, + 325, + 159, + 81, + 136, + 236, + 140, + 163, + 181, + 47, + 233, + 269, + 83, + 81, + 74, + 115, + 58, + 116, + 125, + 152, + 78, + 141, + 91, + 143, + 94, + 131, + 267, + 86, + 73, + 278, + 181, + 173, + 101, + 124, + 78, + 102, + 184, + 277, + 166, + 77, + 689, + 101, + 558, + 111, + 144, + 166, + 253, + 171, + 96, + 114, + 167, + 78, + 52, + 138, + 684, + 257, + 829, + 544, + 484, + 131, + 394, + 73, + 202, + 247, + 154, + 110, + 427, + 212, + 274, + 479, + 513, + 295, + 117, + 286, + 161, + 498, + 625, + 74, + 203, + 647, + 80, + 173, + 2870, + 90, + 82, + 101, + 340, + 121, + 177, + 73, + 253, + 311, + 148, + 598, + 477, + 144, + 333, + 240, + 444, + 824, + 104, + 293, + 249, + 204, + 173, + 399, + 74, + 285, + 225, + 96, + 254, + 206, + 48, + 326, + 187, + 456, + 93, + 0, + 376, + 224, + 297, + 115, + 103, + 697, + 445, + 314, + 84, + 277, + 170, + 285, + 119, + 484, + 240, + 420, + 66, + 213, + 273, + 239, + 362, + 190, + 345, + 65, + 1090, + 203, + 383, + 100, + 224, + 439, + 205, + 230, + 1091, + 596, + 148, + 514, + 583, + 579, + 309, + 151, + 219, + 278, + 322, + 272, + 185, + 254, + 112, + 275, + 247, + 332, + 916, + 551, + 90, + 172, + 147, + 599, + 232, + 376, + 271, + 86, + 437, + 211, + 263, + 173, + 129, + 197, + 139, + 139, + 399, + 190, + 216, + 75, + 371, + 230, + 41, + 272, + 223, + 377, + 2316, + 357, + 441, + 276, + 583, + 72, + 43, + 60, + 355, + 226, + 327, + 231, + 208, + 91, + 381, + 183, + 194, + 103, + 479, + 354, + 345, + 329, + 226, + 389, + 97, + 197, + 196, + 254, + 366, + 274, + 189, + 411, + 157, + 272, + 615, + 255, + 93, + 49, + 124, + 99, + 83, + 139, + 1063, + 487, + 304, + 66, + 253, + 145, + 98, + 104, + 88, + 1, + 158, + 245, + 161, + 542, + 265, + 562, + 277, + 239, + 172, + 221, + 376, + 353, + 216, + 43, + 736, + 581, + 163, + 79, + 325, + 98, + 131, + 149, + 169, + 87, + 628, + 98, + 205, + 95, + 58, + 59, + 123, + 95, + 97, + 268, + 88, + 120, + 182, + 335, + 218, + 2129, + 462, + 284, + 241, + 291, + 281, + 125, + 261, + 233, + 67, + 663, + 195, + 180, + 34, + 201, + 167, + 58, + 518, + 74, + 250, + 201, + 110, + 405, + 84, + 612, + 229, + 188, + 543, + 216, + 180, + 174, + 249, + 169, + 303, + 56, + 179, + 65, + 91, + 274, + 690, + 281, + 213, + 171, + 417, + 101, + 124, + 162, + 68, + 87, + 374, + 312, + 820, + 328, + 528, + 168, + 264, + 207, + 125, + 150, + 85, + 220, + 113, + 241, + 765, + 126, + 304, + 161, + 236, + 259, + 230, + 96, + 109, + 71, + 159, + 104, + 184, + 188, + 466, + 327, + 290, + 464, + 221, + 152, + 132, + 106, + 98, + 337, + 133, + 90, + 322, + 385, + 208, + 275, + 188, + 236, + 563, + 136, + 142, + 129, + 86, + 259, + 255, + 82, + 565, + 251, + 262, + 283, + 255, + 110, + 62, + 145, + 213, + 111, + 266, + 118, + 855, + 85, + 441, + 104, + 179, + 114, + 114, + 226, + 94, + 461, + 163, + 62, + 49, + 72, + 314, + 178, + 232, + 332, + 308, + 129, + 247, + 259, + 119, + 108, + 101, + 422, + 61, + 108, + 225, + 608, + 201, + 47, + 226, + 431, + 1372, + 343, + 141, + 141, + 139, + 389, + 651, + 692, + 217, + 93, + 253, + 139, + 154, + 601, + 44, + 349, + 225, + 103, + 75, + 251, + 609, + 134, + 166, + 301, + 177, + 126, + 56, + 85, + 194, + 122, + 187, + 114, + 310, + 48, + 125, + 412, + 120, + 86, + 72, + 437, + 358, + 82, + 469, + 99, + 121, + 442, + 54, + 117, + 85, + 171, + 103, + 397, + 142, + 185, + 520, + 244, + 221, + 266, + 623, + 162, + 80, + 540, + 140, + 87, + 55, + 206, + 137, + 122, + 827, + 218, + 67, + 199, + 71, + 220, + 124, + 198, + 82, + 284, + 35, + 291, + 201, + 297, + 384, + 250, + 404, + 156, + 240, + 60, + 114, + 35, + 188, + 528, + 104, + 622, + 91, + 743, + 39, + 474, + 275, + 361, + 124, + 309, + 339, + 77, + 58, + 125, + 34, + 191, + 228, + 316, + 150, + 617, + 352, + 211, + 177, + 270, + 94, + 54, + 670, + 168, + 1122, + 172, + 884, + 229, + 284, + 272, + 165, + 150, + 80, + 126, + 693, + 83, + 144, + 257, + 76, + 218, + 174, + 76, + 1087, + 178, + 62, + 114, + 60, + 563, + 79, + 118, + 314, + 66, + 77, + 178, + 483, + 308, + 289, + 44, + 168, + 130, + 100, + 75, + 357, + 285, + 257, + 487, + 290, + 125, + 772, + 657, + 123, + 255, + 375, + 386, + 280, + 772, + 380, + 302, + 453, + 567, + 91, + 44, + 640, + 417, + 194, + 63, + 433, + 127, + 472, + 1007, + 383, + 256, + 668, + 211, + 792, + 55, + 282, + 198, + 104, + 370, + 48, + 316, + 279, + 225, + 193, + 804, + 211, + 274, + 399, + 344, + 539, + 137, + 580, + 296, + 179, + 137, + 263, + 75, + 287, + 442, + 304, + 772, + 647, + 127, + 71, + 332, + 1410, + 234, + 340, + 579, + 561, + 192, + 71, + 377, + 360, + 141, + 430, + 282, + 125, + 620, + 141, + 50, + 180, + 345, + 118, + 233, + 249, + 179, + 52, + 112, + 392, + 119, + 85, + 515, + 76, + 420, + 198, + 108, + 238, + 548, + 416, + 86, + 210, + 344, + 329, + 82, + 416, + 612, + 177, + 150, + 199, + 112, + 704, + 372, + 135, + 486, + 462, + 156, + 203, + 77, + 486, + 341, + 267, + 313, + 115, + 377, + 135, + 351, + 126, + 456, + 306, + 178, + 292, + 406, + 239, + 514, + 51, + 468, + 172, + 122, + 185, + 196, + 88, + 31, + 268, + 111, + 151, + 73, + 832, + 101, + 113, + 237, + 531, + 158, + 58, + 299, + 69, + 351, + 471, + 47, + 57, + 183, + 515, + 132, + 83, + 921, + 519, + 299, + 97, + 84, + 73, + 107, + 193, + 248, + 332, + 362, + 161, + 334, + 183, + 245, + 218, + 754, + 609, + 146, + 518, + 345, + 218, + 52, + 82, + 140, + 68, + 707, + 212, + 51, + 53, + 198, + 137, + 9, + 191, + 98, + 777, + 161, + 117, + 329, + 155, + 106, + 76, + 382, + 464, + 82, + 75, + 43, + 95, + 175, + 208, + 26, + 218, + 342, + 85, + 73, + 171, + 372, + 108, + 153, + 138, + 175, + 362, + 286, + 316, + 274, + 324, + 206, + 191, + 200, + 279, + 214, + 122, + 649, + 14, + 263, + 433, + 407, + 216, + 33, + 55, + 419, + 113, + 157, + 40, + 53, + 100, + 317, + 294, + 77, + 492, + 70, + 401, + 238, + 212, + 36, + 611, + 280, + 107, + 654, + 156, + 41, + 211, + 54, + 301, + 401, + 237, + 346, + 508, + 115, + 463, + 73, + 775, + 140, + 727, + 160, + 222, + 402, + 297, + 207, + 1034, + 326, + 91, + 326, + 99, + 240, + 158, + 365, + 219, + 188, + 96, + 412, + 65, + 114, + 93, + 69, + 165, + 395, + 345, + 815, + 147, + 224, + 74, + 124, + 771, + 460, + 300, + 17, + 254, + 239, + 73, + 473, + 139, + 128, + 405, + 52, + 370, + 642, + 333, + 413, + 163, + 246, + 232, + 95, + 181, + 186, + 115, + 598, + 323, + 273, + 160, + 134, + 606, + 105, + 246, + 1130, + 156, + 276, + 185, + 278, + 171, + 166, + 1426, + 795, + 441, + 398, + 340, + 308, + 218, + 647, + 57, + 170, + 244, + 146, + 318, + 426, + 229, + 74, + 1184, + 334, + 2053, + 69, + 277, + 1064, + 501, + 245, + 738, + 204, + 140, + 179, + 151, + 65, + 174, + 489, + 758, + 469, + 48, + 368, + 48, + 342, + 73, + 14, + 100, + 238, + 317, + 202, + 99, + 321, + 202, + 177, + 108, + 672, + 952, + 131, + 171, + 239, + 193, + 544, + 625, + 756, + 191, + 1013, + 392, + 324, + 427, + 180, + 200, + 660, + 114, + 291, + 72, + 479, + 114, + 196, + 148, + 12, + 345, + 95, + 9, + 152, + 384, + 322, + 287, + 390, + 173, + 430, + 263, + 383, + 360, + 311, + 124, + 390, + 105, + 37, + 14, + 506, + 257, + 150, + 156, + 142, + 169, + 339, + 220, + 525, + 374, + 210, + 390, + 122, + 249, + 136, + 186, + 406, + 566, + 223, + 421, + 83, + 354, + 207, + 17, + 89, + 386, + 239, + 61, + 234, + 185, + 19, + 96, + 218, + 26, + 159, + 386, + 279, + 245, + 201, + 428, + 128, + 7, + 304, + 185, + 108, + 90, + 122, + 365, + 285, + 275, + 7, + 285, + 158, + 178, + 199, + 65, + 199, + 198, + 352, + 210, + 62, + 401, + 59, + 17, + 319, + 142, + 314, + 317, + 79, + 222, + 277, + 9, + 7, + 13, + 714, + 257, + 658, + 98, + 42, + 12, + 254, + 9, + 123, + 97, + 274, + 72, + 207, + 37, + 517, + 24, + 18, + 238, + 163, + 982, + 231, + 164, + 94, + 450, + 274, + 200, + 250, + 79, + 538, + 257, + 21, + 96, + 72, + 166, + 508, + 51, + 19, + 41, + 611, + 45, + 92, + 473, + 110, + 87, + 92, + 178, + 84, + 123, + 16, + 617, + 205, + 62, + 33, + 246, + 44, + 83, + 443, + 379, + 330, + 40, + 293, + 240, + 190, + 15, + 111, + 128, + 637, + 140, + 222, + 20, + 151, + 272, + 15, + 64, + 147, + 170, + 217, + 53, + 187, + 60, + 180, + 75, + 818, + 293, + 54, + 64, + 22, + 239, + 145, + 95, + 400, + 221, + 318, + 96, + 6, + 91, + 44, + 48, + 157, + 715, + 87, + 334, + 238, + 245, + 297, + 38, + 59, + 23, + 148, + 181, + 190, + 82, + 151, + 180, + 253, + 202, + 211, + 63, + 170, + 151, + 224, + 430, + 379, + 42, + 129, + 20, + 379, + 180, + 116, + 153, + 291, + 268, + 143, + 174, + 247, + 98, + 121, + 326, + 281, + 345, + 53, + 113, + 207, + 177, + 111, + 44, + 237, + 666, + 137, + 305, + 87, + 131, + 110, + 333, + 48, + 86, + 419, + 16, + 325, + 169, + 97, + 58, + 267, + 476, + 115, + 257, + 340, + 436, + 53, + 172, + 861, + 74, + 28, + 170, + 393, + 168, + 230, + 48, + 243, + 150, + 239, + 45, + 528, + 55, + 72, + 16, + 228, + 687, + 90, + 233, + 258, + 334, + 143, + 400, + 289, + 81, + 155, + 1010, + 137, + 67, + 151, + 92, + 724, + 58, + 304, + 401, + 246, + 108, + 643, + 76, + 91, + 87, + 89, + 81, + 93, + 226, + 172, + 121, + 249, + 8, + 10, + 132, + 890, + 10, + 534, + 529, + 8, + 7, + 8, + 9, + 400, + 200, + 22, + 32, + 52, + 69, + 562, + 26, + 124, + 11, + 21, + 140, + 87, + 116, + 316, + 102, + 72, + 31, + 9, + 190, + 152, + 13, + 404, + 7, + 277, + 93, + 23, + 281, + 20, + 233, + 197, + 220, + 104, + 179, + 12, + 69, + 579, + 173, + 231, + 259, + 780, + 405, + 20, + 204, + 242, + 505, + 355, + 307, + 250, + 164, + 57, + 8, + 39, + 22, + 21, + 31, + 554, + 34, + 639, + 106, + 94, + 6, + 8, + 7, + 1156, + 178, + 208, + 43, + 25, + 6, + 659, + 5, + 149, + 627, + 305, + 186, + 159, + 142, + 336, + 219, + 252, + 75, + 63, + 95, + 110, + 645, + 446, + 946, + 126, + 183, + 94, + 154, + 71, + 220, + 186, + 343, + 156, + 101, + 164, + 102, + 87, + 91, + 108, + 382, + 164, + 67, + 201, + 141, + 117, + 155, + 106, + 333, + 77, + 86, + 191, + 115, + 65, + 143, + 78, + 117, + 105, + 111, + 222, + 173, + 44, + 89, + 54, + 98, + 218, + 107, + 227, + 88, + 160, + 167, + 62, + 81, + 66, + 90, + 151, + 139, + 165, + 118, + 186, + 50, + 56, + 101, + 89, + 80, + 75, + 153, + 164, + 169, + 85, + 170, + 211, + 192, + 179, + 358, + 185, + 67, + 108, + 109, + 63, + 243, + 364, + 243, + 353, + 268, + 264, + 62, + 41, + 85, + 121, + 160, + 401, + 239, + 155, + 152, + 104, + 119, + 706, + 110, + 222, + 41, + 126, + 267, + 187, + 200, + 156, + 116, + 132, + 127, + 321, + 279, + 584, + 878, + 195, + 99, + 222, + 78, + 58, + 160, + 115, + 193, + 216, + 135, + 126, + 455, + 53, + 524, + 258, + 104, + 124, + 103, + 24, + 132, + 141, + 207, + 284, + 204, + 85, + 472, + 99, + 196, + 586, + 270, + 127, + 113, + 130, + 97, + 311, + 171, + 209, + 64, + 146, + 94, + 173, + 171, + 198, + 76, + 280, + 249, + 68, + 97, + 102, + 48, + 226, + 88, + 228, + 156, + 130, + 96, + 285, + 666, + 209, + 69, + 27, + 81, + 107, + 398, + 79, + 214, + 114, + 211, + 441, + 149, + 168, + 319, + 184, + 71, + 354, + 116, + 488, + 63, + 121, + 296, + 329, + 147, + 113, + 264, + 115, + 82, + 44, + 56, + 510, + 513, + 301, + 243, + 109, + 126, + 96, + 144, + 92, + 236, + 193, + 210, + 73, + 108, + 95, + 369, + 132, + 136, + 374, + 117, + 347, + 157, + 1958, + 119, + 87, + 208, + 47, + 104, + 60, + 390, + 312, + 244, + 160, + 130, + 74, + 364, + 63, + 200, + 16, + 45, + 170, + 136, + 133, + 47, + 275, + 90, + 437, + 101, + 195, + 59, + 95, + 233, + 64, + 77, + 98, + 15, + 127, + 106, + 174, + 212, + 52, + 297, + 77, + 378, + 7, + 34, + 347, + 291, + 190, + 90, + 222, + 74, + 383, + 172, + 54, + 96, + 334, + 76, + 101, + 238, + 79, + 190, + 257, + 370, + 306, + 130, + 77, + 90, + 336, + 72, + 110, + 392, + 124, + 115, + 107, + 77, + 220, + 75, + 198, + 191, + 434, + 497, + 312, + 186, + 25, + 78, + 264, + 290, + 79, + 313, + 104, + 20, + 675, + 134, + 126, + 159, + 1121, + 230, + 172, + 417, + 240, + 104, + 89, + 13, + 174, + 8, + 6, + 150, + 36, + 79, + 8, + 21, + 99, + 72, + 354, + 520, + 254, + 76, + 108, + 10, + 196, + 78, + 83, + 143, + 40, + 14, + 230, + 15, + 7, + 846, + 9, + 124, + 16, + 362, + 520, + 75, + 157, + 205, + 574, + 159, + 85, + 171, + 136, + 813, + 88, + 142, + 94, + 35, + 11, + 17, + 148, + 155, + 43, + 19, + 146, + 15, + 272, + 10, + 245, + 84, + 24, + 337, + 184, + 632, + 326, + 222, + 169, + 363, + 332, + 334, + 72, + 106, + 461, + 51, + 133, + 301, + 415, + 151, + 259, + 181, + 98, + 123, + 243, + 57, + 234, + 17, + 129, + 154, + 29, + 266, + 163, + 382, + 225, + 358, + 180, + 121, + 391, + 145, + 118, + 175, + 301, + 55, + 286, + 242, + 163, + 173, + 86, + 227, + 479, + 28, + 17, + 62, + 80, + 48, + 459, + 358, + 187, + 188, + 604, + 381, + 103, + 168, + 225, + 269, + 252, + 620, + 239, + 44, + 98, + 188, + 1130, + 325, + 173, + 201, + 143, + 39, + 456, + 196, + 150, + 236, + 125, + 675, + 258, + 60, + 18, + 151, + 154, + 399, + 34, + 295, + 659, + 345, + 227, + 323, + 294, + 388, + 123, + 141, + 106, + 79, + 67, + 206, + 394, + 272, + 65, + 145, + 442, + 220, + 59, + 42, + 313, + 29, + 13, + 231, + 235, + 157, + 359, + 470, + 11, + 495, + 383, + 295, + 155, + 107, + 93, + 277, + 166, + 542, + 58, + 184, + 325, + 360, + 67, + 131, + 57, + 37, + 257, + 247, + 348, + 335, + 217, + 127, + 93, + 71, + 414, + 64, + 352, + 399, + 253, + 227, + 160, + 160, + 316, + 69, + 41, + 76, + 284, + 90, + 206, + 157, + 162, + 43, + 585, + 209, + 290, + 387, + 67, + 253, + 301, + 179, + 283, + 114, + 159, + 64, + 198, + 200, + 552, + 228, + 223, + 496, + 88, + 876, + 305, + 101, + 334, + 183, + 118, + 69, + 355, + 1101, + 150, + 442, + 160, + 85, + 281, + 159, + 71, + 263, + 219, + 342, + 335, + 334, + 414, + 200, + 297, + 279, + 318, + 322, + 63, + 306, + 214, + 81, + 378, + 333, + 1100, + 180, + 477, + 240, + 122, + 351, + 180, + 211, + 169, + 319, + 75, + 674, + 209, + 185, + 211, + 203, + 205, + 469, + 523, + 36, + 371, + 52, + 475, + 233, + 328, + 118, + 102, + 206, + 176, + 370, + 111, + 275, + 320, + 305, + 259, + 399, + 165, + 189, + 193, + 104, + 418, + 74, + 195, + 221, + 84, + 368, + 614, + 199, + 105, + 148, + 88, + 87, + 147, + 121, + 438, + 219, + 210, + 113, + 241, + 194, + 814, + 327, + 275, + 248, + 207, + 197, + 197, + 87, + 207, + 215, + 62, + 293, + 372, + 345, + 473, + 133, + 285, + 128, + 26, + 401, + 38, + 74, + 473, + 219, + 178, + 362, + 152, + 236, + 249, + 227, + 139, + 142, + 376, + 132, + 438, + 100, + 94, + 50, + 403, + 439, + 119, + 36, + 644, + 109, + 34, + 200, + 145, + 72, + 272, + 177, + 90, + 125, + 339, + 153, + 291, + 223, + 208, + 54, + 503, + 174, + 465, + 168, + 253, + 128, + 274, + 278, + 55, + 101, + 115, + 366, + 129, + 90, + 209, + 274, + 137, + 305, + 151, + 340, + 109, + 209, + 170, + 569, + 234, + 156, + 339, + 124, + 597, + 226, + 143, + 181, + 96, + 238, + 236, + 158, + 26, + 159, + 338, + 187, + 159, + 116, + 196, + 49, + 410, + 990, + 244, + 258, + 267, + 37, + 186, + 333, + 144, + 225, + 472, + 45, + 94, + 161, + 199, + 68, + 60, + 187, + 146, + 364, + 10, + 39, + 66, + 78, + 155, + 318, + 175, + 413, + 167, + 251, + 270, + 211, + 107, + 124, + 17, + 477, + 265, + 159, + 221, + 318, + 51, + 184, + 52, + 128, + 57, + 50, + 457, + 37, + 148, + 72, + 203, + 204, + 334, + 428, + 289, + 317, + 150, + 123, + 92, + 189, + 728, + 127, + 179, + 98, + 251, + 1131, + 156, + 343, + 64, + 903, + 106, + 459, + 109, + 100, + 47, + 161, + 322, + 45, + 197, + 89, + 231, + 230, + 389, + 125, + 174, + 89, + 288, + 305, + 353, + 127, + 204, + 137, + 827, + 402, + 319, + 203, + 109, + 110, + 207, + 48, + 164, + 90, + 191, + 130, + 317, + 138, + 194, + 811, + 125, + 184, + 79, + 289, + 198, + 145, + 116, + 346, + 181, + 309, + 91, + 323, + 82, + 316, + 283, + 133, + 120, + 189, + 127, + 84, + 222, + 302, + 136, + 97, + 206, + 51, + 281, + 62, + 253, + 155, + 96, + 311, + 90, + 402, + 89, + 350, + 175, + 549, + 133, + 160, + 192, + 103, + 422, + 74, + 149, + 87, + 233, + 523, + 147, + 265, + 57, + 246, + 328, + 151, + 85, + 345, + 168, + 239, + 169, + 358, + 116, + 222, + 349, + 593, + 69, + 307, + 143, + 129, + 320, + 206, + 270, + 1369, + 456, + 231, + 293, + 215, + 273, + 606, + 142, + 261, + 309, + 232, + 335, + 437, + 167, + 140, + 91, + 284, + 467, + 187, + 362, + 445, + 227, + 281, + 157, + 276, + 117, + 232, + 940, + 337, + 796, + 31, + 86, + 219, + 315, + 175, + 82, + 83, + 57, + 124, + 240, + 413, + 755, + 106, + 187, + 633, + 247, + 370, + 205, + 195, + 531, + 512, + 155, + 263, + 204, + 98, + 82, + 31, + 47, + 22, + 149, + 62, + 102, + 191, + 27, + 203, + 277, + 449, + 224, + 189, + 45, + 127, + 189, + 549, + 104, + 252, + 121, + 197, + 348, + 265, + 333, + 84, + 132, + 104, + 19, + 187, + 197, + 171, + 113, + 317, + 329, + 95, + 144, + 1957, + 556, + 393, + 141, + 70, + 327, + 375, + 46, + 146, + 184, + 176, + 148, + 429, + 213, + 402, + 130, + 155, + 290, + 107, + 87, + 29, + 345, + 48, + 92, + 193, + 252, + 69, + 198, + 63, + 83, + 397, + 229, + 1145, + 159, + 609, + 133, + 502, + 162, + 245, + 123, + 128, + 93, + 189, + 217, + 302, + 223, + 102, + 11, + 1191, + 406, + 16, + 551, + 158, + 278, + 192, + 79, + 273, + 346, + 272, + 282, + 147, + 60, + 239, + 356, + 229, + 208, + 426, + 259, + 122, + 35, + 213, + 128, + 93, + 49, + 168, + 141, + 31, + 232, + 279, + 314, + 63, + 199, + 176, + 281, + 143, + 362, + 165, + 320, + 166, + 248, + 54, + 569, + 57, + 490, + 59, + 158, + 147, + 195, + 134, + 447, + 304, + 293, + 130, + 242, + 113, + 199, + 105, + 332, + 271, + 142, + 491, + 141, + 176, + 154, + 290, + 309, + 69, + 230, + 207, + 326, + 468, + 125, + 118, + 172, + 6, + 188, + 55, + 245, + 213, + 361, + 160, + 51, + 183, + 174, + 66, + 191, + 332, + 162, + 55, + 304, + 141, + 213, + 56, + 219, + 263, + 267, + 135, + 118, + 193, + 247, + 122, + 103, + 121, + 182, + 101, + 156, + 652, + 258, + 72, + 104, + 287, + 154, + 193, + 94, + 356, + 122, + 140, + 135, + 590, + 87, + 633, + 92, + 370, + 560, + 352, + 121, + 360, + 195, + 225, + 589, + 228, + 101, + 102, + 178, + 235, + 253, + 430, + 100, + 127, + 56, + 1254, + 270, + 325, + 279, + 539, + 643, + 54, + 115, + 95, + 425, + 266, + 57, + 304, + 308, + 50, + 247, + 437, + 458, + 96, + 253, + 271, + 227, + 423, + 422, + 49, + 244, + 924, + 126, + 188, + 190, + 580, + 227, + 600, + 639, + 244, + 245, + 178, + 212, + 227, + 201, + 158, + 198, + 146, + 202, + 556, + 189, + 262, + 132, + 166, + 217, + 202, + 252, + 350, + 93, + 908, + 140, + 603, + 592, + 195, + 245, + 739, + 225, + 429, + 293, + 434, + 128, + 269, + 273, + 291, + 364, + 109, + 337, + 219, + 700, + 181, + 589, + 84, + 174, + 253, + 127, + 265, + 272, + 37, + 239, + 376, + 255, + 324, + 228, + 20, + 209, + 831, + 541, + 892, + 123, + 146, + 463, + 43, + 190, + 62, + 245, + 411, + 251, + 177, + 239, + 100, + 138, + 10, + 1051, + 235, + 42, + 59, + 369, + 212, + 490, + 227, + 388, + 702, + 1297, + 201, + 155, + 208, + 189, + 181, + 873, + 170, + 141, + 128, + 156, + 262, + 328, + 150, + 130, + 302, + 253, + 132, + 164, + 906, + 131, + 127, + 104, + 317, + 263, + 11, + 165, + 795, + 98, + 80, + 138, + 85, + 159, + 298, + 57, + 76, + 166, + 68, + 88, + 168, + 440, + 81, + 126, + 380, + 157, + 293, + 106, + 72, + 364, + 108, + 7, + 105, + 26, + 197, + 103, + 328, + 285, + 63, + 132, + 211, + 53, + 94, + 213, + 475, + 240, + 198, + 340, + 247, + 191, + 154, + 122, + 232, + 65, + 279, + 130, + 557, + 63, + 395, + 275, + 171, + 17, + 208, + 163, + 240, + 74, + 70, + 208, + 103, + 302, + 75, + 97, + 137, + 144, + 158, + 182, + 1281, + 153, + 389, + 290, + 134, + 851, + 139, + 500, + 168, + 101, + 299, + 6, + 159, + 318, + 263, + 291, + 209, + 86, + 80, + 52, + 346, + 1014, + 144, + 232, + 203, + 268, + 210, + 312, + 364, + 561, + 44, + 212, + 49, + 278, + 763, + 50, + 402, + 349, + 134, + 343, + 120, + 128, + 111, + 93, + 92, + 301, + 88, + 87, + 108, + 396, + 98, + 86, + 39, + 80, + 525, + 127, + 99, + 105, + 318, + 445, + 374, + 191, + 51, + 145, + 136, + 1243, + 52, + 77, + 217, + 197, + 125, + 90, + 131, + 478, + 70, + 424, + 120, + 326, + 398, + 157, + 87, + 196, + 164, + 137, + 56, + 269, + 159, + 340, + 94, + 132, + 56, + 66, + 254, + 157, + 468, + 451, + 55, + 191, + 87, + 301, + 101, + 248, + 273, + 78, + 18, + 82, + 207, + 53, + 364, + 67, + 186, + 212, + 198, + 129, + 161, + 579, + 491, + 176, + 99, + 69, + 392, + 142, + 428, + 209, + 81, + 171, + 291, + 435, + 272, + 121, + 243, + 164, + 144, + 339, + 154, + 319, + 218, + 125, + 124, + 87, + 151, + 67, + 89, + 183, + 270, + 196, + 247, + 180, + 76, + 279, + 462, + 238, + 81, + 279, + 127, + 238, + 158, + 1642, + 25, + 146, + 264, + 345, + 474, + 75, + 254, + 219, + 175, + 261, + 456, + 241, + 297, + 95, + 198, + 226, + 123, + 473, + 26, + 238, + 316, + 408, + 144, + 428, + 44, + 294, + 311, + 273, + 91, + 36, + 37, + 376, + 44, + 104, + 309, + 247, + 217, + 47, + 207, + 130, + 455, + 202, + 147, + 86, + 318, + 262, + 83, + 334, + 274, + 154, + 286, + 187, + 557, + 134, + 237, + 104, + 612, + 40, + 506, + 191, + 187, + 174, + 224, + 235, + 128, + 156, + 1954, + 211, + 129, + 13, + 38, + 456, + 216, + 152, + 438, + 129, + 311, + 348, + 53, + 283, + 583, + 146, + 114, + 487, + 1049, + 213, + 466, + 348, + 263, + 324, + 267, + 418, + 553, + 546, + 156, + 364, + 129, + 282, + 152, + 323, + 548, + 199, + 63, + 383, + 72, + 26, + 713, + 15, + 81, + 211, + 322, + 349, + 142, + 102, + 82, + 84, + 9, + 13, + 21, + 62, + 240, + 61, + 30, + 88, + 14, + 156, + 50, + 15, + 80, + 304, + 108, + 295, + 54, + 573, + 443, + 55, + 206, + 249, + 94, + 26, + 309, + 194, + 313, + 577, + 457, + 210, + 27, + 502, + 139, + 57, + 212, + 590, + 7, + 81, + 528, + 195, + 106, + 9, + 156, + 94, + 351, + 73, + 313, + 66, + 143, + 255, + 164, + 55, + 197, + 189, + 261, + 165, + 84, + 117, + 288, + 58, + 496, + 87, + 108, + 285, + 69, + 207, + 128, + 277, + 346, + 94, + 65, + 32, + 344, + 195, + 469, + 58, + 155, + 42, + 12, + 460, + 183, + 242, + 112, + 8, + 15, + 182, + 422, + 152, + 248, + 141, + 67, + 279, + 188, + 135, + 231, + 212, + 227, + 85, + 75, + 220, + 80, + 202, + 340, + 549, + 472, + 409, + 479, + 308, + 90, + 200, + 161, + 262, + 49, + 369, + 471, + 198, + 568, + 410, + 116, + 686, + 28, + 114, + 200, + 170, + 214, + 106, + 231, + 14, + 240, + 231, + 712, + 239, + 219, + 75, + 190, + 181, + 178, + 204, + 405, + 274, + 227, + 360, + 74, + 490, + 105, + 226, + 189, + 87, + 386, + 149, + 131, + 225, + 40, + 151, + 105, + 8, + 281, + 347, + 103, + 95, + 214, + 197, + 465, + 133, + 553, + 225, + 49, + 59, + 86, + 21, + 99, + 165, + 123, + 54, + 41, + 1487, + 327, + 177, + 68, + 125, + 42, + 79, + 214, + 85, + 82, + 239, + 187, + 329, + 234, + 282, + 75, + 622, + 102, + 278, + 66, + 68, + 432, + 78, + 275, + 292, + 134, + 313, + 333, + 1114, + 50, + 207, + 552, + 249, + 72, + 299, + 124, + 109, + 251, + 101, + 82, + 146, + 262, + 177, + 124, + 239, + 158, + 91, + 52, + 159, + 294, + 175, + 132, + 282, + 295, + 505, + 580, + 90, + 261, + 148, + 26, + 76, + 255, + 193, + 643, + 74, + 41, + 93, + 228, + 161, + 215, + 758, + 371, + 426, + 246, + 329, + 159, + 77, + 262, + 386, + 101, + 35, + 629, + 186, + 174, + 296, + 79, + 240, + 261, + 47, + 63, + 112, + 57, + 77, + 190, + 200, + 161, + 188, + 254, + 232, + 97, + 296, + 98, + 228, + 274, + 306, + 429, + 776, + 150, + 153, + 146, + 142, + 430, + 189, + 236, + 798, + 66, + 34, + 333, + 128, + 102, + 400, + 175, + 69, + 126, + 285, + 168, + 127, + 147, + 472, + 246, + 213, + 220, + 299, + 247, + 111, + 195, + 148, + 286, + 75, + 386, + 544, + 127, + 155, + 184, + 193, + 70, + 206, + 243, + 437, + 259, + 238, + 410, + 254, + 56, + 102, + 217, + 145, + 271, + 0, + 258, + 196, + 135, + 347, + 72, + 50, + 171, + 211, + 298, + 120, + 219, + 214, + 82, + 304, + 273, + 471, + 301, + 86, + 508, + 503, + 142, + 276, + 201, + 222, + 168, + 192, + 439, + 284, + 288, + 136, + 66, + 445, + 123, + 285, + 164, + 81, + 89, + 214, + 16, + 167, + 72, + 75, + 14, + 200, + 13, + 134, + 34, + 15, + 188, + 788, + 103, + 106, + 25, + 52, + 234, + 255, + 200, + 217, + 9, + 315, + 10, + 352, + 97, + 63, + 117, + 34, + 104, + 15, + 14, + 208, + 11, + 160, + 197, + 131, + 12, + 114, + 304, + 20, + 109, + 138, + 6, + 63, + 200, + 271, + 42, + 341, + 100, + 40, + 114, + 150, + 431, + 91, + 52, + 99, + 49, + 7, + 158, + 259, + 206, + 25, + 300, + 246, + 178, + 318, + 201, + 105, + 214, + 67, + 82, + 187, + 69, + 58, + 64, + 631, + 942, + 207, + 104, + 377, + 66, + 128, + 291, + 115, + 524, + 358, + 366, + 23, + 52, + 347, + 107, + 48, + 74, + 305, + 104, + 176, + 507, + 103, + 242, + 137, + 223, + 124, + 63, + 137, + 22, + 59, + 179, + 11, + 69, + 300, + 256, + 7, + 43, + 22, + 429, + 494, + 296, + 17, + 243, + 184, + 245, + 360, + 139, + 54, + 232, + 517, + 153, + 116, + 168, + 261, + 69, + 121, + 23, + 306, + 202, + 342, + 22, + 455, + 245, + 33, + 58, + 41, + 360, + 179, + 174, + 43, + 68, + 212, + 38, + 639, + 483, + 344, + 141, + 113, + 87, + 238, + 155, + 337, + 24, + 365, + 37, + 25, + 109, + 152, + 179, + 118, + 30, + 79, + 324, + 151, + 366, + 43, + 816, + 189, + 131, + 78, + 97, + 337, + 185, + 78, + 442, + 74, + 179, + 225, + 15, + 279, + 416, + 83, + 25, + 542, + 256, + 189, + 251, + 1100, + 451, + 184, + 232, + 209, + 16, + 340, + 313, + 7, + 493, + 184, + 161, + 61, + 267, + 393, + 286, + 87, + 277, + 200, + 204, + 175, + 247, + 218, + 146, + 77, + 245, + 482, + 56, + 396, + 136, + 549, + 17, + 439, + 561, + 175, + 139, + 395, + 145, + 119, + 88, + 57, + 300, + 200, + 293, + 262, + 137, + 211, + 246, + 357, + 322, + 584, + 240, + 374, + 215, + 22, + 207, + 183, + 100, + 146, + 31, + 334, + 271, + 223, + 95, + 106, + 36, + 53, + 223, + 127, + 158, + 165, + 536, + 380, + 107, + 406, + 240, + 278, + 706, + 161, + 370, + 157, + 209, + 1925, + 328, + 242, + 450, + 485, + 76, + 289, + 163, + 118, + 53, + 324, + 301, + 139, + 32, + 278, + 112, + 34, + 80, + 276, + 291, + 217, + 192, + 208, + 415, + 278, + 173, + 350, + 224, + 668, + 474, + 143, + 317, + 106, + 234, + 314, + 422, + 130, + 61, + 255, + 259, + 29, + 306, + 266, + 314, + 181, + 178, + 351, + 373, + 180, + 85, + 325, + 187, + 463, + 142, + 280, + 398, + 149, + 191, + 193, + 302, + 317, + 211, + 172, + 464, + 343, + 98, + 198, + 361, + 345, + 114, + 210, + 68, + 239, + 112, + 34, + 181, + 206, + 194, + 209, + 206, + 355, + 339, + 191, + 175, + 286, + 93, + 170, + 173, + 541, + 89, + 194, + 472, + 304, + 125, + 96, + 175, + 134, + 807, + 235, + 124, + 57, + 225, + 144, + 177, + 455, + 264, + 285, + 166, + 456, + 101, + 256, + 497, + 600, + 339, + 220, + 700, + 150, + 147, + 236, + 133, + 58, + 1388, + 57, + 70, + 50, + 94, + 83, + 29, + 46, + 152, + 61, + 389, + 1108, + 8, + 310, + 197, + 21, + 117, + 413, + 65, + 53, + 321, + 82, + 133, + 77, + 129, + 26, + 200, + 95, + 49, + 15, + 15, + 348, + 129, + 44, + 231, + 155, + 135, + 217, + 22, + 32, + 435, + 25, + 370, + 201, + 152, + 66, + 213, + 150, + 364, + 329, + 282, + 51, + 68, + 109, + 23, + 207, + 193, + 224, + 173, + 67, + 149, + 29, + 118, + 95, + 84, + 43, + 93, + 172, + 161, + 628, + 172, + 200, + 134, + 51, + 140, + 87, + 318, + 9, + 157, + 9, + 19, + 39, + 502, + 113, + 30, + 355, + 43, + 17, + 47, + 296, + 69, + 323, + 167, + 220, + 177, + 61, + 699, + 133, + 6, + 96, + 318, + 413, + 66, + 15, + 152, + 294, + 15, + 290, + 12, + 31, + 135, + 142, + 123, + 93, + 133, + 99, + 67, + 131, + 149, + 27, + 152, + 41, + 128, + 78, + 11, + 101, + 147, + 262, + 46, + 104, + 119, + 423, + 315, + 78, + 9, + 44, + 75, + 66, + 7, + 529, + 349, + 127, + 83, + 158, + 276, + 264, + 109, + 234, + 272, + 329, + 589, + 363, + 172, + 53, + 34, + 82, + 155, + 788, + 528, + 114, + 314, + 112, + 204, + 60, + 80, + 281, + 321, + 149, + 155, + 49, + 354, + 294, + 137, + 191, + 172, + 55, + 167, + 92, + 444, + 132, + 10, + 315, + 64, + 110, + 421, + 174, + 228, + 296, + 9, + 337, + 185, + 104, + 244, + 152, + 231, + 184, + 124, + 21, + 96, + 99, + 117, + 53, + 261, + 201, + 155, + 43, + 53, + 14, + 108, + 425, + 200, + 223, + 413, + 177, + 66, + 253, + 14, + 316, + 152, + 137, + 155, + 165, + 466, + 368, + 201, + 146, + 77, + 157, + 96, + 104, + 38, + 154, + 342, + 43, + 68, + 179, + 427, + 63, + 197, + 409, + 299, + 323, + 215, + 147, + 143, + 541, + 172, + 309, + 69, + 79, + 299, + 213, + 196, + 54, + 54, + 404, + 80, + 135, + 162, + 341, + 118, + 168, + 308, + 176, + 223, + 199, + 721, + 641, + 234, + 86, + 180, + 68, + 103, + 102, + 239, + 325, + 234, + 194, + 134, + 77, + 216, + 122, + 109, + 1966, + 131, + 140, + 281, + 156, + 161, + 44, + 240, + 172, + 127, + 248, + 115, + 38, + 201, + 341, + 298, + 52, + 77, + 417, + 361, + 156, + 44, + 166, + 58, + 76, + 312, + 298, + 484, + 204, + 437, + 37, + 193, + 230, + 204, + 163, + 358, + 195, + 154, + 246, + 151, + 297, + 172, + 74, + 187, + 124, + 186, + 252, + 248, + 85, + 199, + 226, + 98, + 358, + 158, + 194, + 340, + 325, + 88, + 323, + 275, + 177, + 53, + 396, + 157, + 251, + 402, + 191, + 94, + 499, + 66, + 197, + 56, + 195, + 65, + 38, + 168, + 154, + 45, + 121, + 318, + 255, + 174, + 53, + 196, + 173, + 65, + 136, + 444, + 308, + 562, + 272, + 419, + 107, + 173, + 62, + 129, + 65, + 202, + 378, + 185, + 1805, + 367, + 12, + 222, + 122, + 237, + 102, + 281, + 80, + 36, + 143, + 259, + 221, + 177, + 84, + 406, + 185, + 155, + 53, + 99, + 254, + 256, + 25, + 253, + 277, + 125, + 151, + 127, + 449, + 16, + 134, + 32, + 285, + 383, + 179, + 51, + 446, + 136, + 133, + 513, + 225, + 204, + 240, + 135, + 245, + 119, + 38, + 331, + 992, + 75, + 72, + 418, + 324, + 69, + 96, + 310, + 149, + 182, + 364, + 36, + 426, + 196, + 126, + 201, + 300, + 48, + 189, + 305, + 68, + 65, + 247, + 164, + 178, + 19, + 9, + 165, + 14, + 36, + 8, + 121, + 921, + 436, + 119, + 13, + 181, + 7, + 16, + 259, + 102, + 19, + 113, + 21, + 17, + 18, + 99, + 24, + 164, + 78, + 29, + 9, + 465, + 94, + 178, + 25, + 348, + 30, + 222, + 325, + 254, + 925, + 15, + 186, + 580, + 40, + 350, + 720, + 11, + 10, + 21, + 146, + 189, + 365, + 91, + 84, + 22, + 166, + 182, + 638, + 161, + 119, + 61, + 362, + 83, + 151, + 566, + 141, + 64, + 244, + 123, + 16, + 201, + 212, + 317, + 145, + 532, + 248, + 158, + 141, + 190, + 23, + 276, + 7, + 201, + 20, + 51, + 603, + 283, + 283, + 341, + 102, + 267, + 143, + 22, + 428, + 484, + 149, + 338, + 73, + 584, + 260, + 185, + 223, + 76, + 214, + 103, + 273, + 451, + 12, + 1166, + 105, + 8, + 7, + 159, + 210, + 17, + 365, + 255, + 377, + 165, + 133, + 125, + 67, + 279, + 112, + 152, + 21, + 14, + 243, + 17, + 12, + 535, + 188, + 149, + 62, + 204, + 210, + 159, + 258, + 57, + 107, + 64, + 116, + 318, + 47, + 183, + 343, + 230, + 138, + 155, + 47, + 201, + 289, + 11, + 273, + 91, + 43, + 121, + 8, + 524, + 13, + 157, + 72, + 112, + 50, + 225, + 42, + 35, + 123, + 255, + 334, + 104, + 235, + 64, + 137, + 200, + 433, + 215, + 287, + 93, + 16, + 523, + 225, + 24, + 298, + 200, + 234, + 797, + 419, + 87, + 83, + 30, + 135, + 97, + 128, + 586, + 240, + 703, + 1106, + 151, + 282, + 377, + 174, + 199, + 437, + 233, + 74, + 184, + 111, + 168, + 156, + 66, + 97, + 97, + 160, + 149, + 202, + 112, + 154, + 337, + 95, + 294, + 162, + 20, + 73, + 136, + 138, + 118, + 30, + 444, + 466, + 97, + 172, + 146, + 16, + 150, + 163, + 88, + 277, + 96, + 175, + 22, + 164, + 88, + 136, + 17, + 155, + 159, + 36, + 43, + 70, + 107, + 806, + 104, + 217, + 216, + 143, + 106, + 226, + 166, + 87, + 64, + 105, + 99, + 130, + 256, + 121, + 285, + 140, + 167, + 311, + 164, + 109, + 444, + 265, + 175, + 292, + 239, + 59, + 471, + 182, + 432, + 50, + 111, + 685, + 134, + 423, + 165, + 42, + 177, + 99, + 108, + 291, + 170, + 117, + 161, + 330, + 480, + 24, + 172, + 143, + 88, + 157, + 553, + 25, + 433, + 632, + 115, + 228, + 142, + 172, + 246, + 329, + 46, + 95, + 185, + 229, + 293, + 46, + 169, + 226, + 113, + 284, + 151, + 68, + 56, + 196, + 332, + 24, + 218, + 131, + 400, + 164, + 123, + 99, + 362, + 111, + 366, + 367, + 464, + 158, + 29, + 221, + 113, + 228, + 535, + 91, + 265, + 43, + 299, + 196, + 162, + 304, + 251, + 261, + 8, + 171, + 112, + 374, + 60, + 176, + 241, + 303, + 649, + 134, + 353, + 72, + 337, + 291, + 546, + 252, + 204, + 267, + 406, + 320, + 210, + 198, + 241, + 16, + 72, + 350, + 93, + 176, + 118, + 387, + 336, + 205, + 135, + 240, + 512, + 41, + 181, + 306, + 90, + 15, + 136, + 154, + 305, + 47, + 172, + 170, + 204, + 294, + 367, + 173, + 62, + 136, + 292, + 80, + 90, + 144, + 28, + 178, + 386, + 493, + 33, + 167, + 125, + 185, + 341, + 223, + 415, + 908, + 166, + 67, + 167, + 10, + 151, + 384, + 192, + 212, + 308, + 54, + 30, + 340, + 225, + 346, + 290, + 8, + 382, + 100, + 506, + 168, + 253, + 195, + 165, + 100, + 49, + 103, + 19, + 296, + 145, + 69, + 26, + 9, + 460, + 111, + 165, + 10, + 113, + 12, + 9, + 14, + 194, + 14, + 115, + 14, + 289, + 14, + 10, + 354, + 236, + 62, + 103, + 172, + 164, + 778, + 39, + 1181, + 124, + 45, + 16, + 347, + 233, + 136, + 452, + 56, + 33, + 35, + 227, + 197, + 191, + 85, + 642, + 173, + 607, + 67, + 239, + 54, + 144, + 123, + 270, + 160, + 208, + 300, + 259, + 21, + 128, + 146, + 71, + 169, + 198, + 302, + 49, + 20, + 1452, + 95, + 16, + 241, + 7, + 432, + 153, + 67, + 48, + 72, + 158, + 148, + 377, + 367, + 195, + 64, + 612, + 7, + 14, + 55, + 58, + 180, + 13, + 68, + 64, + 132, + 391, + 26, + 493, + 157, + 282, + 8, + 101, + 133, + 39, + 23, + 12, + 217, + 77, + 11, + 8, + 24, + 233, + 82, + 283, + 159, + 58, + 181, + 301, + 151, + 146, + 44, + 358, + 1286, + 73, + 55, + 454, + 12, + 99, + 123, + 102, + 282, + 514, + 25, + 7, + 76, + 82, + 298, + 386, + 457, + 18, + 193, + 262, + 22, + 45, + 34, + 272, + 48, + 301, + 164, + 133, + 52, + 325, + 36, + 56, + 174, + 322, + 333, + 311, + 290, + 27, + 256, + 173, + 134, + 26, + 74, + 239, + 109, + 178, + 71, + 16, + 45, + 22, + 178, + 41, + 142, + 45, + 166, + 100, + 358, + 84, + 66, + 79, + 456, + 676, + 472, + 78, + 354, + 117, + 265, + 251, + 98, + 13, + 268, + 144, + 166, + 138, + 192, + 210, + 133, + 261, + 81, + 65, + 217, + 63, + 74, + 212, + 20, + 16, + 894, + 152, + 116, + 133, + 95, + 56, + 564, + 188, + 48, + 342, + 6, + 170, + 119, + 80, + 15, + 265, + 67, + 77, + 358, + 303, + 47, + 228, + 169, + 394, + 1380, + 36, + 201, + 199, + 58, + 141, + 139, + 82, + 86, + 42, + 229, + 175, + 757, + 521, + 264, + 401, + 13, + 200, + 42, + 167, + 58, + 11, + 167, + 237, + 173, + 165, + 114, + 406, + 13, + 73, + 160, + 372, + 206, + 137, + 13, + 320, + 223, + 57, + 109, + 221, + 117, + 44, + 187, + 50, + 10, + 135, + 31, + 296, + 239, + 22, + 212, + 150, + 582, + 199, + 102, + 140, + 15, + 61, + 20, + 152, + 245, + 23, + 197, + 63, + 103, + 427, + 80, + 232, + 255, + 8, + 284, + 550, + 536, + 193, + 124, + 12, + 134, + 10, + 17, + 895, + 212, + 364, + 14, + 122, + 21, + 144, + 16, + 13, + 128, + 67, + 266, + 411, + 391, + 195, + 74, + 340, + 350, + 309, + 12, + 136, + 223, + 215, + 156, + 233, + 59, + 49, + 167, + 113, + 48, + 54, + 306, + 61, + 20, + 16, + 69, + 218, + 18, + 47, + 333, + 102, + 64, + 101, + 800, + 131, + 476, + 65, + 262, + 75, + 51, + 208, + 53, + 162, + 34, + 73, + 22, + 172, + 258, + 71, + 11, + 93, + 92, + 138, + 69, + 204, + 28, + 68, + 109, + 1223, + 136, + 101, + 126, + 137, + 509, + 143, + 641, + 104, + 211, + 131, + 15, + 69, + 63, + 58, + 22, + 1326, + 34, + 204, + 44, + 376, + 133, + 439, + 73, + 104, + 504, + 121, + 49, + 258, + 12, + 126, + 166, + 11, + 157, + 57, + 543, + 20, + 59, + 33, + 126, + 87, + 15, + 45, + 17, + 7, + 16, + 201, + 8, + 58, + 28, + 11, + 17, + 114, + 159, + 359, + 17, + 11, + 193, + 116, + 157, + 73, + 18, + 26, + 126, + 97, + 144, + 59, + 19, + 44, + 22, + 44, + 16, + 7, + 21, + 15, + 30, + 13, + 8, + 259, + 90, + 51, + 10, + 380, + 33, + 30, + 557, + 173, + 87, + 97, + 333, + 55, + 213, + 192, + 57, + 16, + 245, + 115, + 410, + 158, + 283, + 217, + 97, + 420, + 325, + 161, + 166, + 97, + 74, + 15, + 216, + 288, + 17, + 28, + 169, + 88, + 12, + 52, + 155, + 205, + 68, + 63, + 114, + 297, + 185, + 222, + 284, + 195, + 119, + 261, + 113, + 11, + 42, + 110, + 455, + 119, + 110, + 170, + 245, + 268, + 108, + 182, + 165, + 18, + 250, + 154, + 169, + 176, + 69, + 119, + 295, + 11, + 33, + 152, + 41, + 252, + 40, + 156, + 55, + 18, + 379, + 128, + 86, + 98, + 8, + 261, + 133, + 398, + 287, + 208, + 434, + 119, + 140, + 191, + 380, + 115, + 325, + 167, + 63, + 21, + 47, + 9, + 82, + 212, + 78, + 546, + 79, + 74, + 229, + 156, + 114, + 435, + 326, + 170, + 143, + 111, + 184, + 233, + 110, + 116, + 178, + 144, + 177, + 21, + 163, + 91, + 78, + 239, + 169, + 87, + 37, + 113, + 24, + 213, + 380, + 153, + 192, + 66, + 57, + 123, + 276, + 317, + 105, + 103, + 73, + 504, + 182, + 336, + 248, + 504, + 82, + 182, + 78, + 222, + 1010, + 180, + 207, + 46, + 432, + 517, + 180, + 465, + 98, + 599, + 15, + 18, + 196, + 309, + 194, + 336, + 104, + 98, + 236, + 146, + 665, + 181, + 197, + 9, + 36, + 87, + 16, + 8, + 11, + 166, + 33, + 227, + 375, + 241, + 190, + 213, + 412, + 31, + 173, + 74, + 92, + 166, + 368, + 221, + 113, + 577, + 12, + 428, + 142, + 68, + 61, + 239, + 297, + 202, + 194, + 566, + 207, + 179, + 572, + 217, + 13, + 112, + 466, + 109, + 22, + 267, + 54, + 895, + 83, + 11, + 32, + 6, + 410, + 53, + 4, + 23, + 27, + 170, + 453, + 16, + 324, + 663, + 36, + 14, + 342, + 291, + 128, + 22, + 82, + 146, + 9, + 64, + 18, + 29, + 26, + 11, + 50, + 22, + 687, + 80, + 12, + 197, + 126, + 424, + 28, + 305, + 236, + 232, + 80, + 11, + 953, + 267, + 34, + 214, + 56, + 109, + 45, + 226, + 171, + 150, + 263, + 32, + 8, + 28, + 135, + 114, + 394, + 169, + 121, + 190, + 150, + 119, + 230, + 94, + 89, + 563, + 86, + 120, + 680, + 235, + 74, + 158, + 168, + 152, + 210, + 81, + 239, + 100, + 259, + 44, + 320, + 807, + 190, + 251, + 181, + 81, + 83, + 566, + 80, + 50, + 137, + 169, + 253, + 105, + 157, + 43, + 249, + 23, + 46, + 97, + 65, + 644, + 86, + 304, + 186, + 582, + 365, + 354, + 112, + 101, + 174, + 128, + 70, + 91, + 109, + 64, + 104, + 327, + 106, + 90, + 179, + 69, + 112, + 265, + 54, + 344, + 70, + 195, + 92, + 613, + 485, + 185, + 200, + 160, + 111, + 305, + 77, + 144, + 159, + 74, + 115, + 176, + 54, + 205, + 180, + 324, + 159, + 87, + 93, + 217, + 109, + 143, + 115, + 754, + 123, + 85, + 166, + 217, + 243, + 142, + 170, + 100, + 111, + 164, + 133, + 105, + 108, + 527, + 135, + 107, + 314, + 65, + 61, + 78, + 135, + 293, + 84, + 309, + 111, + 119, + 159, + 109, + 217, + 71, + 260, + 333, + 228, + 256, + 302, + 500, + 172, + 137, + 244, + 134, + 376, + 911, + 240, + 122, + 167, + 351, + 58, + 56, + 145, + 94, + 68, + 171, + 3509, + 81, + 128, + 304, + 55, + 140, + 83, + 222, + 145, + 118, + 85, + 251, + 69, + 245, + 135, + 88, + 125, + 132, + 187, + 139, + 109, + 161, + 100, + 223, + 141, + 149, + 136, + 323, + 197, + 222, + 58, + 407, + 252, + 80, + 112, + 87, + 176, + 103, + 260, + 108, + 91, + 41, + 89, + 82, + 132, + 147, + 362, + 212, + 118, + 264, + 94, + 258, + 137, + 245, + 752, + 175, + 480, + 532, + 163, + 71, + 82, + 121, + 188, + 282, + 130, + 483, + 108, + 81, + 128, + 283, + 138, + 119, + 93, + 159, + 133, + 140, + 136, + 145, + 224, + 95, + 90, + 123, + 297, + 76, + 114, + 113, + 62, + 1576, + 107, + 204, + 146, + 424, + 103, + 161, + 242, + 207, + 73, + 156, + 112, + 78, + 110, + 183, + 74, + 123, + 76, + 128, + 141, + 89, + 99, + 236, + 99, + 186, + 86, + 158, + 162, + 681, + 322, + 210, + 568, + 294, + 77, + 85, + 93, + 121, + 95, + 135, + 414, + 60, + 151, + 68, + 361, + 142, + 45, + 95, + 44, + 61, + 32, + 141, + 81, + 71, + 68, + 108, + 201, + 71, + 110, + 70, + 346, + 212, + 129, + 154, + 175, + 814, + 65, + 67, + 353, + 210, + 277, + 244, + 208, + 59, + 285, + 161, + 165, + 233, + 223, + 144, + 145, + 93, + 153, + 164, + 128, + 223, + 62, + 151, + 180, + 84, + 87, + 194, + 761, + 89, + 164, + 492, + 352, + 470, + 336, + 195, + 373, + 78, + 89, + 134, + 181, + 55, + 187, + 113, + 206, + 93, + 111, + 96, + 101, + 198, + 143, + 154, + 126, + 145, + 118, + 115, + 368, + 62, + 64, + 297, + 144, + 88, + 99, + 418, + 59, + 167, + 74, + 253, + 225, + 162, + 136, + 92, + 271, + 309, + 189, + 163, + 74, + 108, + 91, + 310, + 128, + 80, + 392, + 392, + 369, + 217, + 194, + 495, + 116, + 135, + 116, + 211, + 142, + 444, + 673, + 154, + 159, + 118, + 210, + 224, + 221, + 147, + 130, + 53, + 72, + 306, + 112, + 80, + 123, + 212, + 96, + 132, + 76, + 262, + 146, + 189, + 69, + 269, + 102, + 122, + 145, + 130, + 142, + 71, + 553, + 225, + 78, + 136, + 68, + 123, + 137, + 96, + 200, + 171, + 334, + 86, + 252, + 37, + 101, + 138, + 88, + 116, + 95, + 88, + 90, + 2219, + 467, + 107, + 95, + 342, + 252, + 170, + 74, + 65, + 151, + 273, + 1361, + 254, + 180, + 136, + 123, + 167, + 74, + 80, + 102, + 192, + 97, + 343, + 156, + 150, + 42, + 175, + 124, + 656, + 77, + 334, + 230, + 178, + 161, + 150, + 213, + 266, + 114, + 203, + 595, + 63, + 295, + 218, + 125, + 94, + 106, + 176, + 79, + 111, + 151, + 80, + 144, + 78, + 221, + 105, + 390, + 77, + 112, + 218, + 207, + 113, + 138, + 442, + 352, + 143, + 247, + 216, + 156, + 66, + 73, + 119, + 125, + 114, + 111, + 117, + 207, + 1094, + 133, + 264, + 169, + 136, + 146, + 247, + 109, + 227, + 398, + 317, + 77, + 329, + 188, + 215, + 145, + 213, + 153, + 76, + 471, + 92, + 329, + 263, + 57, + 271, + 455, + 333, + 89, + 58, + 95, + 96, + 138, + 614, + 303, + 110, + 151, + 800, + 200, + 113, + 143, + 130, + 97, + 86, + 152, + 252, + 197, + 127, + 110, + 84, + 431, + 106, + 100, + 337, + 217, + 105, + 127, + 230, + 382, + 175, + 336, + 136, + 177, + 139, + 39, + 94, + 263, + 54, + 143, + 268, + 439, + 292, + 92, + 114, + 147, + 181, + 135, + 92, + 41, + 74, + 157, + 24, + 104, + 64, + 88, + 170, + 74, + 95, + 333, + 94, + 60, + 175, + 108, + 60, + 108, + 75, + 29, + 79, + 318, + 205, + 298, + 161, + 214, + 202, + 399, + 281, + 250, + 66, + 102, + 64, + 459, + 119, + 229, + 30, + 79, + 276, + 404, + 569, + 55, + 65, + 49, + 181, + 54, + 151, + 94, + 84, + 390, + 88, + 754, + 133, + 112, + 63, + 241, + 140, + 177, + 457, + 177, + 100, + 136, + 111, + 271, + 67, + 115, + 570, + 238, + 524, + 187, + 68, + 60, + 208, + 295, + 248, + 191, + 971, + 201, + 140, + 128, + 224, + 108, + 103, + 42, + 166, + 160, + 1057, + 291, + 92, + 97, + 248, + 74, + 82, + 146, + 109, + 226, + 317, + 229, + 98, + 590, + 153, + 86, + 122, + 147, + 603, + 897, + 531, + 473, + 320, + 67, + 67, + 318, + 59, + 236, + 413, + 207, + 826, + 422, + 94, + 106, + 98, + 185, + 82, + 112, + 611, + 445, + 282, + 58, + 98, + 148, + 404, + 321, + 432, + 207, + 112, + 123, + 665, + 87, + 194, + 115, + 181, + 188, + 625, + 106, + 74, + 243, + 90, + 281, + 72, + 122, + 72, + 537, + 430, + 286, + 475, + 182, + 64, + 359, + 315, + 123, + 219, + 226, + 166, + 58, + 91, + 258, + 305, + 106, + 64, + 195, + 82, + 105, + 132, + 73, + 51, + 148, + 72, + 67, + 109, + 258, + 186, + 383, + 292, + 141, + 151, + 205, + 92, + 313, + 320, + 138, + 248, + 204, + 138, + 220, + 259, + 270, + 370, + 251, + 79, + 397, + 206, + 40, + 106, + 526, + 156, + 416, + 813, + 131, + 99, + 331, + 89, + 49, + 126, + 107, + 90, + 121, + 148, + 161, + 87, + 305, + 146, + 144, + 190, + 100, + 472, + 174, + 142, + 135, + 789, + 116, + 250, + 471, + 169, + 107, + 116, + 115, + 79, + 140, + 107, + 131, + 78, + 258, + 258, + 88, + 292, + 173, + 325, + 239, + 121, + 305, + 136, + 100, + 83, + 70, + 99, + 119, + 140, + 378, + 140, + 384, + 390, + 88, + 135, + 121, + 103, + 122, + 255, + 1225, + 54, + 268, + 88, + 131, + 133, + 489, + 120, + 158, + 246, + 156, + 1529, + 155, + 153, + 411, + 107, + 89, + 85, + 151, + 96, + 540, + 247, + 162, + 121, + 71, + 157, + 373, + 425, + 48, + 329, + 90, + 265, + 151, + 181, + 138, + 157, + 89, + 387, + 249, + 123, + 156, + 155, + 115, + 88, + 85, + 110, + 982, + 168, + 287, + 75, + 93, + 225, + 280, + 66, + 371, + 201, + 97, + 91, + 526, + 477, + 198, + 120, + 162, + 163, + 373, + 113, + 71, + 172, + 162, + 345, + 1117, + 159, + 701, + 174, + 74, + 121, + 127, + 90, + 169, + 115, + 249, + 150, + 90, + 100, + 119, + 90, + 236, + 93, + 87, + 77, + 82, + 161, + 150, + 305, + 202, + 153, + 113, + 96, + 71, + 192, + 363, + 96, + 188, + 44, + 222, + 246, + 96, + 120, + 243, + 543, + 162, + 298, + 331, + 111, + 255, + 73, + 101, + 181, + 1175, + 220, + 402, + 105, + 150, + 485, + 307, + 164, + 1152, + 138, + 138, + 328, + 72, + 136, + 78, + 347, + 189, + 160, + 233, + 105, + 100, + 57, + 129, + 74, + 103, + 213, + 284, + 73, + 726, + 75, + 344, + 135, + 112, + 99, + 185, + 143, + 99, + 146, + 284, + 75, + 135, + 92, + 53, + 236, + 238, + 158, + 275, + 319, + 126, + 182, + 233, + 176, + 185, + 126, + 180, + 98, + 117, + 257, + 230, + 415, + 260, + 92, + 253, + 78, + 260, + 190, + 107, + 105, + 553, + 482, + 88, + 153, + 148, + 142, + 99, + 70, + 140, + 224, + 159, + 313, + 297, + 110, + 80, + 138, + 116, + 75, + 152, + 133, + 551, + 123, + 80, + 156, + 97, + 473, + 122, + 237, + 109, + 123, + 123, + 366, + 123, + 628, + 241, + 192, + 300, + 109, + 33, + 212, + 243, + 177, + 543, + 147, + 113, + 90, + 96, + 108, + 210, + 101, + 360, + 66, + 363, + 307, + 197, + 280, + 396, + 431, + 220, + 206, + 578, + 250, + 207, + 65, + 89, + 98, + 170, + 67, + 328, + 484, + 321, + 196, + 65, + 80, + 82, + 262, + 84, + 97, + 68, + 83, + 188, + 69, + 131, + 147, + 157, + 99, + 201, + 64, + 75, + 139, + 102, + 146, + 406, + 61, + 69, + 92, + 96, + 64, + 90, + 200, + 53, + 44, + 298, + 72, + 419, + 73, + 62, + 323, + 227, + 315, + 420, + 100, + 401, + 55, + 349, + 143, + 79, + 497, + 109, + 103, + 50, + 188, + 79, + 585, + 133, + 83, + 41, + 186, + 360, + 159, + 161, + 89, + 78, + 240, + 187, + 75, + 76, + 103, + 359, + 146, + 64, + 148, + 1112, + 148, + 294, + 118, + 67, + 630, + 65, + 359, + 255, + 133, + 283, + 94, + 36, + 368, + 72, + 69, + 102, + 115, + 245, + 54, + 62, + 114, + 83, + 121, + 81, + 106, + 98, + 139, + 79, + 89, + 197, + 69, + 157, + 28, + 91, + 99, + 137, + 115, + 490, + 76, + 368, + 86, + 77, + 106, + 207, + 61, + 172, + 95, + 420, + 225, + 144, + 104, + 259, + 531, + 167, + 2055, + 56, + 73, + 104, + 166, + 351, + 181, + 384, + 204, + 101, + 205, + 128, + 123, + 313, + 171, + 154, + 93, + 639, + 112, + 172, + 589, + 182, + 221, + 669, + 133, + 99, + 289, + 92, + 89, + 97, + 394, + 147, + 510, + 274, + 98, + 57, + 201, + 221, + 76, + 191, + 421, + 71, + 180, + 837, + 105, + 372, + 595, + 307, + 511, + 277, + 223, + 105, + 276, + 90, + 324, + 122, + 96, + 129, + 339, + 355, + 336, + 158, + 113, + 240, + 155, + 103, + 85, + 394, + 161, + 133, + 208, + 103, + 39, + 188, + 111, + 106, + 169, + 177, + 994, + 99, + 657, + 246, + 92, + 134, + 613, + 192, + 1551, + 159, + 1353, + 62, + 63, + 794, + 105, + 49, + 168, + 491, + 144, + 105, + 81, + 399, + 139, + 114, + 64, + 85, + 500, + 80, + 115, + 79, + 75, + 213, + 161, + 134, + 195, + 585, + 86, + 760, + 302, + 66, + 199, + 120, + 321, + 177, + 258, + 250, + 99, + 67, + 82, + 152, + 462, + 91, + 160, + 131, + 117, + 88, + 89, + 205, + 408, + 63, + 526, + 96, + 125, + 304, + 572, + 133, + 323, + 953, + 157, + 867, + 90, + 301, + 73, + 180, + 88, + 525, + 223, + 1386, + 173, + 113, + 189, + 676, + 181, + 268, + 134, + 120, + 92, + 99, + 837, + 135, + 306, + 61, + 78, + 167, + 120, + 845, + 227, + 49, + 182, + 213, + 285, + 200, + 169, + 75, + 1573, + 115, + 82, + 123, + 120, + 146, + 237, + 113, + 104, + 727, + 79, + 108, + 68, + 122, + 166, + 632, + 130, + 262, + 86, + 73, + 280, + 138, + 172, + 634, + 522, + 76, + 244, + 68, + 96, + 126, + 246, + 227, + 138, + 55, + 109, + 131, + 141, + 95, + 132, + 128, + 193, + 169, + 104, + 141, + 165, + 317, + 87, + 283, + 147, + 143, + 131, + 94, + 238, + 599, + 1020, + 123, + 113, + 534, + 82, + 116, + 120, + 217, + 54, + 169, + 109, + 167, + 323, + 79, + 104, + 233, + 187, + 270, + 1745, + 626, + 2187, + 59, + 164, + 92, + 107, + 76, + 251, + 72, + 110, + 180, + 129, + 1206, + 164, + 197, + 196, + 287, + 334, + 391, + 102, + 94, + 622, + 133, + 91, + 76, + 131, + 56, + 61, + 183, + 87, + 633, + 127, + 110, + 151, + 99, + 87, + 67, + 126, + 298, + 156, + 96, + 157, + 120, + 79, + 515, + 89, + 88, + 521, + 376, + 219, + 259, + 253, + 65, + 189, + 114, + 83, + 113, + 246, + 219, + 108, + 143, + 149, + 300, + 73, + 1118, + 210, + 1092, + 190, + 197, + 133, + 172, + 185, + 408, + 343, + 269, + 76, + 247, + 76, + 72, + 103, + 679, + 262, + 68, + 250, + 174, + 185, + 133, + 631, + 70, + 176, + 62, + 160, + 155, + 183, + 152, + 177, + 105, + 131, + 101, + 131, + 69, + 91, + 75, + 59, + 53, + 66, + 235, + 154, + 173, + 128, + 459, + 272, + 204, + 144, + 227, + 109, + 180, + 117, + 725, + 83, + 85, + 179, + 46, + 551, + 786, + 68, + 88, + 222, + 193, + 402, + 258, + 90, + 116, + 298, + 70, + 138, + 101, + 85, + 158, + 199, + 112, + 156, + 272, + 572, + 88, + 96, + 143, + 111, + 509, + 136, + 312, + 126, + 371, + 257, + 178, + 564, + 71, + 345, + 185, + 280, + 208, + 98, + 516, + 93, + 158, + 133, + 106, + 79, + 359, + 98, + 187, + 54, + 248, + 116, + 66, + 39, + 96, + 177, + 702, + 427, + 463, + 150, + 771, + 443, + 124, + 191, + 189, + 366, + 237, + 350, + 202, + 180, + 122, + 122, + 201, + 632, + 264, + 53, + 332, + 139, + 141, + 61, + 95, + 1011, + 124, + 135, + 176, + 124, + 163, + 84, + 843, + 365, + 62, + 107, + 244, + 136, + 137, + 175, + 986, + 57, + 79, + 93, + 94, + 446, + 104, + 69, + 77, + 116, + 75, + 111, + 202, + 168, + 320, + 140, + 408, + 108, + 107, + 56, + 190, + 492, + 187, + 141, + 166, + 112, + 283, + 295, + 84, + 106, + 1092, + 421, + 134, + 103, + 250, + 99, + 170, + 87, + 237, + 142, + 92, + 90, + 341, + 65, + 110, + 337, + 210, + 152, + 151, + 123, + 152, + 107, + 113, + 258, + 187, + 96, + 1804, + 421, + 237, + 110, + 127, + 377, + 78, + 55, + 1139, + 254, + 720, + 85, + 334, + 371, + 358, + 91, + 67, + 347, + 245, + 1002, + 390, + 124, + 87, + 135, + 220, + 112, + 208, + 501, + 263, + 388, + 352, + 269, + 122, + 88, + 446, + 72, + 325, + 155, + 97, + 103, + 110, + 454, + 248, + 127, + 52, + 104, + 116, + 796, + 77, + 94, + 396, + 158, + 520, + 956, + 105, + 62, + 273, + 83, + 193, + 433, + 256, + 137, + 195, + 207, + 215, + 109, + 554, + 158, + 110, + 112, + 646, + 10, + 107, + 147, + 18, + 105, + 328, + 19, + 114, + 700, + 194, + 364, + 431, + 117, + 220, + 141, + 262, + 252, + 158, + 116, + 154, + 172, + 84, + 284, + 185, + 150, + 111, + 154, + 139, + 265, + 138, + 217, + 152, + 625, + 78, + 129, + 93, + 184, + 228, + 282, + 117, + 275, + 169, + 102, + 121, + 119, + 144, + 209, + 261, + 106, + 151, + 247, + 109, + 549, + 287, + 341, + 195, + 129, + 189, + 294, + 244, + 384, + 618, + 184, + 395, + 181, + 133, + 370, + 125, + 165, + 245, + 96, + 153, + 158, + 247, + 189, + 94, + 128, + 169, + 454, + 81, + 156, + 139, + 157, + 201, + 698, + 198, + 88, + 164, + 135, + 231, + 317, + 113, + 361, + 371, + 382, + 30, + 158, + 220, + 127, + 122, + 208, + 126, + 198, + 236, + 161, + 337, + 169, + 284, + 366, + 158, + 339, + 271, + 143, + 147, + 119, + 143, + 113, + 220, + 191, + 98, + 699, + 177, + 148, + 237, + 220, + 184, + 268, + 930, + 381, + 354, + 234, + 247, + 292, + 109, + 164, + 207, + 92, + 378, + 116, + 128, + 102, + 166, + 234, + 125, + 117, + 135, + 135, + 147, + 345, + 252, + 605, + 157, + 165, + 115, + 835, + 211, + 242, + 97, + 148, + 106, + 131, + 85, + 113, + 165, + 104, + 126, + 203, + 104, + 100, + 329, + 173, + 720, + 174, + 54, + 121, + 16, + 109, + 227, + 220, + 111, + 218, + 201, + 110, + 113, + 165, + 269, + 128, + 522, + 113, + 172, + 333, + 208, + 144, + 177, + 267, + 18, + 457, + 698, + 7, + 389, + 338, + 62, + 492, + 312, + 564, + 157, + 30, + 165, + 339, + 321, + 145, + 122, + 131, + 341, + 260, + 267, + 188, + 57, + 137, + 24, + 74, + 196, + 43, + 101, + 35, + 581, + 309, + 29, + 589, + 114, + 85, + 113, + 158, + 178, + 8, + 113, + 119, + 209, + 1563, + 165, + 12, + 8, + 8, + 52, + 5, + 36, + 7, + 147, + 161, + 35, + 32, + 148, + 346, + 106, + 6, + 13, + 54, + 29, + 149, + 544, + 30, + 198, + 49, + 29, + 118, + 294, + 722, + 46, + 138, + 135, + 141, + 168, + 516, + 215, + 30, + 20, + 472, + 262, + 237, + 250, + 126, + 270, + 58, + 15, + 101, + 247, + 21, + 344, + 530, + 91, + 80, + 201, + 23, + 100, + 130, + 136, + 154, + 292, + 79, + 193, + 883, + 66, + 181, + 133, + 112, + 442, + 355, + 369, + 316, + 185, + 134, + 167, + 122, + 124, + 288, + 220, + 180, + 15, + 11, + 22, + 52, + 9, + 131, + 171, + 427, + 195, + 12, + 249, + 359, + 348, + 54, + 132, + 197, + 150, + 181, + 133, + 279, + 135, + 238, + 189, + 385, + 189, + 264, + 12, + 286, + 13, + 8, + 255, + 428, + 6, + 108, + 119, + 241, + 114, + 494, + 165, + 12, + 28, + 113, + 12, + 10, + 25, + 96, + 844, + 129, + 9, + 101, + 29, + 17, + 175, + 182, + 255, + 212, + 257, + 42, + 295, + 156, + 214, + 14, + 202, + 230, + 312, + 119, + 582, + 1185, + 116, + 15, + 25, + 23, + 9, + 410, + 305, + 101, + 154, + 194, + 236, + 289, + 256, + 35, + 88, + 316, + 538, + 151, + 18, + 91, + 133, + 86, + 343, + 71, + 185, + 178, + 250, + 210, + 561, + 392, + 261, + 129, + 184, + 136, + 44, + 106, + 7, + 237, + 73, + 12, + 222, + 84, + 128, + 146, + 192, + 296, + 175, + 7, + 7, + 5, + 288, + 104, + 338, + 5, + 115, + 23, + 24, + 427, + 171, + 125, + 110, + 7, + 7, + 84, + 4, + 9, + 768, + 206, + 9, + 5, + 5, + 139, + 167, + 235, + 106, + 211, + 129, + 95, + 331, + 117, + 99, + 90, + 221, + 76, + 269, + 9, + 240, + 273, + 160, + 428, + 132, + 159, + 87, + 1013, + 300, + 25, + 90, + 100, + 245, + 209, + 486, + 135, + 109, + 141, + 226, + 258, + 224, + 326, + 172, + 156, + 199, + 261, + 153, + 111, + 510, + 329, + 382, + 492, + 250, + 200, + 134, + 163, + 98, + 270, + 47, + 252, + 101, + 6, + 6, + 370, + 440, + 145, + 182, + 361, + 11, + 188, + 122, + 168, + 365, + 6, + 170, + 61, + 443, + 176, + 192, + 176, + 187, + 126, + 18, + 183, + 75, + 166, + 161, + 9, + 12, + 143, + 140, + 111, + 200, + 8, + 6, + 95, + 171, + 212, + 173, + 45, + 107, + 6, + 4, + 5, + 10, + 220, + 5, + 26, + 6, + 5, + 17, + 4, + 3785, + 26, + 36, + 193, + 241, + 34, + 298, + 27, + 1, + 161, + 222, + 380, + 691, + 95, + 150, + 425, + 232, + 20, + 8, + 7, + 10, + 4, + 281, + 128, + 173, + 114, + 97, + 238, + 154, + 206, + 116, + 110, + 251, + 240, + 120, + 789, + 543, + 387, + 131, + 109, + 36, + 145, + 127, + 198, + 11, + 136, + 113, + 35, + 125, + 213, + 8, + 164, + 202, + 791, + 272, + 11, + 127, + 179, + 355, + 120, + 213, + 149, + 127, + 9, + 378, + 405, + 156, + 761, + 263, + 1, + 110, + 5, + 175, + 303, + 258, + 157, + 502, + 5, + 5, + 10, + 13, + 57, + 275, + 5, + 706, + 6, + 380, + 407, + 161, + 173, + 110, + 214, + 7, + 251, + 234, + 79, + 147, + 152, + 155, + 9, + 6, + 84, + 718, + 62, + 155, + 318, + 261, + 180, + 333, + 84, + 103, + 317, + 447, + 112, + 390, + 217, + 405, + 245, + 134, + 133, + 157, + 349, + 246, + 618, + 19, + 6, + 157, + 169, + 290, + 156, + 379, + 1616, + 162, + 990, + 6, + 104, + 237, + 13, + 21, + 242, + 110, + 201, + 211, + 197, + 142, + 143, + 164, + 278, + 161, + 5, + 9, + 10, + 261, + 48, + 541, + 691, + 1020, + 604, + 197, + 138, + 116, + 118, + 146, + 282, + 375, + 135, + 133, + 317, + 162, + 291, + 123, + 110, + 485, + 160, + 251, + 79, + 4, + 34, + 185, + 146, + 4, + 54, + 114, + 166, + 242, + 143, + 146, + 130, + 5, + 6, + 357, + 133, + 119, + 99, + 192, + 235, + 317, + 174, + 322, + 219, + 786, + 72, + 181, + 158, + 212, + 6, + 130, + 209, + 333, + 170, + 180, + 102, + 95, + 338, + 159, + 133, + 218, + 268, + 7, + 5, + 238, + 139, + 262, + 201, + 168, + 84, + 142, + 92, + 189, + 254, + 324, + 129, + 293, + 196, + 17, + 223, + 409, + 170, + 71, + 18, + 176, + 240, + 119, + 230, + 207, + 120, + 137, + 507, + 106, + 148, + 212, + 141, + 354, + 326, + 283, + 301, + 137, + 111, + 212, + 228, + 164, + 182, + 98, + 223, + 134, + 319, + 414, + 199, + 191, + 74, + 128, + 173, + 173, + 1166, + 508, + 193, + 97, + 200, + 419, + 202, + 127, + 92, + 324, + 371, + 112, + 185, + 152, + 159, + 510, + 347, + 236, + 144, + 154, + 293, + 360, + 124, + 151, + 254, + 112, + 383, + 189, + 239 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
duration=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 1467, + 673, + 935, + 1030, + 1623, + 1677, + 1297, + 992, + 1138, + 786, + 1689, + 813, + 541, + 1119, + 1120, + 513, + 756, + 2087, + 1120, + 985, + 710, + 653, + 654, + 1692, + 460, + 757, + 744, + 568, + 1000, + 618, + 2231, + 1015, + 683, + 470, + 845, + 753, + 945, + 1721, + 832, + 1328, + 1321, + 858, + 629, + 1028, + 927, + 1423, + 646, + 746, + 1074, + 695, + 651, + 500, + 911, + 697, + 892, + 515, + 813, + 803, + 1143, + 688, + 803, + 787, + 619, + 912, + 1340, + 897, + 2680, + 1193, + 1064, + 483, + 607, + 1022, + 552, + 1622, + 579, + 1218, + 1205, + 1882, + 1777, + 650, + 1392, + 719, + 938, + 565, + 819, + 412, + 795, + 828, + 506, + 1681, + 681, + 1697, + 860, + 923, + 521, + 628, + 1349, + 736, + 600, + 924, + 893, + 588, + 777, + 1392, + 1059, + 430, + 621, + 543, + 630, + 1234, + 642, + 431, + 414, + 896, + 764, + 1205, + 1051, + 740, + 731, + 935, + 751, + 709, + 3094, + 938, + 543, + 1479, + 615, + 1183, + 796, + 664, + 648, + 691, + 560, + 543, + 1093, + 791, + 1207, + 535, + 1047, + 1059, + 792, + 900, + 553, + 762, + 290, + 864, + 855, + 1269, + 691, + 1236, + 886, + 1980, + 984, + 891, + 539, + 3631, + 1044, + 502, + 947, + 526, + 394, + 659, + 1036, + 230, + 555, + 605, + 1173, + 963, + 956, + 941, + 1025, + 732, + 768, + 801, + 2456, + 1363, + 633, + 1242, + 1141, + 578, + 984, + 638, + 767, + 525, + 563, + 1449, + 920, + 910, + 1446, + 508, + 590, + 761, + 1053, + 983, + 1018, + 884, + 554, + 862, + 460, + 642, + 467, + 2653, + 1085, + 685, + 1055, + 901, + 700, + 491, + 940, + 952, + 486, + 442, + 583, + 893, + 867, + 587, + 706, + 1199, + 838, + 967, + 614, + 651, + 992, + 577, + 1141, + 541, + 1243, + 513, + 686, + 1323, + 1093, + 1089, + 1248, + 721, + 750, + 2769, + 1848, + 490, + 676, + 775, + 2621, + 835, + 371, + 1528, + 1540, + 973, + 537, + 695, + 1255, + 2093, + 704, + 771, + 1060, + 1574, + 1224, + 1318, + 2028, + 952, + 500, + 683, + 716, + 1149, + 1573, + 560, + 1617, + 1422, + 1023, + 809, + 693, + 556, + 291, + 498, + 670, + 662, + 677, + 762, + 3183, + 422, + 911, + 1049, + 479, + 1135, + 650, + 676, + 491, + 615, + 782, + 1272, + 722, + 621, + 629, + 385, + 1356, + 889, + 556, + 532, + 599, + 830, + 732, + 531, + 460, + 705, + 992, + 574, + 1767, + 681, + 1082, + 730, + 716, + 803, + 831, + 635, + 819, + 623, + 658, + 1061, + 1344, + 687, + 537, + 679, + 2122, + 570, + 761, + 645, + 662, + 625, + 426, + 590, + 1121, + 1139, + 869, + 359, + 1014, + 1290, + 919, + 1426, + 560, + 854, + 255, + 804, + 982, + 880, + 720, + 771, + 627, + 1341, + 634, + 476, + 829, + 1499, + 1187, + 487, + 1097, + 3643, + 812, + 1060, + 614, + 1294, + 764, + 963, + 911, + 822, + 853, + 1310, + 611, + 751, + 1397, + 686, + 766, + 788, + 1130, + 1062, + 1669, + 1071, + 894, + 798, + 805, + 723, + 533, + 1056, + 815, + 808, + 1317, + 860, + 658, + 878, + 820, + 1001, + 500, + 1228, + 514, + 716, + 955, + 769, + 1424, + 838, + 448, + 1806, + 689, + 555, + 686, + 435, + 830, + 873, + 1222, + 988, + 652, + 1019, + 561, + 1018, + 781, + 1150, + 753, + 1008, + 538, + 795, + 926, + 1027, + 1584, + 582, + 1448, + 656, + 551, + 1319, + 1175, + 991, + 1153, + 623, + 674, + 1081, + 494, + 978, + 536, + 567, + 968, + 516, + 610, + 640, + 671, + 659, + 641, + 415, + 852, + 635, + 1127, + 1360, + 588, + 1373, + 799, + 1139, + 999, + 638, + 854, + 617, + 919, + 1017, + 848, + 733, + 553, + 1080, + 710, + 1212, + 691, + 1130, + 577, + 1342, + 1002, + 985, + 1360, + 1352, + 1077, + 714, + 654, + 849, + 722, + 1508, + 966, + 1237, + 864, + 1037, + 802, + 926, + 870, + 761, + 690, + 529, + 1152, + 1960, + 957, + 902, + 1327, + 2078, + 1124, + 808, + 638, + 1359, + 416, + 532, + 853, + 1204, + 1441, + 1491, + 903, + 873, + 1850, + 367, + 1602, + 1422, + 979, + 616, + 784, + 695, + 862, + 743, + 1031, + 590, + 1448, + 1369, + 653, + 458, + 983, + 365, + 664, + 700, + 662, + 1169, + 431, + 837, + 383, + 1009, + 867, + 551, + 890, + 1076, + 648, + 600, + 2516, + 454, + 616, + 1127, + 684, + 650, + 1373, + 788, + 988, + 543, + 1171, + 729, + 509, + 1089, + 1211, + 458, + 540, + 695, + 764, + 1065, + 356, + 2692, + 675, + 782, + 777, + 962, + 812, + 630, + 1088, + 1150, + 725, + 662, + 727, + 857, + 829, + 612, + 1461, + 361, + 1142, + 1721, + 846, + 1110, + 652, + 1488, + 487, + 641, + 837, + 553, + 794, + 836, + 1134, + 607, + 720, + 935, + 531, + 766, + 1311, + 618, + 419, + 455, + 406, + 902, + 720, + 952, + 763, + 649, + 547, + 1044, + 996, + 1552, + 1471, + 1456, + 1288, + 395, + 663, + 1056, + 1327, + 526, + 401, + 1321, + 797, + 876, + 773, + 1336, + 452, + 193, + 243, + 507, + 809, + 419, + 780, + 459, + 519, + 733, + 580, + 848, + 1242, + 922, + 1206, + 716, + 386, + 758, + 384, + 545, + 1070, + 610, + 917, + 744, + 608, + 1238, + 720, + 663, + 444, + 1080, + 479, + 506, + 768, + 1134, + 815, + 396, + 507, + 439, + 1181, + 1133, + 587, + 645, + 473, + 559, + 1092, + 1344, + 1344, + 432, + 1613, + 664, + 1735, + 940, + 1842, + 823, + 703, + 618, + 455, + 1149, + 827, + 657, + 737, + 871, + 838, + 1038, + 990, + 306, + 1148, + 707, + 812, + 518, + 505, + 834, + 698, + 884, + 904, + 618, + 773, + 671, + 638, + 594, + 882, + 697, + 956, + 384, + 194, + 724, + 1293, + 933, + 1032, + 290, + 836, + 649, + 921, + 467, + 543, + 552, + 1044, + 875, + 588, + 763, + 536, + 1408, + 718, + 625, + 703, + 1503, + 644, + 4199, + 913, + 1505, + 788, + 793, + 686, + 974, + 576, + 579, + 336, + 520, + 565, + 604, + 1241, + 873, + 626, + 961, + 472, + 1152, + 606, + 366, + 731, + 630, + 1374, + 372, + 958, + 664, + 388, + 1223, + 556, + 609, + 581, + 1033, + 519, + 512, + 763, + 976, + 1129, + 645, + 1642, + 979, + 965, + 716, + 2372, + 1126, + 1109, + 103, + 270, + 223, + 478, + 312, + 718, + 2016, + 294, + 85, + 37, + 101, + 144, + 187, + 676, + 157, + 181, + 98, + 313, + 301, + 171, + 112, + 97, + 376, + 150, + 131, + 251, + 125, + 141, + 154, + 135, + 540, + 454, + 171, + 313, + 266, + 248, + 234, + 154, + 160, + 227, + 615, + 399, + 465, + 209, + 268, + 204, + 669, + 234, + 150, + 115, + 453, + 248, + 486, + 158, + 114, + 139, + 90, + 132, + 160, + 179, + 1077, + 1303, + 564, + 434, + 651, + 984, + 943, + 540, + 789, + 1091, + 1132, + 1210, + 1978, + 1122, + 854, + 835, + 924, + 453, + 609, + 1855, + 1437, + 1788, + 150, + 741, + 898, + 543, + 1132, + 819, + 511, + 418, + 1554, + 820, + 686, + 925, + 862, + 786, + 993, + 814, + 1084, + 1015, + 489, + 694, + 670, + 561, + 1011, + 654, + 424, + 911, + 998, + 802, + 1057, + 622, + 522, + 1502, + 631, + 623, + 1028, + 337, + 1265, + 485, + 589, + 1061, + 783, + 1120, + 757, + 680, + 1468, + 709, + 477, + 276, + 670, + 732, + 531, + 1192, + 566, + 454, + 728, + 993, + 549, + 478, + 755, + 994, + 871, + 329, + 531, + 857, + 931, + 593, + 691, + 1258, + 562, + 1154, + 705, + 1035, + 736, + 888, + 370, + 500, + 488, + 1025, + 768, + 653, + 871, + 1532, + 952, + 493, + 2420, + 1598, + 295, + 1059, + 2453, + 729, + 591, + 528, + 467, + 530, + 648, + 710, + 530, + 529, + 635, + 957, + 705, + 796, + 849, + 893, + 1480, + 316, + 850, + 749, + 902, + 1074, + 980, + 549, + 536, + 481, + 664, + 579, + 1555, + 808, + 1222, + 331, + 119, + 712, + 111, + 378, + 116, + 154, + 239, + 175, + 120, + 1447, + 187, + 382, + 294, + 143, + 83, + 499, + 350, + 320, + 156, + 168, + 180, + 96, + 377, + 396, + 63, + 181, + 182, + 137, + 106, + 196, + 195, + 229, + 227, + 166, + 363, + 266, + 544, + 301, + 207, + 116, + 217, + 350, + 106, + 272, + 71, + 122, + 395, + 261, + 159, + 427, + 266, + 95, + 796, + 197, + 126, + 323, + 101, + 188, + 203, + 101, + 80, + 119, + 156, + 186, + 139, + 126, + 268, + 3076, + 296, + 392, + 406, + 220, + 195, + 187, + 299, + 325, + 278, + 194, + 224, + 201, + 203, + 167, + 220, + 248, + 415, + 115, + 174, + 136, + 460, + 144, + 170, + 269, + 115, + 506, + 96, + 278, + 411, + 117, + 709, + 200, + 325, + 331, + 515, + 300, + 342, + 283, + 229, + 294, + 179, + 228, + 378, + 243, + 234, + 271, + 347, + 180, + 285, + 364, + 517, + 163, + 237, + 1530, + 351, + 805, + 1176, + 165, + 387, + 739, + 243, + 313, + 397, + 771, + 268, + 329, + 707, + 482, + 1203, + 158, + 1435, + 740, + 1138, + 465, + 463, + 2299, + 721, + 299, + 84, + 895, + 327, + 117, + 952, + 903, + 523, + 1032, + 245, + 114, + 209, + 1190, + 143, + 1665, + 548, + 142, + 350, + 592, + 394, + 448, + 657, + 530, + 214, + 331, + 435, + 179, + 233, + 245, + 152, + 317, + 1042, + 490, + 466, + 342, + 461, + 142, + 344, + 125, + 850, + 1073, + 1594, + 450, + 505, + 133, + 184, + 168, + 324, + 161, + 496, + 111, + 107, + 216, + 279, + 111, + 216, + 207, + 300, + 295, + 223, + 165, + 167, + 945, + 82, + 903, + 282, + 1214, + 110, + 1217, + 389, + 171, + 512, + 140, + 135, + 441, + 355, + 170, + 129, + 118, + 405, + 1038, + 139, + 264, + 353, + 838, + 78, + 251, + 334, + 836, + 271, + 583, + 1579, + 495, + 1025, + 298, + 1463, + 285, + 667, + 127, + 700, + 1365, + 299, + 426, + 161, + 551, + 678, + 709, + 1017, + 1095, + 840, + 1311, + 997, + 156, + 882, + 1007, + 404, + 367, + 130, + 1080, + 715, + 107, + 476, + 108, + 149, + 772, + 104, + 378, + 949, + 394, + 636, + 320, + 271, + 2139, + 158, + 1332, + 1202, + 1112, + 227, + 860, + 1550, + 670, + 133, + 190, + 785, + 712, + 107, + 194, + 216, + 720, + 586, + 691, + 567, + 904, + 349, + 325, + 227, + 76, + 148, + 97, + 185, + 241, + 163, + 345, + 163, + 1422, + 267, + 114, + 120, + 1030, + 121, + 885, + 453, + 1333, + 943, + 235, + 146, + 333, + 110, + 274, + 1348, + 207, + 109, + 100, + 211, + 243, + 121, + 356, + 158, + 847, + 242, + 137, + 157, + 204, + 341, + 400, + 621, + 219, + 315, + 314, + 319, + 104, + 145, + 94, + 165, + 416, + 307, + 138, + 245, + 124, + 107, + 229, + 1288, + 545, + 371, + 229, + 266, + 247, + 172, + 270, + 413, + 163, + 522, + 116, + 160, + 693, + 227, + 202, + 97, + 148, + 444, + 360, + 122, + 177, + 507, + 636, + 961, + 523, + 510, + 571, + 400, + 968, + 701, + 381, + 571, + 239, + 224, + 662, + 494, + 412, + 499, + 407, + 447, + 619, + 387, + 313, + 871, + 297, + 413, + 231, + 328, + 281, + 733, + 335, + 252, + 815, + 620, + 354, + 271, + 294, + 383, + 177, + 368, + 390, + 381, + 218, + 465, + 900, + 394, + 381, + 202, + 375, + 779, + 246, + 504, + 337, + 200, + 369, + 341, + 297, + 237, + 687, + 266, + 225, + 344, + 400, + 800, + 316, + 461, + 526, + 315, + 423, + 209, + 457, + 260, + 354, + 482, + 309, + 261, + 439, + 616, + 278, + 269, + 532, + 1373, + 574, + 917, + 242, + 430, + 483, + 306, + 452, + 473, + 352, + 260, + 780, + 580, + 258, + 834, + 435, + 615, + 555, + 811, + 460, + 477, + 970, + 266, + 618, + 774, + 861, + 240, + 327, + 874, + 416, + 652, + 475, + 645, + 342, + 301, + 1143, + 380, + 427, + 370, + 949, + 753, + 1260, + 652, + 1034, + 766, + 266, + 502, + 567, + 501, + 259, + 265, + 675, + 410, + 303, + 392, + 193, + 267, + 1602, + 244, + 447, + 226, + 597, + 417, + 301, + 1076, + 643, + 251, + 293, + 592, + 274, + 532, + 287, + 300, + 367, + 214, + 228, + 434, + 1046, + 237, + 458, + 922, + 601, + 353, + 949, + 742, + 1370, + 268, + 716, + 365, + 617, + 333, + 483, + 1091, + 206, + 1063, + 340, + 429, + 331, + 775, + 841, + 640, + 673, + 226, + 762, + 668, + 494, + 1240, + 895, + 851, + 392, + 731, + 863, + 1090, + 838, + 259, + 955, + 1221, + 499, + 788, + 894, + 500, + 521, + 862, + 672, + 1085, + 451, + 653, + 731, + 488, + 767, + 954, + 576, + 597, + 597, + 984, + 611, + 1205, + 837, + 445, + 519, + 687, + 540, + 550, + 754, + 554, + 396, + 1489, + 1347, + 1074, + 667, + 686, + 606, + 923, + 623, + 1046, + 1148, + 855, + 542, + 609, + 647, + 574, + 1129, + 481, + 476, + 957, + 347, + 1030, + 895, + 798, + 594, + 1806, + 1516, + 792, + 553, + 1135, + 597, + 662, + 729, + 1077, + 763, + 704, + 501, + 1276, + 308, + 763, + 662, + 568, + 1448, + 656, + 728, + 720, + 685, + 1024, + 682, + 423, + 657, + 1038, + 657, + 689, + 629, + 802, + 1514, + 934, + 733, + 474, + 701, + 666, + 653, + 610, + 583, + 672, + 608, + 475, + 966, + 1388, + 911, + 546, + 731, + 365, + 882, + 515, + 580, + 1203, + 560, + 612, + 703, + 690, + 1062, + 826, + 590, + 918, + 787, + 1182, + 725, + 309, + 549, + 844, + 955, + 458, + 409, + 1531, + 637, + 609, + 1710, + 614, + 897, + 398, + 863, + 750, + 775, + 556, + 737, + 496, + 863, + 774, + 1073, + 610, + 850, + 570, + 516, + 585, + 590, + 902, + 669, + 391, + 394, + 302, + 546, + 1512, + 562, + 734, + 476, + 747, + 716, + 1101, + 366, + 674, + 622, + 314, + 809, + 829, + 937, + 1970, + 1975, + 482, + 954, + 1298, + 1119, + 698, + 654, + 649, + 531, + 1279, + 873, + 440, + 689, + 443, + 1130, + 429, + 722, + 467, + 533, + 558, + 667, + 715, + 590, + 854, + 646, + 345, + 456, + 578, + 786, + 633, + 307, + 607, + 874, + 492, + 563, + 406, + 691, + 1129, + 191, + 933, + 224, + 668, + 479, + 888, + 1071, + 1060, + 1543, + 688, + 566, + 959, + 532, + 1094, + 604, + 647, + 676, + 153, + 667, + 670, + 655, + 551, + 409, + 382, + 311, + 760, + 1190, + 899, + 326, + 744, + 485, + 637, + 523, + 792, + 576, + 669, + 693, + 1015, + 663, + 437, + 562, + 659, + 532, + 837, + 832, + 317, + 858, + 611, + 1111, + 1357, + 709, + 406, + 1002, + 880, + 934, + 655, + 1871, + 1068, + 462, + 1313, + 623, + 1598, + 692, + 722, + 536, + 473, + 442, + 903, + 1340, + 487, + 2301, + 493, + 843, + 565, + 507, + 431, + 600, + 504, + 700, + 1008, + 525, + 612, + 618, + 801, + 827, + 767, + 637, + 638, + 1173, + 1359, + 639, + 317, + 324, + 582, + 199, + 354, + 796, + 491, + 431, + 271, + 316, + 554, + 223, + 182, + 198, + 293, + 231, + 449, + 685, + 288, + 283, + 421, + 119, + 397, + 296, + 867, + 269, + 915, + 337, + 487, + 288, + 1064, + 213, + 226, + 377, + 158, + 262, + 315, + 414, + 601, + 133, + 1078, + 640, + 482, + 91, + 165, + 326, + 208, + 1346, + 228, + 131, + 390, + 445, + 579, + 427, + 226, + 396, + 139, + 253, + 185, + 229, + 439, + 193, + 242, + 116, + 155, + 776, + 281, + 119, + 200, + 329, + 367, + 412, + 165, + 108, + 223, + 628, + 187, + 513, + 174, + 324, + 295, + 264, + 103, + 331, + 377, + 205, + 287, + 263, + 192, + 166, + 327, + 69, + 84, + 326, + 1460, + 1048, + 335, + 412, + 177, + 579, + 339, + 202, + 174, + 114, + 215, + 232, + 284, + 253, + 1144, + 163, + 257, + 479, + 437, + 395, + 145, + 107, + 663, + 350, + 282, + 294, + 690, + 384, + 596, + 654, + 169, + 195, + 103, + 430, + 417, + 160, + 270, + 200, + 82, + 712, + 74, + 359, + 251, + 1210, + 310, + 482, + 924, + 318, + 192, + 181, + 250, + 236, + 179, + 305, + 163, + 541, + 209, + 262, + 206, + 115, + 406, + 244, + 592, + 437, + 313, + 705, + 198, + 210, + 117, + 110, + 321, + 296, + 411, + 593, + 302, + 165, + 591, + 385, + 174, + 238, + 170, + 539, + 447, + 214, + 300, + 200, + 436, + 200, + 431, + 837, + 725, + 144, + 617, + 140, + 247, + 187, + 510, + 328, + 262, + 280, + 207, + 449, + 224, + 400, + 217, + 160, + 352, + 787, + 323, + 160, + 239, + 156, + 194, + 96, + 136, + 81, + 269, + 327, + 296, + 147, + 121, + 89, + 137, + 1161, + 437, + 578, + 592, + 166, + 174, + 397, + 324, + 275, + 199, + 255, + 232, + 462, + 255, + 302, + 149, + 191, + 207, + 493, + 509, + 657, + 365, + 159, + 276, + 522, + 577, + 103, + 366, + 201, + 166, + 548, + 304, + 146, + 126, + 244, + 157, + 257, + 148, + 107, + 138, + 458, + 243, + 200, + 131, + 234, + 239, + 160, + 993, + 529, + 183, + 258, + 239, + 186, + 126, + 163, + 95, + 579, + 491, + 532, + 95, + 351, + 372, + 288, + 177, + 415, + 382, + 257, + 181, + 284, + 651, + 155, + 322, + 89, + 173, + 129, + 136, + 263, + 245, + 355, + 114, + 162, + 551, + 243, + 393, + 813, + 1603, + 259, + 280, + 293, + 295, + 883, + 269, + 459, + 255, + 227, + 185, + 205, + 224, + 140, + 260, + 372, + 261, + 252, + 252, + 356, + 363, + 218, + 367, + 566, + 309, + 396, + 940, + 276, + 567, + 503, + 135, + 176, + 247, + 203, + 446, + 175, + 1007, + 409, + 438, + 704, + 308, + 202, + 270, + 227, + 316, + 964, + 429, + 407, + 682, + 180, + 370, + 257, + 243, + 167, + 361, + 268, + 896, + 349, + 210, + 153, + 97, + 253, + 104, + 336, + 125, + 1084, + 139, + 332, + 822, + 99, + 486, + 573, + 576, + 219, + 642, + 185, + 600, + 249, + 305, + 1019, + 211, + 414, + 290, + 277, + 254, + 253, + 179, + 394, + 231, + 157, + 155, + 975, + 427, + 355, + 131, + 1452, + 310, + 338, + 256, + 254, + 550, + 345, + 358, + 79, + 289, + 714, + 255, + 87, + 530, + 456, + 142, + 325, + 1088, + 453, + 295, + 262, + 215, + 221, + 130, + 233, + 353, + 182, + 231, + 328, + 923, + 167, + 559, + 146, + 187, + 161, + 252, + 235, + 155, + 289, + 179, + 213, + 1416, + 265, + 704, + 136, + 176, + 167, + 408, + 140, + 139, + 149, + 349, + 221, + 175, + 89, + 206, + 267, + 464, + 429, + 623, + 182, + 668, + 449, + 582, + 1336, + 239, + 641, + 576, + 73, + 398, + 313, + 307, + 131, + 267, + 417, + 332, + 338, + 289, + 489, + 784, + 222, + 425, + 254, + 414, + 148, + 315, + 282, + 399, + 192, + 464, + 293, + 227, + 477, + 204, + 738, + 320, + 479, + 354, + 275, + 150, + 156, + 225, + 209, + 436, + 326, + 186, + 137, + 125, + 94, + 276, + 182, + 100, + 201, + 391, + 190, + 880, + 260, + 211, + 405, + 308, + 348, + 186, + 199, + 286, + 163, + 220, + 343, + 711, + 207, + 341, + 340, + 606, + 156, + 162, + 460, + 278, + 249, + 205, + 215, + 161, + 148, + 587, + 193, + 370, + 395, + 532, + 441, + 536, + 238, + 768, + 225, + 240, + 173, + 232, + 145, + 195, + 338, + 329, + 267, + 474, + 377, + 151, + 149, + 217, + 158, + 184, + 63, + 78, + 228, + 374, + 168, + 273, + 204, + 276, + 531, + 91, + 116, + 126, + 252, + 159, + 343, + 232, + 712, + 511, + 192, + 130, + 479, + 531, + 242, + 555, + 291, + 415, + 128, + 210, + 323, + 259, + 212, + 445, + 460, + 398, + 81, + 207, + 622, + 173, + 517, + 155, + 98, + 186, + 267, + 470, + 271, + 265, + 212, + 181, + 531, + 140, + 233, + 121, + 471, + 444, + 365, + 331, + 328, + 520, + 730, + 293, + 230, + 555, + 434, + 569, + 350, + 219, + 211, + 587, + 351, + 800, + 199, + 145, + 293, + 495, + 206, + 679, + 261, + 169, + 445, + 260, + 108, + 376, + 475, + 394, + 569, + 408, + 345, + 397, + 259, + 169, + 84, + 185, + 230, + 346, + 260, + 283, + 212, + 91, + 91, + 210, + 100, + 290, + 323, + 170, + 722, + 150, + 458, + 1962, + 107, + 173, + 89, + 126, + 91, + 106, + 925, + 152, + 292, + 387, + 543, + 267, + 323, + 1104, + 773, + 65, + 83, + 173, + 239, + 369, + 299, + 692, + 210, + 294, + 159, + 277, + 117, + 234, + 305, + 447, + 194, + 238, + 137, + 849, + 215, + 144, + 384, + 296, + 371, + 201, + 81, + 294, + 335, + 234, + 137, + 1106, + 105, + 511, + 138, + 78, + 146, + 348, + 435, + 411, + 79, + 1226, + 242, + 221, + 210, + 301, + 204, + 1003, + 216, + 958, + 364, + 290, + 441, + 244, + 134, + 128, + 166, + 570, + 115, + 186, + 847, + 154, + 170, + 154, + 233, + 306, + 434, + 130, + 156, + 324, + 136, + 342, + 131, + 98, + 385, + 328, + 332, + 148, + 373, + 213, + 595, + 518, + 427, + 676, + 386, + 192, + 828, + 576, + 825, + 467, + 512, + 749, + 135, + 307, + 287, + 107, + 200, + 442, + 249, + 360, + 257, + 313, + 127, + 133, + 504, + 1002, + 306, + 260, + 97, + 344, + 336, + 270, + 130, + 374, + 149, + 427, + 438, + 221, + 292, + 281, + 257, + 251, + 703, + 355, + 131, + 207, + 96, + 297, + 102, + 424, + 137, + 83, + 298, + 255, + 418, + 353, + 113, + 149, + 96, + 509, + 371, + 524, + 207, + 164, + 423, + 139, + 410, + 169, + 142, + 209, + 1707, + 189, + 251, + 401, + 264, + 106, + 215, + 288, + 124, + 136, + 220, + 746, + 377, + 424, + 212, + 373, + 144, + 480, + 445, + 294, + 257, + 368, + 416, + 121, + 106, + 1024, + 182, + 162, + 209, + 102, + 1233, + 187, + 149, + 566, + 537, + 217, + 181, + 215, + 358, + 179, + 322, + 284, + 383, + 358, + 749, + 355, + 464, + 402, + 455, + 368, + 178, + 178, + 262, + 118, + 169, + 165, + 98, + 201, + 113, + 696, + 347, + 182, + 775, + 193, + 406, + 336, + 147, + 195, + 234, + 318, + 64, + 95, + 89, + 344, + 266, + 301, + 254, + 293, + 594, + 213, + 459, + 406, + 166, + 69, + 199, + 131, + 229, + 166, + 244, + 158, + 172, + 241, + 513, + 71, + 90, + 227, + 123, + 253, + 226, + 88, + 134, + 126, + 99, + 104, + 226, + 89, + 169, + 135, + 134, + 247, + 1127, + 192, + 707, + 627, + 411, + 176, + 338, + 181, + 208, + 122, + 2184, + 135, + 212, + 226, + 210, + 495, + 259, + 239, + 271, + 227, + 182, + 256, + 130, + 295, + 301, + 146, + 167, + 183, + 432, + 250, + 175, + 257, + 445, + 105, + 984, + 1248, + 85, + 709, + 209, + 134, + 747, + 409, + 135, + 393, + 255, + 309, + 525, + 242, + 325, + 968, + 372, + 182, + 234, + 487, + 232, + 208, + 414, + 296, + 342, + 238, + 541, + 319, + 160, + 1628, + 310, + 346, + 415, + 244, + 284, + 155, + 472, + 705, + 439, + 229, + 344, + 415, + 583, + 620, + 329, + 288, + 179, + 854, + 479, + 343, + 395, + 336, + 429, + 798, + 805, + 422, + 232, + 582, + 141, + 166, + 351, + 476, + 324, + 314, + 354, + 546, + 412, + 330, + 726, + 324, + 170, + 379, + 406, + 415, + 264, + 367, + 267, + 321, + 256, + 410, + 305, + 282, + 422, + 213, + 500, + 150, + 679, + 1141, + 206, + 315, + 387, + 824, + 205, + 473, + 893, + 284, + 689, + 296, + 1370, + 449, + 196, + 63, + 241, + 229, + 904, + 591, + 229, + 525, + 658, + 368, + 177, + 539, + 313, + 292, + 228, + 187, + 263, + 235, + 363, + 141, + 557, + 145, + 355, + 153, + 136, + 834, + 221, + 180, + 251, + 148, + 2486, + 456, + 562, + 115, + 418, + 341, + 87, + 373, + 257, + 219, + 809, + 319, + 292, + 498, + 376, + 264, + 104, + 124, + 265, + 409, + 139, + 225, + 185, + 469, + 176, + 568, + 241, + 301, + 236, + 212, + 305, + 288, + 700, + 273, + 295, + 450, + 207, + 436, + 239, + 106, + 257, + 335, + 257, + 171, + 290, + 422, + 215, + 212, + 229, + 213, + 257, + 427, + 506, + 161, + 577, + 300, + 361, + 180, + 261, + 279, + 459, + 263, + 295, + 231, + 128, + 272, + 237, + 420, + 265, + 910, + 467, + 593, + 293, + 254, + 215, + 222, + 174, + 273, + 191, + 156, + 187, + 201, + 281, + 92, + 341, + 433, + 277, + 236, + 359, + 110, + 238, + 236, + 262, + 577, + 170, + 193, + 175, + 210, + 149, + 280, + 558, + 216, + 358, + 111, + 179, + 189, + 317, + 196, + 1307, + 222, + 335, + 618, + 559, + 481, + 158, + 333, + 1397, + 176, + 176, + 295, + 232, + 218, + 240, + 278, + 398, + 173, + 185, + 200, + 200, + 141, + 330, + 214, + 218, + 961, + 330, + 634, + 125, + 529, + 142, + 1143, + 162, + 476, + 595, + 403, + 623, + 654, + 224, + 229, + 494, + 407, + 165, + 554, + 263, + 342, + 296, + 291, + 888, + 194, + 182, + 688, + 192, + 1472, + 328, + 325, + 426, + 321, + 370, + 159, + 623, + 717, + 882, + 210, + 277, + 388, + 395, + 305, + 449, + 262, + 183, + 551, + 552, + 268, + 164, + 556, + 153, + 209, + 1267, + 389, + 258, + 338, + 232, + 443, + 246, + 192, + 250, + 195, + 613, + 211, + 292, + 662, + 300, + 226, + 211, + 583, + 483, + 193, + 309, + 176, + 152, + 228, + 317, + 236, + 248, + 360, + 372, + 414, + 289, + 400, + 306, + 263, + 216, + 328, + 331, + 356, + 234, + 567, + 404, + 532, + 220, + 700, + 1205, + 407, + 787, + 396, + 466, + 556, + 740, + 272, + 444, + 508, + 387, + 336, + 353, + 661, + 472, + 420, + 154, + 291, + 342, + 351, + 214, + 403, + 407, + 374, + 375, + 382, + 699, + 168, + 146, + 641, + 196, + 393, + 272, + 410, + 289, + 175, + 135, + 530, + 283, + 93, + 181, + 820, + 1178, + 489, + 460, + 275, + 417, + 473, + 538, + 663, + 540, + 775, + 201, + 326, + 347, + 296, + 303, + 434, + 407, + 657, + 226, + 238, + 310, + 302, + 187, + 190, + 200, + 150, + 206, + 712, + 874, + 479, + 192, + 278, + 422, + 434, + 187, + 245, + 661, + 270, + 212, + 458, + 713, + 614, + 293, + 563, + 167, + 485, + 619, + 379, + 910, + 700, + 243, + 208, + 292, + 605, + 288, + 339, + 383, + 1720, + 169, + 176, + 252, + 215, + 867, + 522, + 856, + 706, + 342, + 1407, + 339, + 671, + 1207, + 310, + 213, + 300, + 276, + 472, + 266, + 297, + 281, + 345, + 325, + 452, + 247, + 363, + 563, + 737, + 265, + 401, + 383, + 222, + 586, + 660, + 271, + 421, + 167, + 598, + 263, + 274, + 337, + 286, + 275, + 319, + 301, + 395, + 609, + 561, + 423, + 217, + 687, + 391, + 667, + 194, + 251, + 128, + 140, + 209, + 267, + 335, + 319, + 396, + 386, + 667, + 229, + 398, + 273, + 276, + 346, + 229, + 480, + 411, + 414, + 449, + 967, + 344, + 483, + 474, + 341, + 464, + 398, + 210, + 375, + 562, + 452, + 567, + 796, + 250, + 305, + 195, + 363, + 178, + 617, + 475, + 317, + 309, + 337, + 360, + 256, + 577, + 272, + 413, + 334, + 603, + 355, + 817, + 247, + 276, + 604, + 897, + 287, + 268, + 219, + 367, + 346, + 957, + 252, + 361, + 552, + 390, + 951, + 250, + 198, + 392, + 815, + 316, + 486, + 268, + 806, + 457, + 484, + 207, + 253, + 1148, + 268, + 173, + 230, + 187, + 568, + 212, + 173, + 204, + 178, + 355, + 1008, + 316, + 143, + 314, + 355, + 942, + 355, + 1193, + 368, + 138, + 321, + 248, + 174, + 860, + 608, + 351, + 350, + 192, + 251, + 196, + 396, + 275, + 284, + 183, + 546, + 414, + 607, + 666, + 527, + 606, + 287, + 496, + 340, + 429, + 471, + 817, + 115, + 462, + 388, + 588, + 169, + 332, + 349, + 386, + 200, + 396, + 426, + 268, + 519, + 270, + 417, + 700, + 292, + 304, + 230, + 367, + 1005, + 955, + 196, + 317, + 341, + 249, + 482, + 481, + 187, + 261, + 279, + 654, + 592, + 263, + 771, + 288, + 182, + 560, + 651, + 178, + 250, + 180, + 139, + 296, + 250, + 118, + 470, + 191, + 153, + 293, + 231, + 508, + 203, + 544, + 172, + 374, + 318, + 324, + 736, + 633, + 245, + 215, + 323, + 303, + 258, + 562, + 218, + 178, + 174, + 366, + 177, + 744, + 362, + 265, + 324, + 1087, + 242, + 97, + 245, + 412, + 447, + 372, + 261, + 164, + 356, + 317, + 244, + 1363, + 425, + 233, + 237, + 248, + 765, + 222, + 345, + 295, + 350, + 175, + 361, + 1226, + 504, + 312, + 265, + 201, + 261, + 461, + 222, + 633, + 308, + 394, + 177, + 211, + 318, + 239, + 205, + 2035, + 265, + 326, + 343, + 253, + 185, + 443, + 634, + 415, + 222, + 840, + 269, + 729, + 481, + 193, + 327, + 265, + 369, + 293, + 532, + 1440, + 291, + 529, + 362, + 799, + 404, + 150, + 270, + 277, + 252, + 219, + 841, + 194, + 369, + 255, + 415, + 250, + 728, + 314, + 386, + 190, + 337, + 201, + 288, + 638, + 210, + 630, + 830, + 358, + 606, + 1081, + 284, + 216, + 261, + 404, + 530, + 430, + 202, + 209, + 305, + 204, + 167, + 386, + 268, + 1042, + 211, + 256, + 218, + 273, + 363, + 473, + 358, + 279, + 221, + 409, + 230, + 194, + 404, + 251, + 506, + 1640, + 396, + 316, + 200, + 953, + 511, + 216, + 213, + 161, + 173, + 225, + 143, + 574, + 193, + 463, + 270, + 303, + 319, + 190, + 452, + 954, + 327, + 294, + 285, + 374, + 164, + 328, + 284, + 231, + 336, + 185, + 263, + 175, + 208, + 397, + 569, + 155, + 183, + 182, + 396, + 337, + 209, + 409, + 156, + 244, + 272, + 272, + 173, + 232, + 249, + 395, + 262, + 188, + 1298, + 315, + 282, + 600, + 232, + 245, + 678, + 311, + 486, + 649, + 808, + 608, + 275, + 391, + 218, + 1246, + 236, + 194, + 319, + 437, + 251, + 369, + 363, + 401, + 450, + 278, + 252, + 165, + 383, + 203, + 362, + 253, + 323, + 209, + 190, + 194, + 252, + 585, + 326, + 491, + 246, + 301, + 509, + 187, + 1176, + 567, + 310, + 464, + 509, + 252, + 526, + 222, + 767, + 337, + 898, + 178, + 621, + 487, + 150, + 411, + 453, + 178, + 1032, + 759, + 549, + 330, + 339, + 738, + 394, + 716, + 234, + 380, + 554, + 344, + 608, + 225, + 304, + 400, + 182, + 253, + 226, + 297, + 215, + 211, + 318, + 604, + 238, + 701, + 711, + 882, + 508, + 184, + 255, + 258, + 188, + 159, + 360, + 742, + 449, + 282, + 467, + 334, + 394, + 301, + 404, + 289, + 357, + 482, + 413, + 238, + 449, + 330, + 1556, + 226, + 224, + 300, + 386, + 456, + 260, + 597, + 244, + 344, + 237, + 315, + 741, + 528, + 252, + 712, + 397, + 526, + 655, + 545, + 363, + 514, + 843, + 385, + 1868, + 403, + 651, + 112, + 353, + 329, + 208, + 483, + 281, + 334, + 442 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "duration" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
campaign=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 2, + 2, + 1, + 4, + 3, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 4, + 3, + 3, + 3, + 2, + 2, + 5, + 5, + 4, + 3, + 3, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 2, + 4, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 3, + 1, + 4, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 3, + 1, + 2, + 3, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 5, + 3, + 2, + 2, + 2, + 3, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 1, + 3, + 1, + 6, + 4, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 6, + 1, + 1, + 3, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 7, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 4, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 2, + 1, + 2, + 5, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 5, + 1, + 1, + 5, + 1, + 5, + 1, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 5, + 2, + 2, + 3, + 6, + 4, + 3, + 2, + 3, + 2, + 3, + 3, + 4, + 2, + 3, + 2, + 2, + 3, + 4, + 2, + 2, + 1, + 3, + 5, + 2, + 2, + 3, + 3, + 2, + 3, + 2, + 2, + 8, + 5, + 2, + 6, + 2, + 5, + 1, + 3, + 1, + 3, + 2, + 3, + 2, + 1, + 2, + 3, + 4, + 3, + 3, + 2, + 2, + 5, + 3, + 2, + 2, + 2, + 5, + 2, + 4, + 3, + 3, + 2, + 4, + 3, + 3, + 6, + 2, + 2, + 2, + 3, + 2, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 2, + 3, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 3, + 1, + 1, + 2, + 2, + 6, + 1, + 1, + 7, + 3, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 2, + 1, + 1, + 2, + 7, + 5, + 2, + 3, + 1, + 2, + 2, + 4, + 1, + 2, + 9, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 5, + 6, + 2, + 3, + 2, + 2, + 9, + 2, + 4, + 3, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 5, + 3, + 3, + 3, + 2, + 3, + 3, + 2, + 4, + 2, + 3, + 2, + 2, + 2, + 4, + 3, + 3, + 2, + 5, + 4, + 4, + 3, + 2, + 3, + 2, + 5, + 2, + 3, + 3, + 3, + 3, + 4, + 2, + 2, + 3, + 3, + 3, + 7, + 2, + 2, + 4, + 3, + 3, + 3, + 1, + 3, + 4, + 4, + 2, + 3, + 4, + 2, + 4, + 2, + 2, + 1, + 5, + 3, + 3, + 2, + 4, + 2, + 5, + 4, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 5, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 4, + 3, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 2, + 1, + 2, + 3, + 1, + 2, + 3, + 4, + 1, + 2, + 2, + 5, + 2, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 3, + 7, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 4, + 2, + 2, + 5, + 2, + 2, + 4, + 2, + 4, + 2, + 1, + 2, + 3, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 3, + 3, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 3, + 2, + 6, + 2, + 2, + 7, + 2, + 4, + 3, + 1, + 5, + 2, + 5, + 4, + 4, + 4, + 3, + 3, + 8, + 3, + 3, + 4, + 3, + 4, + 3, + 3, + 3, + 9, + 5, + 3, + 2, + 2, + 3, + 5, + 5, + 2, + 5, + 2, + 5, + 2, + 2, + 7, + 4, + 5, + 2, + 2, + 5, + 2, + 2, + 4, + 7, + 4, + 2, + 3, + 4, + 4, + 2, + 2, + 2, + 4, + 4, + 2, + 1, + 1, + 1, + 1, + 3, + 3, + 3, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 4, + 2, + 3, + 4, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 6, + 2, + 3, + 2, + 4, + 1, + 5, + 4, + 1, + 1, + 3, + 4, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 2, + 2, + 3, + 4, + 3, + 3, + 1, + 2, + 2, + 2, + 2, + 4, + 2, + 3, + 5, + 10, + 3, + 2, + 1, + 1, + 1, + 3, + 2, + 3, + 2, + 4, + 2, + 5, + 5, + 4, + 3, + 2, + 2, + 3, + 5, + 3, + 5, + 4, + 4, + 12, + 2, + 4, + 2, + 6, + 4, + 4, + 4, + 4, + 4, + 2, + 2, + 6, + 7, + 3, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 1, + 2, + 1, + 6, + 3, + 2, + 2, + 2, + 3, + 1, + 3, + 1, + 4, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 4, + 1, + 4, + 1, + 2, + 2, + 1, + 1, + 2, + 4, + 3, + 4, + 3, + 1, + 4, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 6, + 2, + 4, + 4, + 5, + 2, + 2, + 3, + 2, + 2, + 4, + 7, + 3, + 6, + 12, + 2, + 2, + 2, + 2, + 2, + 3, + 4, + 2, + 4, + 2, + 9, + 7, + 3, + 2, + 4, + 4, + 2, + 2, + 5, + 2, + 2, + 3, + 2, + 4, + 1, + 1, + 6, + 2, + 11, + 4, + 8, + 2, + 3, + 2, + 2, + 4, + 2, + 3, + 6, + 2, + 2, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 8, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 12, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 9, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 4, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 7, + 1, + 4, + 3, + 6, + 5, + 1, + 2, + 1, + 1, + 4, + 1, + 2, + 3, + 3, + 2, + 2, + 1, + 6, + 9, + 5, + 1, + 1, + 4, + 1, + 4, + 2, + 1, + 2, + 10, + 3, + 2, + 2, + 1, + 3, + 2, + 10, + 1, + 1, + 2, + 1, + 1, + 1, + 18, + 1, + 4, + 2, + 1, + 1, + 3, + 1, + 11, + 4, + 2, + 1, + 5, + 1, + 2, + 2, + 2, + 4, + 4, + 3, + 4, + 2, + 2, + 3, + 4, + 6, + 5, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 3, + 5, + 4, + 4, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 5, + 2, + 3, + 4, + 2, + 3, + 5, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 11, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 3, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 2, + 7, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 10, + 2, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 5, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 6, + 5, + 3, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 14, + 1, + 2, + 2, + 1, + 22, + 9, + 8, + 2, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 5, + 4, + 2, + 2, + 4, + 3, + 2, + 6, + 7, + 23, + 1, + 2, + 2, + 3, + 4, + 2, + 8, + 8, + 2, + 5, + 2, + 1, + 2, + 2, + 2, + 3, + 25, + 4, + 2, + 2, + 2, + 1, + 3, + 2, + 1, + 3, + 4, + 1, + 2, + 6, + 7, + 7, + 2, + 2, + 2, + 2, + 6, + 2, + 3, + 7, + 4, + 4, + 2, + 6, + 3, + 4, + 4, + 4, + 3, + 12, + 3, + 6, + 8, + 4, + 6, + 4, + 3, + 2, + 2, + 5, + 12, + 5, + 2, + 2, + 1, + 4, + 2, + 3, + 2, + 4, + 2, + 3, + 17, + 1, + 6, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 6, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 7, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 17, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 4, + 1, + 1, + 3, + 1, + 2, + 8, + 2, + 2, + 1, + 2, + 3, + 4, + 3, + 4, + 2, + 2, + 1, + 4, + 1, + 1, + 2, + 11, + 2, + 2, + 2, + 3, + 2, + 2, + 11, + 1, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 23, + 18, + 2, + 2, + 8, + 1, + 2, + 2, + 4, + 15, + 9, + 1, + 2, + 1, + 1, + 2, + 2, + 3, + 17, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 4, + 11, + 4, + 2, + 5, + 2, + 3, + 4, + 2, + 3, + 8, + 2, + 3, + 5, + 5, + 3, + 3, + 3, + 6, + 2, + 2, + 3, + 10, + 3, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 7, + 3, + 3, + 2, + 2, + 4, + 2, + 4, + 2, + 20, + 3, + 3, + 2, + 2, + 2, + 3, + 3, + 5, + 4, + 3, + 7, + 4, + 3, + 4, + 2, + 19, + 4, + 6, + 2, + 2, + 2, + 3, + 2, + 5, + 2, + 2, + 2, + 4, + 1, + 1, + 1, + 7, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 2, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 3, + 2, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 12, + 4, + 1, + 3, + 1, + 1, + 14, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 2, + 1, + 4, + 2, + 2, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 39, + 3, + 2, + 5, + 2, + 9, + 5, + 1, + 3, + 2, + 3, + 1, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 13, + 5, + 2, + 2, + 2, + 2, + 6, + 6, + 2, + 2, + 2, + 2, + 5, + 7, + 2, + 6, + 3, + 3, + 42, + 10, + 2, + 7, + 3, + 2, + 4, + 3, + 7, + 8, + 2, + 10, + 9, + 9, + 2, + 9, + 3, + 7, + 11, + 4, + 7, + 2, + 2, + 5, + 2, + 4, + 2, + 10, + 9, + 10, + 7, + 1, + 1, + 15, + 1, + 1, + 1, + 10, + 1, + 1, + 12, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 12, + 1, + 1, + 1, + 4, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 10, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 6, + 1, + 1, + 1, + 4, + 6, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 3, + 2, + 2, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 6, + 2, + 1, + 2, + 1, + 12, + 2, + 1, + 2, + 1, + 9, + 2, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 17, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 3, + 1, + 2, + 2, + 2, + 9, + 1, + 2, + 1, + 2, + 2, + 3, + 2, + 8, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 1, + 3, + 1, + 6, + 1, + 6, + 3, + 1, + 10, + 7, + 2, + 1, + 1, + 8, + 2, + 2, + 2, + 2, + 16, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 10, + 4, + 3, + 12, + 2, + 2, + 4, + 3, + 3, + 6, + 8, + 2, + 3, + 7, + 3, + 2, + 2, + 2, + 5, + 2, + 2, + 3, + 17, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 4, + 3, + 2, + 6, + 5, + 1, + 1, + 13, + 3, + 1, + 3, + 10, + 4, + 2, + 4, + 2, + 1, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 28, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 10, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 8, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 7, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 13, + 3, + 2, + 2, + 9, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 2, + 12, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 4, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 12, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 4, + 26, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 4, + 5, + 3, + 2, + 2, + 2, + 2, + 3, + 4, + 1, + 1, + 2, + 11, + 14, + 2, + 1, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 3, + 3, + 2, + 2, + 1, + 3, + 13, + 2, + 15, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 9, + 2, + 2, + 4, + 2, + 5, + 3, + 4, + 3, + 3, + 6, + 5, + 19, + 4, + 3, + 5, + 5, + 8, + 6, + 4, + 10, + 4, + 2, + 2, + 9, + 14, + 5, + 6, + 3, + 5, + 3, + 2, + 3, + 9, + 3, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 2, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 1, + 2, + 4, + 1, + 1, + 2, + 1, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 1, + 3, + 2, + 3, + 5, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 3, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 2, + 3, + 18, + 2, + 1, + 2, + 2, + 1, + 1, + 2, + 6, + 2, + 3, + 2, + 2, + 2, + 6, + 42, + 2, + 6, + 2, + 1, + 1, + 2, + 6, + 3, + 2, + 4, + 4, + 2, + 2, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 2, + 4, + 2, + 3, + 2, + 2, + 4, + 3, + 2, + 7, + 4, + 1, + 1, + 3, + 1, + 3, + 6, + 1, + 1, + 1, + 4, + 2, + 4, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 3, + 4, + 3, + 3, + 2, + 2, + 12, + 4, + 2, + 3, + 2, + 9, + 3, + 6, + 5, + 5, + 2, + 2, + 2, + 6, + 3, + 2, + 3, + 3, + 3, + 2, + 2, + 4, + 2, + 6, + 2, + 3, + 2, + 3, + 4, + 4, + 4, + 8, + 2, + 11, + 4, + 3, + 4, + 3, + 3, + 2, + 9, + 4, + 4, + 7, + 3, + 4, + 3, + 3, + 2, + 6, + 3, + 2, + 6, + 5, + 3, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 1, + 3, + 1, + 7, + 3, + 2, + 4, + 2, + 2, + 1, + 1, + 1, + 2, + 5, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 32, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 8, + 1, + 11, + 1, + 1, + 4, + 1, + 3, + 1, + 2, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 14, + 2, + 7, + 6, + 1, + 1, + 5, + 3, + 2, + 3, + 2, + 1, + 3, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 6, + 2, + 3, + 1, + 4, + 2, + 3, + 6, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 1, + 3, + 4, + 3, + 2, + 1, + 2, + 1, + 8, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 6, + 2, + 3, + 2, + 1, + 2, + 2, + 2, + 3, + 12, + 1, + 2, + 2, + 2, + 3, + 2, + 1, + 1, + 4, + 6, + 4, + 14, + 1, + 2, + 2, + 6, + 2, + 2, + 4, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 6, + 2, + 4, + 3, + 11, + 3, + 4, + 4, + 2, + 3, + 5, + 2, + 3, + 5, + 2, + 2, + 2, + 5, + 5, + 2, + 3, + 4, + 6, + 2, + 1, + 4, + 4, + 3, + 6, + 2, + 3, + 3, + 3, + 3, + 4, + 3, + 4, + 2, + 6, + 5, + 2, + 5, + 4, + 5, + 5, + 5, + 11, + 2, + 2, + 2, + 22, + 6, + 4, + 2, + 5, + 2, + 4, + 2, + 16, + 4, + 5, + 3, + 4, + 3, + 1, + 4, + 3, + 7, + 7, + 3, + 6, + 2, + 4, + 3, + 5, + 2, + 3, + 2, + 4, + 4, + 2, + 2, + 2, + 4, + 3, + 6, + 6, + 1, + 2, + 9, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 4, + 4, + 5, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 3, + 11, + 1, + 2, + 2, + 3, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 4, + 1, + 4, + 10, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 16, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 2, + 2, + 1, + 4, + 1, + 1, + 3, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 10, + 9, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 5, + 3, + 1, + 2, + 1, + 1, + 6, + 2, + 4, + 2, + 3, + 1, + 1, + 2, + 2, + 6, + 2, + 2, + 5, + 1, + 9, + 2, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 3, + 1, + 4, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 10, + 5, + 2, + 6, + 2, + 5, + 5, + 2, + 6, + 3, + 2, + 2, + 2, + 2, + 3, + 4, + 3, + 3, + 3, + 2, + 2, + 5, + 10, + 2, + 4, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 5, + 2, + 3, + 2, + 5, + 10, + 4, + 5, + 2, + 1, + 19, + 9, + 4, + 4, + 2, + 2, + 2, + 9, + 3, + 2, + 5, + 2, + 3, + 6, + 4, + 4, + 2, + 2, + 3, + 3, + 2, + 4, + 4, + 3, + 16, + 2, + 8, + 3, + 3, + 5, + 3, + 7, + 8, + 3, + 8, + 3, + 4, + 3, + 2, + 4, + 2, + 3, + 1, + 2, + 6, + 1, + 8, + 1, + 2, + 1, + 1, + 1, + 4, + 3, + 6, + 3, + 2, + 3, + 1, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 1, + 1, + 2, + 7, + 6, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 10, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 18, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 5, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 3, + 2, + 11, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 4, + 3, + 1, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 4, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 18, + 3, + 4, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 5, + 3, + 1, + 1, + 2, + 3, + 2, + 2, + 2, + 3, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 4, + 7, + 1, + 2, + 6, + 3, + 2, + 3, + 6, + 2, + 5, + 3, + 2, + 5, + 3, + 1, + 5, + 3, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 2, + 5, + 5, + 3, + 1, + 2, + 8, + 4, + 4, + 16, + 3, + 1, + 2, + 5, + 3, + 10, + 3, + 2, + 3, + 14, + 1, + 2, + 4, + 3, + 2, + 2, + 5, + 2, + 3, + 2, + 2, + 1, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 5, + 2, + 2, + 3, + 2, + 2, + 5, + 4, + 2, + 2, + 3, + 8, + 3, + 3, + 2, + 4, + 3, + 2, + 5, + 2, + 2, + 7, + 2, + 2, + 6, + 5, + 3, + 2, + 5, + 5, + 3, + 3, + 3, + 3, + 17, + 5, + 8, + 4, + 2, + 2, + 2, + 2, + 5, + 4, + 4, + 3, + 3, + 4, + 6, + 5, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 2, + 3, + 2, + 1, + 6, + 1, + 1, + 1, + 4, + 1, + 1, + 7, + 1, + 1, + 2, + 2, + 5, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 8, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 7, + 10, + 3, + 1, + 4, + 6, + 2, + 2, + 1, + 2, + 1, + 2, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 6, + 4, + 1, + 1, + 5, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 5, + 1, + 5, + 3, + 5, + 7, + 1, + 1, + 3, + 3, + 1, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 1, + 2, + 1, + 2, + 4, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 3, + 1, + 1, + 1, + 10, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 6, + 5, + 3, + 2, + 1, + 13, + 3, + 7, + 4, + 1, + 3, + 3, + 3, + 1, + 1, + 3, + 5, + 3, + 2, + 1, + 1, + 1, + 3, + 3, + 2, + 2, + 2, + 4, + 6, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 1, + 2, + 3, + 3, + 2, + 2, + 2, + 4, + 3, + 3, + 12, + 2, + 2, + 2, + 9, + 2, + 3, + 2, + 2, + 4, + 3, + 22, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 2, + 4, + 3, + 5, + 2, + 3, + 2, + 2, + 5, + 6, + 4, + 9, + 2, + 4, + 3, + 3, + 2, + 6, + 2, + 23, + 4, + 2, + 4, + 6, + 15, + 7, + 3, + 8, + 3, + 3, + 4, + 2, + 3, + 17, + 3, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 2, + 4, + 1, + 3, + 9, + 2, + 4, + 7, + 2, + 3, + 6, + 3, + 5, + 1, + 2, + 7, + 1, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 5, + 1, + 2, + 1, + 4, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 2, + 2, + 4, + 1, + 3, + 2, + 2, + 12, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 3, + 13, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 8, + 1, + 2, + 3, + 8, + 5, + 2, + 2, + 2, + 1, + 1, + 2, + 3, + 3, + 1, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 1, + 2, + 2, + 9, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 4, + 5, + 2, + 1, + 2, + 3, + 3, + 3, + 4, + 2, + 2, + 6, + 5, + 6, + 2, + 2, + 2, + 2, + 5, + 3, + 2, + 6, + 3, + 3, + 2, + 5, + 4, + 2, + 3, + 14, + 2, + 3, + 3, + 4, + 2, + 3, + 5, + 3, + 2, + 2, + 9, + 3, + 2, + 2, + 7, + 4, + 12, + 3, + 7, + 3, + 2, + 8, + 2, + 3, + 2, + 6, + 3, + 2, + 2, + 4, + 2, + 2, + 16, + 2, + 3, + 3, + 4, + 3, + 2, + 3, + 3, + 6, + 2, + 8, + 3, + 10, + 6, + 5, + 3, + 5, + 18, + 2, + 4, + 9, + 4, + 3, + 3, + 3, + 4, + 3, + 25, + 6, + 6, + 2, + 4, + 3, + 9, + 2, + 4, + 5, + 4, + 2, + 2, + 3, + 3, + 7, + 8, + 2, + 2, + 3, + 16, + 9, + 3, + 19, + 5, + 3, + 4, + 3, + 2, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 4, + 3, + 3, + 3, + 2, + 2, + 1, + 3, + 2, + 1, + 8, + 1, + 2, + 3, + 2, + 2, + 1, + 3, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 5, + 1, + 3, + 1, + 21, + 1, + 3, + 2, + 2, + 1, + 1, + 5, + 2, + 2, + 1, + 1, + 2, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 4, + 6, + 1, + 3, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 2, + 3, + 2, + 3, + 4, + 2, + 4, + 4, + 2, + 3, + 1, + 2, + 8, + 1, + 3, + 4, + 7, + 1, + 2, + 2, + 4, + 11, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 8, + 3, + 3, + 3, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 4, + 1, + 3, + 3, + 9, + 4, + 3, + 2, + 2, + 7, + 1, + 2, + 9, + 4, + 2, + 3, + 6, + 3, + 2, + 8, + 4, + 2, + 2, + 1, + 1, + 4, + 5, + 3, + 2, + 32, + 5, + 3, + 2, + 1, + 5, + 1, + 4, + 5, + 1, + 3, + 3, + 5, + 3, + 1, + 4, + 10, + 1, + 4, + 6, + 2, + 2, + 3, + 1, + 4, + 1, + 2, + 4, + 6, + 20, + 2, + 1, + 3, + 8, + 2, + 15, + 2, + 2, + 4, + 7, + 2, + 8, + 3, + 3, + 6, + 8, + 5, + 4, + 8, + 3, + 13, + 9, + 3, + 4, + 12, + 10, + 4, + 4, + 4, + 8, + 6, + 3, + 14, + 3, + 6, + 10, + 2, + 3, + 2, + 10, + 1, + 3, + 1, + 8, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 13, + 3, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 5, + 2, + 3, + 3, + 1, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 4, + 1, + 2, + 1, + 1, + 2, + 2, + 4, + 5, + 3, + 6, + 1, + 2, + 2, + 1, + 26, + 1, + 15, + 1, + 1, + 2, + 3, + 2, + 5, + 12, + 1, + 1, + 4, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 1, + 1, + 1, + 28, + 1, + 32, + 1, + 1, + 12, + 1, + 2, + 1, + 7, + 2, + 1, + 1, + 3, + 4, + 6, + 1, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 2, + 3, + 2, + 5, + 3, + 5, + 3, + 2, + 4, + 2, + 4, + 3, + 5, + 2, + 5, + 2, + 18, + 2, + 2, + 6, + 10, + 8, + 2, + 2, + 2, + 2, + 8, + 2, + 7, + 7, + 21, + 7, + 2, + 9, + 6, + 2, + 1, + 2, + 6, + 3, + 20, + 14, + 3, + 3, + 6, + 1, + 1, + 3, + 6, + 11, + 2, + 1, + 11, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 2, + 2, + 3, + 4, + 3, + 3, + 2, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 8, + 1, + 10, + 1, + 1, + 2, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 10, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 2, + 2, + 1, + 8, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 6, + 2, + 1, + 3, + 1, + 6, + 2, + 1, + 2, + 2, + 5, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 2, + 5, + 2, + 1, + 2, + 2, + 2, + 2, + 3, + 1, + 1, + 9, + 4, + 1, + 4, + 1, + 1, + 1, + 2, + 2, + 6, + 2, + 2, + 3, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 4, + 2, + 6, + 2, + 5, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 11, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 11, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 2, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 11, + 2, + 3, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 1, + 1, + 2, + 2, + 2, + 8, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 10, + 1, + 1, + 4, + 4, + 2, + 2, + 2, + 2, + 1, + 3, + 24, + 4, + 2, + 2, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 29, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 17, + 3, + 3, + 2, + 5, + 3, + 13, + 2, + 7, + 2, + 4, + 2, + 2, + 31, + 5, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 7, + 1, + 2, + 4, + 1, + 1, + 4, + 4, + 2, + 4, + 11, + 1, + 1, + 1, + 3, + 9, + 3, + 2, + 6, + 1, + 2, + 2, + 3, + 2, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 5, + 5, + 2, + 2, + 5, + 2, + 2, + 1, + 2, + 1, + 1, + 5, + 1, + 2, + 3, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 3, + 16, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 13, + 2, + 2, + 3, + 1, + 1, + 1, + 3, + 2, + 3, + 1, + 5, + 2, + 1, + 2, + 1, + 1, + 2, + 7, + 4, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 5, + 2, + 13, + 3, + 2, + 4, + 2, + 3, + 2, + 2, + 2, + 5, + 3, + 1, + 1, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 7, + 6, + 2, + 2, + 4, + 2, + 2, + 5, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 4, + 3, + 2, + 1, + 1, + 24, + 2, + 1, + 1, + 24, + 2, + 1, + 1, + 9, + 2, + 23, + 3, + 5, + 7, + 2, + 2, + 1, + 2, + 1, + 2, + 3, + 3, + 5, + 3, + 1, + 2, + 3, + 2, + 2, + 2, + 4, + 2, + 1, + 20, + 2, + 1, + 5, + 3, + 6, + 2, + 2, + 2, + 1, + 4, + 2, + 4, + 6, + 3, + 10, + 4, + 2, + 2, + 2, + 4, + 4, + 3, + 2, + 3, + 4, + 2, + 6, + 2, + 2, + 3, + 3, + 4, + 4, + 5, + 6, + 1, + 1, + 1, + 5, + 12, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 10, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 5, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 9, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 6, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 4, + 3, + 3, + 2, + 2, + 3, + 2, + 2, + 6, + 1, + 3, + 4, + 2, + 2, + 2, + 5, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 17, + 2, + 3, + 2, + 2, + 5, + 2, + 6, + 3, + 3, + 2, + 2, + 4, + 5, + 2, + 2, + 2, + 2, + 3, + 13, + 2, + 12, + 6, + 2, + 2, + 2, + 2, + 3, + 3, + 4, + 4, + 4, + 2, + 10, + 4, + 3, + 7, + 6, + 8, + 3, + 12, + 7, + 2, + 3, + 4, + 3, + 5, + 2, + 2, + 2, + 3, + 10, + 1, + 3, + 1, + 1, + 1, + 1, + 9, + 1, + 1, + 4, + 1, + 1, + 1, + 5, + 3, + 1, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 2, + 4, + 17, + 5, + 2, + 5, + 2, + 6, + 4, + 2, + 6, + 2, + 22, + 2, + 2, + 2, + 9, + 8, + 3, + 2, + 2, + 2, + 2, + 9, + 11, + 3, + 3, + 2, + 13, + 2, + 6, + 2, + 3, + 2, + 3, + 2, + 4, + 3, + 4, + 2, + 10, + 2, + 3, + 5, + 19, + 3, + 7, + 2, + 4, + 3, + 2, + 2, + 3, + 3, + 3, + 16, + 8, + 5, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 2, + 2, + 3, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 8, + 2, + 6, + 2, + 2, + 8, + 2, + 2, + 2, + 4, + 2, + 2, + 3, + 4, + 5, + 2, + 4, + 2, + 3, + 2, + 2, + 2, + 29, + 4, + 3, + 3, + 2, + 3, + 2, + 3, + 15, + 4, + 4, + 3, + 4, + 8, + 3, + 3, + 3, + 5, + 2, + 6, + 3, + 3, + 5, + 2, + 10, + 5, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 6, + 3, + 1, + 1, + 1, + 6, + 8, + 1, + 3, + 2, + 6, + 2, + 2, + 2, + 1, + 4, + 2, + 1, + 1, + 3, + 3, + 5, + 1, + 1, + 1, + 8, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 8, + 19, + 3, + 2, + 2, + 3, + 2, + 5, + 3, + 2, + 3, + 1, + 1, + 2, + 12, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 3, + 2, + 3, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 4, + 3, + 3, + 3, + 7, + 1, + 21, + 15, + 3, + 4, + 3, + 1, + 14, + 4, + 3, + 30, + 3, + 35, + 21, + 3, + 6, + 3, + 2, + 2, + 1, + 1, + 2, + 3, + 2, + 3, + 2, + 25, + 18, + 6, + 20, + 3, + 12, + 5, + 5, + 2, + 4, + 2, + 4, + 2, + 8, + 3, + 16, + 3, + 5, + 4, + 3, + 4, + 8, + 3, + 13, + 4, + 2, + 2, + 6, + 2, + 2, + 3, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 8, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 2, + 4, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 31, + 1, + 1, + 2, + 5, + 2, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 1, + 4, + 3, + 2, + 6, + 2, + 2, + 2, + 2, + 4, + 4, + 2, + 8, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 6, + 4, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 7, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 6, + 3, + 3, + 2, + 7, + 2, + 6, + 4, + 6, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 10, + 6, + 4, + 9, + 4, + 6, + 4, + 2, + 4, + 2, + 2, + 6, + 2, + 3, + 3, + 3, + 3, + 3, + 21, + 3, + 7, + 4, + 3, + 2, + 2, + 7, + 3, + 6, + 2, + 3, + 7, + 5, + 4, + 8, + 2, + 2, + 3, + 6, + 3, + 2, + 1, + 6, + 1, + 4, + 4, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 7, + 2, + 3, + 3, + 4, + 3, + 2, + 4, + 2, + 4, + 3, + 3, + 3, + 3, + 4, + 3, + 1, + 1, + 1, + 1, + 8, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 10, + 1, + 1, + 2, + 1, + 1, + 1, + 5, + 4, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 6, + 3, + 2, + 3, + 2, + 1, + 1, + 29, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 12, + 3, + 11, + 19, + 2, + 2, + 2, + 6, + 2, + 14, + 3, + 7, + 1, + 7, + 3, + 16, + 5, + 4, + 2, + 30, + 2, + 14, + 3, + 3, + 2, + 3, + 3, + 2, + 23, + 3, + 2, + 2, + 5, + 2, + 10, + 10, + 3, + 3, + 41, + 2, + 2, + 1, + 2, + 6, + 2, + 3, + 2, + 3, + 1, + 3, + 5, + 17, + 8, + 21, + 2, + 2, + 2, + 5, + 3, + 2, + 3, + 3, + 2, + 4, + 6, + 11, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 31, + 1, + 10, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 1, + 12, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 3, + 10, + 3, + 2, + 2, + 1, + 1, + 1, + 4, + 7, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 14, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 7, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 2, + 2, + 1, + 2, + 3, + 7, + 2, + 1, + 2, + 2, + 10, + 2, + 1, + 2, + 2, + 2, + 4, + 28, + 5, + 2, + 3, + 9, + 5, + 2, + 2, + 2, + 11, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 6, + 2, + 4, + 8, + 2, + 12, + 5, + 2, + 7, + 2, + 3, + 2, + 2, + 3, + 3, + 2, + 3, + 2, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 3, + 3, + 20, + 2, + 1, + 2, + 8, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 4, + 4, + 1, + 2, + 2, + 3, + 2, + 4, + 2, + 11, + 3, + 2, + 5, + 3, + 17, + 3, + 3, + 3, + 4, + 2, + 1, + 3, + 1, + 1, + 8, + 2, + 6, + 2, + 2, + 4, + 4, + 4, + 2, + 2, + 2, + 2, + 2, + 12, + 3, + 3, + 2, + 4, + 2, + 2, + 8, + 4, + 5, + 3, + 37, + 18, + 9, + 3, + 5, + 14, + 10, + 3, + 3, + 4, + 4, + 14, + 3, + 2, + 3, + 18, + 3, + 2, + 3, + 4, + 14, + 29, + 14, + 10, + 6, + 3, + 5, + 2, + 18, + 13, + 2, + 4, + 4, + 22, + 21, + 3, + 2, + 4, + 3, + 14, + 3, + 20, + 3, + 12, + 20, + 5, + 5, + 12, + 3, + 4, + 27, + 4, + 8, + 3, + 3, + 5, + 4, + 10, + 2, + 14, + 6, + 19, + 2, + 2, + 3, + 2, + 3, + 4, + 5, + 4, + 8, + 4, + 3, + 2, + 14, + 4, + 2, + 10, + 2, + 6, + 3, + 14, + 15, + 2, + 3, + 3, + 4, + 7, + 4, + 12, + 3, + 15, + 2, + 2, + 9, + 12, + 13, + 3, + 6, + 7, + 4, + 10, + 2, + 3, + 3, + 40, + 4, + 2, + 12, + 7, + 5, + 6, + 10, + 4, + 6, + 14, + 2, + 13, + 7, + 12, + 3, + 3, + 3, + 21, + 4, + 13, + 2, + 5, + 5, + 10, + 2, + 5, + 7, + 3, + 6, + 3, + 22, + 7, + 11, + 7, + 3, + 6, + 3, + 2, + 4, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 7, + 3, + 2, + 9, + 2, + 3, + 3, + 3, + 12, + 7, + 4, + 3, + 3, + 5, + 5, + 2, + 17, + 10, + 5, + 19, + 4, + 11, + 3, + 26, + 4, + 5, + 9, + 7, + 4, + 16, + 4, + 2, + 3, + 20, + 16, + 19, + 6, + 24, + 4, + 4, + 5, + 4, + 4, + 24, + 13, + 8, + 28, + 3, + 5, + 18, + 2, + 2, + 2, + 4, + 2, + 5, + 3, + 4, + 2, + 2, + 4, + 3, + 4, + 3, + 5, + 5, + 5, + 3, + 3, + 6, + 3, + 3, + 4, + 3, + 8, + 4, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 3, + 2, + 8, + 4, + 2, + 2, + 2, + 2, + 1, + 3, + 3, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 7, + 3, + 2, + 2, + 4, + 3, + 4, + 2, + 4, + 4, + 2, + 3, + 3, + 6, + 4, + 1, + 3, + 2, + 1, + 6, + 1, + 1, + 4, + 1, + 2, + 1, + 5, + 1, + 1, + 2, + 8, + 2, + 1, + 1, + 1, + 2, + 4, + 1, + 2, + 2, + 3, + 3, + 4, + 2, + 4, + 2, + 5, + 3, + 2, + 3, + 4, + 3, + 2, + 2, + 2, + 5, + 3, + 3, + 3, + 2, + 2, + 4, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 2, + 4, + 3, + 2, + 4, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 6, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 4, + 7, + 2, + 5, + 4, + 2, + 3, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 3, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 10, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 11, + 2, + 3, + 1, + 11, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 3, + 3, + 3, + 6, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 2, + 6, + 2, + 2, + 3, + 3, + 2, + 1, + 3, + 2, + 3, + 2, + 2, + 2, + 4, + 5, + 3, + 2, + 4, + 2, + 2, + 6, + 5, + 5, + 6, + 2, + 6, + 4, + 2, + 2, + 9, + 2, + 4, + 6, + 3, + 2, + 3, + 2, + 2, + 1, + 3, + 3, + 4, + 5, + 4, + 4, + 4, + 4, + 9, + 4, + 5, + 1, + 1, + 1, + 8, + 3, + 8, + 4, + 6, + 7, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 15, + 1, + 1, + 3, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 4, + 1, + 3, + 2, + 2, + 2, + 7, + 2, + 1, + 1, + 7, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 10, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 6, + 1, + 1, + 1, + 2, + 7, + 3, + 3, + 5, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 2, + 30, + 3, + 3, + 1, + 1, + 1, + 2, + 5, + 3, + 4, + 3, + 8, + 2, + 2, + 5, + 3, + 2, + 3, + 4, + 20, + 2, + 3, + 7, + 1, + 3, + 3, + 2, + 5, + 2, + 2, + 5, + 1, + 4, + 1, + 4, + 3, + 1, + 2, + 3, + 2, + 5, + 2, + 1, + 1, + 2, + 3, + 3, + 10, + 2, + 5, + 1, + 11, + 1, + 1, + 1, + 17, + 4, + 3, + 11, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 26, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 4, + 1, + 3, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 2, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 4, + 1, + 5, + 1, + 2, + 2, + 1, + 3, + 3, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 8, + 4, + 3, + 1, + 1, + 3, + 2, + 3, + 2, + 2, + 4, + 3, + 2, + 2, + 3, + 3, + 1, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 3, + 1, + 12, + 3, + 1, + 1, + 1, + 3, + 35, + 2, + 3, + 4, + 2, + 5, + 7, + 3, + 1, + 2, + 2, + 2, + 4, + 3, + 2, + 2, + 7, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 1, + 3, + 1, + 3, + 3, + 1, + 3, + 3, + 3, + 5, + 3, + 1, + 3, + 1, + 1, + 6, + 4, + 1, + 5, + 1, + 4, + 2, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 8, + 5, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 5, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 2, + 1, + 1, + 5, + 2, + 1, + 3, + 1, + 1, + 1, + 4, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 3, + 5, + 1, + 2, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 11, + 2, + 2, + 2, + 1, + 3, + 5, + 16, + 2, + 1, + 3, + 2, + 1, + 17, + 5, + 8, + 1, + 1, + 3, + 4, + 1, + 2, + 43, + 5, + 2, + 4, + 1, + 6, + 1, + 3, + 1, + 1, + 1, + 4, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 6, + 1, + 1, + 1, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 6, + 1, + 7, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 9, + 2, + 1, + 2, + 1, + 4, + 1, + 4, + 7, + 1, + 10, + 5, + 5, + 2, + 3, + 3, + 6, + 4, + 3, + 3, + 1, + 7, + 5, + 3, + 1, + 4, + 3, + 6, + 5, + 3, + 20, + 5, + 10, + 2, + 7, + 14, + 27, + 4, + 5, + 3, + 5, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 7, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 8, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 15, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 7, + 2, + 2, + 2, + 2, + 13, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 7, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 3, + 3, + 4, + 2, + 7, + 3, + 3, + 2, + 3, + 2, + 3, + 2, + 3, + 6, + 3, + 2, + 3, + 4, + 2, + 12, + 3, + 3, + 3, + 3, + 2, + 2, + 3, + 6, + 3, + 3, + 3, + 3, + 4, + 3, + 3, + 2, + 3, + 3, + 3, + 2, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 4, + 3, + 2, + 2, + 4, + 2, + 5, + 3, + 2, + 2, + 3, + 6, + 3, + 3, + 2, + 11, + 3, + 3, + 3, + 2, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 8, + 3, + 3, + 3, + 2, + 2, + 3, + 3, + 2, + 3, + 3, + 4, + 3, + 4, + 3, + 3, + 2, + 3, + 3, + 3, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 2, + 2, + 3, + 3, + 3, + 3, + 4, + 3, + 3, + 2, + 2, + 4, + 8, + 3, + 5, + 4, + 2, + 2, + 4, + 3, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 4, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 5, + 3, + 3, + 3, + 2, + 3, + 3, + 5, + 8, + 4, + 5, + 3, + 2, + 3, + 5, + 4, + 6, + 3, + 3, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 3, + 4, + 3, + 4, + 4, + 3, + 3, + 3, + 4, + 4, + 3, + 3, + 4, + 3, + 3, + 3, + 4, + 10, + 3, + 3, + 3, + 2, + 2, + 3, + 3, + 5, + 3, + 3, + 3, + 4, + 4, + 2, + 3, + 4, + 4, + 4, + 4, + 3, + 3, + 3, + 3, + 4, + 4, + 2, + 2, + 19, + 3, + 3, + 4, + 3, + 4, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 4, + 3, + 5, + 4, + 4, + 4, + 3, + 3, + 2, + 4, + 4, + 4, + 2, + 4, + 5, + 2, + 2, + 3, + 2, + 3, + 2, + 4, + 4, + 4, + 3, + 2, + 2, + 3, + 2, + 5, + 4, + 3, + 4, + 4, + 4, + 3, + 4, + 3, + 4, + 4, + 4, + 4, + 10, + 3, + 2, + 3, + 3, + 5, + 4, + 3, + 6, + 2, + 4, + 3, + 1, + 2, + 5, + 1, + 5, + 4, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 5, + 2, + 1, + 4, + 4, + 1, + 1, + 1, + 2, + 6, + 2, + 5, + 4, + 2, + 1, + 5, + 4, + 1, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 5, + 5, + 2, + 11, + 7, + 1, + 5, + 4, + 5, + 4, + 4, + 2, + 14, + 2, + 8, + 5, + 5, + 4, + 3, + 2, + 2, + 5, + 4, + 4, + 8, + 7, + 4, + 4, + 5, + 3, + 2, + 4, + 4, + 7, + 2, + 4, + 7, + 4, + 2, + 4, + 4, + 5, + 6, + 3, + 2, + 5, + 4, + 4, + 3, + 4, + 7, + 6, + 5, + 5, + 4, + 4, + 5, + 5, + 6, + 5, + 8, + 3, + 5, + 5, + 4, + 7, + 4, + 5, + 2, + 4, + 14, + 6, + 4, + 8, + 5, + 7, + 7, + 3, + 7, + 5, + 4, + 6, + 4, + 1, + 7, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 8, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 7, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 3, + 3, + 7, + 1, + 2, + 2, + 2, + 3, + 2, + 9, + 2, + 2, + 6, + 2, + 5, + 7, + 4, + 1, + 3, + 2, + 7, + 6, + 2, + 6, + 5, + 6, + 2, + 5, + 6, + 6, + 6, + 2, + 5, + 6, + 7, + 6, + 7, + 2, + 6, + 2, + 1, + 5, + 1, + 3, + 2, + 11, + 5, + 8, + 5, + 2, + 2, + 5, + 2, + 1, + 3, + 1, + 7, + 3, + 11, + 1, + 7, + 2, + 2, + 20, + 2, + 1, + 2, + 3, + 6, + 1, + 2, + 2, + 2, + 14, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 7, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 10, + 1, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 12, + 1, + 1, + 3, + 3, + 2, + 2, + 7, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 5, + 1, + 2, + 1, + 1, + 1, + 2, + 11, + 2, + 2, + 2, + 3, + 6, + 2, + 1, + 3, + 8, + 17, + 7, + 3, + 8, + 2, + 1, + 2, + 1, + 2, + 1, + 3, + 2, + 5, + 2, + 3, + 5, + 2, + 2, + 3, + 5, + 3, + 5, + 2, + 3, + 2, + 3, + 4, + 1, + 8, + 3, + 1, + 2, + 6, + 2, + 3, + 1, + 1, + 2, + 3, + 3, + 9, + 4, + 11, + 3, + 2, + 4, + 2, + 2, + 17, + 3, + 4, + 10, + 5, + 7, + 1, + 8, + 1, + 1, + 6, + 2, + 3, + 1, + 1, + 3, + 9, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 9, + 3, + 5, + 3, + 8, + 4, + 4, + 6, + 7, + 9, + 10, + 3, + 10, + 4, + 2, + 11, + 3, + 2, + 4, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 5, + 1, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 10, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 3, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 4, + 3, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 3, + 7, + 1, + 2, + 7, + 2, + 1, + 2, + 3, + 5, + 3, + 5, + 2, + 6, + 2, + 2, + 2, + 9, + 11, + 7, + 4, + 4, + 2, + 9, + 9, + 6, + 2, + 3, + 10, + 2, + 3, + 6, + 3, + 5, + 3, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 3, + 2, + 5, + 5, + 2, + 2, + 3, + 2, + 3, + 3, + 4, + 3, + 2, + 2, + 2, + 10, + 5, + 3, + 2, + 1, + 1, + 3, + 3, + 6, + 2, + 2, + 2, + 7, + 3, + 3, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 4, + 2, + 8, + 2, + 4, + 16, + 2, + 5, + 7, + 3, + 3, + 2, + 2, + 7, + 4, + 3, + 2, + 6, + 1, + 7, + 1, + 2, + 1, + 3, + 4, + 1, + 1, + 2, + 2, + 4, + 20, + 3, + 4, + 2, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 6, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 2, + 1, + 6, + 4, + 6, + 1, + 8, + 8, + 2, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 11, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 7, + 1, + 1, + 1, + 2, + 3, + 15, + 3, + 1, + 2, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 2, + 3, + 2, + 3, + 3, + 1, + 3, + 1, + 1, + 4, + 1, + 3, + 1, + 8, + 1, + 1, + 1, + 1, + 5, + 7, + 2, + 3, + 3, + 2, + 11, + 5, + 1, + 3, + 1, + 3, + 9, + 2, + 1, + 9, + 1, + 1, + 1, + 2, + 4, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 9, + 5, + 3, + 2, + 5, + 3, + 2, + 5, + 4, + 3, + 2, + 10, + 2, + 2, + 12, + 3, + 2, + 4, + 15, + 3, + 5, + 2, + 4, + 4, + 2, + 2, + 5, + 4, + 7, + 2, + 2, + 9, + 3, + 10, + 5, + 2, + 3, + 3, + 2, + 28, + 11, + 2, + 21, + 3, + 2, + 3, + 3, + 4, + 2, + 2, + 3, + 2, + 14, + 4, + 3, + 3, + 2, + 2, + 3, + 3, + 7, + 3, + 3, + 7, + 1, + 3, + 3, + 1, + 2, + 1, + 5, + 1, + 1, + 5, + 8, + 4, + 5, + 5, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 3, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 6, + 1, + 3, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 16, + 3, + 2, + 1, + 1, + 1, + 1, + 12, + 1, + 1, + 3, + 2, + 1, + 8, + 12, + 1, + 3, + 1, + 3, + 1, + 2, + 2, + 2, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 3, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 11, + 2, + 3, + 4, + 2, + 4, + 9, + 4, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 3, + 2, + 21, + 2, + 1, + 10, + 2, + 2, + 2, + 2, + 2, + 7, + 2, + 4, + 5, + 5, + 2, + 4, + 3, + 4, + 2, + 8, + 3, + 2, + 7, + 15, + 5, + 2, + 1, + 4, + 4, + 3, + 8, + 3, + 2, + 5, + 5, + 3, + 2, + 2, + 5, + 2, + 3, + 2, + 3, + 2, + 4, + 2, + 1, + 1, + 5, + 2, + 6, + 2, + 13, + 5, + 2, + 3, + 2, + 2, + 8, + 4, + 5, + 6, + 10, + 8, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 2, + 4, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 11, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 11, + 2, + 1, + 6, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 9, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 4, + 2, + 1, + 1, + 1, + 5, + 5, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 2, + 1, + 8, + 3, + 2, + 2, + 1, + 1, + 2, + 5, + 1, + 2, + 2, + 1, + 1, + 3, + 3, + 2, + 2, + 2, + 8, + 1, + 17, + 4, + 2, + 1, + 1, + 3, + 4, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 6, + 3, + 2, + 2, + 24, + 4, + 2, + 2, + 4, + 3, + 3, + 3, + 2, + 3, + 6, + 2, + 1, + 1, + 1, + 2, + 6, + 1, + 2, + 2, + 7, + 1, + 4, + 3, + 3, + 2, + 1, + 10, + 2, + 11, + 12, + 3, + 2, + 4, + 10, + 2, + 3, + 2, + 2, + 17, + 2, + 2, + 4, + 3, + 5, + 1, + 19, + 3, + 1, + 1, + 1, + 2, + 6, + 5, + 2, + 2, + 3, + 16, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 6, + 2, + 6, + 4, + 5, + 5, + 2, + 4, + 10, + 2, + 3, + 4, + 15, + 17, + 3, + 4, + 2, + 6, + 2, + 2, + 2, + 13, + 2, + 5, + 5, + 3, + 5, + 3, + 4, + 29, + 3, + 4, + 3, + 3, + 2, + 6, + 6, + 3, + 4, + 7, + 20, + 1, + 4, + 1, + 1, + 5, + 1, + 2, + 24, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 4, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 6, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 1, + 3, + 4, + 4, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 4, + 1, + 2, + 2, + 5, + 2, + 2, + 12, + 2, + 1, + 3, + 5, + 4, + 1, + 5, + 2, + 1, + 4, + 1, + 1, + 3, + 1, + 2, + 1, + 3, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 3, + 9, + 3, + 5, + 2, + 6, + 14, + 1, + 1, + 1, + 1, + 5, + 6, + 1, + 1, + 2, + 2, + 3, + 3, + 4, + 3, + 3, + 6, + 2, + 2, + 2, + 2, + 3, + 3, + 5, + 4, + 2, + 10, + 5, + 3, + 2, + 10, + 3, + 5, + 3, + 3, + 2, + 2, + 4, + 16, + 2, + 3, + 12, + 2, + 3, + 2, + 2, + 2, + 2, + 9, + 2, + 4, + 4, + 16, + 2, + 4, + 5, + 3, + 7, + 2, + 2, + 3, + 1, + 1, + 2, + 1, + 5, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 2, + 1, + 2, + 7, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 5, + 2, + 2, + 1, + 4, + 2, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 1, + 5, + 5, + 1, + 1, + 2, + 1, + 4, + 3, + 6, + 3, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 5, + 5, + 2, + 1, + 3, + 12, + 2, + 2, + 1, + 26, + 7, + 1, + 2, + 2, + 4, + 4, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 30, + 5, + 7, + 2, + 3, + 4, + 2, + 3, + 2, + 4, + 1, + 1, + 4, + 10, + 2, + 3, + 11, + 7, + 3, + 3, + 4, + 2, + 3, + 4, + 9, + 5, + 5, + 3, + 2, + 5, + 12, + 3, + 5, + 3, + 6, + 4, + 2, + 2, + 5, + 2, + 17, + 6, + 2, + 5, + 2, + 30, + 6, + 10, + 2, + 2, + 3, + 3, + 8, + 3, + 2, + 3, + 3, + 11, + 20, + 5, + 2, + 5, + 3, + 2, + 2, + 6, + 2, + 2, + 1, + 2, + 2, + 7, + 1, + 2, + 1, + 1, + 5, + 3, + 2, + 2, + 4, + 2, + 4, + 1, + 4, + 7, + 2, + 4, + 3, + 12, + 2, + 1, + 1, + 4, + 1, + 23, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 3, + 2, + 2, + 3, + 5, + 6, + 1, + 2, + 4, + 4, + 1, + 3, + 2, + 1, + 1, + 3, + 18, + 2, + 4, + 2, + 3, + 3, + 2, + 2, + 5, + 2, + 4, + 10, + 2, + 2, + 2, + 5, + 22, + 2, + 2, + 5, + 3, + 2, + 3, + 3, + 3, + 5, + 7, + 2, + 15, + 5, + 4, + 8, + 7, + 4, + 2, + 7, + 3, + 5, + 8, + 5, + 2, + 4, + 11, + 3, + 5, + 4, + 19, + 2, + 4, + 2, + 4, + 5, + 11, + 4, + 7, + 3, + 10, + 4, + 6, + 2, + 5, + 4, + 2, + 3, + 3, + 4, + 3, + 3, + 6, + 16, + 3, + 5, + 4, + 6, + 12, + 3, + 9, + 7, + 2, + 3, + 8, + 4, + 18, + 6, + 3, + 2, + 15, + 7, + 3, + 4, + 4, + 6, + 4, + 3, + 4, + 7, + 2, + 7, + 2, + 6, + 10, + 11, + 3, + 8, + 3, + 8, + 9, + 2, + 4, + 5, + 16, + 5, + 11, + 6, + 3, + 6, + 8, + 6, + 7, + 7, + 3, + 1, + 1, + 1, + 7, + 1, + 20, + 14, + 5, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 4, + 1, + 1, + 4, + 4, + 5, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 6, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 3, + 2, + 2, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 2, + 1, + 3, + 14, + 1, + 2, + 3, + 2, + 2, + 4, + 5, + 7, + 1, + 1, + 6, + 4, + 1, + 1, + 2, + 11, + 4, + 6, + 8, + 3, + 3, + 2, + 2, + 1, + 1, + 18, + 3, + 2, + 3, + 3, + 17, + 3, + 2, + 9, + 1, + 6, + 3, + 12, + 17, + 1, + 6, + 3, + 7, + 1, + 3, + 5, + 34, + 2, + 13, + 2, + 4, + 1, + 1, + 1, + 1, + 4, + 3, + 6, + 5, + 4, + 3, + 3, + 5, + 2, + 4, + 4, + 5, + 11, + 2, + 12, + 5, + 3, + 7, + 7, + 5, + 3, + 3, + 9, + 4, + 6, + 4, + 1, + 3, + 9, + 3, + 24, + 6, + 8, + 5, + 11, + 6, + 5, + 6, + 19, + 8, + 4, + 4, + 14, + 10, + 23, + 30, + 3, + 4, + 6, + 13, + 21, + 6, + 4, + 7, + 8, + 4, + 4, + 5, + 3, + 5, + 11, + 2, + 6, + 2, + 1, + 1, + 1, + 20, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 8, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 4, + 1, + 4, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 19, + 4, + 8, + 1, + 1, + 2, + 1, + 1, + 22, + 1, + 1, + 8, + 1, + 29, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 4, + 2, + 9, + 2, + 1, + 1, + 6, + 1, + 6, + 2, + 2, + 1, + 2, + 4, + 1, + 3, + 1, + 2, + 1, + 3, + 4, + 3, + 2, + 1, + 4, + 15, + 3, + 2, + 4, + 4, + 3, + 4, + 2, + 8, + 16, + 2, + 2, + 2, + 2, + 1, + 1, + 8, + 1, + 6, + 2, + 5, + 5, + 18, + 2, + 7, + 2, + 13, + 2, + 5, + 3, + 1, + 7, + 7, + 5, + 1, + 4, + 7, + 1, + 3, + 10, + 1, + 7, + 2, + 3, + 3, + 11, + 2, + 4, + 3, + 3, + 5, + 5, + 3, + 3, + 2, + 7, + 10, + 2, + 5, + 3, + 3, + 4, + 2, + 8, + 1, + 4, + 4, + 1, + 4, + 7, + 2, + 3, + 1, + 3, + 5, + 1, + 3, + 3, + 3, + 3, + 6, + 17, + 3, + 3, + 2, + 3, + 6, + 3, + 5, + 6, + 2, + 4, + 3, + 6, + 5, + 4, + 8, + 3, + 3, + 8, + 3, + 3, + 10, + 4, + 3, + 3, + 4, + 11, + 3, + 5, + 8, + 3, + 4, + 23, + 3, + 8, + 3, + 4, + 3, + 3, + 20, + 4, + 4, + 10, + 3, + 2, + 2, + 3, + 8, + 4, + 5, + 11, + 12, + 4, + 14, + 10, + 10, + 5, + 5, + 2, + 4, + 6, + 2, + 5, + 27, + 3, + 6, + 17, + 16, + 6, + 2, + 4, + 3, + 2, + 3, + 3, + 10, + 3, + 23, + 24, + 5, + 3, + 2, + 3, + 3, + 2, + 3, + 8, + 2, + 3, + 1, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 3, + 1, + 3, + 1, + 23, + 5, + 1, + 1, + 7, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 6, + 1, + 1, + 6, + 2, + 1, + 2, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 22, + 1, + 1, + 1, + 6, + 3, + 1, + 1, + 1, + 1, + 2, + 16, + 1, + 4, + 1, + 5, + 4, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 14, + 3, + 1, + 1, + 1, + 4, + 1, + 1, + 29, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 6, + 8, + 2, + 1, + 1, + 2, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 2, + 3, + 33, + 6, + 1, + 2, + 1, + 1, + 2, + 3, + 2, + 2, + 3, + 2, + 1, + 5, + 3, + 11, + 5, + 2, + 5, + 3, + 12, + 9, + 2, + 3, + 3, + 4, + 7, + 1, + 1, + 1, + 1, + 5, + 1, + 5, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 5, + 1, + 4, + 1, + 1, + 1, + 1, + 29, + 5, + 8, + 4, + 5, + 25, + 16, + 2, + 2, + 2, + 20, + 7, + 5, + 33, + 8, + 31, + 5, + 6, + 17, + 18, + 2, + 3, + 4, + 5, + 34, + 2, + 5, + 7, + 3, + 4, + 3, + 27, + 5, + 2, + 3, + 6, + 18, + 35, + 28, + 18, + 3, + 21, + 32, + 27, + 33, + 14, + 18, + 7, + 4, + 4, + 25, + 4, + 3, + 6, + 7, + 3, + 3, + 3, + 25, + 23, + 3, + 3, + 35, + 3, + 2, + 6, + 8, + 6, + 8, + 16, + 3, + 8, + 7, + 6, + 8, + 13, + 6, + 3, + 5, + 9, + 20, + 17, + 4, + 10, + 40, + 4, + 5, + 30, + 27, + 4, + 3, + 7, + 4, + 5, + 7, + 6, + 12, + 13, + 16, + 5, + 6, + 13, + 4, + 3, + 7, + 8, + 17, + 15, + 4, + 3, + 3, + 24, + 31, + 7, + 3, + 6, + 3, + 5, + 3, + 14, + 7, + 10, + 5, + 4, + 6, + 4, + 11, + 7, + 3, + 9, + 21, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 2, + 2, + 1, + 2, + 2, + 1, + 3, + 3, + 2, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 3, + 2, + 1, + 6, + 2, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 3, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 4, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 3, + 2, + 3, + 3, + 2, + 2, + 2, + 3, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 4, + 2, + 2, + 4, + 2, + 5, + 3, + 3, + 5, + 5, + 5, + 4, + 2, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 5, + 3, + 2, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 1, + 2, + 4, + 2, + 1, + 3, + 4, + 2, + 1, + 3, + 1, + 3, + 7, + 3, + 1, + 1, + 1, + 3, + 1, + 3, + 3, + 3, + 3, + 1, + 7, + 1, + 5, + 5, + 5, + 3, + 3, + 4, + 3, + 3, + 4, + 2, + 3, + 2, + 4, + 2, + 4, + 3, + 3, + 3, + 4, + 3, + 6, + 6, + 5, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 7, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 7, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 5, + 2, + 2, + 5, + 10, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 4, + 2, + 2, + 6, + 1, + 1, + 2, + 2, + 5, + 1, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 5, + 2, + 7, + 3, + 2, + 3, + 5, + 1, + 1, + 1, + 1, + 3, + 2, + 3, + 3, + 5, + 3, + 5, + 4, + 3, + 7, + 3, + 3, + 3, + 4, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 3, + 2, + 3, + 3, + 4, + 3, + 4, + 4, + 4, + 3, + 3, + 3, + 3, + 3, + 4, + 3, + 6, + 4, + 3, + 7, + 4, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 8, + 1, + 1, + 3, + 1, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 5, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 5, + 2, + 7, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 5, + 1, + 2, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 4, + 7, + 3, + 3, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 5, + 1, + 1, + 1, + 4, + 3, + 3, + 3, + 4, + 4, + 2, + 4, + 3, + 3, + 3, + 3, + 3, + 4, + 2, + 3, + 2, + 4, + 3, + 3, + 3, + 5, + 3, + 2, + 3, + 3, + 4, + 4, + 3, + 3, + 2, + 3, + 5, + 3, + 2, + 3, + 3, + 3, + 2, + 3, + 5, + 6, + 2, + 4, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 2, + 2, + 6, + 2, + 2, + 9, + 3, + 2, + 5, + 2, + 3, + 3, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 10, + 2, + 3, + 2, + 6, + 3, + 3, + 3, + 3, + 3, + 2, + 5, + 2, + 2, + 3, + 3, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 3, + 3, + 1, + 3, + 3, + 5, + 3, + 3, + 5, + 3, + 3, + 3, + 2, + 5, + 3, + 3, + 5, + 3, + 5, + 4, + 3, + 5, + 5, + 2, + 3, + 9, + 3, + 3, + 3, + 5, + 3, + 4, + 3, + 4, + 1, + 1, + 1, + 4, + 4, + 2, + 5, + 3, + 6, + 1, + 1, + 3, + 1, + 1, + 5, + 6, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 2, + 2, + 4, + 2, + 3, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 3, + 8, + 12, + 5, + 1, + 1, + 8, + 1, + 4, + 4, + 5, + 3, + 2, + 8, + 4, + 3, + 5, + 2, + 3, + 3, + 4, + 5, + 3, + 4, + 3, + 7, + 3, + 3, + 4, + 7, + 2, + 3, + 6, + 3, + 3, + 4, + 4, + 5, + 2, + 5, + 6, + 6, + 3, + 3, + 4, + 2, + 2, + 2, + 3, + 6, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 6, + 3, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 1, + 3, + 2, + 4, + 12, + 2, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 5, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 1, + 1, + 3, + 2, + 1, + 1, + 3, + 3, + 3, + 3, + 3, + 2, + 3, + 2, + 3, + 3, + 3, + 3, + 3, + 2, + 8, + 8, + 3, + 3, + 5, + 4, + 2, + 2, + 5, + 8, + 4, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 6, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 3, + 2, + 2, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 4, + 14, + 3, + 2, + 2, + 2, + 4, + 1, + 3, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 3, + 2, + 4, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 2, + 7, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 2, + 4, + 3, + 1, + 3, + 3, + 5, + 4, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 3, + 3, + 4, + 3, + 5, + 4, + 3, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 5, + 3, + 7, + 3, + 5, + 2, + 2, + 2, + 2, + 3, + 4, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 4, + 5, + 2, + 5, + 9, + 9, + 4, + 3, + 3, + 6, + 2, + 3, + 3, + 2, + 3, + 11, + 2, + 4, + 5, + 2, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 2, + 2, + 4, + 3, + 2, + 2, + 2, + 4, + 2, + 3, + 2, + 3, + 2, + 3, + 3, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 4, + 2, + 7, + 4, + 7, + 7, + 2, + 4, + 2, + 5, + 4, + 4, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 3, + 2, + 3, + 2, + 4, + 2, + 1, + 1, + 1, + 4, + 1, + 7, + 2, + 2, + 10, + 1, + 2, + 3, + 4, + 2, + 4, + 7, + 1, + 2, + 2, + 3, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 4, + 5, + 5, + 2, + 2, + 4, + 2, + 3, + 2, + 10, + 2, + 3, + 3, + 4, + 3, + 6, + 3, + 4, + 8, + 4, + 3, + 12, + 12, + 3, + 2, + 5, + 5, + 4, + 5, + 2, + 10, + 6, + 3, + 3, + 4, + 5, + 4, + 7, + 6, + 3, + 2, + 6, + 9, + 2, + 4, + 5, + 4, + 9, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 2, + 1, + 12, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 6, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 10, + 4, + 1, + 1, + 6, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 4, + 3, + 2, + 8, + 5, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 4, + 2, + 3, + 2, + 13, + 2, + 6, + 2, + 2, + 7, + 4, + 4, + 2, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 10, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 11, + 13, + 1, + 4, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 12, + 3, + 1, + 3, + 3, + 3, + 3, + 3, + 1, + 6, + 1, + 3, + 1, + 3, + 1, + 1, + 4, + 12, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 2, + 1, + 3, + 6, + 3, + 2, + 4, + 2, + 3, + 3, + 3, + 3, + 3, + 7, + 8, + 3, + 11, + 3, + 3, + 3, + 4, + 3, + 7, + 4, + 6, + 2, + 3, + 4, + 2, + 3, + 5, + 3, + 9, + 3, + 2, + 4, + 3, + 6, + 5, + 3, + 3, + 3, + 5, + 3, + 5, + 3, + 7, + 2, + 3, + 4, + 4, + 4, + 3, + 3, + 3, + 4, + 4, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 4, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 6, + 2, + 2, + 8, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 13, + 2, + 1, + 3, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 3, + 2, + 2, + 2, + 6, + 2, + 2, + 2, + 6, + 1, + 2, + 5, + 1, + 3, + 2, + 3, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 11, + 2, + 2, + 5, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 3, + 3, + 3, + 3, + 3, + 2, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 3, + 4, + 3, + 3, + 4, + 5, + 3, + 4, + 3, + 12, + 4, + 6, + 3, + 3, + 4, + 13, + 3, + 3, + 2, + 3, + 6, + 4, + 3, + 3, + 3, + 4, + 2, + 8, + 3, + 7, + 3, + 2, + 3, + 3, + 3, + 3, + 5, + 3, + 3, + 3, + 3, + 3, + 2, + 3, + 8, + 7, + 4, + 6, + 3, + 4, + 3, + 3, + 3, + 7, + 2, + 4, + 3, + 3, + 4, + 3, + 3, + 9, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 9, + 2, + 1, + 1, + 1, + 1, + 5, + 2, + 3, + 1, + 2, + 3, + 2, + 2, + 2, + 7, + 2, + 15, + 2, + 3, + 3, + 2, + 2, + 3, + 3, + 1, + 3, + 5, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 3, + 4, + 15, + 4, + 3, + 3, + 1, + 1, + 1, + 2, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 3, + 3, + 3, + 3, + 9, + 3, + 7, + 4, + 2, + 7, + 3, + 13, + 3, + 10, + 3, + 6, + 3, + 2, + 3, + 3, + 4, + 3, + 3, + 10, + 3, + 3, + 1, + 1, + 7, + 1, + 1, + 5, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 4, + 3, + 3, + 6, + 4, + 4, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 8, + 1, + 4, + 1, + 4, + 2, + 4, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 9, + 1, + 2, + 2, + 4, + 2, + 5, + 1, + 7, + 1, + 5, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 9, + 3, + 1, + 4, + 1, + 1, + 1, + 2, + 13, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 3, + 11, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 13, + 2, + 2, + 5, + 4, + 2, + 3, + 2, + 10, + 2, + 2, + 2, + 11, + 9, + 3, + 2, + 2, + 3, + 7, + 4, + 2, + 3, + 2, + 2, + 2, + 2, + 7, + 4, + 1, + 1, + 1, + 1, + 2, + 9, + 2, + 4, + 2, + 2, + 2, + 3, + 2, + 2, + 4, + 5, + 3, + 2, + 3, + 3, + 3, + 1, + 3, + 3, + 3, + 2, + 3, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 3, + 3, + 3, + 4, + 4, + 7, + 7, + 2, + 2, + 4, + 3, + 3, + 2, + 5, + 7, + 4, + 4, + 5, + 3, + 3, + 5, + 10, + 4, + 6, + 5, + 5, + 7, + 3, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 5, + 1, + 5, + 1, + 1, + 1, + 5, + 5, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 5, + 4, + 2, + 1, + 1, + 8, + 1, + 1, + 1, + 3, + 1, + 7, + 2, + 3, + 3, + 3, + 2, + 2, + 3, + 7, + 3, + 5, + 10, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 7, + 8, + 3, + 4, + 3, + 3, + 10, + 5, + 2, + 4, + 7, + 2, + 4, + 4, + 2, + 2, + 8, + 3, + 8, + 2, + 3, + 2, + 7, + 2, + 1, + 1, + 7, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 6, + 5, + 5, + 2, + 3, + 9, + 3, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 12, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 6, + 2, + 3, + 4, + 3, + 2, + 3, + 2, + 5, + 11, + 2, + 3, + 4, + 12, + 2, + 3, + 2, + 11, + 2, + 3, + 6, + 3, + 9, + 7, + 4, + 5, + 9, + 2, + 3, + 2, + 3, + 2, + 2, + 13, + 2, + 6, + 2, + 3, + 2, + 4, + 5, + 3, + 2, + 4, + 3, + 5, + 6, + 3, + 5, + 4, + 3, + 15, + 3, + 2, + 4, + 5, + 3, + 4, + 3, + 4, + 4, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 6, + 4, + 5, + 2, + 7, + 4, + 2, + 8, + 2, + 3, + 4, + 2, + 4, + 3, + 6, + 2, + 4, + 3, + 3, + 3, + 3, + 9, + 3, + 4, + 5, + 5, + 5, + 2, + 5, + 7, + 5, + 4, + 5, + 6, + 4, + 5, + 8, + 4, + 2, + 3, + 3, + 5, + 2, + 11, + 2, + 4, + 2, + 11, + 4, + 4, + 3, + 2, + 3, + 3, + 2, + 4, + 3, + 12, + 9, + 5, + 2, + 2, + 8, + 10, + 5, + 4, + 9, + 7, + 2, + 2, + 10, + 4, + 2, + 1, + 1, + 1, + 3, + 5, + 5, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 3, + 11, + 2, + 13, + 1, + 1, + 1, + 1, + 1, + 8, + 2, + 2, + 1, + 2, + 1, + 1, + 13, + 1, + 4, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 12, + 12, + 3, + 7, + 5, + 7, + 2, + 9, + 6, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 6, + 27, + 2, + 5, + 2, + 6, + 11, + 3, + 12, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 3, + 19, + 2, + 2, + 2, + 10, + 2, + 3, + 6, + 3, + 2, + 2, + 3, + 8, + 3, + 4, + 7, + 19, + 3, + 5, + 4, + 5, + 5, + 5, + 8, + 2, + 5, + 2, + 11, + 3, + 3, + 7, + 3, + 2, + 3, + 4, + 4, + 6, + 4, + 2, + 3, + 6, + 5, + 4, + 11, + 6, + 3, + 6, + 4, + 10, + 10, + 5, + 10, + 3, + 2, + 2, + 3, + 4, + 2, + 4, + 6, + 24, + 2, + 11, + 3, + 2, + 6, + 4, + 5, + 4, + 8, + 5, + 4, + 3, + 4, + 5, + 7, + 2, + 14, + 7, + 6, + 4, + 2, + 2, + 4, + 2, + 2, + 9, + 3, + 5, + 1, + 3, + 1, + 1, + 1, + 6, + 1, + 14, + 6, + 1, + 4, + 1, + 2, + 5, + 1, + 3, + 1, + 1, + 1, + 1, + 11, + 13, + 2, + 4, + 2, + 2, + 6, + 3, + 7, + 2, + 4, + 9, + 2, + 10, + 2, + 4, + 5, + 2, + 3, + 10, + 5, + 10, + 14, + 6, + 11, + 4, + 7, + 2, + 2, + 3, + 11, + 14, + 2, + 13, + 2, + 4, + 4, + 3, + 11, + 2, + 3, + 2, + 5, + 4, + 3, + 13, + 3, + 3, + 6, + 7, + 3, + 2, + 12, + 8, + 11, + 13, + 4, + 13, + 2, + 2, + 3, + 4, + 10, + 10, + 6, + 3, + 7, + 7, + 4, + 2, + 5, + 4, + 3, + 5, + 2, + 2, + 6, + 5, + 12, + 3, + 7, + 5, + 2, + 17, + 2, + 5, + 7, + 2, + 7, + 7, + 5, + 2, + 3, + 4, + 5, + 2, + 9, + 9, + 9, + 3, + 3, + 4, + 5, + 8, + 2, + 3, + 3, + 2, + 6, + 2, + 2, + 4, + 3, + 11, + 5, + 6, + 6, + 2, + 6, + 7, + 4, + 4, + 3, + 3, + 2, + 3, + 11, + 6, + 11, + 3, + 3, + 3, + 13, + 2, + 5, + 7, + 3, + 2, + 8, + 6, + 9, + 13, + 2, + 5, + 5, + 7, + 11, + 2, + 2, + 3, + 5, + 2, + 6, + 2, + 2, + 4, + 11, + 2, + 4, + 2, + 8, + 7, + 15, + 10, + 12, + 6, + 18, + 1, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 14, + 1, + 2, + 5, + 1, + 2, + 2, + 5, + 1, + 1, + 6, + 1, + 4, + 2, + 5, + 5, + 6, + 6, + 4, + 22, + 2, + 4, + 11, + 2, + 13, + 8, + 7, + 3, + 2, + 12, + 5, + 10, + 2, + 4, + 17, + 17, + 2, + 3, + 15, + 17, + 4, + 9, + 8, + 14, + 21, + 15, + 12, + 3, + 10, + 4, + 4, + 4, + 8, + 10, + 8, + 5, + 4, + 4, + 3, + 4, + 3, + 8, + 8, + 5, + 11, + 2, + 15, + 5, + 20, + 9, + 17, + 17, + 1, + 11, + 6, + 14, + 1, + 17, + 10, + 11, + 9, + 4, + 1, + 2, + 8, + 1, + 1, + 1, + 1, + 2, + 9, + 7, + 4, + 5, + 1, + 11, + 12, + 10, + 4, + 4, + 5, + 10, + 9, + 1, + 2, + 2, + 1, + 1, + 5, + 1, + 1, + 2, + 3, + 9, + 17, + 4, + 8, + 7, + 17, + 10, + 8, + 2, + 4, + 7, + 3, + 23, + 18, + 5, + 8, + 2, + 5, + 5, + 4, + 4, + 2, + 2, + 6, + 14, + 10, + 4, + 8, + 1, + 1, + 14, + 11, + 5, + 10, + 5, + 18, + 6, + 9, + 2, + 4, + 3, + 11, + 13, + 8, + 1, + 1, + 3, + 10, + 1, + 1, + 1, + 2, + 13, + 9, + 1, + 1, + 6, + 6, + 1, + 1, + 1, + 1, + 8, + 7, + 13, + 3, + 9, + 3, + 7, + 2, + 4, + 1, + 16, + 7, + 1, + 1, + 1, + 3, + 4, + 2, + 1, + 1, + 10, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 5, + 1, + 10, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 9, + 2, + 2, + 2, + 2, + 2, + 7, + 10, + 8, + 2, + 7, + 3, + 3, + 2, + 2, + 2, + 2, + 14, + 9, + 2, + 1, + 1, + 3, + 1, + 1, + 11, + 2, + 1, + 1, + 1, + 5, + 1, + 9, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 4, + 1, + 8, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 3, + 3, + 1, + 2, + 3, + 1, + 1, + 6, + 5, + 5, + 10, + 3, + 3, + 9, + 6, + 5, + 3, + 3, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 2, + 3, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 2, + 3, + 1, + 3, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 4, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 1, + 5, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 4, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 6, + 2, + 6, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 4, + 1, + 4, + 1, + 1, + 2, + 1, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 5, + 3, + 7, + 2, + 2, + 3, + 5, + 2, + 5, + 3, + 2, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 3, + 4, + 3, + 2, + 3, + 2, + 1, + 6, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 5, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 4, + 2, + 4, + 1, + 1, + 1, + 3, + 3, + 6, + 2, + 5, + 4, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 5, + 3, + 3, + 5, + 5, + 5, + 5, + 1, + 1, + 4, + 2, + 1, + 1, + 2, + 3, + 3, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 4, + 6, + 3, + 2, + 2, + 2, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 4, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 5, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 3, + 4, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 5, + 1, + 5, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 7, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 1, + 2, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 5, + 2, + 7, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 4, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 2, + 2, + 3, + 2, + 2, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 4, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 3, + 4, + 2, + 3, + 2, + 2, + 2, + 5, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 3, + 4, + 2, + 3, + 3, + 5, + 5, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 7, + 2, + 2, + 5, + 2, + 2, + 3, + 3, + 9, + 3, + 3, + 3, + 4, + 2, + 4, + 2, + 3, + 5, + 3, + 7, + 3, + 2, + 2, + 2, + 3, + 5, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 3, + 4, + 2, + 3, + 2, + 2, + 2, + 3, + 5, + 2, + 7, + 2, + 2, + 2, + 2, + 2, + 6, + 4, + 3, + 6, + 2, + 6, + 3, + 7, + 2, + 2, + 3, + 2, + 6, + 2, + 3, + 3, + 3, + 7, + 2, + 5, + 6, + 2, + 7, + 2, + 2, + 2, + 2, + 2, + 3, + 7, + 2, + 2, + 6, + 2, + 2, + 2, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 5, + 1, + 4, + 2, + 1, + 2, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 8, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 3, + 2, + 4, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 2, + 1, + 6, + 1, + 1, + 1, + 1, + 4, + 4, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 6, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 2, + 2, + 1, + 3, + 2, + 5, + 2, + 5, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 2, + 1, + 4, + 6, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 4, + 4, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 1, + 8, + 5, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 5, + 1, + 7, + 1, + 4, + 2, + 3, + 3, + 1, + 3, + 4, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 4, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 8, + 2, + 1, + 2, + 1, + 4, + 2, + 5, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 3, + 1, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 7, + 2, + 3, + 3, + 4, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 1, + 4, + 1, + 2, + 2, + 1, + 1, + 2, + 6, + 2, + 1, + 1, + 1, + 6, + 4, + 2, + 1, + 5, + 8, + 1, + 4, + 5, + 2, + 2, + 1, + 1, + 1, + 2, + 3, + 9, + 3, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 6, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 3, + 4, + 2, + 3, + 2, + 2, + 4, + 2, + 4, + 2, + 3, + 2, + 2, + 3, + 4, + 2, + 2, + 4, + 3, + 3, + 3, + 2, + 2, + 2, + 3, + 3, + 4, + 2, + 3, + 2, + 4, + 2, + 5, + 3, + 3, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 4, + 2, + 3, + 3, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 4, + 2, + 3, + 2, + 1, + 4, + 1, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 6, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 8, + 2, + 7, + 3, + 2, + 2, + 2, + 3, + 4, + 4, + 4, + 3, + 2, + 3, + 6, + 2, + 3, + 4, + 2, + 6, + 3, + 2, + 9, + 3, + 4, + 3, + 3, + 2, + 3, + 3, + 2, + 2, + 5, + 2, + 2, + 5, + 2, + 4, + 2, + 5, + 4, + 2, + 7, + 2, + 3, + 3, + 2, + 5, + 4, + 3, + 2, + 4, + 3, + 3, + 5, + 4, + 2, + 3, + 4, + 3, + 3, + 3, + 2, + 2, + 3, + 6, + 4, + 3, + 2, + 4, + 4, + 5, + 3, + 6, + 6, + 2, + 3, + 9, + 2, + 2, + 2, + 11, + 4, + 9, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 7, + 2, + 1, + 3, + 2, + 2, + 1, + 4, + 1, + 3, + 1, + 6, + 1, + 1, + 3, + 4, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 10, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 7, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 4, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 5, + 7, + 1, + 2, + 5, + 1, + 1, + 1, + 5, + 2, + 1, + 1, + 1, + 2, + 1, + 10, + 1, + 2, + 1, + 5, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 4, + 3, + 2, + 2, + 1, + 3, + 6, + 2, + 1, + 7, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 4, + 1, + 3, + 1, + 3, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 5, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 3, + 5, + 2, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 2, + 1, + 5, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 6, + 2, + 2, + 1, + 1, + 1, + 3, + 2, + 3, + 1, + 7, + 2, + 3, + 6, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 3, + 3, + 2, + 2, + 7, + 2, + 5, + 1, + 9, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 4, + 2, + 4, + 1, + 2, + 5, + 7, + 6, + 7, + 2, + 7, + 1, + 1, + 2, + 2, + 2, + 4, + 2, + 5, + 6, + 3, + 4, + 6, + 2, + 3, + 3, + 7, + 5, + 1, + 2, + 3, + 1, + 3, + 4, + 1, + 1, + 8, + 3, + 1, + 3, + 1, + 2, + 2, + 2, + 4, + 3, + 1, + 5, + 2, + 4, + 2, + 2, + 2, + 9, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 5, + 5, + 2, + 3, + 3, + 2, + 2, + 3, + 2, + 3, + 3, + 3, + 2, + 4, + 2, + 4, + 8, + 3, + 9, + 6, + 4, + 5, + 3, + 2, + 10, + 2, + 4, + 2, + 3, + 3, + 2, + 4, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 2, + 3, + 2, + 3, + 3, + 4, + 3, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 7, + 2, + 2, + 4, + 4, + 2, + 2, + 5, + 7, + 2, + 3, + 2, + 3, + 7, + 2, + 5, + 2, + 3, + 2, + 2, + 4, + 4, + 3, + 2, + 5, + 2, + 3, + 5, + 5, + 7, + 9, + 4, + 2, + 2, + 2, + 2, + 2, + 5, + 3, + 3, + 2, + 8, + 2, + 3, + 7, + 10, + 5, + 4, + 3, + 3, + 2, + 3, + 5, + 4, + 2, + 7, + 7, + 3, + 4, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 4, + 7, + 4, + 2, + 5, + 2, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 12, + 6, + 4, + 3, + 2, + 5, + 5, + 3, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 2, + 1, + 9, + 1, + 5, + 1, + 2, + 2, + 22, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 5, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 3, + 2, + 2, + 3, + 1, + 2, + 11, + 1, + 1, + 1, + 6, + 3, + 4, + 2, + 1, + 1, + 1, + 13, + 1, + 2, + 1, + 2, + 1, + 19, + 2, + 10, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 2, + 2, + 2, + 2, + 2, + 13, + 1, + 1, + 1, + 2, + 1, + 4, + 2, + 2, + 2, + 2, + 2, + 1, + 12, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 3, + 2, + 2, + 2, + 4, + 6, + 2, + 2, + 3, + 3, + 8, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 4, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 1, + 2, + 3, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 1, + 1, + 3, + 1, + 4, + 1, + 1, + 2, + 1, + 3, + 10, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 2, + 3, + 1, + 2, + 4, + 2, + 3, + 5, + 3, + 3, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 8, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 4, + 2, + 3, + 7, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 6, + 2, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 7, + 2, + 2, + 3, + 3, + 7, + 3, + 3, + 2, + 2, + 2, + 2, + 4, + 3, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 1, + 2, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 2, + 1, + 2, + 6, + 2, + 1, + 2, + 2, + 2, + 12, + 2, + 1, + 1, + 2, + 3, + 2, + 1, + 6, + 1, + 1, + 4, + 2, + 1, + 1, + 3, + 7, + 1, + 1, + 1, + 3, + 3, + 3, + 6, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 5, + 5, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 2, + 2, + 6, + 5, + 4, + 3, + 2, + 4, + 2, + 6, + 2, + 2, + 2, + 4, + 2, + 12, + 2, + 2, + 2, + 4, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 5, + 2, + 3, + 3, + 4, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 3, + 1, + 3, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 4, + 2, + 1, + 1, + 4, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 3, + 2, + 2, + 4, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 3, + 1, + 3, + 4, + 2, + 3, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 7, + 5, + 2, + 1, + 1, + 1, + 3, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 6, + 4, + 1, + 3, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 8, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 1, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 3, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 1, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 3, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 5, + 2, + 5, + 2, + 2, + 4, + 3, + 2, + 3, + 2, + 3, + 2, + 6, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 4, + 2, + 3, + 4, + 2, + 2, + 2, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 5, + 2, + 3, + 5, + 2, + 5, + 2, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 12, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 3, + 3, + 3, + 1, + 1, + 4, + 5, + 1, + 1, + 6, + 3, + 2, + 1, + 1, + 5, + 3, + 6, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 6, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 6, + 1, + 1, + 5, + 6, + 5, + 5, + 1, + 1, + 2, + 4, + 1, + 1, + 6, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 4, + 5, + 1, + 1, + 1, + 3, + 1, + 6, + 1, + 5, + 3, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 4, + 1, + 3, + 5, + 3, + 1, + 1, + 1, + 1, + 1, + 4, + 3, + 4, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 3, + 4, + 2, + 2, + 2, + 1, + 1, + 3, + 3, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 5, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 3, + 1, + 3, + 2, + 2, + 5, + 1, + 1, + 1, + 3, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 5, + 2, + 3, + 3, + 1, + 2, + 2, + 2, + 2, + 4, + 3, + 1, + 1, + 12, + 3, + 1, + 3, + 3, + 4, + 2, + 4, + 5, + 3, + 3, + 4, + 3, + 1, + 5, + 2, + 1, + 2, + 2, + 7, + 2, + 2, + 2, + 3, + 4, + 2, + 4, + 3, + 4, + 4, + 2, + 2, + 2, + 3, + 3, + 6, + 2, + 2, + 3, + 3, + 3, + 2, + 3, + 3, + 2, + 2, + 3, + 3, + 2, + 2, + 3, + 2, + 4, + 4, + 5, + 5, + 4, + 2, + 3, + 2, + 6, + 2, + 3, + 2, + 2, + 5, + 4, + 6, + 5, + 2, + 3, + 6, + 2, + 4, + 3, + 4, + 3, + 4, + 2, + 5, + 2, + 2, + 4, + 3, + 3, + 2, + 2, + 2, + 3, + 3, + 3, + 3, + 4, + 2, + 6, + 3, + 2, + 4, + 4, + 4, + 4, + 3, + 2, + 2, + 3, + 3, + 6, + 2, + 4, + 3, + 5, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 5, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 4, + 5, + 7, + 8, + 7, + 1, + 4, + 5, + 1, + 1, + 2, + 1, + 9, + 2, + 3, + 2, + 4, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 16, + 2, + 1, + 2, + 2, + 6, + 1, + 4, + 2, + 3, + 12, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 5, + 3, + 4, + 23, + 8, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 10, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 2, + 6, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 3, + 1, + 11, + 2, + 3, + 3, + 2, + 5, + 5, + 3, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 4, + 5, + 2, + 1, + 1, + 4, + 4, + 4, + 2, + 3, + 4, + 6, + 2, + 3, + 3, + 4, + 6, + 3, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 5, + 3, + 3, + 6, + 4, + 9, + 4, + 4, + 7, + 3, + 3, + 4, + 2, + 4, + 5, + 2, + 3, + 2, + 3, + 3, + 4, + 1, + 3, + 3, + 3, + 4, + 2, + 4, + 5, + 3, + 3, + 4, + 10, + 3, + 6, + 3, + 2, + 5, + 3, + 5, + 6, + 5, + 4, + 4, + 5, + 6, + 5, + 3, + 5, + 4, + 5, + 2, + 2, + 4, + 4, + 1, + 4, + 1, + 4, + 5, + 1, + 5, + 5, + 6, + 4, + 6, + 2, + 8, + 5, + 5, + 5, + 2, + 3, + 3, + 2, + 2, + 8, + 4, + 2, + 5, + 2, + 3, + 3, + 5, + 6, + 6, + 5, + 4, + 4, + 5, + 2, + 2, + 7, + 2, + 5, + 6, + 5, + 7, + 3, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 5, + 4, + 2, + 2, + 2, + 2, + 9, + 1, + 5, + 2, + 1, + 1, + 4, + 1, + 2, + 4, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 4, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 8, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 6, + 5, + 3, + 2, + 2, + 3, + 4, + 4, + 2, + 3, + 9, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 7, + 2, + 5, + 2, + 2, + 2, + 2, + 2, + 1, + 7, + 2, + 3, + 2, + 2, + 3, + 3, + 5, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 8, + 1, + 1, + 1, + 1, + 1, + 7, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 4, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 6, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 8, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 4, + 2, + 4, + 2, + 1, + 2, + 3, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 6, + 4, + 3, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 4, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 3, + 3, + 2, + 3, + 2, + 4, + 3, + 3, + 2, + 3, + 2, + 3, + 4, + 3, + 2, + 3, + 3, + 2, + 8, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 1, + 4, + 4, + 5, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 11, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 8, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 3, + 2, + 3, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 3, + 4, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 8, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 4, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 3, + 2, + 5, + 2, + 1, + 2, + 2, + 3, + 3, + 2, + 6, + 3, + 4, + 2, + 2, + 2, + 6, + 2, + 4, + 8, + 2, + 4, + 3, + 2, + 3, + 4, + 2, + 2, + 2, + 2, + 5, + 1, + 2, + 2, + 3, + 1, + 4, + 4, + 2, + 4, + 2, + 4, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 4, + 2, + 8, + 2, + 3, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 8, + 1, + 6, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 5, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 3, + 2, + 1, + 2, + 3, + 1, + 2, + 2, + 2, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 4, + 3, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 4, + 1, + 6, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 6, + 2, + 2, + 1, + 1, + 2, + 2, + 6, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 5, + 3, + 2, + 1, + 6, + 2, + 2, + 4, + 3, + 4, + 3, + 2, + 4, + 4, + 5, + 3, + 3, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 4, + 4, + 3, + 6, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 4, + 4, + 3, + 2, + 3, + 7, + 2, + 2, + 4, + 1, + 4, + 1, + 2, + 3, + 2, + 2, + 3, + 4, + 1, + 4, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 4, + 3, + 2, + 7, + 5, + 6, + 5, + 3, + 6, + 3, + 4, + 2, + 8, + 7, + 5, + 8, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 1, + 5, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 7, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 6, + 7, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 5, + 2, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 5, + 2, + 1, + 1, + 1, + 8, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 3, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 4, + 2, + 1, + 1, + 1, + 2, + 9, + 3, + 2, + 4, + 2, + 3, + 2, + 3, + 2, + 1, + 2, + 5, + 3, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 1, + 3, + 1, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 5, + 3, + 2, + 1, + 2, + 2, + 3, + 6, + 6, + 2, + 2, + 3, + 4, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 3, + 2, + 6, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 5, + 3, + 2, + 3, + 3, + 3, + 5, + 3, + 3, + 3, + 2, + 4, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 4, + 3, + 2, + 3, + 2, + 3, + 5, + 6, + 2, + 5, + 2, + 12, + 8, + 4, + 2, + 2, + 2, + 6, + 3, + 2, + 2, + 4, + 3, + 9, + 2, + 6, + 2, + 3, + 3, + 6, + 2, + 3, + 7, + 5, + 6, + 6, + 3, + 2, + 2, + 6, + 6, + 3, + 8, + 3, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 4, + 4, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 5, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 4, + 3, + 3, + 12, + 3, + 5, + 1, + 5, + 1, + 8, + 2, + 1, + 1, + 7, + 1, + 4, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 4, + 1, + 3, + 5, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 1, + 2, + 5, + 1, + 3, + 4, + 2, + 1, + 1, + 4, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 4, + 1, + 3, + 1, + 5, + 2, + 1, + 5, + 10, + 3, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 3, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 8, + 4, + 6, + 1, + 1, + 4, + 1, + 1, + 4, + 4, + 4, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 5, + 2, + 5, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 9, + 2, + 3, + 2, + 1, + 2, + 2, + 4, + 1, + 2, + 1, + 1, + 3, + 6, + 1, + 2, + 2, + 5, + 2, + 4, + 2, + 4, + 2, + 3, + 6, + 2, + 2, + 3, + 4, + 2, + 3, + 2, + 2, + 2, + 4, + 2, + 4, + 7, + 3, + 2, + 2, + 2, + 4, + 3, + 2, + 2, + 2, + 5, + 3, + 2, + 2, + 2, + 5, + 2, + 3, + 6, + 5, + 2, + 2, + 2, + 5, + 2, + 10, + 4, + 4, + 4, + 4, + 2, + 4, + 2, + 6, + 5, + 4, + 3, + 2, + 5, + 5, + 3, + 8, + 2, + 2, + 3, + 2, + 6, + 4, + 6, + 5, + 4, + 3, + 2, + 2, + 2, + 3, + 5, + 2, + 2, + 4, + 3, + 5, + 2, + 2, + 4, + 5, + 4, + 2, + 3, + 3, + 7, + 4, + 6, + 3, + 2, + 7, + 5, + 5, + 2, + 3, + 5, + 4, + 4, + 4, + 4, + 4, + 3, + 7, + 2, + 3, + 8, + 2, + 6, + 5, + 5, + 4, + 5, + 2, + 2, + 1, + 1, + 1, + 3, + 3, + 7, + 6, + 1, + 1, + 9, + 2, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 3, + 1, + 7, + 9, + 1, + 12, + 11, + 1, + 1, + 1, + 10, + 4, + 1, + 13, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 1, + 7, + 2, + 5, + 1, + 1, + 7, + 3, + 1, + 5, + 1, + 7, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 5, + 2, + 2, + 2, + 2, + 8, + 5, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 1, + 2, + 1, + 6, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 8, + 2, + 6, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 5, + 1, + 5, + 4, + 3, + 1, + 2, + 1, + 8, + 3, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 6, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 6, + 1, + 2, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 1, + 6, + 1, + 2, + 3, + 4, + 1, + 4, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 3, + 3, + 2, + 3, + 3, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 2, + 5, + 2, + 2, + 3, + 4, + 2, + 2, + 5, + 3, + 2, + 4, + 2, + 3, + 2, + 3, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 4, + 2, + 2, + 3, + 2, + 3, + 4, + 2, + 4, + 2, + 3, + 2, + 2, + 7, + 2, + 2, + 4, + 2, + 2, + 3, + 2, + 4, + 2, + 2, + 9, + 3, + 2, + 2, + 3, + 2, + 2, + 4, + 2, + 5, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 5, + 2, + 5, + 4, + 2, + 3, + 2, + 2, + 3, + 4, + 3, + 2, + 3, + 2, + 8, + 6, + 2, + 2, + 5, + 2, + 5, + 3, + 3, + 3, + 5, + 4, + 3, + 2, + 3, + 3, + 2, + 4, + 3, + 3, + 3, + 5, + 4, + 4, + 5, + 3, + 11, + 2, + 2, + 6, + 4, + 2, + 9, + 3, + 3, + 2, + 3, + 5, + 4, + 3, + 8, + 3, + 3, + 2, + 3, + 2, + 7, + 6, + 2, + 7, + 6, + 6, + 2, + 4, + 3, + 2, + 5, + 5, + 7, + 7, + 4, + 3, + 8, + 2, + 8, + 5, + 6, + 4, + 2, + 1, + 1, + 8, + 6, + 3, + 1, + 8, + 1, + 1, + 1, + 1, + 1, + 11, + 1, + 11, + 1, + 1, + 1, + 1, + 1, + 8, + 10, + 2, + 3, + 1, + 1, + 1, + 4, + 6, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 8, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 5, + 1, + 1, + 7, + 5, + 5, + 6, + 7, + 6, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 12, + 8, + 1, + 5, + 7, + 1, + 1, + 1, + 7, + 1, + 2, + 1, + 1, + 4, + 4, + 2, + 4, + 3, + 3, + 3, + 2, + 4, + 2, + 2, + 1, + 2, + 3, + 5, + 1, + 1, + 1, + 1, + 5, + 1, + 5, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 9, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 2, + 15, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 4, + 2, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 6, + 2, + 1, + 1, + 8, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 3, + 5, + 2, + 2, + 7, + 4, + 2, + 1, + 3, + 6, + 2, + 2, + 6, + 2, + 2, + 2, + 2, + 2, + 8, + 2, + 1, + 3, + 1, + 2, + 2, + 1, + 1, + 3, + 3, + 3, + 6, + 2, + 2, + 3, + 2, + 2, + 7, + 4, + 2, + 2, + 2, + 2, + 6, + 4, + 2, + 2, + 2, + 4, + 4, + 6, + 2, + 2, + 2, + 2, + 5, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 3, + 3, + 4, + 4, + 4, + 2, + 5, + 2, + 2, + 3, + 2, + 2, + 6, + 7, + 4, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 8, + 2, + 2, + 3, + 2, + 4, + 10, + 2, + 3, + 3, + 3, + 3, + 2, + 4, + 4, + 3, + 9, + 2, + 2, + 3, + 4, + 2, + 7, + 5, + 2, + 2, + 6, + 4, + 5, + 3, + 4, + 5, + 3, + 5, + 7, + 4, + 5, + 7, + 4, + 5, + 10, + 3, + 2, + 3, + 3, + 3, + 3, + 6, + 5, + 5, + 7, + 4, + 6, + 2, + 11, + 6, + 3, + 7, + 5, + 4, + 9, + 3, + 3, + 2, + 4, + 4, + 3, + 3, + 2, + 3, + 6, + 7, + 2, + 4, + 5, + 6, + 6, + 3, + 4, + 2, + 5, + 4, + 4, + 9, + 6, + 3, + 4, + 5, + 2, + 8, + 5, + 7, + 8, + 4, + 1, + 3, + 1, + 1, + 5, + 1, + 9, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 8, + 2, + 4, + 3, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 8, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 6, + 1, + 4, + 1, + 6, + 4, + 4, + 1, + 1, + 9, + 1, + 2, + 5, + 1, + 6, + 7, + 4, + 4, + 6, + 1, + 1, + 1, + 3, + 5, + 1, + 1, + 5, + 9, + 7, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 5, + 3, + 5, + 7, + 2, + 1, + 1, + 5, + 2, + 3, + 1, + 1, + 1, + 8, + 2, + 2, + 5, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 3, + 2, + 1, + 2, + 1, + 11, + 2, + 5, + 9, + 2, + 6, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 6, + 1, + 2, + 1, + 7, + 1, + 1, + 11, + 1, + 2, + 1, + 4, + 1, + 2, + 1, + 1, + 2, + 2, + 6, + 3, + 2, + 4, + 6, + 7, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 7, + 2, + 4, + 2, + 4, + 4, + 11, + 1, + 4, + 4, + 7, + 2, + 3, + 2, + 1, + 10, + 1, + 2, + 3, + 2, + 3, + 1, + 2, + 2, + 2, + 4, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 5, + 2, + 2, + 3, + 7, + 4, + 2, + 4, + 3, + 2, + 4, + 11, + 2, + 2, + 2, + 5, + 2, + 9, + 3, + 2, + 2, + 2, + 4, + 4, + 2, + 11, + 5, + 2, + 3, + 9, + 2, + 2, + 7, + 2, + 3, + 2, + 2, + 3, + 9, + 3, + 3, + 6, + 5, + 9, + 8, + 3, + 8, + 5, + 2, + 3, + 2, + 2, + 2, + 15, + 2, + 2, + 2, + 2, + 10, + 5, + 7, + 8, + 5, + 3, + 2, + 3, + 8, + 2, + 5, + 3, + 8, + 3, + 2, + 3, + 6, + 2, + 4, + 5, + 2, + 8, + 3, + 5, + 3, + 5, + 2, + 4, + 4, + 3, + 3, + 3, + 6, + 2, + 2, + 3, + 4, + 5, + 5, + 3, + 4, + 6, + 2, + 2, + 2, + 3, + 4, + 5, + 3, + 3, + 5, + 2, + 10, + 4, + 3, + 3, + 2, + 11, + 3, + 8, + 2, + 3, + 3, + 8, + 3, + 4, + 2, + 3, + 3, + 8, + 4, + 3, + 3, + 3, + 2, + 2, + 7, + 3, + 2, + 6, + 2, + 6, + 3, + 9, + 2, + 4, + 3, + 8, + 6, + 10, + 3, + 9, + 2, + 2, + 4, + 4, + 3, + 2, + 3, + 2, + 2, + 6, + 2, + 4, + 7, + 3, + 11, + 3, + 6, + 2, + 5, + 2, + 5, + 7, + 4, + 5, + 6, + 10, + 5, + 5, + 6, + 6, + 10, + 8, + 4, + 3, + 5, + 7, + 8, + 4, + 4, + 5, + 6, + 5, + 5, + 2, + 2, + 3, + 2, + 5, + 8, + 6, + 4, + 6, + 7, + 7, + 9, + 7, + 8, + 7, + 2, + 1, + 1, + 4, + 1, + 2, + 5, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 2, + 1, + 1, + 9, + 1, + 1, + 1, + 1, + 1, + 1, + 13, + 9, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 5, + 4, + 1, + 4, + 1, + 1, + 1, + 5, + 1, + 1, + 4, + 5, + 11, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 5, + 6, + 1, + 1, + 1, + 3, + 3, + 2, + 5, + 2, + 7, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 6, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 3, + 2, + 2, + 3, + 6, + 3, + 3, + 3, + 2, + 2, + 2, + 8, + 4, + 3, + 2, + 3, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 2, + 4, + 2, + 2, + 4, + 4, + 5, + 4, + 5, + 2, + 3, + 3, + 8, + 4, + 5, + 6, + 2, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 3, + 2, + 4, + 4, + 7, + 4, + 3, + 4, + 2, + 2, + 3, + 2, + 2, + 12, + 2, + 4, + 2, + 2, + 3, + 4, + 2, + 6, + 10, + 6, + 2, + 5, + 4, + 2, + 6, + 3, + 4, + 2, + 3, + 2, + 3, + 2, + 3, + 2, + 2, + 5, + 4, + 4, + 7, + 3, + 2, + 3, + 5, + 3, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 6, + 3, + 4, + 7, + 2, + 9, + 2, + 4, + 2, + 2, + 8, + 3, + 8, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 7, + 1, + 2, + 2, + 1, + 1, + 2, + 3, + 1, + 3, + 2, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 4, + 4, + 1, + 3, + 2, + 3, + 2, + 2, + 2, + 2, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 1, + 1, + 2, + 1, + 4, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 6, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 7, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 4, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 4, + 3, + 4, + 2, + 3, + 2, + 2, + 4, + 2, + 7, + 6, + 3, + 2, + 8, + 2, + 1, + 1, + 3, + 6, + 3, + 3, + 3, + 2, + 4, + 2, + 2, + 3, + 4, + 3, + 1, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 4, + 3, + 2, + 2, + 2, + 2, + 1, + 4, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 3, + 1, + 1, + 2, + 3, + 4, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 4, + 5, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 5, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 2, + 5, + 4, + 1, + 2, + 5, + 2, + 3, + 2, + 2, + 3, + 4, + 2, + 3, + 3, + 4, + 2, + 2, + 5, + 2, + 3, + 3, + 3, + 5, + 3, + 2, + 4, + 3, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 2, + 3, + 2, + 2, + 4, + 7, + 6, + 4, + 15, + 3, + 3, + 2, + 4, + 5, + 5, + 2, + 2, + 3, + 5, + 2, + 1, + 5, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 3, + 1, + 2, + 2, + 2, + 4, + 7, + 2, + 5, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 4, + 2, + 2, + 7, + 3, + 2, + 3, + 7, + 3, + 3, + 2, + 2, + 2, + 4, + 6, + 4, + 4, + 2, + 5, + 3, + 6, + 9, + 6, + 6, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 5, + 5, + 2, + 1, + 3, + 6, + 4, + 2, + 6, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 4, + 3, + 1, + 2, + 1, + 2, + 2, + 4, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 2, + 4, + 1, + 3, + 2, + 2, + 1, + 3, + 3, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 2, + 1, + 1, + 4, + 2, + 2, + 2, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 2, + 5, + 2, + 2, + 2, + 3, + 3, + 11, + 3, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 3, + 4, + 5, + 4, + 2, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 2, + 3, + 2, + 1, + 2, + 1, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 3, + 2, + 2, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 3, + 3, + 3, + 2, + 4, + 1, + 1, + 2, + 3, + 5, + 2, + 3, + 5, + 6, + 3, + 1, + 1, + 1, + 1, + 3, + 4, + 3, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 2, + 2, + 3, + 4, + 5, + 1, + 1, + 1, + 12, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 2, + 3, + 2, + 3, + 7, + 1, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 5, + 2, + 2, + 1, + 4, + 8, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 6, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 3, + 2, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 5, + 1, + 2, + 2, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 4, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 6, + 2, + 3, + 5, + 3, + 1, + 1, + 2, + 4, + 2, + 2, + 2, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 3, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 2, + 5, + 2, + 4, + 2, + 5, + 3, + 1, + 1, + 4, + 2, + 3, + 1, + 1, + 2, + 2, + 4, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 3, + 8, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 4, + 1, + 2, + 2, + 4, + 1, + 5, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 1, + 5, + 5, + 3, + 5, + 4, + 1, + 1, + 1, + 3, + 2, + 2, + 3, + 3, + 1, + 1, + 5, + 8, + 1, + 1, + 1, + 1, + 1, + 1, + 7, + 2, + 2, + 1, + 3, + 3, + 1, + 4, + 4, + 1, + 1, + 8, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 3, + 3, + 3, + 3, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 5, + 2, + 2, + 2, + 2, + 5, + 2, + 3, + 1, + 6, + 2, + 5, + 4, + 5, + 3, + 1, + 1, + 5, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 2, + 4, + 1, + 1, + 1, + 1, + 2, + 6, + 6, + 2, + 4, + 5, + 2, + 1, + 3, + 3, + 1, + 2, + 3, + 1, + 1, + 3, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 4, + 2, + 1, + 1, + 3, + 3, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 3, + 2, + 2, + 1, + 2, + 7, + 4, + 1, + 3, + 1, + 7, + 3, + 2, + 1, + 2, + 2, + 4, + 3, + 2, + 6, + 2, + 1, + 1, + 1, + 4, + 2, + 4, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 2, + 2, + 2, + 4, + 3, + 1, + 5, + 1, + 5, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 7, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 3, + 5, + 1, + 2, + 4, + 4, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 4, + 3, + 6, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 3, + 4, + 2, + 1, + 2, + 4, + 1, + 2, + 2, + 4, + 2, + 1, + 1, + 2, + 4, + 5, + 1, + 1, + 8, + 3, + 2, + 2, + 3, + 5, + 10, + 2, + 3, + 3, + 1, + 2, + 1, + 1, + 1, + 6, + 2, + 2, + 7, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 5, + 2, + 6, + 2, + 5, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 5, + 1, + 4, + 3, + 2, + 1, + 2, + 5, + 2, + 1, + 1, + 2, + 4, + 1, + 1, + 2, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 4, + 1, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 3, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 6, + 1, + 2, + 5, + 6, + 1, + 3, + 1, + 3, + 2, + 4, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 5, + 1, + 4, + 4, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 2, + 9, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 2, + 1, + 3, + 2, + 1, + 2, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 3, + 3, + 9, + 1, + 5, + 1, + 2, + 2, + 2, + 4, + 1, + 2, + 1, + 8, + 4, + 1, + 1, + 2, + 4, + 1, + 2, + 5, + 2, + 3, + 1, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 3, + 4, + 1, + 1, + 6, + 2, + 4, + 2, + 7, + 1, + 3, + 1, + 3, + 2, + 2, + 2, + 3, + 3, + 3, + 1, + 4, + 8, + 2, + 1, + 1, + 7, + 1, + 2, + 3, + 1, + 1, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 3, + 4, + 1, + 1, + 5, + 1, + 1, + 2, + 5, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 3, + 3, + 7, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 16, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 2, + 6, + 1, + 1, + 7, + 2, + 6, + 3, + 3, + 1, + 2, + 9, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 5, + 1, + 2, + 7, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 3, + 4, + 2, + 1, + 1, + 4, + 3, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 2, + 3, + 7, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 3, + 2, + 4, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 4, + 3, + 2, + 9, + 1, + 1, + 1, + 5, + 2, + 4, + 2, + 3, + 4, + 2, + 4, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 3, + 3, + 2, + 1, + 6, + 2, + 1, + 3, + 2, + 4, + 2, + 1, + 2, + 1, + 4, + 1, + 1, + 5, + 2, + 3, + 3, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 5, + 2, + 3, + 4, + 4, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 3, + 4, + 1, + 2, + 2, + 3, + 3, + 1, + 3, + 2, + 2, + 5, + 2, + 5, + 4, + 1, + 2, + 3, + 2, + 5, + 2, + 1, + 6, + 3, + 2, + 1, + 1, + 2, + 3 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
campaign=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 1, + 2, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 5, + 2, + 6, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 6, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 3, + 3, + 1, + 1, + 1, + 23, + 1, + 2, + 3, + 4, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 5, + 4, + 2, + 1, + 4, + 3, + 2, + 5, + 3, + 1, + 2, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 3, + 2, + 2, + 3, + 3, + 2, + 5, + 2, + 1, + 1, + 3, + 3, + 2, + 2, + 5, + 6, + 4, + 2, + 1, + 3, + 2, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 2, + 1, + 1, + 2, + 1, + 5, + 9, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 3, + 2, + 3, + 3, + 5, + 1, + 2, + 1, + 10, + 2, + 3, + 2, + 2, + 4, + 12, + 2, + 5, + 5, + 4, + 2, + 1, + 2, + 1, + 3, + 5, + 6, + 3, + 2, + 3, + 3, + 7, + 2, + 1, + 1, + 2, + 7, + 1, + 1, + 4, + 1, + 2, + 1, + 2, + 2, + 1, + 6, + 1, + 2, + 1, + 2, + 3, + 2, + 2, + 2, + 3, + 4, + 1, + 11, + 4, + 2, + 3, + 3, + 1, + 3, + 10, + 1, + 1, + 6, + 1, + 2, + 3, + 8, + 4, + 8, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 5, + 2, + 2, + 6, + 17, + 7, + 2, + 11, + 9, + 1, + 1, + 3, + 3, + 2, + 4, + 1, + 4, + 2, + 3, + 3, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 5, + 3, + 1, + 3, + 1, + 4, + 2, + 2, + 2, + 2, + 5, + 3, + 1, + 10, + 3, + 6, + 3, + 4, + 5, + 2, + 3, + 2, + 3, + 3, + 2, + 6, + 1, + 6, + 9, + 2, + 2, + 1, + 3, + 2, + 1, + 3, + 3, + 2, + 2, + 5, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 5, + 2, + 1, + 1, + 3, + 2, + 2, + 4, + 3, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 5, + 1, + 4, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 7, + 1, + 4, + 5, + 3, + 3, + 1, + 3, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 2, + 3, + 2, + 3, + 4, + 2, + 3, + 7, + 2, + 3, + 3, + 3, + 2, + 4, + 3, + 4, + 4, + 1, + 2, + 4, + 3, + 1, + 6, + 5, + 3, + 5, + 4, + 4, + 3, + 5, + 4, + 1, + 1, + 6, + 1, + 1, + 2, + 1, + 1, + 1, + 11, + 9, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 7, + 3, + 3, + 5, + 2, + 5, + 4, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 5, + 1, + 2, + 9, + 3, + 3, + 9, + 7, + 4, + 2, + 2, + 2, + 3, + 1, + 2, + 2, + 6, + 1, + 3, + 1, + 4, + 1, + 1, + 10, + 8, + 2, + 2, + 3, + 11, + 3, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 7, + 4, + 8, + 11, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 3, + 2, + 2, + 6, + 2, + 1, + 2, + 6, + 4, + 2, + 2, + 1, + 2, + 2, + 1, + 8, + 1, + 2, + 6, + 2, + 2, + 5, + 1, + 1, + 1, + 13, + 8, + 8, + 17, + 9, + 4, + 6, + 2, + 3, + 7, + 1, + 2, + 1, + 1, + 2, + 2, + 5, + 2, + 3, + 4, + 17, + 2, + 1, + 1, + 5, + 11, + 11, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 2, + 1, + 2, + 1, + 2, + 6, + 2, + 4, + 3, + 4, + 8, + 3, + 7, + 10, + 4, + 2, + 4, + 14, + 4, + 3, + 11, + 2, + 2, + 2, + 2, + 4, + 3, + 5, + 4, + 1, + 1, + 2, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 2, + 2, + 2, + 3, + 3, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 7, + 3, + 3, + 1, + 2, + 1, + 5, + 1, + 2, + 6, + 1, + 1, + 5, + 4, + 5, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 3, + 3, + 1, + 3, + 7, + 4, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 2, + 3, + 1, + 4, + 3, + 2, + 4, + 7, + 1, + 3, + 1, + 3, + 4, + 10, + 1, + 1, + 1, + 8, + 1, + 5, + 1, + 6, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 9, + 1, + 2, + 3, + 3, + 2, + 2, + 4, + 2, + 4, + 2, + 1, + 6, + 2, + 12, + 4, + 2, + 2, + 9, + 3, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 3, + 9, + 5, + 3, + 1, + 5, + 2, + 1, + 2, + 3, + 2, + 3, + 3, + 5, + 4, + 4, + 1, + 1, + 8, + 1, + 1, + 3, + 7, + 5, + 2, + 2, + 3, + 3, + 3, + 3, + 3, + 6, + 6, + 3, + 5, + 9, + 4, + 4, + 6, + 8, + 4, + 3, + 9, + 5, + 3, + 7, + 10, + 7, + 2, + 3, + 2, + 1, + 3, + 3, + 11, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 2, + 4, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 1, + 2, + 4, + 3, + 2, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 4, + 1, + 3, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 3, + 1, + 3, + 3, + 2, + 2, + 3, + 4, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 3, + 3, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 3, + 9, + 2, + 2, + 2, + 2, + 1, + 4, + 2, + 4, + 1, + 1, + 1, + 5, + 3, + 2, + 3, + 2, + 3, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 6, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 1, + 3, + 3, + 2, + 1, + 2, + 2, + 1, + 1, + 3, + 1, + 3, + 1, + 3, + 3, + 2, + 4, + 5, + 2, + 1, + 1, + 7, + 3, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 4, + 5, + 1, + 2, + 4, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 4, + 1, + 3, + 4, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 3, + 1, + 2, + 2, + 8, + 2, + 2, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 2, + 2, + 8, + 3, + 1, + 2, + 3, + 2, + 3, + 2, + 1, + 2, + 2, + 2, + 3, + 3, + 2, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 1, + 3, + 2, + 4, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 4, + 2, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 5, + 2, + 3, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 3, + 5, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 3, + 2, + 1, + 11, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 2, + 5, + 2, + 2, + 3, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 5, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 2, + 3, + 2, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 3, + 3, + 2, + 3, + 2, + 2, + 3, + 3, + 5, + 1, + 1, + 4, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 5, + 1, + 5, + 3, + 2, + 4, + 3, + 2, + 1, + 4, + 17, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 4, + 2, + 2, + 5, + 3, + 1, + 2, + 2, + 5, + 5, + 1, + 2, + 3, + 1, + 4, + 4, + 1, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 3, + 3, + 3, + 2, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 4, + 3, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 4, + 3, + 1, + 2, + 3, + 2, + 1, + 1, + 3, + 6, + 4, + 3, + 5, + 3, + 4, + 3, + 2, + 3, + 4, + 3, + 3, + 3, + 4, + 2, + 2, + 4, + 3, + 3, + 5, + 8, + 4, + 5, + 5, + 4, + 7, + 6, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 6, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 3, + 3, + 2, + 4, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 1, + 2, + 2, + 3, + 3, + 3, + 3, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 2, + 3, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 1, + 10, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 3, + 4, + 6, + 4, + 2, + 3, + 2, + 3, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 3, + 2, + 1, + 1, + 3, + 3, + 5, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 2, + 2, + 7, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 5, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 4, + 2, + 1, + 3, + 2, + 2, + 4, + 2, + 2, + 3, + 2, + 2, + 4, + 4, + 3, + 2, + 3, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 5, + 1, + 1, + 1, + 2, + 2, + 4, + 1, + 5, + 1, + 1, + 3, + 2, + 1, + 3, + 1, + 1, + 1, + 3, + 2, + 5, + 4, + 5, + 4, + 4, + 4, + 2, + 3, + 4, + 3, + 4, + 7, + 8, + 4, + 3, + 4, + 2, + 3, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 3, + 1, + 1, + 1, + 1, + 5, + 2, + 2, + 4, + 2, + 3, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 4, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 1, + 3, + 3, + 4, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 2, + 2, + 9, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 2, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 3, + 2, + 2, + 4, + 2, + 2, + 2, + 4, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 3, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 2, + 1, + 4, + 2, + 1, + 1, + 2, + 2, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 2, + 2, + 3, + 3, + 2, + 1, + 2, + 2, + 2, + 2, + 2, + 2, + 7, + 2, + 2, + 2, + 3, + 3, + 6, + 4, + 4, + 4, + 2, + 4, + 2, + 4, + 2, + 2, + 2, + 2, + 2, + 6, + 4, + 7, + 3, + 2, + 2, + 1, + 6, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 3, + 3, + 4, + 3, + 2, + 4, + 10, + 2, + 6, + 5, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 6, + 2, + 2, + 1, + 2, + 4, + 3, + 2, + 4, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 5, + 1, + 3, + 2, + 2, + 4, + 2, + 4, + 5, + 2, + 6, + 6, + 5, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 3, + 2, + 4, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 1, + 3, + 1, + 2, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 5, + 3, + 1, + 2, + 3, + 1, + 2, + 2, + 1, + 1, + 3, + 4, + 2, + 2, + 2, + 3, + 1, + 2, + 1, + 3, + 6, + 2, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 4, + 2, + 6, + 2, + 1, + 3, + 3, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 4, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 3, + 1, + 1, + 6, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 3, + 6, + 3, + 2, + 3, + 3, + 4, + 1, + 3, + 1, + 3, + 1, + 2, + 1, + 3, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 2, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 5, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 3, + 3, + 3, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 2, + 5, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 5, + 1, + 3, + 3, + 1, + 1, + 4, + 3, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 7, + 3, + 5, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 4, + 2, + 2, + 2, + 2, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 5, + 3, + 1, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 4, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 5, + 1, + 1, + 1, + 2, + 2, + 5, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 1, + 4, + 1, + 3, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 3, + 2, + 7, + 1, + 1, + 2, + 2, + 1, + 5, + 1, + 1, + 1, + 1, + 1, + 4, + 2, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 3, + 3, + 4, + 3, + 1, + 7, + 2, + 2, + 2, + 2, + 2, + 3, + 3, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 4, + 2, + 1, + 1, + 2, + 1, + 3, + 2, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 2, + 4, + 3, + 2, + 3, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 1, + 3, + 2, + 1, + 1, + 1, + 2, + 3, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 2, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 1, + 3, + 2, + 2, + 1, + 2, + 4, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 2, + 2, + 7, + 6, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 4, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 1, + 1, + 1, + 4, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 3, + 1, + 3, + 4, + 1, + 2, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 6, + 3, + 1, + 2, + 1, + 2, + 5, + 1, + 1, + 3, + 1, + 2, + 2, + 2, + 1, + 1, + 2, + 7, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 3, + 1, + 1, + 1, + 2, + 3, + 3, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 3, + 2, + 4, + 6, + 5, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 3, + 2, + 5, + 1, + 4, + 2, + 3, + 3, + 5, + 4, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 3, + 3, + 1, + 1, + 1, + 2, + 2, + 3, + 4, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 2, + 4, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 3, + 5, + 1, + 2, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 1, + 4, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 3, + 5, + 1, + 1, + 3, + 6, + 3, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 3, + 4, + 1, + 6, + 1, + 1, + 2, + 2, + 4, + 3, + 1, + 1, + 1, + 1, + 1, + 4, + 6, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 4, + 1, + 2, + 2, + 2, + 2, + 2, + 5, + 1, + 2, + 2, + 3, + 3, + 1, + 5, + 1, + 2, + 3, + 2, + 1, + 2, + 1, + 3, + 1, + 1, + 3, + 2, + 1, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 4, + 7, + 3, + 1, + 10, + 3, + 3, + 4, + 1, + 1, + 1, + 2, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 6, + 3, + 1, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 5, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 2, + 4, + 2, + 2, + 2, + 1, + 1, + 2, + 3, + 2, + 1, + 2, + 3, + 1, + 1, + 2, + 2, + 6, + 7, + 1, + 3, + 4, + 2, + 2, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 2, + 4, + 1, + 2, + 2, + 3, + 3, + 2, + 4, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 2, + 2, + 3, + 1, + 3, + 3, + 2, + 3, + 3, + 1, + 4, + 4, + 1, + 1, + 2, + 1, + 1, + 5, + 1, + 1, + 6, + 2, + 5, + 1, + 2, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 4, + 2, + 3, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 1, + 2, + 3, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 2, + 3, + 1, + 1, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 1, + 1, + 3, + 1, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 4, + 1, + 6, + 6, + 6, + 3, + 2, + 3, + 3, + 4, + 3, + 4, + 1, + 4, + 1, + 2, + 3, + 5, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 3, + 2, + 2, + 1, + 3, + 2, + 1, + 2, + 1, + 2, + 2, + 2, + 2, + 3, + 2, + 2, + 3, + 1, + 1, + 3, + 1, + 1, + 3, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 3, + 3, + 2, + 3, + 1, + 1, + 1, + 1, + 4, + 1, + 1, + 1, + 1, + 3, + 2, + 1, + 5, + 2, + 2, + 3, + 3, + 1, + 1, + 2, + 3, + 2, + 1, + 1, + 1, + 2, + 2, + 3, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 2, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 3, + 1, + 1, + 1, + 5, + 1, + 2, + 4, + 3, + 1, + 5, + 1, + 3, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 1, + 2, + 4, + 2, + 2, + 1, + 1, + 5, + 2, + 1, + 2, + 2, + 2, + 1, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 3, + 1, + 1, + 1, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 2, + 4, + 1, + 1, + 1, + 3, + 1, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 1, + 2, + 3, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 3, + 2, + 7, + 4, + 1, + 3, + 3, + 1, + 1, + 2, + 1, + 1, + 2, + 2, + 3, + 3, + 3, + 3, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 5, + 1, + 2, + 1, + 1, + 4, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 2, + 3, + 2, + 1, + 2, + 1, + 1, + 3, + 1, + 1, + 1, + 2, + 1, + 4, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 1, + 2, + 2, + 1, + 4, + 3, + 4, + 2, + 3, + 2, + 2, + 2, + 1, + 1, + 1, + 3, + 2, + 2, + 1, + 1, + 1, + 1, + 1, + 2, + 1, + 1, + 1 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "campaign" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
pdays=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 0, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 0, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 8, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 2, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 8, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 2, + 999, + 999, + 9, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 1, + 2, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 7, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 14, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 4, + 3, + 4, + 3, + 999, + 999, + 4, + 999, + 999, + 2, + 4, + 999, + 999, + 3, + 999, + 4, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 4, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 3, + 999, + 999, + 999, + 4, + 4, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 4, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 4, + 3, + 999, + 999, + 999, + 4, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 6, + 999, + 999, + 999, + 3, + 13, + 999, + 5, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 16, + 999, + 999, + 999, + 3, + 1, + 999, + 999, + 999, + 14, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 3, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 8, + 7, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 2, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 6, + 999, + 999, + 8, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 6, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 3, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 7, + 3, + 999, + 3, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 7, + 6, + 999, + 999, + 999, + 999, + 999, + 3, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 6, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 6, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 7, + 17, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 3, + 999, + 6, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 9, + 999, + 11, + 9, + 9, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 10, + 6, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 12, + 14, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 12, + 999, + 6, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 999, + 6, + 999, + 999, + 999, + 999, + 7, + 999, + 1, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 13, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 13, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 3, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 14, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 2, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 13, + 999, + 3, + 14, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 14, + 4, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 15, + 999, + 999, + 6, + 6, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 16, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 6, + 999, + 0, + 999, + 17, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 999, + 12, + 999, + 3, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 22, + 999, + 999, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 0, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 18, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 6, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 6, + 999, + 999, + 999, + 6, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 18, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 8, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 19, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 18, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 14, + 999, + 999, + 999, + 999, + 17, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 12, + 999, + 6, + 999, + 999, + 999, + 16, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 6, + 17, + 6, + 9, + 6, + 999, + 999, + 17, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 6, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 3, + 999, + 9, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 19, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 10, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
pdays=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 5, + 999, + 999, + 999, + 999, + 999, + 2, + 5, + 999, + 2, + 2, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 2, + 2, + 2, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 2, + 999, + 0, + 2, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 0, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 2, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 2, + 999, + 0, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 6, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 11, + 999, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 1, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 7, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 2, + 3, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 4, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 4, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 4, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 3, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 3, + 4, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 14, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 13, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 13, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 2, + 999, + 999, + 4, + 999, + 999, + 4, + 999, + 999, + 999, + 4, + 4, + 999, + 15, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 4, + 4, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 4, + 999, + 6, + 6, + 4, + 999, + 4, + 999, + 12, + 4, + 999, + 999, + 999, + 10, + 999, + 999, + 6, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 4, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 15, + 999, + 999, + 3, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 4, + 13, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 6, + 3, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 999, + 999, + 1, + 999, + 3, + 999, + 999, + 9, + 999, + 999, + 3, + 3, + 3, + 6, + 999, + 999, + 3, + 999, + 999, + 999, + 15, + 999, + 999, + 999, + 2, + 3, + 999, + 3, + 999, + 3, + 14, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 3, + 999, + 3, + 999, + 999, + 999, + 999, + 15, + 999, + 999, + 15, + 999, + 3, + 15, + 999, + 999, + 999, + 6, + 3, + 3, + 999, + 6, + 999, + 16, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 3, + 999, + 3, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 3, + 999, + 1, + 3, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 3, + 999, + 3, + 999, + 999, + 3, + 3, + 999, + 1, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 3, + 999, + 999, + 3, + 6, + 3, + 999, + 3, + 3, + 3, + 3, + 999, + 999, + 999, + 999, + 6, + 999, + 3, + 999, + 3, + 4, + 3, + 999, + 3, + 999, + 999, + 6, + 999, + 999, + 3, + 999, + 4, + 999, + 4, + 4, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 5, + 6, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 6, + 6, + 6, + 999, + 999, + 999, + 2, + 999, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 6, + 999, + 999, + 999, + 6, + 999, + 6, + 6, + 6, + 6, + 999, + 999, + 7, + 999, + 999, + 999, + 8, + 999, + 999, + 6, + 999, + 999, + 3, + 6, + 999, + 3, + 999, + 999, + 6, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 6, + 6, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 3, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 999, + 999, + 3, + 999, + 3, + 3, + 999, + 3, + 999, + 3, + 3, + 999, + 999, + 999, + 7, + 6, + 7, + 8, + 999, + 999, + 999, + 3, + 7, + 3, + 3, + 3, + 3, + 3, + 3, + 999, + 3, + 999, + 7, + 3, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 3, + 3, + 999, + 3, + 3, + 3, + 3, + 13, + 3, + 3, + 7, + 999, + 999, + 3, + 9, + 7, + 999, + 999, + 999, + 3, + 7, + 6, + 999, + 6, + 999, + 999, + 3, + 6, + 999, + 7, + 7, + 7, + 3, + 3, + 999, + 999, + 999, + 3, + 3, + 3, + 999, + 3, + 3, + 999, + 3, + 7, + 7, + 7, + 9, + 3, + 999, + 3, + 999, + 999, + 7, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 3, + 3, + 3, + 999, + 3, + 999, + 999, + 3, + 3, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 6, + 999, + 4, + 999, + 999, + 6, + 999, + 999, + 8, + 6, + 999, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 9, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 4, + 999, + 4, + 6, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 6, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 6, + 6, + 6, + 999, + 999, + 999, + 999, + 999, + 5, + 6, + 999, + 6, + 6, + 999, + 999, + 999, + 999, + 6, + 21, + 999, + 999, + 999, + 999, + 5, + 999, + 999, + 999, + 6, + 4, + 6, + 999, + 999, + 999, + 13, + 4, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 10, + 999, + 999, + 999, + 6, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 9, + 6, + 999, + 999, + 999, + 6, + 3, + 7, + 6, + 999, + 6, + 6, + 3, + 999, + 6, + 11, + 3, + 5, + 6, + 999, + 6, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 10, + 6, + 999, + 999, + 6, + 999, + 6, + 999, + 999, + 999, + 6, + 3, + 10, + 999, + 999, + 999, + 10, + 3, + 6, + 999, + 999, + 999, + 999, + 999, + 6, + 13, + 999, + 999, + 999, + 999, + 12, + 3, + 999, + 999, + 999, + 6, + 3, + 999, + 3, + 999, + 999, + 11, + 999, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 5, + 999, + 6, + 12, + 7, + 999, + 999, + 999, + 999, + 999, + 5, + 12, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 7, + 999, + 999, + 999, + 6, + 12, + 999, + 999, + 6, + 999, + 999, + 6, + 999, + 6, + 999, + 10, + 999, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 6, + 6, + 6, + 999, + 999, + 10, + 999, + 999, + 999, + 6, + 6, + 999, + 6, + 999, + 999, + 999, + 4, + 999, + 999, + 999, + 999, + 999, + 6, + 999, + 6, + 999, + 18, + 999, + 999, + 999, + 13, + 999, + 6, + 999, + 3, + 3, + 3, + 999, + 6, + 2, + 999, + 7, + 3, + 999, + 999, + 999, + 2, + 999, + 3, + 999, + 3, + 3, + 999, + 2, + 999, + 3, + 3, + 2, + 999, + 999, + 6, + 3, + 6, + 999, + 6, + 6, + 3, + 6, + 3, + 6, + 3, + 3, + 6, + 6, + 3, + 6, + 3, + 2, + 3, + 13, + 9, + 999, + 6, + 3, + 6, + 999, + 3, + 999, + 3, + 999, + 3, + 6, + 14, + 999, + 999, + 15, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 8, + 999, + 999, + 3, + 13, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 10, + 7, + 3, + 999, + 4, + 999, + 6, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 5, + 999, + 10, + 999, + 3, + 6, + 6, + 6, + 999, + 999, + 6, + 3, + 6, + 3, + 3, + 6, + 999, + 6, + 3, + 6, + 3, + 9, + 3, + 999, + 999, + 999, + 999, + 4, + 999, + 6, + 14, + 12, + 999, + 999, + 3, + 13, + 7, + 999, + 9, + 999, + 999, + 999, + 6, + 6, + 22, + 999, + 999, + 12, + 3, + 12, + 3, + 6, + 12, + 7, + 3, + 999, + 6, + 999, + 999, + 999, + 12, + 999, + 14, + 999, + 999, + 999, + 10, + 999, + 3, + 999, + 2, + 999, + 4, + 999, + 999, + 999, + 3, + 999, + 999, + 6, + 2, + 999, + 999, + 12, + 999, + 12, + 3, + 999, + 999, + 999, + 999, + 4, + 7, + 10, + 999, + 999, + 999, + 4, + 999, + 3, + 999, + 999, + 14, + 999, + 999, + 999, + 999, + 13, + 999, + 3, + 9, + 999, + 15, + 999, + 999, + 999, + 6, + 8, + 999, + 999, + 999, + 999, + 8, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 14, + 6, + 6, + 6, + 999, + 3, + 999, + 6, + 12, + 999, + 999, + 6, + 6, + 11, + 999, + 6, + 6, + 6, + 999, + 999, + 999, + 999, + 6, + 999, + 999, + 999, + 999, + 999, + 3, + 999, + 6, + 6, + 6, + 6, + 999, + 6, + 6, + 999, + 999, + 6, + 13, + 6, + 999, + 6, + 6, + 15, + 999, + 13, + 15, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 15, + 999, + 999, + 999, + 999, + 5, + 3, + 999, + 11, + 999, + 999, + 6, + 999, + 999, + 25, + 9, + 6, + 999, + 999, + 26, + 999, + 9, + 999, + 6, + 6, + 999, + 999, + 12, + 13, + 3, + 999, + 999, + 6, + 6, + 3, + 6, + 999, + 999, + 999, + 4, + 6, + 999, + 6, + 999, + 6, + 6, + 999, + 999, + 6, + 999, + 9, + 5, + 6, + 6, + 6, + 999, + 999, + 3, + 4, + 9, + 999, + 9, + 13, + 999, + 999, + 999, + 6, + 999, + 6, + 999, + 999, + 9, + 3, + 0, + 6, + 999, + 0, + 0, + 7, + 3, + 6, + 16, + 10, + 0, + 4, + 0, + 0, + 9, + 0, + 6, + 3, + 999, + 3, + 16, + 9, + 999, + 999, + 999, + 999, + 999, + 999, + 3, + 6, + 3, + 3, + 6, + 4, + 6, + 999, + 999, + 6, + 6, + 999, + 3, + 6, + 999, + 999, + 999, + 999, + 6, + 6, + 999, + 6, + 999, + 6, + 999, + 6, + 14, + 6, + 6, + 6, + 6, + 9, + 6, + 6, + 1, + 999, + 999, + 6, + 6, + 3, + 6, + 6, + 999, + 999, + 16, + 999, + 999, + 6, + 6, + 999, + 999, + 6, + 999, + 3, + 6, + 999, + 999, + 999, + 999, + 999, + 12, + 999, + 6, + 999, + 999, + 999, + 3, + 999, + 6, + 5, + 3, + 7, + 999, + 999, + 6, + 17, + 999, + 6, + 10, + 9, + 6, + 3, + 6, + 999, + 999, + 999, + 3, + 999, + 999, + 3, + 999, + 6, + 6, + 6, + 999, + 999, + 14, + 3, + 999, + 999, + 6, + 3, + 999, + 22, + 6, + 6, + 6, + 3, + 999, + 999, + 3, + 999, + 12, + 3, + 6, + 9, + 999, + 6, + 999, + 6, + 999, + 999, + 3, + 999, + 3, + 999, + 999, + 3, + 999, + 3, + 6, + 999, + 999, + 6, + 8, + 6, + 999, + 6, + 999, + 15, + 6, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 13, + 999, + 999, + 10, + 999, + 999, + 3, + 999, + 999, + 999, + 6, + 999, + 6, + 6, + 999, + 999, + 999, + 6, + 6, + 6, + 999, + 6, + 999, + 3, + 999, + 3, + 999, + 6, + 15, + 13, + 3, + 999, + 6, + 999, + 999, + 999, + 6, + 3, + 3, + 999, + 16, + 3, + 999, + 999, + 999, + 9, + 999, + 27, + 999, + 999, + 3, + 999, + 5, + 999, + 3, + 999, + 5, + 999, + 8, + 999, + 3, + 3, + 999, + 6, + 999, + 999, + 999, + 999, + 3, + 3, + 6, + 6, + 999, + 6, + 999, + 3, + 999, + 7, + 3, + 3, + 999, + 3, + 6, + 999, + 999, + 999, + 999, + 999, + 11, + 3, + 999, + 999, + 5, + 999, + 6, + 13, + 3, + 3, + 11, + 6, + 3, + 6, + 14, + 999, + 3, + 3, + 999, + 12, + 12, + 3, + 3, + 5, + 6, + 9, + 999, + 999, + 6, + 6, + 4, + 999, + 18, + 999, + 999, + 999, + 999, + 999, + 6, + 3, + 999, + 6, + 3, + 999, + 5, + 6, + 6, + 6, + 13, + 7, + 2, + 3, + 3, + 12, + 3, + 999, + 1, + 999, + 999, + 6, + 999, + 21, + 999, + 999, + 999, + 3, + 999, + 999, + 999, + 999, + 999, + 999, + 999, + 19, + 999, + 6, + 5, + 999, + 999, + 9, + 999, + 4, + 10, + 999, + 999, + 999, + 999, + 999, + 1, + 6, + 999, + 999, + 999 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "pdays" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
previous=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 3, + 1, + 0, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 1, + 1, + 0, + 0, + 0, + 2, + 2, + 0, + 0, + 1, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 2, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 2, + 0, + 1, + 1, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 2, + 0, + 0, + 2, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 2, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 2, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 3, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 2, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 2, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 2, + 2, + 0, + 1, + 1, + 2, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 1, + 0, + 0, + 1, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 3, + 0, + 2, + 0, + 2, + 1, + 1, + 1, + 0, + 3, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 3, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 2, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 2, + 2, + 0, + 0, + 1, + 1, + 3, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 1, + 2, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 3, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 2, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 3, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 4, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 2, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 3, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 2, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 2, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 1, + 2, + 1, + 0, + 1, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 3, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 3, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 1, + 3, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 2, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 3, + 0, + 1, + 2, + 1, + 0, + 0, + 1, + 2, + 1, + 0, + 0, + 2, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 2, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 3, + 1, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 2, + 1, + 1, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 3, + 0, + 2, + 1, + 2, + 0, + 1, + 2, + 0, + 2, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 2, + 3, + 3, + 0, + 0, + 0, + 0, + 0, + 2, + 3, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 0, + 0, + 0, + 1, + 2, + 1, + 2, + 1, + 3, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 3, + 0, + 0, + 2, + 0, + 3, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 2, + 2, + 1, + 2, + 2, + 3, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 3, + 1, + 1, + 0, + 0, + 1, + 2, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 1, + 1, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 4, + 0, + 0, + 1, + 1, + 0, + 2, + 2, + 1, + 2, + 4, + 0, + 0, + 1, + 2, + 1, + 0, + 1, + 2, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 1, + 2, + 2, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 2, + 1, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 4, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 1, + 0, + 2, + 2, + 2, + 1, + 1, + 2, + 0, + 3, + 1, + 0, + 2, + 3, + 2, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 2, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 2, + 1, + 2, + 5, + 1, + 1, + 3, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 3, + 0, + 3, + 0, + 3, + 2, + 2, + 4, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 3, + 0, + 2, + 3, + 0, + 0, + 0, + 2, + 0, + 3, + 0, + 0, + 0, + 4, + 0, + 2, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 2, + 3, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 3, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 4, + 2, + 2, + 2, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 3, + 0, + 0, + 1, + 2, + 1, + 1, + 2, + 0, + 2, + 2, + 3, + 2, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 4, + 1, + 2, + 3, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 3, + 2, + 3, + 1, + 1, + 0, + 2, + 0, + 0, + 1, + 3, + 3, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 3, + 0, + 0, + 2, + 2, + 0, + 1, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 2, + 0, + 0, + 1, + 1, + 0, + 2, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 2, + 1, + 1, + 0, + 0, + 1, + 1, + 3, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 4, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 2, + 2, + 0, + 2, + 0, + 0, + 1, + 1, + 3, + 0, + 0, + 0, + 0, + 3, + 1, + 4, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 2, + 0, + 2, + 1, + 1, + 0, + 2, + 1, + 0, + 1, + 2, + 0, + 5, + 0, + 1, + 4, + 1, + 2, + 5, + 1, + 0, + 0, + 0, + 4, + 0, + 1, + 2, + 0, + 3, + 1, + 2, + 2, + 6, + 4, + 0, + 3, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 2, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 3, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 3, + 1, + 4, + 2, + 0, + 1, + 0, + 3, + 4, + 0, + 3, + 0, + 1, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 3, + 3, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 2, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 3, + 1, + 0, + 0, + 0, + 1, + 5, + 1, + 1, + 0, + 0, + 0, + 0, + 5, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 3, + 1, + 1, + 4, + 0, + 2, + 0, + 2, + 0, + 2, + 2, + 2, + 0, + 0, + 3, + 0, + 0, + 1, + 0, + 4, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 2, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 2, + 0, + 1, + 0, + 0, + 2, + 3, + 0, + 3, + 0, + 0, + 0, + 0, + 0, + 2, + 4, + 3, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 2, + 1, + 3, + 0, + 3, + 2, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 3, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 2, + 0, + 2, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 2, + 1, + 1, + 0, + 0, + 2, + 3, + 0, + 1, + 0, + 0, + 1, + 3, + 4, + 3, + 2, + 0, + 0, + 2, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 3, + 1, + 1, + 4, + 1, + 0, + 0, + 1, + 2, + 0, + 3, + 0, + 7, + 2, + 3, + 0, + 6, + 0, + 1, + 1, + 0, + 2, + 3, + 3, + 3, + 2, + 2, + 2, + 1, + 1, + 2, + 1, + 0, + 0, + 3, + 4, + 1, + 0, + 2, + 4, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
previous=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 2, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 1, + 0, + 2, + 1, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 2, + 2, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 2, + 1, + 1, + 1, + 2, + 1, + 2, + 2, + 0, + 1, + 3, + 0, + 0, + 1, + 4, + 0, + 0, + 1, + 1, + 3, + 1, + 2, + 0, + 1, + 0, + 1, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 3, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2, + 0, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 2, + 2, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 0, + 2, + 0, + 2, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 2, + 1, + 1, + 1, + 0, + 0, + 1, + 2, + 2, + 1, + 1, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 2, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 3, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 2, + 0, + 2, + 1, + 2, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 2, + 0, + 1, + 1, + 2, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 0, + 1, + 3, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 3, + 2, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 2, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 1, + 0, + 0, + 1, + 1, + 1, + 1, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 2, + 2, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 1, + 3, + 0, + 1, + 1, + 0, + 1, + 0, + 3, + 2, + 1, + 0, + 0, + 3, + 1, + 1, + 2, + 0, + 0, + 0, + 2, + 1, + 1, + 3, + 3, + 1, + 2, + 1, + 2, + 1, + 0, + 2, + 1, + 0, + 2, + 1, + 1, + 0, + 0, + 3, + 3, + 3, + 0, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 1, + 2, + 0, + 2, + 2, + 4, + 0, + 0, + 0, + 2, + 2, + 1, + 0, + 3, + 0, + 1, + 2, + 1, + 0, + 2, + 1, + 1, + 1, + 2, + 1, + 0, + 1, + 3, + 1, + 1, + 1, + 2, + 2, + 0, + 1, + 2, + 2, + 2, + 3, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 3, + 1, + 3, + 0, + 2, + 0, + 2, + 1, + 1, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 2, + 1, + 1, + 3, + 0, + 0, + 2, + 1, + 0, + 2, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 2, + 0, + 2, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 2, + 0, + 2, + 1, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 2, + 2, + 1, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 2, + 2, + 0, + 1, + 0, + 1, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 1, + 0, + 0, + 2, + 1, + 1, + 1, + 0, + 1, + 2, + 2, + 1, + 0, + 2, + 0, + 2, + 2, + 0, + 2, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 3, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 3, + 2, + 0, + 3, + 1, + 2, + 0, + 3, + 1, + 1, + 1, + 1, + 0, + 2, + 1, + 1, + 0, + 1, + 2, + 0, + 0, + 3, + 1, + 1, + 3, + 0, + 1, + 4, + 0, + 2, + 0, + 0, + 0, + 1, + 3, + 1, + 0, + 2, + 0, + 2, + 2, + 2, + 0, + 0, + 0, + 0, + 0, + 3, + 1, + 1, + 1, + 0, + 0, + 2, + 1, + 0, + 0, + 0, + 1, + 2, + 0, + 1, + 0, + 1, + 1, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1, + 2, + 1, + 2, + 0, + 1, + 0, + 0, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 2, + 1, + 3, + 1, + 1, + 0, + 0, + 2, + 0, + 2, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + 2, + 0, + 0, + 1, + 3, + 2, + 0, + 1, + 0, + 1, + 3, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 2, + 0, + 2, + 3, + 2, + 0, + 2, + 2, + 1, + 2, + 5, + 0, + 1, + 0, + 4, + 1, + 5, + 0, + 2, + 4, + 0, + 1, + 0, + 2, + 1, + 4, + 0, + 0, + 1, + 3, + 4, + 1, + 3, + 2, + 4, + 1, + 4, + 2, + 4, + 1, + 4, + 1, + 3, + 3, + 2, + 3, + 3, + 2, + 1, + 0, + 1, + 4, + 2, + 1, + 3, + 0, + 2, + 1, + 2, + 2, + 1, + 0, + 0, + 3, + 0, + 0, + 5, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 3, + 1, + 0, + 3, + 2, + 1, + 1, + 0, + 0, + 0, + 0, + 0, + 1, + 3, + 2, + 0, + 2, + 0, + 1, + 0, + 2, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2, + 0, + 0, + 2, + 4, + 3, + 2, + 1, + 3, + 1, + 2, + 4, + 1, + 4, + 1, + 5, + 0, + 0, + 0, + 0, + 4, + 0, + 2, + 1, + 2, + 1, + 0, + 1, + 1, + 2, + 1, + 2, + 0, + 1, + 0, + 1, + 2, + 1, + 0, + 0, + 2, + 1, + 1, + 2, + 2, + 2, + 1, + 1, + 0, + 1, + 0, + 1, + 0, + 2, + 2, + 1, + 0, + 1, + 0, + 3, + 0, + 1, + 0, + 2, + 0, + 3, + 0, + 1, + 0, + 1, + 3, + 0, + 3, + 3, + 0, + 0, + 3, + 2, + 2, + 2, + 0, + 1, + 0, + 0, + 2, + 3, + 2, + 0, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 2, + 0, + 0, + 2, + 0, + 2, + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 2, + 1, + 4, + 0, + 0, + 0, + 2, + 1, + 0, + 0, + 1, + 1, + 2, + 0, + 0, + 1, + 2, + 1, + 1, + 0, + 3, + 1, + 2, + 1, + 0, + 0, + 3, + 1, + 2, + 1, + 1, + 1, + 2, + 2, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 2, + 1, + 2, + 3, + 0, + 2, + 1, + 1, + 0, + 1, + 2, + 2, + 0, + 1, + 2, + 1, + 2, + 1, + 1, + 0, + 0, + 1, + 1, + 0, + 0, + 2, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 2, + 1, + 0, + 2, + 0, + 0, + 2, + 0, + 0, + 2, + 2, + 2, + 0, + 0, + 1, + 1, + 3, + 0, + 2, + 3, + 2, + 1, + 1, + 1, + 2, + 0, + 0, + 1, + 2, + 1, + 3, + 0, + 0, + 0, + 1, + 1, + 2, + 2, + 1, + 2, + 3, + 1, + 1, + 2, + 0, + 3, + 1, + 3, + 2, + 1, + 2, + 0, + 2, + 2, + 1, + 0, + 2, + 1, + 0, + 0, + 4, + 2, + 1, + 2, + 0, + 1, + 2, + 1, + 3, + 3, + 0, + 3, + 1, + 1, + 3, + 3, + 3, + 2, + 2, + 2, + 2, + 1, + 1, + 2, + 2, + 3, + 0, + 6, + 1, + 4, + 0, + 0, + 0, + 4, + 0, + 0, + 2, + 3, + 3, + 1, + 2, + 3, + 3, + 0, + 2, + 1, + 1, + 0, + 1, + 5, + 0, + 0, + 0, + 1, + 2, + 3, + 0, + 1, + 1, + 3, + 0, + 2, + 1, + 4, + 3, + 3, + 2, + 3, + 2, + 2, + 3, + 0, + 0, + 3, + 1, + 3, + 2, + 1, + 0, + 0, + 1, + 0, + 0, + 3, + 2, + 0, + 0, + 3, + 0, + 4, + 3, + 0, + 0, + 1, + 2, + 1, + 1, + 0, + 2, + 0, + 1, + 1, + 1, + 0, + 2, + 1, + 2, + 1, + 1, + 0, + 1, + 2, + 0, + 3, + 3, + 1, + 2, + 2, + 1, + 2, + 3, + 0, + 1, + 2, + 0, + 2, + 0, + 3, + 1, + 1, + 0, + 0, + 1, + 3, + 0, + 0, + 1, + 4, + 0, + 1, + 2, + 1, + 1, + 1, + 0, + 0, + 4, + 1, + 1, + 1, + 1, + 3, + 3, + 2, + 0, + 2, + 2, + 0, + 5, + 0, + 2, + 1, + 1, + 3, + 0, + 2, + 2, + 0, + 0, + 3, + 2, + 1, + 0, + 1, + 0, + 1, + 4, + 0, + 1, + 1, + 0, + 0, + 0, + 1, + 1, + 0, + 0, + 1, + 0, + 0, + 3, + 1, + 0, + 3, + 1, + 1, + 0, + 1, + 0, + 3, + 1, + 0, + 2, + 0, + 1, + 5, + 3, + 0, + 1, + 0, + 2, + 0, + 1, + 0, + 1, + 4, + 1, + 3, + 0, + 3, + 0, + 0, + 0, + 1, + 3, + 2, + 0, + 1, + 1, + 0, + 0, + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 1, + 1, + 1, + 3, + 0, + 1, + 0, + 2, + 1, + 2, + 2, + 0, + 2, + 0, + 1, + 3, + 2, + 2, + 3, + 0, + 3, + 0, + 1, + 0, + 3, + 2, + 1, + 1, + 2, + 1, + 0, + 0, + 0, + 0, + 0, + 2, + 1, + 2, + 2, + 5, + 1, + 2, + 2, + 1, + 3, + 4, + 1, + 3, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 2, + 3, + 1, + 2, + 1, + 2, + 1, + 0, + 1, + 3, + 3, + 1, + 2, + 0, + 0, + 0, + 0, + 1, + 1, + 3, + 0, + 3, + 2, + 0, + 3, + 1, + 3, + 4, + 2, + 2, + 5, + 3, + 2, + 1, + 2, + 0, + 1, + 0, + 0, + 4, + 0, + 5, + 0, + 0, + 0, + 2, + 0, + 0, + 0, + 0, + 2, + 0, + 0, + 1, + 0, + 1, + 5, + 0, + 0, + 4, + 0, + 2, + 1, + 0, + 1, + 0, + 0, + 2, + 6, + 3, + 0, + 0, + 0 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "previous" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
emp.var.rate=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.2, + -0.2, + -0.2, + -0.2, + -0.2, + -0.2, + -0.2, + -0.2, + -0.2, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
emp.var.rate=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.1, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.1, + -0.2, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -2.9, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3.4, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -3, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.8, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.7, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1, + -1.1 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "emp.var.rate" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
cons.price.idx=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 92.756, + 92.756, + 92.756, + 92.756, + 92.756, + 92.756, + 92.756, + 92.756, + 92.756, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
cons.price.idx=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 93.994, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 94.465, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.918, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.444, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.798, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 93.2, + 92.756, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 92.843, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 93.075, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.893, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.963, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.469, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.201, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.379, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.431, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.649, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 92.713, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.369, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.749, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 93.876, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.055, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.215, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.027, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.199, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.601, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767, + 94.767 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "cons.price.idx" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
cons.conf.idx=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -45.9, + -45.9, + -45.9, + -45.9, + -45.9, + -45.9, + -45.9, + -45.9, + -45.9, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
cons.conf.idx=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -36.4, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -41.8, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -42.7, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -36.1, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -40.4, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -42, + -45.9, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -50, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -47.1, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -46.2, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -40.8, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -33.6, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -31.4, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -29.8, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -26.9, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -30.1, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -33, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.8, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -34.6, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -40, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -39.8, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -40.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -38.3, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -37.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -49.5, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8, + -50.8 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "cons.conf.idx" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
euribor3m=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.947, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.955, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.956, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.97, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 5.045, + 5.045, + 5.045, + 5.045, + 5, + 5, + 5, + 4.968, + 4.968, + 4.968, + 4.936, + 4.921, + 4.918, + 4.918, + 4.912, + 4.912, + 4.912, + 4.86, + 4.827, + 4.827, + 4.794, + 4.76, + 4.733, + 4.733, + 4.7, + 4.7, + 4.7, + 4.7, + 4.7, + 4.663, + 4.663, + 4.663, + 4.663, + 4.663, + 4.592, + 4.592, + 4.474, + 4.406, + 4.406, + 4.406, + 4.406, + 4.406, + 4.343, + 4.343, + 4.343, + 4.286, + 4.286, + 4.286, + 4.286, + 4.286, + 4.245, + 4.245, + 4.245, + 4.245, + 4.245, + 4.245, + 4.223, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 3.901, + 3.879, + 3.879, + 3.853, + 3.816, + 3.743, + 3.669, + 3.563, + 3.563, + 3.488, + 3.428, + 3.329, + 3.282, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.799, + 1.778, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.726, + 1.726, + 1.703, + 1.703, + 1.703, + 1.703, + 1.703, + 1.703, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.65, + 1.65, + 1.65, + 1.64, + 1.64, + 1.64, + 1.64, + 1.64, + 1.629, + 1.629, + 1.629, + 1.629, + 1.629, + 1.629, + 1.629, + 1.629, + 1.614, + 1.614, + 1.614, + 1.614, + 1.614, + 1.614, + 1.602, + 1.602, + 1.602, + 1.584, + 1.56, + 1.56, + 1.56, + 1.56, + 1.556, + 1.556, + 1.556, + 1.556, + 1.556, + 1.556, + 1.556, + 1.548, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.52, + 1.52, + 1.52, + 1.52, + 1.52, + 1.52, + 1.52, + 1.52, + 1.51, + 1.51, + 1.51, + 1.51, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.479, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.466, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.4, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.384, + 1.384, + 1.384, + 1.384, + 1.384, + 1.384, + 1.384, + 1.384, + 1.372, + 1.372, + 1.372, + 1.372, + 1.372, + 1.372, + 1.372, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.286, + 1.286, + 1.286, + 1.286, + 1.286, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.235, + 1.235, + 1.235, + 1.235, + 1.224, + 1.224, + 1.224, + 1.224, + 1.224, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.215, + 1.206, + 1.206, + 1.206, + 1.206, + 1.206, + 1.099, + 1.099, + 1.099, + 1.099, + 1.099, + 1.099, + 1.099, + 1.085, + 1.085, + 1.085, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.048, + 1.048, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.018, + 1.018, + 1.007, + 0.979, + 0.979, + 0.979, + 0.969, + 0.944, + 0.944, + 0.937, + 0.927, + 0.927, + 0.914, + 0.914, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.903, + 0.899, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.843, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.834, + 0.834, + 0.834, + 0.834, + 0.834, + 0.834, + 0.834, + 0.834, + 0.834, + 0.829, + 0.829, + 0.829, + 0.829, + 0.829, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.819, + 0.813, + 0.813, + 0.813, + 0.809, + 0.809, + 0.809, + 0.809, + 0.809, + 0.809, + 0.809, + 0.809, + 0.809, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.778, + 0.778, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.771, + 0.771, + 0.771, + 0.771, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.768, + 0.768, + 0.768, + 0.768, + 0.768, + 0.768, + 0.768, + 0.768, + 0.768, + 0.766, + 0.766, + 0.762, + 0.755, + 0.749, + 0.743, + 0.743, + 0.743, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.741, + 0.739, + 0.739, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.753, + 0.753, + 0.753, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.752, + 0.752, + 0.752, + 0.752, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.744, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.741, + 0.741, + 0.741, + 0.741, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.733, + 0.733, + 0.733, + 0.733, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.731, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.715, + 0.715, + 0.715, + 0.715, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.718, + 0.718, + 0.718, + 0.718, + 0.718, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.719, + 0.721, + 0.721, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.718, + 0.718, + 0.718, + 0.718, + 0.718, + 0.718, + 0.718, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.714, + 0.714, + 0.714, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.712, + 0.712, + 0.712, + 0.712, + 0.71, + 0.71, + 0.71, + 0.71, + 0.71, + 0.709, + 0.709, + 0.709, + 0.709, + 0.708, + 0.708, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.7, + 0.7, + 0.7, + 0.7, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.651, + 0.651, + 0.651, + 0.651, + 0.65, + 0.65, + 0.65, + 0.65, + 0.65, + 0.65, + 0.65, + 0.65, + 0.649, + 0.649, + 0.649, + 0.649, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.644, + 0.644, + 0.644, + 0.644, + 0.643, + 0.643, + 0.643, + 0.643, + 0.639, + 0.639, + 0.637, + 0.635, + 0.635, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.636, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.634, + 0.634, + 0.635, + 0.635, + 0.638, + 0.638, + 0.64, + 0.64, + 0.64, + 0.64, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.643, + 0.643, + 0.643, + 0.642, + 0.642, + 0.642, + 0.642, + 0.644, + 0.644, + 0.644, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.646, + 0.646, + 0.646, + 0.646, + 0.659, + 0.659, + 0.659, + 0.659, + 0.663, + 0.663, + 0.663, + 0.663, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.672, + 0.672, + 0.672, + 0.672, + 0.672, + 0.672, + 0.672, + 0.672, + 0.677, + 0.677, + 0.677, + 0.677, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.683, + 0.683, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.685, + 0.685, + 0.685, + 0.685, + 0.69, + 0.692, + 0.692, + 0.692, + 0.695, + 0.695, + 0.697, + 0.697, + 0.697, + 0.697, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.701, + 0.701, + 0.701, + 0.701, + 0.701, + 0.701, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.704, + 0.704, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.711, + 0.711, + 0.711, + 0.713, + 0.713, + 0.713, + 0.713, + 0.713, + 0.713, + 0.713, + 0.715, + 0.715, + 0.715, + 0.715, + 0.719, + 0.719, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.723, + 0.723, + 0.723, + 0.727, + 0.727, + 0.729, + 0.729, + 0.729, + 0.729, + 0.729, + 0.732, + 0.732, + 0.732, + 0.732, + 0.733, + 0.737, + 0.737, + 0.737, + 0.737, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.748, + 0.748, + 0.748, + 0.748, + 0.748, + 0.748, + 0.748, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.782, + 0.782, + 0.782, + 0.782, + 0.782, + 0.782, + 0.782, + 0.782, + 0.79, + 0.79, + 0.79, + 0.79, + 0.793, + 0.793, + 0.793, + 0.793, + 0.793, + 0.793, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.802, + 0.81, + 0.81, + 0.81, + 0.81, + 0.81, + 0.822, + 0.822, + 0.822, + 0.822, + 0.822, + 0.822, + 0.822, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.87, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.881, + 0.881, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.885, + 0.889, + 0.889, + 0.889, + 0.889, + 0.889, + 0.889, + 0.889, + 0.893, + 0.893, + 0.893, + 0.893, + 0.893, + 0.893, + 0.893, + 0.896, + 0.896, + 0.896, + 0.899, + 0.899, + 0.899, + 0.899, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.899, + 0.899, + 0.899, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.905, + 0.905, + 0.905, + 0.905, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.903, + 0.903, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.896, + 0.896, + 0.896, + 0.896, + 0.895, + 0.895, + 0.894, + 0.894, + 0.894, + 0.891, + 0.89, + 0.89, + 0.89, + 0.89, + 0.891, + 0.891, + 0.891, + 0.889, + 0.889, + 0.89, + 0.89, + 0.89, + 0.888, + 0.888, + 0.888, + 0.888, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.88, + 0.88, + 0.88, + 0.88, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.878, + 0.878, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.876, + 0.879, + 0.879, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.88, + 0.88, + 0.88, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.942, + 0.942, + 0.942, + 0.942, + 0.942, + 0.942, + 0.953, + 0.953, + 0.956, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.965, + 0.965, + 0.965, + 0.972, + 0.972, + 0.972, + 0.972, + 0.972, + 0.972, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.982, + 0.982, + 0.982, + 0.982, + 0.982, + 0.982, + 0.982, + 0.982, + 0.985, + 0.985, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.993, + 0.993, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1.008, + 1.008, + 1.016, + 1.016, + 1.016, + 1.016, + 1.016, + 1.025, + 1.025, + 1.029, + 1.029, + 1.029, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.037, + 1.037, + 1.043, + 1.043, + 1.043, + 1.045, + 1.047, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.049, + 1.049, + 1.049, + 1.049, + 1.049, + 1.048, + 1.048, + 1.048, + 1.048, + 1.048, + 1.048, + 1.048, + 1.049, + 1.048, + 1.048, + 1.048, + 1.048, + 1.048, + 1.046, + 1.046, + 1.046, + 1.044, + 1.041, + 1.041, + 1.041, + 1.041, + 1.04, + 1.04, + 1.04, + 1.039, + 1.039, + 1.039, + 1.039, + 1.039, + 1.039, + 1.035, + 1.035, + 1.03, + 1.03, + 1.03, + 1.03, + 1.031, + 1.031, + 1.028, + 1.028, + 1.028, + 1.028, + 1.028, + 1.028 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
euribor3m=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.856, + 4.856, + 4.856, + 4.856, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.855, + 4.857, + 4.857, + 4.857, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.859, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.856, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.858, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.857, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.865, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.864, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.866, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.959, + 4.958, + 4.958, + 4.958, + 4.955, + 4.955, + 4.955, + 4.947, + 4.947, + 4.947, + 4.955, + 4.955, + 4.955, + 4.966, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.958, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.957, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.96, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.961, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.97, + 4.97, + 4.97, + 4.97, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.967, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.966, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.963, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.965, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.964, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 4.962, + 5.045, + 5.045, + 5.045, + 5.045, + 5, + 5, + 5, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.968, + 4.936, + 4.936, + 4.936, + 4.936, + 4.936, + 4.921, + 4.921, + 4.918, + 4.918, + 4.912, + 4.912, + 4.912, + 4.912, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.86, + 4.827, + 4.827, + 4.827, + 4.794, + 4.794, + 4.794, + 4.794, + 4.76, + 4.76, + 4.7, + 4.7, + 4.7, + 4.663, + 4.663, + 4.663, + 4.592, + 4.592, + 4.474, + 4.474, + 4.406, + 4.343, + 4.343, + 4.286, + 4.286, + 4.245, + 4.223, + 4.223, + 4.223, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.191, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.153, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.12, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.076, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 4.021, + 3.053, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.811, + 1.799, + 1.799, + 1.799, + 1.799, + 1.799, + 1.799, + 1.799, + 1.799, + 1.799, + 1.778, + 1.778, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.757, + 1.726, + 1.726, + 1.726, + 1.726, + 1.726, + 1.726, + 1.726, + 1.726, + 1.726, + 1.703, + 1.703, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.687, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.663, + 1.65, + 1.65, + 1.65, + 1.65, + 1.65, + 1.64, + 1.64, + 1.64, + 1.64, + 1.629, + 1.614, + 1.614, + 1.614, + 1.614, + 1.614, + 1.614, + 1.602, + 1.602, + 1.602, + 1.602, + 1.602, + 1.584, + 1.584, + 1.56, + 1.56, + 1.56, + 1.56, + 1.556, + 1.556, + 1.556, + 1.556, + 1.556, + 1.548, + 1.548, + 1.548, + 1.548, + 1.548, + 1.538, + 1.538, + 1.538, + 1.538, + 1.538, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.531, + 1.52, + 1.52, + 1.52, + 1.52, + 1.52, + 1.51, + 1.51, + 1.498, + 1.498, + 1.498, + 1.498, + 1.498, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.483, + 1.479, + 1.479, + 1.479, + 1.466, + 1.466, + 1.466, + 1.466, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.453, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.445, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.435, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.423, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.415, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.41, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.405, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.406, + 1.4, + 1.4, + 1.4, + 1.4, + 1.392, + 1.392, + 1.392, + 1.392, + 1.392, + 1.384, + 1.372, + 1.372, + 1.372, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.365, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.354, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.344, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.334, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.327, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.313, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.299, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.291, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.25, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.244, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.259, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.264, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.27, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.266, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.262, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.281, + 1.286, + 1.286, + 1.286, + 1.286, + 1.286, + 1.286, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.268, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.26, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.252, + 1.244, + 1.235, + 1.235, + 1.235, + 1.235, + 1.235, + 1.224, + 1.215, + 1.215, + 1.215, + 1.215, + 1.206, + 1.206, + 1.099, + 1.099, + 1.099, + 1.085, + 1.085, + 1.085, + 1.085, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.072, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.059, + 1.048, + 1.048, + 1.048, + 1.048, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.018, + 1.007, + 1.007, + 0.944, + 0.933, + 0.921, + 0.908, + 0.908, + 0.908, + 0.908, + 0.908, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.883, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.873, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.869, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.859, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.854, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.851, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.849, + 0.843, + 0.843, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.838, + 0.834, + 0.834, + 0.834, + 0.834, + 0.829, + 0.829, + 0.829, + 0.829, + 0.829, + 0.829, + 0.825, + 0.825, + 0.825, + 0.825, + 0.825, + 0.821, + 0.821, + 0.821, + 0.821, + 0.821, + 0.819, + 0.819, + 0.819, + 0.819, + 0.813, + 0.813, + 0.813, + 0.809, + 0.809, + 0.809, + 0.809, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.803, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.788, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.781, + 0.778, + 0.778, + 0.778, + 0.778, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.773, + 0.771, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.768, + 0.768, + 0.768, + 0.766, + 0.762, + 0.762, + 0.762, + 0.755, + 0.755, + 0.755, + 0.755, + 0.755, + 0.755, + 0.749, + 0.741, + 0.741, + 0.739, + 0.75, + 0.75, + 0.753, + 0.753, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.752, + 0.744, + 0.744, + 0.744, + 0.744, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.741, + 0.741, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.743, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.742, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.74, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.737, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.735, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.733, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.73, + 0.731, + 0.731, + 0.731, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.728, + 0.724, + 0.724, + 0.724, + 0.724, + 0.724, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.722, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.719, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.716, + 0.718, + 0.718, + 0.719, + 0.721, + 0.721, + 0.721, + 0.72, + 0.72, + 0.72, + 0.72, + 0.718, + 0.718, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.717, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.714, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.712, + 0.712, + 0.712, + 0.712, + 0.71, + 0.71, + 0.71, + 0.71, + 0.709, + 0.709, + 0.709, + 0.708, + 0.708, + 0.708, + 0.708, + 0.706, + 0.707, + 0.707, + 0.707, + 0.707, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.706, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.707, + 0.7, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.655, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.654, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.653, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.652, + 0.651, + 0.651, + 0.651, + 0.65, + 0.65, + 0.65, + 0.65, + 0.649, + 0.649, + 0.649, + 0.649, + 0.649, + 0.649, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.644, + 0.644, + 0.643, + 0.643, + 0.643, + 0.643, + 0.643, + 0.643, + 0.639, + 0.639, + 0.639, + 0.639, + 0.639, + 0.637, + 0.637, + 0.635, + 0.635, + 0.635, + 0.636, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.634, + 0.634, + 0.634, + 0.634, + 0.634, + 0.634, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.635, + 0.638, + 0.638, + 0.638, + 0.638, + 0.639, + 0.64, + 0.64, + 0.64, + 0.64, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.643, + 0.643, + 0.643, + 0.643, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.642, + 0.644, + 0.644, + 0.644, + 0.644, + 0.644, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.645, + 0.646, + 0.646, + 0.646, + 0.646, + 0.646, + 0.654, + 0.659, + 0.659, + 0.659, + 0.659, + 0.659, + 0.659, + 0.659, + 0.659, + 0.663, + 0.663, + 0.663, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.668, + 0.672, + 0.672, + 0.672, + 0.672, + 0.672, + 0.677, + 0.677, + 0.677, + 0.677, + 0.677, + 0.677, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.682, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.683, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.684, + 0.685, + 0.685, + 0.685, + 0.685, + 0.685, + 0.688, + 0.688, + 0.688, + 0.69, + 0.69, + 0.692, + 0.692, + 0.692, + 0.692, + 0.692, + 0.695, + 0.695, + 0.695, + 0.695, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.697, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.699, + 0.701, + 0.701, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.702, + 0.704, + 0.704, + 0.704, + 0.704, + 0.704, + 0.711, + 0.713, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.715, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.72, + 0.723, + 0.723, + 0.723, + 0.723, + 0.723, + 0.723, + 0.727, + 0.727, + 0.727, + 0.729, + 0.729, + 0.729, + 0.729, + 0.729, + 0.732, + 0.732, + 0.737, + 0.737, + 0.737, + 0.739, + 0.739, + 0.739, + 0.739, + 0.739, + 0.742, + 0.742, + 0.748, + 0.748, + 0.748, + 0.748, + 0.748, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.754, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.761, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.767, + 0.782, + 0.782, + 0.782, + 0.79, + 0.79, + 0.79, + 0.79, + 0.79, + 0.79, + 0.793, + 0.793, + 0.793, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.797, + 0.802, + 0.802, + 0.802, + 0.802, + 0.802, + 0.81, + 0.81, + 0.81, + 0.81, + 0.81, + 0.81, + 0.81, + 0.822, + 0.822, + 0.822, + 0.822, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.827, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.835, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.846, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.861, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.87, + 0.876, + 0.876, + 0.876, + 0.881, + 0.881, + 0.881, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.885, + 0.885, + 0.885, + 0.885, + 0.885, + 0.885, + 0.885, + 0.889, + 0.889, + 0.889, + 0.889, + 0.889, + 0.889, + 0.893, + 0.893, + 0.893, + 0.893, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.898, + 0.898, + 0.898, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.9, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.905, + 0.905, + 0.905, + 0.905, + 0.905, + 0.905, + 0.905, + 0.905, + 0.905, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.904, + 0.903, + 0.903, + 0.903, + 0.903, + 0.903, + 0.903, + 0.903, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.899, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.898, + 0.896, + 0.896, + 0.896, + 0.896, + 0.896, + 0.895, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.886, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.884, + 0.883, + 0.883, + 0.883, + 0.883, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.882, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.881, + 0.88, + 0.88, + 0.88, + 0.88, + 0.88, + 0.88, + 0.88, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.878, + 0.878, + 0.878, + 0.879, + 0.879, + 0.879, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.877, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.876, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.876, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.878, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.879, + 0.88, + 0.88, + 0.886, + 0.886, + 0.886, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.959, + 0.965, + 0.972, + 0.972, + 0.972, + 0.972, + 0.972, + 0.972, + 0.972, + 0.977, + 0.977, + 0.977, + 0.977, + 0.977, + 0.982, + 0.982, + 0.982, + 0.982, + 0.982, + 0.985, + 0.985, + 0.985, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.987, + 0.993, + 0.993, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1.008, + 1.008, + 1.016, + 1.016, + 1.016, + 1.025, + 1.025, + 1.025, + 1.025, + 1.025, + 1.025, + 1.025, + 1.025, + 1.025, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.029, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.032, + 1.037, + 1.037, + 1.037, + 1.037, + 1.043, + 1.043, + 1.043, + 1.043, + 1.043, + 1.043, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.05, + 1.049, + 1.049, + 1.049, + 1.049, + 1.048, + 1.05, + 1.05, + 1.049, + 1.049, + 1.046, + 1.046, + 1.046, + 1.046, + 1.044, + 1.044, + 1.044, + 1.044, + 1.044, + 1.041, + 1.041, + 1.041, + 1.041, + 1.04, + 1.04, + 1.04, + 1.04, + 1.04, + 1.04, + 1.04, + 1.039, + 1.039, + 1.039, + 1.035, + 1.035, + 1.035, + 1.035, + 1.035, + 1.03, + 1.03, + 1.031, + 1.031, + 1.031, + 1.031, + 1.031, + 1.028, + 1.028, + 1.028 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "euribor3m" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=no
nr.employed=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5176.3, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6 + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=yes
nr.employed=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "opacity": 0.7, + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5191, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5228.1, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5195.8, + 5176.3, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5099.1, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5076.2, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5017.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5023.5, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 5008.7, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4991.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6, + 4963.6 + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "nr.employed" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Define a function to plot histograms of numerical features\n", + "\n", + "def hist_plot(column):\n", + " fig = px.histogram(df1, x=column, color='y', opacity=0.7)\n", + " fig.show()\n", + "for col in numerical_cols:\n", + " hist_plot(col)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "7f5259bf", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=%{x}
count=%{y}", + "legendgroup": "no", + "marker": { + "color": "#636efa", + "pattern": { + "shape": "" + } + }, + "name": "no", + "offsetgroup": "no", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no", + "no" + ], + "xaxis": "x", + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "bingroup": "x", + "hovertemplate": "y=%{x}
count=%{y}", + "legendgroup": "yes", + "marker": { + "color": "#EF553B", + "pattern": { + "shape": "" + } + }, + "name": "yes", + "offsetgroup": "yes", + "orientation": "v", + "showlegend": true, + "type": "histogram", + "x": [ + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes", + "yes" + ], + "xaxis": "x", + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "legend": { + "title": { + "text": "y" + }, + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Distribution of the Target Variable y" + }, + "xaxis": { + "anchor": "y", + "categoryarray": [ + "no", + "yes" + ], + "categoryorder": "array", + "domain": [ + 0, + 1 + ], + "title": { + "text": "y" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "count" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Assuming df1 is your DataFrame and 'y' is your target variable\n", + "fig = px.histogram(df1, x='y', color='y')\n", + "fig.update_layout(title='Distribution of the Target Variable y')\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "7af41320", + "metadata": {}, + "outputs": [], + "source": [ + "# Drop the 'default' column from the dataset\n", + "df2=df1.drop(['default'], axis=1) " + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "2a12724c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['age', 'job', 'marital', 'education', 'housing', 'loan', 'contact',\n", + " 'month', 'day_of_week', 'duration', 'campaign', 'pdays', 'previous',\n", + " 'poutcome', 'emp.var.rate', 'cons.price.idx', 'cons.conf.idx',\n", + " 'euribor3m', 'nr.employed', 'y'],\n", + " dtype='object')" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df2.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "f02301b7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['job', 'marital', 'education', 'housing', 'loan', 'contact', 'month',\n", + " 'day_of_week', 'poutcome', 'y'],\n", + " dtype='object')" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "categorical_cols = df2.select_dtypes(include=['object', 'category']).columns\n", + "categorical_cols" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "bb7c0b4e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
agejobmaritaleducationhousingloancontactmonthday_of_weekdurationcampaignpdayspreviouspoutcomeemp.var.ratecons.price.idxcons.conf.idxeuribor3mnr.employedy
056310001612611999011.193.994-36.44.8575191.00
237713101612261999011.193.994-36.44.8575191.00
340011001611511999011.193.994-36.44.8575191.00
456713011613071999011.193.994-36.44.8575191.00
659015001611391999011.193.994-36.44.8575191.00
\n", + "
" + ], + "text/plain": [ + " age job marital education housing loan contact month day_of_week \\\n", + "0 56 3 1 0 0 0 1 6 1 \n", + "2 37 7 1 3 1 0 1 6 1 \n", + "3 40 0 1 1 0 0 1 6 1 \n", + "4 56 7 1 3 0 1 1 6 1 \n", + "6 59 0 1 5 0 0 1 6 1 \n", + "\n", + " duration campaign pdays previous poutcome emp.var.rate \\\n", + "0 261 1 999 0 1 1.1 \n", + "2 226 1 999 0 1 1.1 \n", + "3 151 1 999 0 1 1.1 \n", + "4 307 1 999 0 1 1.1 \n", + "6 139 1 999 0 1 1.1 \n", + "\n", + " cons.price.idx cons.conf.idx euribor3m nr.employed y \n", + "0 93.994 -36.4 4.857 5191.0 0 \n", + "2 93.994 -36.4 4.857 5191.0 0 \n", + "3 93.994 -36.4 4.857 5191.0 0 \n", + "4 93.994 -36.4 4.857 5191.0 0 \n", + "6 93.994 -36.4 4.857 5191.0 0 " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Encode the categorical features using LabelEncoder\n", + "from sklearn.preprocessing import LabelEncoder\n", + "le = LabelEncoder()\n", + "for col in categorical_cols:\n", + " df2[col] = le.fit_transform(df2[col])\n", + "df2.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "c7ff38d3", + "metadata": {}, + "outputs": [], + "source": [ + "X=df2.drop('y',axis=1)\n", + "y=df2['y']" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "2f812e5c", + "metadata": {}, + "outputs": [], + "source": [ + "# Encode the categorical features using LabelEncoder\n", + "\n", + "from sklearn.preprocessing import StandardScaler\n", + "scaler = StandardScaler()\n", + "X_scaled = scaler.fit_transform(X)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "e9b0094e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(22866, 19) (7622, 19)\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "X_train,X_test,y_train,y_test=train_test_split(X_scaled,y, random_state=42)\n", + "print(X_train.shape,X_test.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "886cce3f", + "metadata": {}, + "outputs": [], + "source": [ + "# Define a function to train a model and print its metrics\n", + "\n", + "def train(model_name, model):\n", + " model.fit(X_train, y_train)\n", + " y_pred=model.predict(X_test)\n", + " accuracy=accuracy_score(y_test, y_pred)\n", + " precision=precision_score(y_test, y_pred)\n", + " recall=recall_score(y_test, y_pred)\n", + " f1=f1_score(y_test, y_pred)\n", + " \n", + " metrics[model_name]={\n", + " 'Accuracy': accuracy,\n", + " 'Precision': precision,\n", + " 'Recall': recall,\n", + " 'F1 Score': f1\n", + " }\n", + " \n", + " print(f\"{model_name}'s Metrics:\")\n", + " print(f\" Accuracy: {round(accuracy * 100, 2)}%\")\n", + " print(f\" Precision: {round(precision, 2)}\")\n", + " print(f\" Recall: {round(recall, 2)}\")\n", + " print(f\" F1 Score: {round(f1, 2)}\")\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "a18f74c9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Random Forest's Metrics:\n", + " Accuracy: 87.4%\n", + " Precision: 0.5\n", + " Recall: 0.87\n", + " F1 Score: 0.64\n", + "\n", + "Decision Tree's Metrics:\n", + " Accuracy: 88.09%\n", + " Precision: 0.53\n", + " Recall: 0.53\n", + " F1 Score: 0.53\n", + "\n", + "KNN's Metrics:\n", + " Accuracy: 89.07%\n", + " Precision: 0.61\n", + " Recall: 0.39\n", + " F1 Score: 0.47\n", + "\n", + "XGBoost's Metrics:\n", + " Accuracy: 90.11%\n", + " Precision: 0.63\n", + " Recall: 0.54\n", + " F1 Score: 0.58\n", + "\n", + "Adaboost's Metrics:\n", + " Accuracy: 89.98%\n", + " Precision: 0.68\n", + " Recall: 0.4\n", + " F1 Score: 0.5\n", + "\n", + "Logistic Regression's Metrics:\n", + " Accuracy: 89.95%\n", + " Precision: 0.67\n", + " Recall: 0.41\n", + " F1 Score: 0.51\n", + "\n", + "Naive Bayes's Metrics:\n", + " Accuracy: 82.98%\n", + " Precision: 0.39\n", + " Recall: 0.57\n", + " F1 Score: 0.46\n", + "\n", + "SVC's Metrics:\n", + " Accuracy: 89.69%\n", + " Precision: 0.67\n", + " Recall: 0.37\n", + " F1 Score: 0.48\n", + "\n" + ] + } + ], + "source": [ + "# Import classifiers and metrics\n", + "\n", + "from sklearn.ensemble import RandomForestClassifier, AdaBoostClassifier\n", + "from sklearn.tree import DecisionTreeClassifier\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "from sklearn.linear_model import LogisticRegression\n", + "from xgboost import XGBClassifier\n", + "from sklearn.svm import SVC\n", + "from sklearn.naive_bayes import GaussianNB\n", + "from sklearn.metrics import accuracy_score, precision_score, recall_score, f1_score\n", + "\n", + "metrics = {}\n", + "\n", + "# Train and Evaluate the models\n", + "\n", + "rf = RandomForestClassifier(max_depth=10, class_weight='balanced', random_state=42, n_estimators=120)\n", + "train('Random Forest', rf)\n", + "\n", + "dt = DecisionTreeClassifier()\n", + "train('Decision Tree', dt)\n", + "\n", + "knn = KNeighborsClassifier()\n", + "train('KNN', knn)\n", + "\n", + "xgb = XGBClassifier()\n", + "train('XGBoost', xgb)\n", + "\n", + "ada = AdaBoostClassifier()\n", + "train('Adaboost', ada)\n", + "\n", + "lr = LogisticRegression()\n", + "train('Logistic Regression', lr)\n", + "\n", + "nb = GaussianNB()\n", + "train('Naive Bayes', nb)\n", + "\n", + "svc = SVC()\n", + "train('SVC', svc)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "e89fcf76", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
AccuracyPrecisionRecallF1 Score
Random Forest0.8740490.5026930.8668730.636364
Decision Tree0.8808710.5314110.5325080.531959
KNN0.8907110.6111110.3859650.473118
XGBoost0.9010760.6296740.5387000.580645
Adaboost0.8997640.6814160.3973170.501956
Logistic Regression0.8995010.6711640.4107330.509603
Naive Bayes0.8298350.3862690.5748190.462049
SVC0.8968770.6697590.3725490.478780
\n", + "
" + ], + "text/plain": [ + " Accuracy Precision Recall F1 Score\n", + "Random Forest 0.874049 0.502693 0.866873 0.636364\n", + "Decision Tree 0.880871 0.531411 0.532508 0.531959\n", + "KNN 0.890711 0.611111 0.385965 0.473118\n", + "XGBoost 0.901076 0.629674 0.538700 0.580645\n", + "Adaboost 0.899764 0.681416 0.397317 0.501956\n", + "Logistic Regression 0.899501 0.671164 0.410733 0.509603\n", + "Naive Bayes 0.829835 0.386269 0.574819 0.462049\n", + "SVC 0.896877 0.669759 0.372549 0.478780" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Convert the metrics dictionary to a DataFrame for better visualization\n", + "\n", + "metrics_df=pd.DataFrame(data=metrics)\n", + "metrics_df=metrics_df.T\n", + "metrics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "284c8458", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ModelsAccuracyPrecisionRecallF1 Score
0Random Forest0.8740490.5026930.8668730.636364
1Decision Tree0.8808710.5314110.5325080.531959
2KNN0.8907110.6111110.3859650.473118
3XGBoost0.9010760.6296740.5387000.580645
4Adaboost0.8997640.6814160.3973170.501956
5Logistic Regression0.8995010.6711640.4107330.509603
6Naive Bayes0.8298350.3862690.5748190.462049
7SVC0.8968770.6697590.3725490.478780
\n", + "
" + ], + "text/plain": [ + " Models Accuracy Precision Recall F1 Score\n", + "0 Random Forest 0.874049 0.502693 0.866873 0.636364\n", + "1 Decision Tree 0.880871 0.531411 0.532508 0.531959\n", + "2 KNN 0.890711 0.611111 0.385965 0.473118\n", + "3 XGBoost 0.901076 0.629674 0.538700 0.580645\n", + "4 Adaboost 0.899764 0.681416 0.397317 0.501956\n", + "5 Logistic Regression 0.899501 0.671164 0.410733 0.509603\n", + "6 Naive Bayes 0.829835 0.386269 0.574819 0.462049\n", + "7 SVC 0.896877 0.669759 0.372549 0.478780" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "metrics_df=metrics_df.reset_index()\n", + "metrics_df.rename(columns={'index': 'Models'}, inplace=True)\n", + "metrics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "b4a568d2", + "metadata": {}, + "outputs": [], + "source": [ + "colors = {\n", + " 'Accuracy': '#1f77b4', \n", + " 'Precision': '#ff7f0e', \n", + " 'Recall': '#2ca02c', \n", + " 'F1 Score': '#d62728' \n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "b326a205", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "Models=%{x}
Accuracy=%{y}", + "legendgroup": "", + "line": { + "color": "#1f77b4", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "Random Forest", + "Decision Tree", + "KNN", + "XGBoost", + "Adaboost", + "Logistic Regression", + "Naive Bayes", + "SVC" + ], + "xaxis": "x", + "y": [ + 0.874048806087641, + 0.8808711624245604, + 0.8907110994489635, + 0.9010758331146681, + 0.8997638415114143, + 0.8995014431907635, + 0.8298346890579901, + 0.896877459984256 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "lakecolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "showlakes": true, + "showland": true, + "subunitcolor": "#506784" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "dark" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "bordercolor": "rgb(17,17,17)", + "borderwidth": 1, + "tickwidth": 0 + }, + "ternary": { + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "xaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Accuracy Over Models" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Models" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Accuracy" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot accuracy across different models\n", + "\n", + "fig_accuracy = px.line(metrics_df, x=metrics_df['Models'], y='Accuracy', title='Accuracy Over Models', \n", + " template='plotly_dark', color_discrete_sequence=[colors['Accuracy']])\n", + "\n", + "fig_accuracy.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "ab3e62ed", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "Models=%{x}
Precision=%{y}", + "legendgroup": "", + "line": { + "color": "#ff7f0e", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "Random Forest", + "Decision Tree", + "KNN", + "XGBoost", + "Adaboost", + "Logistic Regression", + "Naive Bayes", + "SVC" + ], + "xaxis": "x", + "y": [ + 0.5026929982046678, + 0.5314109165808445, + 0.6111111111111112, + 0.6296743063932448, + 0.6814159292035398, + 0.6711635750421585, + 0.38626907073509015, + 0.6697588126159555 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "lakecolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "showlakes": true, + "showland": true, + "subunitcolor": "#506784" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "dark" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "bordercolor": "rgb(17,17,17)", + "borderwidth": 1, + "tickwidth": 0 + }, + "ternary": { + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "xaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Precision Over Models" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Models" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Precision" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot precision across different models\n", + "\n", + "fig_precision = px.line(metrics_df, x=metrics_df['Models'], y='Precision', title='Precision Over Models', \n", + " template='plotly_dark', color_discrete_sequence=[colors['Precision']])\n", + "fig_precision.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "3556eb90", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "Models=%{x}
Recall=%{y}", + "legendgroup": "", + "line": { + "color": "#2ca02c", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "Random Forest", + "Decision Tree", + "KNN", + "XGBoost", + "Adaboost", + "Logistic Regression", + "Naive Bayes", + "SVC" + ], + "xaxis": "x", + "y": [ + 0.8668730650154799, + 0.5325077399380805, + 0.38596491228070173, + 0.5386996904024768, + 0.3973168214654283, + 0.4107327141382869, + 0.5748194014447885, + 0.37254901960784315 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "lakecolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "showlakes": true, + "showland": true, + "subunitcolor": "#506784" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "dark" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "bordercolor": "rgb(17,17,17)", + "borderwidth": 1, + "tickwidth": 0 + }, + "ternary": { + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "xaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Recall Over Models" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Models" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Recall" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot recall across different models\n", + "\n", + "fig_recall = px.line(metrics_df, x=metrics_df['Models'], y='Recall', title='Recall Over Models', \n", + " template='plotly_dark', color_discrete_sequence=[colors['Recall']])\n", + "fig_recall.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "d18532dc", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertemplate": "Models=%{x}
F1 Score=%{y}", + "legendgroup": "", + "line": { + "color": "#d62728", + "dash": "solid" + }, + "marker": { + "symbol": "circle" + }, + "mode": "lines", + "name": "", + "orientation": "v", + "showlegend": false, + "type": "scatter", + "x": [ + "Random Forest", + "Decision Tree", + "KNN", + "XGBoost", + "Adaboost", + "Logistic Regression", + "Naive Bayes", + "SVC" + ], + "xaxis": "x", + "y": [ + 0.6363636363636365, + 0.5319587628865979, + 0.4731182795698925, + 0.5806451612903226, + 0.5019556714471969, + 0.5096030729833547, + 0.4620489423475736, + 0.47877984084880637 + ], + "yaxis": "y" + } + ], + "layout": { + "legend": { + "tracegroupgap": 0 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#f2f5fa" + }, + "error_y": { + "color": "#f2f5fa" + }, + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "rgb(17,17,17)", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "baxis": { + "endlinecolor": "#A2B1C6", + "gridcolor": "#506784", + "linecolor": "#506784", + "minorgridcolor": "#506784", + "startlinecolor": "#A2B1C6" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "line": { + "color": "#283442" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#506784" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "header": { + "fill": { + "color": "#2a3f5f" + }, + "line": { + "color": "rgb(17,17,17)" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#f2f5fa", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#f2f5fa" + }, + "geo": { + "bgcolor": "rgb(17,17,17)", + "lakecolor": "rgb(17,17,17)", + "landcolor": "rgb(17,17,17)", + "showlakes": true, + "showland": true, + "subunitcolor": "#506784" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "dark" + }, + "paper_bgcolor": "rgb(17,17,17)", + "plot_bgcolor": "rgb(17,17,17)", + "polar": { + "angularaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "radialaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "yaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + }, + "zaxis": { + "backgroundcolor": "rgb(17,17,17)", + "gridcolor": "#506784", + "gridwidth": 2, + "linecolor": "#506784", + "showbackground": true, + "ticks": "", + "zerolinecolor": "#C8D4E3" + } + }, + "shapedefaults": { + "line": { + "color": "#f2f5fa" + } + }, + "sliderdefaults": { + "bgcolor": "#C8D4E3", + "bordercolor": "rgb(17,17,17)", + "borderwidth": 1, + "tickwidth": 0 + }, + "ternary": { + "aaxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "baxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + }, + "bgcolor": "rgb(17,17,17)", + "caxis": { + "gridcolor": "#506784", + "linecolor": "#506784", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "updatemenudefaults": { + "bgcolor": "#506784", + "borderwidth": 0 + }, + "xaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "#283442", + "linecolor": "#506784", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "#283442", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "F1 Score Over Models" + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "Models" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "F1 Score" + } + } + } + }, + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot F1 score across different models\n", + "\n", + "fig_f1 = px.line(metrics_df, x=metrics_df['Models'], y='F1 Score', title='F1 Score Over Models', \n", + " template='plotly_dark', color_discrete_sequence=[colors['F1 Score']])\n", + "fig_f1.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "9b30cea8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ModelsAccuracyPrecisionRecallF1 Score
0Random Forest0.8740490.5026930.8668730.636364
1Decision Tree0.8808710.5314110.5325080.531959
2KNN0.8907110.6111110.3859650.473118
3XGBoost0.9010760.6296740.5387000.580645
4Adaboost0.8997640.6814160.3973170.501956
5Logistic Regression0.8995010.6711640.4107330.509603
6Naive Bayes0.8298350.3862690.5748190.462049
7SVC0.8968770.6697590.3725490.478780
\n", + "
" + ], + "text/plain": [ + " Models Accuracy Precision Recall F1 Score\n", + "0 Random Forest 0.874049 0.502693 0.866873 0.636364\n", + "1 Decision Tree 0.880871 0.531411 0.532508 0.531959\n", + "2 KNN 0.890711 0.611111 0.385965 0.473118\n", + "3 XGBoost 0.901076 0.629674 0.538700 0.580645\n", + "4 Adaboost 0.899764 0.681416 0.397317 0.501956\n", + "5 Logistic Regression 0.899501 0.671164 0.410733 0.509603\n", + "6 Naive Bayes 0.829835 0.386269 0.574819 0.462049\n", + "7 SVC 0.896877 0.669759 0.372549 0.478780" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "metrics_df" + ] + }, + { + "cell_type": "markdown", + "id": "e89e41c6", + "metadata": {}, + "source": [ + "## Conclusion\n", + "\n", + "The model metrics on the unbalanced dataset reveal the following:\n", + "\n", + "- **Accuracy**: All models exhibit high accuracy (>82%), with XGBoost leading at 90.11%. However, this can be misleading in unbalanced datasets.\n", + "- **Precision**: Adaboost (0.68) and Logistic Regression (0.67) have the highest precision, indicating fewer false positives.\n", + "- **Recall**: Random Forest (0.87) excels in recall, capturing more positive cases effectively.\n", + "- **F1 Score**: Random Forest (0.63) balances precision and recall best, making it the most reliable overall.\n", + "\n", + "**Random Forest** emerges as the top performer due to its high recall and balanced F1 score. Ensemble methods like XGBoost and Adaboost also perform well, especially in precision. To further improve performance, balancing the dataset is recommended." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b04eb1a6", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From be5c3a26ef8d337af4b0a70e862fbc64218752ae Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:24:13 +0530 Subject: [PATCH 7/8] Create README.md --- Term Deposit Prediction/Images/README.md | 61 ++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 Term Deposit Prediction/Images/README.md diff --git a/Term Deposit Prediction/Images/README.md b/Term Deposit Prediction/Images/README.md new file mode 100644 index 000000000..9258b4111 --- /dev/null +++ b/Term Deposit Prediction/Images/README.md @@ -0,0 +1,61 @@ +1. **Age Distribution**: + - Most clients are in the age range of 30-40 years. + - Age distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2c7fae04-f030-4e9c-b3e3-e621390a6d2d) + + +2. **Job Distribution**: + - The most common job types are blue-collar, management, and technician. + - Job distribution is visualized using a bar chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/b0d6a595-40c0-46f5-9b2f-3b2ac2728097) + + +3. **Education Level**: + - Most clients have a university degree, followed by high school education. + - Education distribution is visualized using a bar chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/11d9f16c-7233-4e3d-b7d4-21e387123f92) + + +4. **Loan Status**: + - Majority of clients do not have personal loans, housing loans, or defaults. + - Loan status distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/a14127e0-d8fc-4b78-a9ad-9d573d0ef489) + + +5. **Marital Status**: + - Most clients are married, followed by single and divorced. + - Marital status distribution is visualized using a pie chart. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2de201d4-a4d4-4d4a-8b39-587068057977) + + +6. **Contact Type**: + - The preferred contact type is cellular. + - Contact type distribution is visualized using a histogram. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/e6de612d-8229-4aef-93f3-2abcd6ce78a7) + + +7. **Call Duration**: + - Total call duration peaks in certain months and days of the week. + - Call duration by month and day is visualized using line charts. + + +
+ + +
+ +8. **Correlation Analysis**: + - Heatmap reveals the correlation between numerical features. + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/2b5505c4-b4c4-4a43-bfe0-87065db6f15a) + + +9. **Models Performance Comparision**: + + ![image](https://github.com/Sgvkamalakar/Sgvkamalakar/assets/103712713/8ecf69f4-e2da-4ead-8683-0ce3c14ad324) From 6ee296703d9d8fba48b30cbef2ecd35a84bf77d3 Mon Sep 17 00:00:00 2001 From: Kamalakar Satapathi <103712713+Sgvkamalakar@users.noreply.github.com> Date: Tue, 9 Jul 2024 01:25:09 +0530 Subject: [PATCH 8/8] Add files via upload --- Term Deposit Prediction/Images/img1.png | Bin 0 -> 38676 bytes Term Deposit Prediction/Images/img10.png | Bin 0 -> 14783 bytes Term Deposit Prediction/Images/img11.png | Bin 0 -> 31053 bytes Term Deposit Prediction/Images/img12.png | Bin 0 -> 34658 bytes Term Deposit Prediction/Images/img13.png | Bin 0 -> 34119 bytes Term Deposit Prediction/Images/img14.png | Bin 0 -> 31349 bytes Term Deposit Prediction/Images/img2.png | Bin 0 -> 45380 bytes Term Deposit Prediction/Images/img3.png | Bin 0 -> 29297 bytes Term Deposit Prediction/Images/img4.png | Bin 0 -> 33447 bytes Term Deposit Prediction/Images/img5.png | Bin 0 -> 27035 bytes Term Deposit Prediction/Images/img6.png | Bin 0 -> 11620 bytes Term Deposit Prediction/Images/img7.png | Bin 0 -> 38371 bytes Term Deposit Prediction/Images/img8.png | Bin 0 -> 33485 bytes Term Deposit Prediction/Images/img9.png | Bin 0 -> 109066 bytes 14 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 Term Deposit Prediction/Images/img1.png create mode 100644 Term Deposit Prediction/Images/img10.png create mode 100644 Term Deposit Prediction/Images/img11.png create mode 100644 Term Deposit Prediction/Images/img12.png create mode 100644 Term Deposit Prediction/Images/img13.png create mode 100644 Term Deposit Prediction/Images/img14.png create mode 100644 Term Deposit Prediction/Images/img2.png create mode 100644 Term Deposit Prediction/Images/img3.png create mode 100644 Term Deposit Prediction/Images/img4.png create mode 100644 Term Deposit Prediction/Images/img5.png create mode 100644 Term Deposit Prediction/Images/img6.png create mode 100644 Term Deposit Prediction/Images/img7.png create mode 100644 Term Deposit Prediction/Images/img8.png create mode 100644 Term Deposit Prediction/Images/img9.png diff --git a/Term Deposit Prediction/Images/img1.png b/Term Deposit Prediction/Images/img1.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ae9c1b2a641e0df8b121f101596ee7a95a2bd2 GIT binary patch literal 38676 zcmeFZXH-*N_dOblf=E+DMXFeUAgC0P8ahaCp;wVEAcWpU1OX|6bO^mAgx;%wh?GbN z=_1m52?0Xjp7=cP`}^N<%ZEGehx_4X4E12hK6~xG_FQw#wNAn{)D);F?ofb0AgULN zvRWVzDJKX-{Dk~6@ISKRhEIThh+tX@(xB2GOl!aoq&8BjQXo)8%+)iCOTf=p-Y6Qt zKp^T)!XKh;=b~32P-5{5St%Va)6Ll{emY~b7kfJ@*NH96I_}ice)-N0j`%?QjPth^ zQjzu1OG_j@YIOvx>iDTvG3iEAef95=uF(%#Jmb1XI{jvna=9NqeUJ(%zw=i1mFjnq ziv~}%xE_fsFRXFRW@Xdqu$@OQ@_PD(+73jilhT0M0I##}b`r#Yua2pR2r~qMc14K^ z27*ApJV|f-z4)?24wwnNg66Mj{Jj9R-OKvtB0xcs=JU)$`dZ=_$f2+)s5Lcwp1*6LZrJUxwcB?3BizH*#`WwmgfqBW#Fd8bu661ohK({y)SI z=G%HhBWBO{Dx| zvwE~vtW@QcmQreGZ4iXDgz_fo!+Gd;rm~hGjWR1g>t5(3y1xsBPd~Q`r0x@NOmxpQ z5_DXkK+Qq9&5MmIHRt)R;b4c2G{Li7`I)BQ%m zvcBW3aZyx;mAfu2Za-nYdJRZz!L8*su%l&m1iInj)=8aHrlmi%sE)>~3{I%jk*J|- zw{y*Dkbk6yPEiSDws3>>XV%1#ZXl%6)L(PH(e4vVsY$}i={&2tS=5I1yk_DF%gvP? zjj5PKJ8utuA5o_7gIhv)-99rk|2)~+@f=gW_%5BvsbuI;-BcRRujSM}dNdGG5S^Ga z054z^c~REVSbToYzCEz9?F|`<3xo!kZeK`Caz#?e=-@Qy~gQ_b*^{8}$AFdNNa-Jtj_^RRbuemEy@ zd);=H^Vy3Sl(J@}AY8y~12vtTd$j+7D&s zvG*2|3*&)V4-Htc%R-GC^5+%~4AP(Fzf$SAg{-8r=iCtTLB#Et6>+Cc!WTlx5*^kA z!y`7#)s9~d8{>VX;vQ1Ew!Ns8b<_Lp4lL`C*4_at7&&|X+q6h%ygBzJ)o4zpzp^&Y z*I%OQ=K92Zgi9b~*7-MNFTL~`G)BBtL+E29#*YTIGvCGUW)g_?+Hl&ca~=s{X58eF z&Mh;_GBbjSma^?-PTqOc3kPXW7Ow=kKiqSY6&eRb&{YkQv=c1b>fJNoyJ zoLlqq+ck)vdgbCeS9?+gzQev5{ho}Uy)Z(gi`S%S%0k<&l?|Kthc-f(I5BHzFR4-- zZu{I86H;`*vk5OM)}5*z!nf?E3sZUfEVg+Mr@UzN`XFreBH5M9~+} zT3oiYsT@9lWa)-M62?Bg#KdeDZAWRkpDFg0yjl5j&4ZEvkF<#${8`Uq3sp82WA!l= z>H=&QrSRj~rPQgV59bFn_V{0OR;k`&D3AE=ZU}js*4ayBw{*;H_XCybnBwc<(NCd_ zj!W@WN>$RqF?x0do?fxlDl|rT2?+!3TyP5n-Kz8atk3aYDz9oTmdD z+FVuK83JWa)5Y~-#IYQX0d@_het(P%U-LYDULivh_!v4cy7po)V3S#PMr6EL%~o_M zW99;ur_n7oa%9>1?RQ6_UfD4_2TX1vk=xgi$1d9Lo!FZjW4HnL%$|`@R08zIEWOYa zK08mRP>f?r_eJ!x=7sa05UITuu|kAjW#M+(=Kg7-mH-yUg5ZDb7I^%}(P|r$zL$8= zKD~VrrS*Hz`q}cXROT^h)54zv#=23wNOWV{EnVUM_aqy3N|TgJ!ai#Z*tSSRRT*TA zneAT6@VU)g={j!6W>rJIYHZU-I?_icfVr$CK_>GGVfIB2#E2u}r0F+jb8J|Q^ZK;r zG)r-4@BJ7X2WdJqxC(w2o>(@SGt&+|Ybp{C16=1%@G(X9B&%p$e;46DS?tP8)H zUaK=-3Fz`%E|i|GE6j5>#q3Pijx6trkP2o~z+xlU3wf)P%;B*AAzk|CB>Rg3=;^p4 zQcT&<-gbM1DL2x_8}t|Sc+&u7oCV4m7StmF?!gx&d#xm(g^iGTn=b6cbpPZ z`7cQe$)u&?5k>U7%3%&}22>U_IdAe3yBQiq_doyUF6!RVFV5Nd1~qM*JV|epsndfz^i6 z>;S~9SkGX!p$0 zojHlX>5zBm8<#bCRp7tC{H&cf~{8@cdded)UYTrGE#Z(_Jp6M|{A>KTO$5-ww zp%2{qSGNONIrLW7HxL&l8L+V!fyeIeo(gG&?E37~;M#ER~D* z^W_&^2+drp*fGgsxbhV0{H%$Z0l|IC&#X)$Ht%_v(4vc8{%YC0l1{Vt>grE@s`a@^ zeqrW#-ihH$i-LE@1zv7Sl+Ufyxn;CUUMMzXt=F1_-3OnXXWDI5_H8(MuZ^D#2+Pws z;q%X3E_BehUrJ=EZNrjGP;C+o#-1nFPpfqJ zcnooV#RC471<#JuEe9JKo#J%P&U||x?WM27CSSIk{#qKFr@^+>FwCE}j$e3}wj?+j zPZ&}O%$jw}a0h00&s?Z-K<5-R*W+W07+dQkAJ1u+(Ea7c3ttyp`7J@HrFdwn_jI4g zMq%J+Sz(>Uo4@bgWvBGq15N4f*%%$}<}yr`$*PK`z4^uBBI*quE!T zbi1Re-9IMcD`d!$d|&&!4WPSiu?VcviX(JB$r%Af(`?ij>xb2#o;Wof&Ug|+t} zgx2G><|>2Hf{a0NgWiaTy5e{)S(}};Dw6VP&MYfxkX>Xd8$QdtKGK(M+Vba|6XOws z^49s>0GxbsTSC&Bm5Q@^OaENIT?PtTkTBkcEs;sYBUkepEH><&B!`%0n}kQFsd>nO zgq{2q;R7Le_3XlXJ^vK>*+hf)k95hdhe-(4*_t^rXb9xgd_IoOi2TG$k`|z?$O?5~yPv0~iv@Orun;N5qmI`*qw1uHmM-E%O*Fd23XM{97 zSidXDtmq}yBVox&@1#_Hrn?aF9Xr4mHFAv-xLKpeCliyWZsl%2yf~C)K%nPT1Y<~3 zBJfSnQ;UM$%DEayXs|gIr~SsPwuo=DHr+R2_iu_Fz{siZ2o|uJV`4e+yCw++?O(@f z`X>jkfr;MNsbw&wJ{iy6vt$y1eb&wpO}h##sp;RLiz?OY5RbS=s2}#$1-|+bTA)G6 zX)o$fB4au52JG@#8;?tg2Y#7?paBr&iE$|B8x&}!u{6S6VoNoI-{aWYKsmvCbG`y-3gVIIYvtd76i(r%%mq5q8ZA5ad zx`mI1;}!(xM{kuF6xbDu_V-)b_qvKd;~wvy0l%Z-cZ@R6+V_rUeKC^bvYgk|z0zy= zslUK$Jnr*Pz0;2-hE0m^RIzs( zJHOpL6v_Uez$m82NLZ|_C@9m9iQ-$CLwl?NM(^8BDwO5}W{ru~Jr9#VS7b}K1=Oqb zv2u-UIP268T+;N95j1^wRr0$Wt;4&|#YOWLNXEM1 z40tko#F1?wN9S%vjbA4{?J=s4JfUonHSUx z8n1&TDG#)oBfz=|+@3U2mq4V5D_2$K!?@BmvvL~A`(z`2mY)YN56>? zorAr$p+aI%u++>TshyrF8nhq@e`Z@Gf84BdPcstid8JrHOqCDiC|_6baMGW{aHV02 zg)mXH#*s^++W9$$M@;xIcJ7JI+b?@_*6NuNkh6SaquT2_0EAWIp1-nn%&=kjf?X|iLTB6FDTbSQOU1wIv44H{&x%Z(aBsW}%ob~v~_?(~)2GR7^2Ih4@ z9*u-&&J_=_d2Nx$wY;!X8XWc&PoU*l>4aSZh4rC70&d8&)KrT+9t%X= zUzCGgcC^5Tyb|}>O|uTIjeXu*9Lf8}ez<`eb{Qnyoe6)Ww~Rv@IZc+8$v`e#@=`KF zH{GHPI8m?d!=i6;>Q||Z9Q8X*u(eOQzk;99nbHEXr$)@af77OUj@#B%*CDeU^fis@ z%xj&@sUnlbT=ATFmuN-K&j%9mrRSLrMvFEU0De@<$pvHTW0bMaV7S2%S;A2XDtcaS z)>YPO9!3Y|dS){;PR=4)XQ%P1wyZwdy9PTdaN6>nE%1BQ72Mk?L^FVDT54OR+kA>toUJS0QGv4Xgr)2V23%zKaobqW z61LcH!UJ|wQihtvm1}FwRs2Y{;b_}tk_?o!HFTd2M7ysvZ;aGNj_90EvcN9C4SksM z79~SADe7p}9X!TBFxJyg8fwXQ{_P~~T&L7N0GC#Qv>5cZg z0m(9Y{cr3$o@-Hn-sbNvWETHH*H|y7eIR-_hRL?+-xOE^Bv0YBsV72!o83>1Z@;h5 zS6B!}_x~v@dpFMu3X0W<+sm1C2!2CsE8fs#;&V8#y$YH zFX-qc;E0Iecgv50#t-Lf=#QLOo3NT6u7Y|443zoet1H_h-ZAmiA-MZXQdj)W?!nE? zHyW1=8@X%V-+eD2Xw~4IzHT}699EH#iA4Qf0{Okb%qrwVB_Zo%e$Z5JcV_)z8sxLx zY})1_5nHoW%TmDXQ_q}-$=<5)e7Xj%z73s+H~x$JA83)2LJwacpK`gKPv(4X9OiKvFx%<06nYQA zt}xbXS|D=%6YpMV94`u?Qj}Qp@>3$Eda+Qtt;T=w+nfKjq6rWUUZ&^@(Tk;jgVoRz z7IqM9dXTR62-n){>HqQvXg5g=dv!+PT&ExqpY(tg6kEe?a4>2rYVpZf<=(mf1b`W(IKeZ%sn6wP8(ht;ehJ>>#q@pTGS%1z>kh{`Sd`$HHxhWz3%mm#1qUERbK1L!dt{<~Z+CfAlcbxKMyjaxvK^_RCV;N2c z%&R_{c_^GLP~|yM$lH<_aJ8FvN<<|33P|!Np`u0_5^+W%a+1c1-0W0=U6w4GZko^k zoS9%B$a1L#s5Am|198r`8F2)-#PqsK2-tu^BI!8tGYb;AxYL$XK(yNge+z)N!qTEI zjztm2uVVn`U=lxFac!xMjwJ?lFaX~3#km(&>2}s?l$Rq7+~m0tX24avrE#Vo1X>6+ z5d#L$JZ%>hIqCC7Q!YfCi2ZUryB)TDs+N~RBso$^akan5`{CEar}s#S2@`7KMjIE# zw;8;)1`%CaS7KTk6rTqS{*~t4WI8eu1`*_+|G55BCi7!Mdp|9?{%<0Xt=@w&G4G%9@cvc*-B&hEn%pK-V zFPDCY*~rTu@SZy~>OQ?;*Tb~)i%p?#<$odMJmg#ypOGiqD@eTYS}$LnZOe+i5y2at zdH#Oe1g$)`0;av}4M9o=`ozT&OPc?ede7X`tY2)(A%T0hr;aJ5 z3784R9Q1GDW(eH-5B;NKcFjnw_&>ATRRdppQW4@)b{(`vP+M{ZnaeIfJ zo=rqh9#1AxkPy75R2Fh+irhxhfCVYES!|;Baiza|DG2m3jQT}mHG(hO!ozlO)X|a* zJcsPf@kTJ3lxD=~=CaDSsBJV%T?TwBOZA5Mo^QfyudaSjmiue3CTZ@>dwC#QB))q zg8e0v@j0d*a`M5yacSOHRrOiU$96UdbLd?v{-=tm4LRd#KamQgQ`ybeSwXOfcuRC^LA`W z*DMV@4+HQb;1$-Ts7N~%nwr5|rJFbYv!=6dWgqenHMOl6?so@{b(i&Jfr0HSJwAuOgwT|>@UlQ2=_Hem z`Pra1&zvV5d`@=@0Y;+9?7JHOR4Cb?Z&E5m%U&?QI{3ZLn31-KUF*1>)78|>?CBMK zG=Ee>4GV{;iRI00yO-XI;sZ-~ri4@<-rV!DLVp4QP)n}0JW*B)lsD7Xd{XuovPR{rx)~Y4apb_!tYbZ+ zHxisLzNZrz0__ASt5Nd8fH!&}DMX;)E3+X$rlMzBngcmYe?u(!WwNzO8hQQ#!UQ6h zCmc6x?z28;oks6m0Hw^m9ZlYkw-^AX2AN9{d?WGqg+yW8#JMAY8_95=Qe)OvRdEc! zumn7`u`-&|9-3!)3IP1;z++g7E0$IZBw0>yjN`oDkuu=3>CU*wN;^>dqIw|rgoTIH z<)ExDyeuG4X8PGI9_){E=O;0|)#R1M6D8c4-PB4~O#TcDk{)jg1W!~nFSpfX?8Phc zOS5GGmFK}c?E!oOV8Y;3BRZc$ucC^Kc0GC%Cb+@*_^Ib>s{b1#EQ*U_@Bqwd-$Z$G zAD$_P+yG5Ux9UQY|0{ZM(3cqK;zQfAg)RU9^q)vYg~w(OttgG=xZ6#wOX&U(EIbP$ zfNIu$i>P}gt@cfSH&AuuW>U?4{ukUW9pT{kWrr5;MKgDuS>FEuo z4mrmo)RD2{N5EnYg`TNfI?c|*C1U&9vO7=V zf7Flys3EKT4leEx@(nMi*3XSaYq2>G_`=p}4F?jM2E$_6zYxwQ0-yn!7E_(B2{!<` zOPd;<`KDr&L=qRFI_wC`r`o73YNs~)7wj6!9#ZL~Gfefv@>|9f>G~7@l|*#73{Mmi zcBY&FkDjWmOSs77_ls=_9h_E=!)gS9#SKCo zW=uf$PXp1EppJJ?xe9->CSZWOe~II`ffC_(uL*j7|E@M6Ru-D-Z;jS~l`R~bn0*8Tbb-xfv7`&(zeJB*yY#oVNW~v&1jjF- zCXV|XL+|DV__O?@K6MRv}MjeYsk^sbH7WXkXdve;SkBoP?;XCSoO zZ~w8#G_!hGOUmQ#RAKF__lVG(LLgxUsYV+ve?=*HBNo|7A$!yAML|mKpN5a2t?(lP zoDCMYUA!pNy+HR%ONE@DS&_B8w60yfE`DpVX0BO438pscr^#2P{K+YtFWyJ^uy-%| z6qb@=$gYeDE45m8C_sD|jfs)(p~L8`CT@47u0hL=H7z*sDm4}L^71ij+n zBR++2>zkf~=^g7rtgH$0Q*UL*92-BcCD3IYu4uvDo$AQizEi@4A-cu$jc(-cu*8hs z#a*UuaphBr5VkVAkokDH5}z(o%G*Y=G z`@#!O6ZNYj0FqmXu)4Dl1Tb837>BmD&gr?4_02|VdWDUq2TOuTX8TgvCvbj&s2POFW-b79ycVDe{G6o%@tB;v(~*E zt&0hTS`EE`ZQe61EAPBZt1;(QD4kY$40#ATCS+D2Tm;e=F?cH*Vx-EQt9-}QQ1edy z&P@@)DrIzNVpLUPh}$5yZhSuiew`P+X$+?Ks3!Tab5p6#jaPeqSP^fKe`^1^ra$+c zhu~-~v81Ga6QMEg>@DzDM{G?=r{UbS(|#wG8qeKbYmWn4A2J$eYatq>h4mKv<_|u6 zGa|fz-mBi(w-y_sjXoGQgZccfaFldEUpjnrP`+Wln@vnzcjpN(`phhGuo9acv<`N18`_LQb|EhWl^AtgZlIl^8Iac$n24edy4qS<8HBFz<|VR^nedru`v+RReANyCV|>Hem4uYKQ;`fdfDfmdzDtKv8`Y z>trK<<`z*4blt5WtWdi?ix6=WgXLxv-_PfO(r=FDE9)-vo@sqJKhul)KMANEl0Do= zXsb;aKvq)UIVundfN@qlJu1V!A`2mfV2ioZ6GP{@GiMVaGrE2#?lj%43!>%i*pRrb zhC|J>;1= z9GIeEFfhf@$N$DrUG<+U&Lxoa^36JgQ5a2$cguyO>KMz`p<&9?&sg#(7m7Ccx`5ct0e&6CZ8E4}``$Q7B4RvOHIW2p1nlCiZZja^L1?dJwOCG^zw)eah_hzT|p#U*9d)!n)TsxGB+ z9*HEDr1R64xF#eZHI-0E%wNa+kD}6x7D~yJS8phoszv-LwHfPg74vboR$HTky zx-fz`D2-VbP`ztY^j?gjxvnS~C2vD{KIJZ506?ok&Pn^RK*e=^*;zK30n`TO5_o65 zPHTC&@SYh`dn$*$-Djpd-xo+~MUTRFZ6w>T(}2kD<}>mGZ2?&s%?SqCv%V)rthBTx zS=kR1kRQf2eODaT5#w{xqxkybEqb+N(_7n?b6_Ar2O0>1XkGn!m_6R9u>I7KdTTD| z7@>X8rUtk`^<^-yp0fH)9<*v8Nu1AtW75&e9##TmODKTSvMUKSzmx|B9ch^^3^Q)7 z5`j>EjgSPyZp5P%8GaH_H3u@{_m{f}PS7tmfV=|B<_$wJ5P_zQT*8%|wd9CEg#<4R zHtt%%K^yl3fsY(_GCDWuyh#RAd@+koXfkwTD=&{E1CcgpUwBCu!ts$QMCU83qXs`D z{FgSz^rGh~T#r0rX2Zmz*Vx@ZBzF39B4oz8BR)`ri$7@C73=(#XokR_b1|O}FG-Zd z(2Mwe#Sh`-2T#dKTY%LnOOlJKK-PAu;uVb^OrkV@)Xp$KQCD;dUmwl*M z0o%*wu**k%%60IBbzLYam1Idz)z0R}xPq%KZ#{+$wmPLUW*5gB$Wc`bU0l9#Vwh2> zs2u9sQd~y)NUSRLAs_^f-p5pYt8tzfHqZKT0B}WEq@d`y3Xg<@-gv|-Gy$iw{z)BY zn}_;?YAtv=KQIYtYAy~`K|~fqQ@Gzc2f{guj*sb*{6UV6Gbz-w{ziZ@W&1dQij%+v zv#VWa{ZyY6-qAWhw-wq;#pKxyJ>RewmkN8VvP)}*d9Kx-YL&Viu(}@GfnC|Rk(6q_ z3X(!>#=q{kQe8|PUr>CIfkjT=8$iI65F-7J5=9+XlxHNvc-12Yu{$3|AKz41+c1k9 z{O%P76dzkRV@#&73>LR()hg$DW0%!l^QD&uhji-^s$&C;7r}zaglBfGPS3J~Z~Tv> zzSr|s%uxf-w0)S02TCTD#;KQBcKeOC8m4Xo_LKfCl7&ig!@jy{9`aA?OO&|0X6*nbf;J-O4BGvaTZ7E|!=(yk`~%b^bYmhW zp?$nZJCk>*SXT|!HH-hj^?o6k*-vcGU^Bh&a)=QCD&FsJ{wGfg*68}w2?kC>3Q^(X zmxCJasW@hL6L^8z{CO+8eDqU2>3FD|1yoz?jaiD!=SjWwgP9{01N z6e1p*t=4M?8LU6sWe?qjYBs2u-m>v&iR`>4$d4g6XPC12E?O}ue#@IBiF*fbRWd|fw zGn-Ppwcrzmk;kjFRvzFIQU!oq2A*H2`9^CSD$-86UT>ZwgY|zrJjYuZ2nnXB?k6)c z7V-HAOqNPd{VSDftjALEmwrc&&c5tBE>j6N{ck{COqF*ZtUBV1QDFqkQRy)%OS$$- zRAFL!{j;A?yDYy-#^$L11!FN#zKf05Q?V_Gf6prlsA|7AC8!w;(;Sy;CdcSr7#a*D zW*n(8{-gFMScGDu*~a&yUPZm=DPrLDN_o;X6?G5V*8&MMgfg~@|2IQ>Lr-?#_IhCg zO}VQY)?=o5i0O&A&E)(etHEQ-Wi8=CFI&~%^H!&)O|-{PqZwjb-}zayl0X(NK-vAO zAc|T3ew*K+p@hCCweW@`icZ?gN9Iq#qY2BZJDl48LQK1gVBPp4L9_1=H$0vB{SBu# z8o=~mv_)Nez)Ii@Q!P%2_3RJI@J8=1unznrcUCs(ks zr1OtjIkY-M%XP?Y9nL8^#qI{vG+9?m5{`7OjYm`HB>?~bS5fB9xW&{`1U#eU!@0{c zrD0!q{P4l!1cy#}1lM3S_ha|dnnH^P@&F zxOz8dx-mKwK|>h4Khd)&;;}NZ6(cFbl+lD3X`U`lwI$P)w75jCYfdEaN)od6mbF5e znsy(Yq%KhYntj(hF*h&8K&B5eb%$`auOMAJ5Luu**M*&OnAP+}-Lw4lmBrzK#nO|k z+Ny6u{jrJU8RF4uNYLPo04-w4SWa}nz{jA*oU)WcUhD<@O-=?C%b&s7I=R*LKJORr zLmkg!+sKH69v?eWfTVIB`NlI4jiuu+BMz`E<=h;{7L_IzN_&(|q>JRDw3Nr-RtppWVjRw-m4f%gPQ2K9;l zLQ`|xyfBU47DqFX#=*t&=6NEAKP&)s_*mCkI^b|>|Lh_G5gU7NbBLUGI;SyoWH76p z{kg_3lVx<2#9o7fJa{jr;Z+NMOW-rM`kvC`JDmI7&h<=O#*dL>F7( zS}MFmMqnXdN-{)?vVy8?Sl#{q>{y4IAEuGzjAp+}VSDX3ZQAaUE6Mqv;;zT@PZ`@+ zh?nym-U&msqZ6CTx*)%=T&^uOD$Q@wN@Laf<2>Y$T84ROUe2npma2O%&o+O>-trKj zNFd$)sW#|wVB0hPkb4R%rR%52w(pb9S;FtkJ^E&wMX5YJ{kWx9(wC;^$uIDH%F<_R z$fSe1nXH$XEH5k_|DI+W%kc1t^{}e}cbuR)m5#c8N$-1MXNPZp19Lizo6rq0t~yQ# z+)r0FH7x%VU=8!e7X?-tQqO#*XbGNO9^ckvmhar=WKAvkH!wi&eROG=GI;h= z?r@7TIakMISA53l@(ek@!_2-y?_m$MDFS#LfHdqT&qo1%(o1cZZs_iW>a2Yd;JIU? zHa0FPsp(8R_{A};kNUn=nC^QTv^Q_y{o}1^B2LpJ2d}%kabVLFyWWsY&u6?6R{C{+|{9Z)XifTz>rPG z5;06N|77H$-+_YW=|PO4X)$avV;gq?)=ElgDBHw&Lw1DNF*ev06Ym+(+4M4)(5&K0Dn0gb~!K+ADcD|>vrVq1Fn4Oiu8odM8M@;_B;)k`g z_~rN1Ya%wV zZ^XJ{VYgE3^4C6z)MZw0E%CM3XBG{$7{Vsma@~E+m}?8g#E*UHxM=tO zD$u+mC0hL|+E>g!MRz4_V;jfoYuGLOWSpU6fC_9@XLTR_!EBdx=$op2)+HZ&)Sz!?M5zB3MPX^` zhwoLWwCTE>tb&iXC9LegA5s)k)g`YGbYw#q~q6PB4-aAXPL(800WJ{NXAFH zmpW^xyON8s?hYrN6N|<^M`7DS*n;ahrU}@mF*VrC{IR#P% zLi*5&a8%D6uiL<;2i0|gVHzZOj*iGGy^aA>kQz6S-K}p!T4xYCU{lt@QmjMX z4DOw#(GNj>^wUO*$Q$7~Q;o)>&1n`EQO)NCOA!jluH`K-gLrQ8|wg=|4uK+)aNF z?P|NM=Vf=3mwKs5$N2Tb!ggPdh)AG0SALKIBOdYuCfI3U@oAiIH~CaKl&r=LumzKU%<5V#y$` z0mtRj7o!@TxhI7+w%mg~SuYZPut#%Xp=w9)*-2z^?ey3_^ z zR#0^}{FoWAYGzaXOFjn~Y(^Z;E!ov~cvwny!T6X#l5L>^!Bfy^y(wg)?8HO;?Nsx& z1ID7rp3(sK6ut7&F_)nzkjGOb{{m-%cBGDBO-h6qjw?RDR$p?#vchse!DiTQI4pVB4Nw(pGWlZX8PscARjz{BhR4I-sMq%2Ei+O&DmS4!o)Eym$-hLr;P7~#Awg{ogvwIP6 zb0f{;mq5AuhcLIkG{t~fHfkR)BKksK`HH=ca=o)9k6h7ES=I^f#?twm&eoAeDf9LU zYQ5))xYo)MYz?n_rW{~YY`kpYD4cq#u^UQP>u%+yn2TyEkX?ZFQXfa~GT|zl&Xumh!bZ zvweusE(<5^yISZeRJN}3+lQ1zHPf;VRS1q~>)P@pY0-_b&g@FQwUsui{Wl%ur)mN< ze%+o+jcsErNM0OFFhO{(Pc-Oe51=@W#0y%>MGIeh?OHu^dd5xjPwx~h8~D#KJVJYF z89W?6B-hBzt98rtx&Ey4dBka9|AZi<9!fLgQZ;Vu8ATlpF^VpoMT=j11SBBPu(hgw zO53TB3bl-J({NZe$Tj*jXIlY zbZ*!z;i%`PDLdECzwtSjc8b=;ApMK=YUx&@*S=_^e-bX#7(6a(b7) zMAwFD8?N48wY9-o=Q3l0g7Uk!Q!#(PpP*PNcOaoiZezH5%)cbvLG6Tyz=}VZbai9A z?XpwGbV?{3-`rTQGf_T_`efqvt%QGUF&Zhb9VWCfjh#Wz&!-k*d7E@NLOJTq3d!ao z-*~yzdllR;sJhEC_*t?vr#wxkF;L><{1$Aa@VEKM+fb}o-B#zOp(eeSm`Q;UwTN2< zv*hzFiCb96)@aKj^QoV5ifIN*F>=#{s{}W(rFo6KWQkcfS7if4`?b<+Jg)yfs)SCB z@RS4BQCa}*Z@v0Eci#7*ec`o;z^}$;b;in``OhGEKm|DYPE343Lg$DeN?wuB*!b<( zg&aimQg81m|Nd-%UN}7F(WrmLu$2vV>{pq()`0KIIyYAx*lM8;GczMR_4Gs<7J4Z-Pq9~jfhmv+R#pkYxN^_2CoA?&G~zW#b8J_;*?= z=~W2NuK9okdUO4l6RN_Ns5}$#r{melp*}jKA5;zK4fkXlw%ddNRe)5v?HZ`YswDxS z_(fN&w>7h7RDg#K^lY!CSfO_TM_mL#q`2)?Kl{h?`LHXaNhU zh&cWcjBKsVoZ-M2(4Y-slicJIc9JjLA)#Ntc&WA~DkHkuT--T^n|^U8z^t;hbyb(= z;)f9CbW9KIJY(SMh8S^XbeTBS6o80LXXXmk1G$qwJwSVB& zamBgYnCcPL9s>TvCipGAmVUyG$er-&B%mMenXq9KLYEeJMD_TE)>MaE87OPn5&Msh z*P5SnP9g~Pt*#nZid{Ys3)~JEAgS4c)vyqf5?Wtn^<>TI=USSGnjg~m9GjF<(W9oUk6utI1URU6yAD_r&2W`!*tU>lV zo9?-PE2=$lcEm2e2~@{xcUu8ZG?x|?kKOy~?}fcxoVntH*w$_;`@kIHZ6XwgJuvKx zLzIo33SF+2{r7PV#4WLxf}&&VE3w($P=8jfe1&0q9g)#%q8fXI7CGzfcZ60h#F*ji zOjh=#|Jfs_7K(`FpPDX81G2Z)a3txChs{J07pL#n4>}p$<$6)4J)Uj(fdj3&tm>(G z+AR*RwrxWJy_f6dpWFN-sm{k5Vb`Zuqa2K?k__u1-#&ia^|4$PzO#KrGyBXk0so-? zX-~G}#cSKTOISv|jZ^uu-5l3GW!!m!IJmzCbg=Yk{c;L6KuBxx2W7qzMOAfoKiFX5 z>jcs#L|@^3v=3l=r$e}gRZTPwr4kkUG7C4KQuDQN{i(Qu)q@yJ`YkN7)d~A#&&c-O zo4=(Ooym9XKs^vn~j^g8|U2=h7K#ZG*?sw?`16! zyQe5P9#ztmDTRxmd0V0pUw*Asro!q@6JvCE7>aX^u@kVCZ?Mem;kajRe~K7xd(Pi1 zzOpF&%c{|YVR1Bwy&*8y3uf<^j+-f@H#KTc+=x3zHUf{u9uKROo-9Ms31mj@G`$4runy37(581H265)C_j&V^y8<51QETN$sJH z>FwX&NTA}|0-lBfzC7b=cbAWoM&`fI!UTaT3iBM3ysAS<=(~KL?&l>QmJVVpeK$6_ zIf_=WZKaVrO{&-#ydx?d>)rzEabso@>7OA1l!*u?A)vC5nD%5YJ9@}EIClSkELO?}HaX>l*0TJnL5gAIl8wEj!63L;vyBh=nff>3xq=xQ>cMtdT zzR!1j{JM|hcCKq*d#}Cr+H0NXxfV&F+qTPWBvkPVy3z(5vL+v-eU=Gp%30fT=l=*( zX*4S=cuL0GmDBaC6;o-vGoVu?$IoDT3(K~2sXn})L+-lmpWa|4yQb!KJln5$RK1BK zREjksSh58a9vQA9ATMQgx8KD;BLKe;wTm@jJJuJbR@#gnhq9?g_hvrtysjB#y+vXm}XG zQLKwUdjXBv@gFTYl4Sa`u3XwJO}FYm{O7>s7UV2vJDeAlNM|$oZhL43Wi}@#d(REE zY!)`=WWIgkUsK!T;%IEcJWTM+Y=c?(;v%Q_{*gd)bZB=@(qf4~emWET23~Kv2;MzM zI{!QQ`SqV$F3v>8JUsP+EClWL-=K+PWveHrcTz#&gWGYusPd^t&SCH)J}pbOv8-Yv zlLdld)`2n=)75%uRas6CH})%ljP`~U<^GF4OIIG?Q1I#KfWNHY(sZpKLEE5fxJ}1nto`30K3rp!_U_jN2$qydyA@O)UQYE+h*~n-P>63Z~ z$j8+l6H;oQST(U~j_MmUCKuM1W!Rbz-7k(*Cad26rT(oYHzcw)aVFU=_VcH)myS*S z*-Q6=sS+HA@O1>S#GlA(C|3IfdVH#}Zz~_7|5pC5owUrkIiRq;dVhV&NU!U?cO+09 z87>K`tnMjcxtZp7OfBYlvgD|O zI^Ykf2uqe^q?S0~UmS?slPh{D& zinc1j@XG*mn(?!qn0g*T6cg&t#|lS_-3GnoiopDX2YLh|Y*xelceHU5&7YW`z{|x0 zhH%U0gc&1a2zl~7@3}3+Ii^cpB!-p0Z&isrZ(ihnMgM(>(eRfs<-3h{#O5xjlyAuo z6Z}(%LxcKKV|*o*8HWu6NI7xGnl{$(|3OYUa{s~LrXH(sAMJ}fW560%v!UW+ zHRdyb$n~zCG1Z|VH>{2Nxl;2N_tvd0yVFIB+0U4__1;SMQa7yID`+9Ok$Ygwm+YZed0CvM$PT| zt_l$^v`%~PK$mC6r`ZtKb*_nkO3St^SOeAI)R0l|ZYY{ch)FK$%tm>FCGJH%`(%5a z>QeYMxCk;z{)h18g@N{}P5vOsMV`|)OR5=p3SEx`zbQMP2G=XGi`lc=`^V>3edE~_ z%sky?jz?kN=Teb)CPEAC+q-OJLzQ7ty5z3b0WzG7_0!RAJ6r+#+xzw}!p4WIKMf^= z6q}LAt)AeA5qchF2{&V(LY$K#D*lx*^9#=Th6p`+&#QdFC$;iLIv8yszNS-|&@wPG z?_qx8Kh=^tJhC73w$?S3e+5fU{PQo`(u$)yMF~U=GG&#o^T#s=K?Pez5b_A3Q?=nz z?@^LIh3t)ftr*Y!n>^pwPy&8+{!?;&I`>%K$*igG711{ahQW=#<$vo_BXJO|kb@{Q z-$?U9dvs@4-LzoskmkGr)Z@W>s~^neQMy%yB5ug+!jOGmNTM6ZPEo-~%|*rgD8H(i zZFP>8tg)@%O8SL26Qh^S){Aph{q84Rl5n5N4A$vSc|OQkexv$ASpbslQ9qadgmvdX zZXI^haY&-7V;=>~@9+hEO_XHBTgC>#43b2Tf@7LmvPQScnnbgB9#0a+ZiNy3%Q2+) z@IjN0(RgV{ly&l_Qwg~#-u5VOhQRkBgE)pP_FnabFDC9|-I%2t#KRVa@ak=PW(GP& zsJd(P)DW#j33b|cMQeC0#_Vxlp7Eg3Pn=fW0ycZ;el;d@>mzdH=TCD7$IkVmLR+Xz zz7UsvP4-z8Coyx^o+r^`f4Fw(3A>Us4mh{bW3$^iOh4tIsW$`eJsW_GkN_f;2-7G`@L zCiQz8%Maimw@d4vFmZ7SOd;%@Hm(-`hF~|#f{gW_jpP=RD)|1I5xkoYAf33PdjP$Px%+(s#D_iZ-*F`xs<%NY zsDOxIePYAZ^R0nD0S1NJ;ebsbFStJ@!|dDD%}c8dnQt=!p8C>#XB= z%{AMcaE!xT8urT)I_GQDynYfBb5b#UYegy84`eR96Z?D^_V+{JoQz2u`(>BA{y&wp zBn_Z<-EGSpBfkom!GR&Q}ik{f*!D2j4FRv%1`}pMQhqG+KQ-Vb4;2q7q7mB z6nuOAy!fnHd027=9oCKU*INlH3cgg#&%7Ufx(q_hG^~S*r{qMiAN3=St}(k&PYJCx7g?VoqW`*J?0-Z zd{17R${VR1#TGeDyzLGAF{Da3?3iSj!7+dyFeNwGBKnowKB6M>b{GvPRa}|_Uvs@N zps91V{@)?+zf&Z`EQ8)}hi}}^i3fbg*d|MV_ZD59u555qG z?~Vz8yr6<>w*{`e2}R{3N?=^Uc8`aF%jlj6CW&NCm+0yzTv}lcc4$K6f5dGa46O2b zqQ>u*IKipm$+LK(GrpPOK&sc$v$IT(z)V_w67LD!{RqW|%oGRQvZl(LZ{0x&`c;Jt ze~8pTYAaU4Q#fzLPDd)STQyoU;BDtT0Q=sXVV~M)O#{N#bdPwJOJ}q>RrQbAVf`Mr zgKAD27h_scq_^O!T#wENAZFcTy^03n6H7XeJ_5k^@faPkN7~k=TMO9rub$`?+8KV$ zV+=rJe5c`?Xf!h=x;=09@yszsLlZccKKJ3n!IXaAXwljgIe*jqlq62;4QJ zuc?QD<}(Y0*~;rLhYC9HNIqx%SpBnw1DV4>)XrId(Y4YqzXi;`aawY+WF|ivIF>J; z9yyM8qT*{3*I+e;%%BP>Q4-gWACEmCkLm#2%{#F;Kx!rVEB3}0&l|~^%2JUV5In0o z=9>_a0EQ$yJ}H*tfmh?x9b(f+KPp!R2%gjR|4aSKun&NEhubGu*l-1K1U#DDxt=Fl zvSfc>+8Rs{c__wZ?T-y<%o$MHu(=zV}goC{WO1#SpztAr!DrC9K_ z8uKJt{0{ct^>0C%G4i3uW8PWaFkc0mk`xuX#M6Fo3^-m*O6OXgK#}p@T{{BdoehR^4S06pN zD=kU_2e5hV4=z$B=%JQ70OpK=9zv3CNtmR3#kMezV#ktrhJI*%6LPl=GZskEA4V<< zHvYV+C+(;^ydF%q)7L`)r7bzlithiu5&~XXzBy_P!;KThK-UR;Bmch5R+k5`MyyaGf~lWhqHbp&@eh zT>_9M4EYip7fe$CGeOx+@Y4cM6<|9Uqr=9H!G;uJV z2x}fGSC7O?ZX56LVJ3(R_DHNQdmgYzlMDxVlmDLkN0aj$pDmn3Vb;E`7J>euAW004 z%IhI>HZX#DNY#9*g;pshS5Ocl$%)%kU+{1RcoA<5uml?yEJ6qvlrOoQyG=9!TtVUh z7ox&=oeN=P&=ME0=Z5++#2BSK$x6Vp@EH4z1IfWG0wfvEP}avviZa@mEVd9BB25ki z_LzmiabbOOX97koCHiH_`2uAN70ZHeh(m5bA}|Z#9Va15vYQ7($h#M#klucpG6EHr z3n=rfRKVxTxn4v*mW&W!jcg)6(_4%(K{aEhh6kUi`F9aLaK{QiFr)tacV!c9BMBJJ zs@>Tf<>wzF5m*lO028|*U>Zz`K5gY6EWZuRNaY%qAWjG0-k$wU9O1H?guvp?cMG#- zpbmT>$BPA-#*C?{C``)vnVqVF#243#lYs}2tw!UsjyRHI#uuu7}8%t zXSYnC?);>Af4;2hxQR!x)8hP`2r_+~4Q?rZ1n_NuOAyr41NTEGHD1ML5&xpQG;D;l zpPoV>4>4vPy+eclthpmHg`@0z_779#0lf229+`VSBT{pYp!CQ;WLu7LGKaB)iLruKJg=&>wV?oL>tK^*mXAqofaPkpO zqLUbP2I>v*%&$m&gN~EImQbL(#&m$-PF_Dez8_V4m587Z7rIjVW?NBeF2zgrG8(KR z8n`_O7J8l?2Z=Yg)RMwsf6&bhHc;8~T(K+NuKr+a37_|nED$j>GDDuL6KEUkfYUZDQZJZ!C!?#j;z8?%)vS1hH9)azANL zuM9ur_9Hk-smkGNsR`dPh=BfVs# ztXmN8jQ@!Jc%oKu$2!U)F29jqRU0I)wh0MeK__ldtd$qG#{7`V3|iw}oY9X)lxOd<>-UDJwfftJf=ptQ!<=>wu=cxhAHM=Ip{NAc3b8E@ zQC_SNpzl(%<;4gHatauSD|)x8`z5WwhpQm$4CR_t z#6p{vN_rX#|9(o|>KJuMTZ%)lRb2k&@vw)NK<_b^%<@0k-s#W;+WSz?COA|4HP9BA`PW zOkE9ZP_Zcsg_g=sJwz*#-1KzY7WXh5F(21lzf4HhO&8HFpt$UMm16P$bFA^41MI*f z8^tIr{z5x_U^Bx7)P#Pd@v6LOmPsFuvLB3=e=&NbH$=MhzRGQBJ2U36qp^&^E0@ow zqRb&y254#Ntj(l+#wL8o)s(Erh!Hyc4`z%%&P-5hl-1zsf)hc?>Db$QF*7mL6_>rP zTx|6oC*r=^!5>j`guk&?IIo7(+L|H>OqfL|d*aBlcYRWQUvG}y?tXs9xY+&}Mdtz7 zuw@=hbGTGIev34aS?GU6ax6<_gNE*|6Mw`F;#`--a4)y5aYc)n%EDX%O0${nGcDO+ zrO*)7=<5xnY{|X3wea$n!f-2PdMi%%(9}g+ZYpDQTR`R_)(%e)<^ibM{w$<1uJMHb*8By%^mn&_j3>(r7fUuH*pZ-E1A zf3GzZ!%QN;WLy6FN|wGa%M3I;b65<%TA99hSYG(gm+!WIc;q_{sW47u_ zHOH|aD9l0g8U|cyOdne}(tGJ7sYrCon06$#kz+uZ85>>huw{9%m~ETyoT4LOi~qFu zC21Q!m;DRijk&HJBYmXHto>sT`wSxYe@aV5JUE#G2V&q0kA0G(R3CX*S2<6xJ zc?}eo2-@8@LHsb@d-)I&6Ob4Ox$BGftXD~-Gd8DxLlO4Wqj(@4wYunPVT!0|)JdLS zm{aH6?ks*e)vy)rSl1}yb9MQxrux)mT_P5xnsjn{f{yZDEr8=;*Rdz8@M7#z7e z!Z9XDTegN*X)v!-u?vdt;-@KU@8RJMlCu8q7tp zTX?1G6kg@LUyF)b9T;I&IhMftMm}+sxS!bCAGT+&x#Rl(R81RkQXReCbM)@G`jbwq9kihRzrBz}+j)yAJ%dGL-rj6Cu z$FO-^|C@xE(=F1vY7+SX*dT4!Opd^z4hh{e2fD zE#IfCR99MzS@!$Pj+Xb5&-Oa(yoB`x!tOkDdaKxahRoCI*$wLqicMLE%Pj?Jzb}J* zK7B*pa<-x{L+!v!SI~3h0Hyfi*Gg!=@^C~7aIKQ6F^s53PBX?^E9$p|!Ne4_+co6q zt)0ebo_$|kR9M!iCibtXA~v7Q&KyiG6<3TGq>Ig|E3&Qp6~-QM-$giq_c6`YWO{01 z^(3887mqvlXncnr(NgpWR`RTeD z`4-d#q5;41IVMW79h1;EIdAWYp;QdAJV0Y_Vl4Mi3?Tof8d|;QIL-9$v5y; zS7BFm(K0{3NEeNQ`fX05gd9)9>Xjzr(`maxv*rByGLLPdjp-NiTa6uu4JI0&eD_Pw z7=}0^FG(T2N^j~QcmK6Hpi#lJCcPGkas+>^n?K&Tn;Bfa{)AEgpW3KDcSU!(Bd@{p zRhtURA@057cG$n-x~oStltLOldi>eJ-33%0(=fXmS&8L#x8`sman~hsEL^gz9@Tcq z=TA%h5eD+V$)GuFyBl8WiQi+a*!6iCU(<+is7+paGH-^b?q#TLU1AM7Uh?fHK)eSq zf-CgiY*LDe4@LN-3T&ZYgeQ6X0?|}z?r)(qAg*Z-@w+q7VQ@iSnemo}I-bk+V`Me< zAlK*b;tTBxLV#8l0FE&+aI4yWb=9>4A02E(DrDzrw_J%JPEM|%sb+=2G}&@)a5AS4 zKj8vPD_>=Rw5VvgDaGzDDu@=2h%6T1yj3K1mZ|gZGD)%Lt*!C0Ik^jt)om=FBl->7C z!4}1%Px3aBJT!rdS+q)o+B(pDf;pfjFP#p8^2TIlGh3vx>eSU+^V!sV8Q<+JyMHKn zG#Ss?pWU&%V++3IwumCuBVR!3oE~zjL(o%CMLC7O6Z!E9I>^+RH)ljE9toAkn9tmm^&1hNufo9>>j`xKgR?wa5i3cl&5K zgOdpwX|crI+-IKyD2_vz;o#Ne&Nv5|{UdxJCSO=0$IoK^9g+N8il3_v*`iddnX%YM z!Z=w70GQfaW2=VSnktIEx%dllhky&Kd;SRwW)R8{!wi36ceQECA3 zB!5=1;dt^n7z#aR;HXR_>-&vF!&!v#x>P^FhA#Qdd@ndRWuq=^wntHiQoh8wTfReH zfa!92yh;F}4`haKTlW+M*yk*@k#7I~Q4plAh(zX2utNMl9#q@?b%p{n`jcQAr)5FV;J!gn@ zpv0`qI5WH|C?QG_r{}!s@_R4OiC|{;gN`m^hzZNNFPIJ~atRadq6PPe1TIppu3%#S zSj83?ZP%+*vqst%Z>1!O)e3n+Oho4t;^CvYX@wr23K+s=W1D5b17yy_!2_H$D}UEy zk30kT`s&@|w+^1QQHbOxat94ffoP|pLu0N-IhN8_w|`{7=V^LmvayU6BuLQg3F|7& z){#ySQH=7Y_lpk}0#vKBQl43e#tZ6dK>@v#Z->+-b;J^lzZh$DPGD*qQa=8x|B5`( zrJGr&@l+`c%fhHC$AD_M!T{%ZvJCsY@iRynw`V`L=mTD!r;+Kj^h<4w3*QHeR zqsFQID-PJE7b?(9O8}Mz*24`j04`HY*F*4xN@2X*kApGZ*Bld|Jq7n`Peo2ZDLE<+ z!H?6D(Jb77sWfIM))xe%%AoSbQ|Mb%UnW(49P!LHh`gJ}J`rOgX+o%J6>ls_SbG|l z$@MH}vnwO9jac2KhaFwJRP<41LFM1EP8153EtM55+?rk5R#Juo8OP*3d=ae|J&L!a zd=d1c=i7S$Dlw!MFcZS`R-y=}qxH_dpTb7%+yf51$efM!Uf>oMvr``If60V1I1b)| z2d25176BBZGVrk`BIkoQyk9`8WxUvEt%JeibfTw@ADWiE_sk~l5~MPTJXt#?v2A^0 z-X!BcRQovzZZ8_u4V&ou;MAH0T%**WP&n#SKW@I)lTVK>9{& zK#DHT3Vh%*tN09wsA$ddp!iy5)RnCR57U;v6O+;C!a_*g+d^zi_$L6Tuy%oo z1EVdGCc3?%NSkjH>yMz+nh5pb%vqV7K~lZiJC=f}3^3yF{Ax-5!a=Q8xQoR+OpmIH zWQKqEciCg2E)PT;FgXR^Y|5$m(ILj~tYdaR;CsjAQ<1@Mv?vSdhlKAtIoVV(xlpAl{=LL5YpJk$Ka!srCYS$7176R7RAG&d(!1 z_Em+?Fz$RR8Y?gAI`nM^yVe{H|APqgl65=0&tW}wXb@eS-ho{HkvD*N-#-$OGPYkg zh2cHE?f71)10VW2cB0t4gp#`;8HQ-2y_?CHI={X%EAKW+S9|ADRLE6Pg5+wWi*aReGJ*O0hp zhLffGIk~wZ@PqUWT?r1j=wUfaJk@AoTQp?W3K$Y(qE0V0eA2B9L4Ox{^(lq96NS5x zQDi*OC0L^tXI7-S#HSbfX6+khAhU)RehdPPH+V;{($^4QzW=t}|579P^C_^5m_vLsCOyL*h^Pa{>yI z;0(Qi4>o(_%$@n}K)!rU{0p8ltQ2x|!zeWUPhA_G*Nq)dC_h)Bs zqwZWj6O@>&@)!r*5Zq2~!zLZb#KEC?m6MO6~f&SUZhi+-yJSvUh29$z7^c zY}|xY$!Km_s9jYp96q=dpTURVy+8kS6EfJPg|@K_T$Uvtm+$=YoVjcD18h5r?IBaN z;sU>FxLL+p5@INPBH8Da{5C7akFz6b2Nm@QmAKw-(Cn0Lrc)p(Fgu?K1(~^eMuBm9 ziCa%|t5jo$j|7`&HN(^*DtGn4TgKTR^BB)Ms{T(&bYS$@%t95^H%!z>{GA zmWu7>OwB;?SF{GAU7hz$I_4DGJtW{~?nxf(B{R3E?s*M@@$_QGLno3B5u&8vSbp3;$NVnw{fn5(H3t zCOt1h-t${6Yjjhx9pKKL}H3m<(mXKKymIE&h?wzi3dDs{Q%&3&(p3hv3qg&HM_Pb6>QLU4(JJM!+?{7#d5 zqu3C6Cx7l-8HamTH?jve2S>myi=nOZN_c^&KC>$&0GU@{d=FSpd}ZR`EVexPx73j{ zDw{Tn!w30ROX}BS@=Y8CnsP2C+hnNqB^SGI15WM19n3<%^__6Wii1HkHc%iqZe5C8 zytsw#>PxuVy5pIzA}5vBshiHfe9u*}>|4h&-$ptO#CsN#v@nSz3dXyb={4ogRkpIb z$>wm!HwK|(CI+50a-l4}oQ zS9&Y09)s-Q2TX8fQbA8sgO+c}$n{bQqnOO z#Ts3jY%9c5kB`u{*XyzSx70{gcPGe^OPEtqE%(M(ViYu9fCvXt_Sc2eW8)oQtP{4k zF{7s}!8$sn1X$I&Xu!74Dk+DoHmdp#+buQQxmW(aaMPLgDD8gW^p`eu(e==JrCXbk zjIyKT`TwZ#-LI`Vdm#qDUt_uE3>AAZ>b2qyHPf0;Cgy^o(-1=k7s)%ovvkoCkIiZl z%`1KDj*%p9T`dyBzpi0HM6EF+ii^}fi_1>O=>f6pdO)b(%>*Tc+eKUSrMKRoAB9GIUuBhEa*j&@UybcF)w+<9cAekGNSfmG2 z4Th*YvIv9+VC+Pb9d3Id+RG;{GeU#7x^!NC^zC$WKGnM8S$euSS{0C$VuGJbpE2|R z2-;0z9+5xa_Zw)N^f*Js#XYUJ#UhsNxj-Hqhv_LI)QX*B!b;L%QPQ#Zj8ssSOo)fJ zuPH2n8Qx!@NyWq2L)*eLtd=qynF1`LUEU5TUY6f@rL1GS zSicwXPZB}-Rn|0AWzsGM!EN#B(m&``mwT2e_bo?#1&SR3g-GJCikm%~(wcvzIi-x|c5F zf@dlx_wxtlH0a3H_pUUY|JzUTk9mSfSK=e^mUxE>BWR+|}0$F5V7*$~dp439O{XMYD@IX}# z$p2g{SoK%Q)uUJi**fEM<~gwU)h#mx1m|8)(x3tB`GanuBAZQQH#*{3#JaMo!5g7n zqM6M6KBtw37llgdcHI*@CGkr8ckMPKC)cb6nXtZvj9k`$5}P( zU+mlsI#bviL!03J{b=-*?oH#?=uj@Rd-cy)m*uR{-P+l}X@SZra9R{=lDetpZg+S} zw{6Z2rJ02co+e|6I;Rf8g>&1|*)$0sFxp=o1<{ zE>pCn8+F0c__e_e9%Vi($lSI5rDX!0O?AT*Qy)@n2HEWF;3W_qS?Qj|ldngv>y=%| zU470V( zvSL3q1u`JtDo*%F$@ycWqo)Mjr++gl3JF9f=O@w#t{iK3LXB@8?h?GnYiHHU=P}A* zBG4cCjiJAIPo2e7B3o=#O&2a6dy?^}F!{TFO}xC~&(kx)S>MTCp_YwFFb`?z80?Vq zFsB6xFke#4O4puU%s#KlOthL%xtV*#_e!#F%Mn`o$k^g!EY6zYW6|j|Dg8*$8KW+T z35gJ`U|~@skN=37=B<;c6e?5DsL~;BB$#$=NMJUQm#5BEQO7n^nFsX*tg|)daM}(4 zp{2^Zt5Ou}zRs1+cayp^^X37fIpebNh&@i@m51Olg%0$PqI`rPH?rN<*Lg-N0ZL-)tO^rR# zFhqQ4QJSRYGWYxf2yK#sWpCQ@JUw}O!MY^`z3tgkm{_>x`%PC zhIBr+s1p02p_x7HymUi?dgt?1$xbE-KN?xteru*)&#FPK{?6lY9T$Z1h@SK!SXn58 z8R*b^Vc+ydNZ3AxpZDt(s-ylE6RDhUD5-8nbm&&W^D!gIg9#eSbXii#SOnRTv=j7~ zUjj{xfGe{873gaKxmEzaGqY-!aT#X)t$Srf(~B;Ty^{ddXqoDHD_D+;aYhsMGBrNP zsq1{`FNv+g{%4<;$6NY2v8SU8%8CNq4#SRa)Xb5r@Uk;G2oM^_0YdN5pj1Qj9Frl4 z!)F({_+0bOE)_@#%q|?|u+X@3Z*M!IY~4*^2VLuUj_hq&uN zDrU2K_it9{ua>=?(4ntwY+Mx`#1dw*`Fw_^|a*Gd0mpN@)D69zkQE0*Ee;2%*=o)c6p_+4Fm zIQr6L9R?*3=J8?_7pO!R`Aw{<{MNFj+-(or$Cd-{TqZ7ZWM_9kGxqbk-* zQCThpEMumUglBg1Z=t_#ig>ATq76diB{qkjs9Th`|88FO9I9UF#*;<->5>PxQP7|n zbhjGWe~@t%T=x!>lQ72aA$HWs`-S~(sAcGfxROofl0RAL(WOj$49IZ22@yVZpTu*c zw#ifRaZ*=TyhBYYDBv0>XT3skBxSb$Ru3HhRBcv3d%o%6NOlyB(&HmbPx0moM@wlh zLf6VhfT>uF;_^aB&9n$Or0?AZ7y1EXS5?LHwJQFcTp?ldVs&T%{y8&ThTYZ-Fli4~ zCBEN+m{0=)fAq}WQ4;;bK)aZ_+4FlPCb<0UG~pm9|| z)L+Ua@~(u3Vha7)>6oF+)t{zK37ZRbMlLI&3jjcA06--OZp7KG_k+qUVc01gt%1#R z=p9EZs5o!e3}t?Q0jh8tQL}d=D1e!})bGM>{TZ0eMwK)Zm&*$Zz9ZANk&+FYN2}u! zTGn>H?DF&JPa#cC=fmKk@hZripdO%eky&DPASTP~sUUYXbFaK@68NAS*=2LfB$eIX$S0E&$eoRPpy82`S zb;w_%t)9CILmUy&CC^{huiIqSOTYybF02~1vQW0ioTT6BmU@pYLk33*tWOX2z-RMd zPJrIn$@E4VrE_P|uFJ1eI+gA&!Eu_GTVK93+5PD&F`^xz^K1{KQe*Xh6{kA2{BfJ5 z6|Pby#BS?efGE8v-B?+aPRRMeY5em&1R_U_S@BP-51kwIs5xbf9n2=$BBH#UGbpjR zH$(;L#)#ZO=ofQnTh`6sm@6G(*r6x+_P@?m6PT!Mq9s)l99${`muebJVkx;l zJG}{?7FfOm4ZGQ>mV@WdM8mttnriT+&$;Fl0W zL{4M*Z^twWV{R`NY2PSAnx_cGJ)Op7ee}F|DRR&kx0>Ivs6AdpIJxR8x`Cpe^i{55 zyDik*1Lu^_{tOjbGsmC#QBa5<#5UX@&*S~mL7Bx$s^(v*Df5&xn*ddmQSu_O0d#ktFV<~%!XtX8&l8==biH=aznMww^Ijel7l-4bkH`$JALB2F-@(*V!Mb ztL$n5sdYjYzSaJY=-bFVm+qN^lI|d8POz;qK_Vb-1&Bm9)bK4mUtIfTu5Bz80-7qV zObamD|9+$Q5>y^&8!do?PSyX!bm7|j$wF{p9L9F`J$EIiZ%egs?^ew2NnfOui<`$> zJID=)By#o#rde*$4a^!2kqb}xTdGBEvK6L0aLN#$X=D`Z;CYkd#1Ux^W&=~Xf3*G{ zJ=vpoxN~$Y$;oxj;sCnzue;TX*wt2R7(FvUM3%bMh1aJl~jZF({V^s52-| zeJIuNcjy?3MIoKU=c!K*gGg%5D&EHP#dz%jfyh=XTF`pq)U^kQy8z z>AO?Y?OISf*+%X7u#-EOYnCFr+xP6_iJ~e}R zPzrAte;tolt8QDg=AN#XZ7wCZWk(V{KWAPdLfQw)hSi1v4=p5> zwjA_x^!x5Y!}wc0k{T{;f6qP9oIjD+BS~b)!5JFp-xTTrGXOW z%nQ(oZbzE{0-?LZ-=6*4Nn&MwOUmR$Ep?MrqSaPTf3!2yykU(vADY@0QI&SEkn5)S zr{OUD^nUwlM5E+ttH_(x9Q>$fH8>HXpzBK;3oGcSm^_1!ldS;_9VRKV=P35f$z;z; zKBiD|&uE?vucbVjsUXn(^+IV;sAeVgFM$PuSH-Z_L-outp+7RjDOMW-xjX7?bOR!K zd!Kf$w|XWJFerlt|H{O}17A^iYaRY87fdQb3Wr)q2H80T_SYJR42Oi!^b+fNDfbC| zL`Ae2<-Z+{UX5sfncvMr@fiqjDtTNSa&xo48(ZDn1AR%9fuqLkBhZ%4El%9{B7|J! z&1xV^JbE<#rR!kXa%uzf7FQE8X6tlv2)$vC(9~7tms**t3U)PD34Gd9uK?e^Sk%Sn z>{XgK3>N~avo+^WS&_(WqUQv|f(1`rjwHr%qziA7e*nUh%9QUsKQ%lBji(@S*Nw}x zUN38yu9uUZ!@TYY=)F08Em;v3h1y)aK zLpSYEgzdH%%IK4s=rrM_z&722^f1Sja@hp3k5>sa{o7v>)wi{SMQJud>zbkF{w_0yfm@yQ)yJl+4xv0S{=hDT}e`vM=9F zp3`?^Q_3(n%*B&9ilbHvmKd75H|700hLUR$+%wT7*cT}a^z~#j(gCNAy;&<2Zuk_} zLc~lgDciIxUIBVt`?yqx{ULLu+yWIa;sAajX3%}`CT8g4qfPj7waH6JBgGhJJKuVv zY@eAXgY+^5{`*5nX1Jbsy4}*dkqfyPm&RYD^Fxd&9xS$}$QoIhhyqhJ2q%;7yK31| z!~Asm{{FEajzF%Q_P&Fw3Ix(CSSJW}P`v#LD`D*X;6H)9A_k>}M%v`jK2|Jz3K#z# zXsV?BDoaqUWX-&BziQ*pHoXnLkzlj^c!fMzX3Wi)%>~fWi&>*o%hXQx;Ey&X;ZYXo z&xpVr*4sYp9yC-A2<3tM5@;5YV3qj@IX9`hz6J3U-PVn}@Rv{ynp){pwFdmDxrnrU&Q{0-I7)63k1wTx(x%=2UvdY$z;wEE$s+NbjnrG;P+KI z2eh;XiJ2Ttgq;1$EX8pb0O?#cd6w8Zdr z`pd$y3-e>xg-VQLCD-n~=NVDeW~4k^j4mLU5CsTi6$ks#UhLW&G`Qna{uKPyJ4@qw_xvvdOyQU9;|_ zG+-Yz+}w~kIQh*{c6s8DM6}7)AF>mo>2i%}YiHtis-B*-GqXP*>XN_GDz(x~No|)$ zmp5Lu>3|c`S`px!MZE(67N}W0u4c9ZPdAh*JFPV|W}7h6PiIyo%9Hg5{$sUA2Haxx zA71-59Qr>)ovNmFBj^ma{`G4BWI2Wc0opML`D=cW@a=AVA{KQe*sn)q+bv5%AaZ-C3Cz+Kv!{F?nBV&OdzsJvunrHU zaWA`2h$!)91dsDTWfRith*714sMx5!Wg@D!pHH$sPdZB#I;8&Qj|%$wlf2*l z;jDuC+R7IGlRQtF;dasApcjm{H73OcaaYpI$SIot)PVnDQp)AWSf)PnvroGlwz0)I|ijGlSurc$}J6yh~fH@0sKpt^n%4y!O z6cv~7Sp|Q8<9jzHRcx%o*!yB6K9pU;VITKSgg-g&8`bWOy9``WT4h$EK-zpjIX&mY zBcSDdABc{(i4m;50{tu1Zs8;}iE)d;`OR(+s2vwM!qp!cUvmb92b`6q2XtB4 znPCG%?;W1b58G{D(|jpDMbfA{*6lLw3#(*X%cmk*V?QP7BJ zrio$rQtpBXmk^wync@zm1V|8hgAM2uZNfd$BaAN0AkY+<0s@pw#4SnirIml$0 z6^_WfIAq0$^Y7SfnyZZ#cPSqju(44>g~sgi{uYBfJD%r%gGS2}v-b}>m~saPbQki- zn!I9pT$Ib0V4ei7)1dvp=M+~4fho%x#QFD;{!p8}a$8Hkr7^5GIsHo+CVjl}qoMAG zzfM6vmCM0oEmJR{=kN3)azL}n28eeOh7|*Wl2l$(Hx?Vw$CELQdP4IUuXm|Zz z|8-`^qxc`;S`}IrTjV!COlv0(w=<25p_8Q)?O}o~bM6qZR+5(GR?8kJr3KfGp03L} zb78Re_c41P;`JxHuS5&k~FbE1x1zXdHdvRI%)NqP?#L`x-eNn^omQI)Q-xb`vp|7|k6{bT9>HmsLk!+$d8 z8Z`Gb{-?+25^MZlAOlM|+*RQBwig6KOK&bt{}4t1IhGmZ!;jx+c0!ONxKL34z{t6R zJ=3q+k-8UcD9e@Mu zi!RNM4h}hn*ZiYAE>-g2P0D>l!#!0j9|u7-@ zDBD+?6^*%^~85cNFz^q-Y{!N@5U2-g0e=FT&$sbr1gL0qx0UU?8H zA`w|+F|d&)p>s(zf)NNH2m&Io6tRFx3w6D4X%7TYA>b-ak(MAWWPymZWEYmDhPD*x zy&FOdkew5G_PO8o>pfr2`I3`!=AHk{J9B3KKjj}^2nP>k=g4$n_@+L`IvGtzstLtP zG86WUJ9b!-hF0(m3y{)Bb_)8r6Ni>YwAF!87OOk9H9jWpMw^y?m|RiyiK?69QJ%*- zuQVRnylEXabW{`DR-EQXvaYhf!(3Zf3_EY$*ZT!(FH8iKc;lN_dvj-J5P^4ogvVYE zIP8La=asA^ntXwW4mzX!TGd4L8y~s;)ZedA544+eY91DSj|%wXYy zHv!i>5Tpk>{#mCc*CEXO>k_pWOyGl^qXvdr6aH|HA1^cXF*(0Pg01hdJp0+uO5Mig zfyY?&Mkt*Kh?I*F4q%Mm3@tWl&M<49zNd(@Udn6)RaOxJ`=Ps$Hk) zv>r%~E9+XCV>Xp6xUKe?@qr*kwLlyH(PwU^>IKF5U-RtosSs{Y!`pVmY#!@Bxw3EF zDTKmamcm4fR&D@Y&hI_J^=^*B!9t8bMK-~DaHyM`A?4jW+145~2Hi{>y4ic5C5AbU z(Ok>j&bHlbJx0D8<5osXVP_UNkMTv4B>VCRxzo+jNtTMc^e4c`K|C-bsXZJFBc%u+ zK#}t5mkg!XeXI3sg33?7RFi{?4n&l5ot71(kwq44jKvw2I9C+*@CWFxPDtzMoqkKM zqV*ZdbR88nr=GU-2$KUV7A}~Rbfw=GFhlJ+Vt9V!jkEb}S;zZm<@N?$_KEAF^Fy2- zH@QLIsi}F=3M=nGq;_LUggDm#2Ky$XmL^-jyN4a-uD=YOQPf=UTOW3~H`7EycrukA zc^j|$DY|lFkh(>(GI#`%(QRvp!=>9zn(-bQWrdISvPU>>Y@A|1%@+F^h1`Pa*Q*>| z{`V!++US1i$gi0RAB6>ds{?F9V6cyC#{$98tfl9xH@Y}(ae+VOE z$SFqmK>1Hp^gS_%An?zw3d1@e!J>M>(|O7_><|puj)}Aiv9cYs*2;bN{#TEhyMIYa z255~x$Suv&;XbKjy9CwTx*Gn{B4J5OTPbzduHSQl5$(o32&;p>i+s$vBvbK1#h9j+ zZed_oGn+s<(;gF-Qc;1A7b)BPE=v$4@hsf*B!-ho9~g`$Nws}&he~#ID3RHYZ$?&W z)@^H=Pr1Q@?4baoKV9A6Zk9$&{JGG+#a`>T&0IUG8Q`W=f1kkd!eI?&^oU;f#u68P z>dbvtNthTn3H7Hc2nj`|e+RwT!O>tId3&?8ezF$&`JBX|lin?8yO!oToa5m4SZ{hN zhjf*4O-%dJsg0u86cS3JY!js?ULMGq9nkmJWNhTY#b-TJB|w;@L7j6sf!(`4#euB9q|lRYpI>M6#Z}%-Bsnw`yIMG0JqO z@=eQEzI4&7Gvb)P@f^?GPDFTOE5-&;BR|8vDI$>#P@65~N^gqOTq*#P`8is=urQjI zZfk=vpp3R&lLxRX^7+j9y(_(x{=DaQ7CV)r^`MgzH3PNc;+yXH1m|%~1X#M&j$P(2 z%u#`&UF8i!oI%#O4TmzZ(%R2Kj0~%i2eXryP1Myd+S%=`F`?y6aYT=EeF&$JOrhpJ zca@GUU6WK>3;p=%j$2q%Qj5}KI_Szi^7BNX==Q}r1goV{H}14KVv+H65tu@j#ko}^ z{=T99r{2c!tXPVicwt=!hG?7@Y%|rh^wXZ?tNNY@B&-hFTm?4oqObtJ42x_$0%e5% eSEr|!cSKsFc-7jJo^bGNFw@KC7>bF@)4u?0FZdk* literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img10.png b/Term Deposit Prediction/Images/img10.png new file mode 100644 index 0000000000000000000000000000000000000000..7eb18ae2309dc0d5577d6d0eda6f53c93eaf7bb8 GIT binary patch literal 14783 zcmeHu2UL?;yKaA5ep>*q&FRbs5B9fPK3~Vq?drofIxtV3WP2oAc!Cx zDTx9J9gIkCk_e#$V(2y8FF5!APxecao)V4c?SggK^6o$D)i%V;Lf7(j2&<};&TV~2dK1HXdd|RgVQy=YamcL z=H#C3G2ru0-Z#vBK%i4Ctp7*ayk6OZKuX3pHLn>5+AK|QdRsf8APaa*I`-wu4v#lt za#C3Wes!^nR_vb)g^rsGDaD}vI1w+M*BX5}N7sFsljlrMGD3H8>*EQiuXpdS8{TO@ zYDS0rLMnKu{4@HN-J?9E0xpK)qYsKhU$8uv#<3p-+T`j(mYVE!YG^lV>=%==og9P8 zHm!Ab5lhwQ%cjCK969)YaJm7nGFE`OIiP&yhFWQj$x!7+jbM>sfyJ?1yG`aF+hlYe zqfFy0r|ENf%veH=nYRw7?ByC)ttQ8~>V%T$bTe>o+-1AElNGws z5xNve%?=N<@+D~z)>CYPFWCgmB$0QVOW)0=g?iWtEBjsy+v(5dOQ9**_fg5s2eQ<@ zZ1^~H1`@8cv$GSsn5xh;ug8Feufc*`_KqJvPENt^IUrH=$tJ?sJ0B{amu$;WVSV^+ zZMZltiYDMF_3rD_t<0(IOfo~I-+y`BJoG?+Ah5TrFe~`-DG^m{3ejn>#2h(bVmg!m ztV>ML-dG=v@tyyH35^mC$I%;UAt~z9qXDaw~jKe{MIO z64e|=-|56P+L2%Gr-B|_+1v0s@W=T#N;C#eNAkyZbv%lDHqkb(OmAEz`;~=QGmcgk z7Z(Sr@YvgXHmwhG@n;|GlpUN2KiCYP5vJ>=rdXOzDXY%r$=1!!z%qJC6Uc)6C z+maLrEto1|Z||p1b<$J%_h(H9c`U_Lx8muo9WraUtmWaeKDjmb^=;TdFMmIIoKMoi zcrR+(IGN`3`0+`nmL7#EEB8d`S6_Tg?;j6>R%d7O^Z4@$5mnN5;nQiCUUzvuj=P&8 zxI}FuQ#B5P_O{wI61pIG)v%?ZFv+q^X2rQ_<7A$_L9hM6==XM8?}FS>HFSFc9k-`H z)Td^=Fy9b|w7p-AJUI@jYKux>Dhlw!TGYa=>*|`Mr>1@Nv{RmREIZ1?H^IJ?scw$@ zBw8nM;>}b|u1^F-Ny*4ww?3-9C??(L8TbS`DfN>%HnF4r59#uRrChnaCbdM;A4MGt zxpJu$rK;eq_w4$kdXf{;2<*eGc%)_jv+~_XZe$$nuGY-rJ$|(7@nh&V(@(G5$3)8}r3tKJ^j-Zm zzJ%$Lij}&VmRcC4nzFaicrfoQDb%owuP*Zz`b{brrS+MKv@R*m;^*(_-t554AhlJb zU|-v$Ao0>`J}pyuufu;ym*2CV4x(XF$c<*c`(SMfyH~7MSx>lQ9U^PBq(TX~x)jj* zxD>pR(Kh|3EfKO~XS9l9Y;D>|WEQ5PAqkzG#dQdi>89^?Z}b-_(N{P5kc1$74@ySWe*Q`v3mX3f|lnaGu$J&jj!r6?%N z!@7tbq)g$iz3K#Jsv@Cn&Ww*8?5c8qywYd8=5$%CO6eJ9z5dEBZMe^NS~UZ{B~-e7 zZvvX#LJ}UwLHVZE?HkvBXuD4r1*6Y0Hwar_3i=4bUftqHK<5nS{bdCm{bxe*7{XL7 zp+Fg&Rh@uZ5nCi0cRKVp_4;@8xntyq&04Ls^@yd+bn=u&Kc!BWD>iO#1&KSaBT1iM{qy0lOVZ9+CsF!_rlMvC99c`&G zrLf_1PvR5}J?XU$Rx^;@-GmuzOqT5Fx(hEEha)Y=QEk@9UE-%>>pwh@1P@0B`?u7r|{{fJUk1f7eBw*p=QtW zMnvo%ga+g+8yr7dtFExsbe`6R7Fx2K3fFqL_iY;)PnQ($n1l%TbVkny<>>D^-dTVtL8n*q6 zekyF^VEdUJih^%6EAIYU7Vwo3Dpz)Y`77O!vA@+^^8tKHZ5*v3(1_pidCjiCJXh8w z6zce`ay@cqhcn`IIGvD3?d$5}^ha$(a{HXSj3n_pTGK`tLC-{5D_n;%-`>j9O9DG=c z2!M#Y?`jTp^c6L`DXwe_GJ+I8Y%6zTvo~L>6SFx6OGD}c$1$N|S#`B*f)-5<-`ess zPikvi*u`f}1TZHXGferG^A17|uGG0ow4K}R=D*9oyt}pPJ?9g)sG*)R1Oi0LWM@yp_* zA(zkN`kFW`2kTH*6FrIGiJ<(IZgd`bb}Ww(&&7^knV3_%F8NEvUBRi*6?>sLCDN8@ zEo{J{C97{mg<@0-H&e_K1_Gqc0L+BYl)fBi$(NjzVC%m(S%1Z|_jtv`_JPR3n{Uqk zey~MZu1ZfE-t1u5cB0hDN~s1J^*Wq-GBIasRG}t&R9A*#95i%+g4?v=UVUsa3%3%f z?kbZgX%x~J4_UKZk1+5f6o8X>69zI3cZq0BmIi-!OtA?)-txq*2F{1$8X~`b$H6{?%=lKI{Jn<@W!Zcq1CdzCPn`nZ)7(u zAPM6ANES;prW_CSr?+}YCz!|A4xwRJj&n^L7lO_N>b67y6XUzQ zQsXuWoZ+Ja;C(QLI8;NAZNdxa^skci#vfGq+_(V!LaFaeQEhyq-`p}O*=>pvi~KOe5FhQuF}a6A*6=BsVv=zsLS_0 zGPS#2__%56aV~YtK-t zeSthBNa>bF*U8!tyUh;AuzdoCTqGeqUICr-rIkxbD0sAo1)ke!yI%*dRrGw5ptzOv z2G;PaTCF5*JoVUP9mM>_mZyNP#1^ZMY+1Xn%oEe+@BP&@sZvgkw{{jNUvpfcl|f)$$?9>FFFW;-FruQ+e!jq zh!Xd(D;AYdA>0(W!GOV|7WiUqye+t~Z_Z8aptH_1XgWx(UwA55s%)1KKz@zk$)c}l zL~FHJsyR@?#`kjS<`GNf^NBbzR1jLwuBph4fsQ{6*O>oYMe#uzn>f9R-63~n<|j*` zgb#R{khbHPoTi!mZioQ@kKA~>NH`uNts-n9ytqQ+&|GAj4a>U9|;J2BZjW;r!sZQ6f z$}iq4d%RJ@TA)_x(Xd+({_4wyPTIPUQRdO}yfBm8S^*=!tc za5ZGzXUn0;?tarJ{)wr}<2H9iR$;pD%)jlcwFT5(wEA6mDihJz7i43F z^q8LA9m}P{^3$ewvPSQ2Z8pBbD)c_oB;MQDTWNQ^!R)NfR%iOrAVTPp)Shae*xihJ zom`2tZK5aIT#pie4Qkn=kx{1Z6JZtVY}_xy4b~hf5+#A~(3;ZAmu&)Ut$Z0pwRWj$ zUN%sk;d;d9BEj+8PQX0osn-MDJUq;vRP)`0ZlUwW?^2ZS!A{^WTd zPh}^q=Iz6z-kxT5cA33*kTo~CmufZzy>_kb7~ba0S_QR%v|5?7Idi*l%?hr%71^d8M2Bl_^AcQC zHr0pu(*1?hQjUkM*}J<=hK>seQBZFxrS{gzOA(g!h%d&E@=|9E*Wnc>zb(%(H#WAk zom$5a?)w?X{m6BK?&ME8Xj&qz(nx(?jO|dQPZf2h-=`Q;ej(VOrgA1tc$k0UfMUd$ zI^p%XBt50o5}rPUDOUAtbkK)}*6sI==7tQ@qiCDslfuHJmGT|})PPug<>$Ga=JM{a zGHXEvlQR-*pa=8kbENY`@16n+(05L^KHcP#dW9PWvqLVTqh|d`b>19rWNaq6-}Ge1 zq{p)Da83+8CU5lYA_lAdkX?yhkGgVKM%}+2pvtG&z={?01xar2@}0eB4AN%U#YtnM z`aXq;M)kn}k;|%Ks4IBXmOGmRa(~7BJ#n8DJoNZhU(W14vc(!hkacj#3+-2CQdJih zHi;;|$dj4PT1yM{d)UvR7bgeyGKZ}dO9QSjr=k4MxgGS!D{9n>r7l`|dzgWTIE2yl zeLPY%rwLjEevA*bSBR+|*Ju12?E(W5}U#DvW|Ndx}pvSv*DzI1=VzGMy2oBtOxl zR6~qJu2#4C3yNb#$0~>3iVsfuudP~!sxNWNp}ULJiKWfR{o%yEwMR2x^uTG}Fohhh(#VULDou(2KFG?q3r=VPc@*b|+(P%jlFgFxn_FQmzF9_n$OoZWQ4Q%ug;-rXli#`uf;c0`+~0kXb5~ z9R4Qtm6Q^dkgH*%KyDIJmbXq{xYhqNrk}Pr)T*G~M4Q{SQsmR|I=JDx-}h<1r^$J4 z{dwGCwc~Ufb%B!HynScK%3;@92KUgRa!`3>t(E-*|1ygX#mnsV&=xgh$os&mcWAz- z8Bs&a5+zjOngG8Qw_CzChsnT%$Z7tBj@-R*^`cYsd`Ur)^7od&gZly+X`8QVJ zvtgA|IOaPCViyQ>Z!}e`G8I%v{^DcM7IiSm6_WQ`veo%^tkfy>YB_l|ufsthlCoc{ z%JU@o##8kMkR_|Rb|yxuR+|g`XP!OUXH?_&ZiiM;)9UDnCWhOWBYtB8pi5Qv10RA{ zZ%n?Igo=!M$Hy)H_-y9Oa|q=iPs>oHbk5o2{6`$Xd?h6TSsV1=rE}^L;QG53_P_AO zfq3s4uJ`8N-puvwGobgaSSUi<{($!^UGn|NmBA^K!r=5r+-jTf>~%M&&um;MMC_R~ zB5tF}`y8ANumQz7xWnyFL8oX>F~Ag8@BAtFpT9_-Ux$SlU6*iPhCLWU+Nhwk3jy>iXK3j|>+E|Y5tR-${x@)XJhhjEhid1A|EHpxR7A%_c)j_kn& zBaO9yo=?~1=Fz+90a~A}h0(Xt`)+<8ptIAJoKPRV+*^pa*S6stzhY);ndqge@Dpoi z+>5nbOLjl^vBvDa6HL?E<8xMnnr`g(kq0D!AaPmeHK&(St)+wg_nR|GgtJnR@r;)K z@>3VOfe{{DDuakb<(H=w#;?vnuOT(KLrubU9pTFDcj@kjRThKY>$I<*`M({u4(D` z`BV+c5qeFCUF~y@Kr{pyS!iAHuQ?$T#pMWm0^R(#E>O8efz&kK2OV~)uBSHc@!@{J3aELMe~o#KaB^}( z2EFh!E!p>laquWOUeiXDG&Rn*Zy+m57Oc~O??%PUHS&4=Ia%hHU^lcQ$`ki9(^O>34*t$|FyUj^1l%Y-1 z;nQ!#exF2WN>5C2mIp~LmrEP2ic_*LjIFeLeb>Fna zgWe@xA$WT#4t3>U$7avfSXxR=<0KDr4NuRJ_s{QBg< z@1)?LR3RdBB^a%35riD#?K!xC@nEr?QLD9EuDn;$)5xYT*E@s5G`nFim%8K5Ng zA~DBPY#oY!=P~+&AV%F^QDkK0HOn>p_QxEF4O1?Upr9KQ(=8E3x#=D6?pZ_%A~ZNXDF?6YuSzj)(Ji=#KOGP_=#LqMHkJ_8cX81siUT zv$&m9-R^9|efqOsYbUq=bymplEpXv-6k3wG|L7b7W?3@%DVtwrpTwMZFL+8Qw|~CR z|Hd`OFG;w(qDb`kiZamQo-6kFgzhai|C-r+t`!#(r_*|sX{P)GEGOg*vVC4;zFJ?c zHbWQ`K_5H=BC75wz(D}9;_`&<@y&zq?a{67x~+rup#q$X0%-1VzRy_Mr@zJcC)o`= zohT6M5^i%Q-Mq_{@@PyWBc(w7dLb)h{zFeLyp*1i#|o^3UsXo!uK58rC$x*rU8L3C za~>H^@oKl{MskeZHPi0Z4Ss&O$rbf@k=E9liz&)>=gKZcaYx=~Ma5WxdjZL#d@W~i zcqCO)vV3`DR`j7Zok%nb2{OV-TBg~BQTtn#=@$>(&wG?_U=U^k1n)Dhx}*bN_oYi1 zziM8BomYsZX1}nZYT;yP;@H8hMH_YjFrvCd>o+q>nzTA@zbaqN`W{Nk!1~|2Jo$9>MQU+@L;gbz zAN1tYcnm4Do8vr+bjKZ)*b^n=KKSg>!={kmE>l~_8&xyD#}H}4$KN^;^8+yL9SL(Y zunM>sBLMZ(_Mw&HWE}agKPk~_yN$Xo;gZFFI^!Pb;~{LiP)?6z+qO_vZg6Z>XmFf8 z4=N~j<3CNTSUg2N4?1U(VzZKlRr1lcQ4aY>J4CkIiwcpeJn( zxU;mHZjv?Lo(H-2f}HEe244 zQMrlspxW=*IrbF-vaEfF{W(ANhL}Qo`#%fq|1jSF_sxHt2mfPsiQUO-D*E-V*L)uU zkU{T_M%wMqL+)rshWAo4QWig`_jb_pzK^|9HONaMEi&Wp{ zt67LIQfeae?=zexjkwE$Le^&G+5}xYNT0dbf_Q<>-Wz&-P}!YL!g8owWk6qPbQi#9 z8m)XsGG4{1Fi*WZ zd)*mIq7Z0mfe99B@gz}DuDhMsYE~|p%(p4|_pIS$qx#Vtj9#&p-L+ACQkI`r>82f8 z>E?Jiq(9@HM8mST%~8-DzxnfJT#gyP_RqS#ka#N~+1}orX)3~?;S$+`)bWsdgiWLE zFwO)hOV0vlLabpWC7vpbFE4<_y*HNy-lAO>x(E1z%DARopxAKJz;YZfS{BW8KDYzZ zoEQ+bfOD8v6`vn8@o&8)o673-T$Zyr4i^~e$MwQ5l`Y%|x1gLO=-rHl}CJR@+>$CHW@_O-vp}jzB1nrY*;4q z_q_x#{FmN@M(NSj_U5?RXcjKDwUPT{P$myrbGH^a8wCqL^6&dmOscHY*YjfiuWP!o zO`&=;n!BWg9_jW)h4E)^Ff|$Z=R_;t;?{&jiZR8F3st<9L01IWe*mUdfJOSs7DW?# zxvSl=o&d7eveY!vp}CjFj08yn-+ON~xhgz+Y5(TZU3YZ;g*nGhX(_i{$q##X%#5wT zlRfq?>gdY_+yP2A33(Xd1X#`9Wyld}6YGPTRK{|E{;>32z*&LF@xoKgslBcxZZe*; z{JxKkV(+&HUnCT5vB<_xivq#8>$cjcZZFTXa_!Op(tJk1vXZQTETvm;Xy_`8?E#{# zOTePn?g>;M?OMr@QzkQn0sb1mXK$R$?+HdvHl70JinSneIj#{X>7vDH$>+Jv8teZx zK3$N1$YMIW*C@*`RKh(UQEt$j(X2yLe-vnpYD^r0rH+dbCsJ{;ndu0Zc#r)d`|DL~ zjvImEWdMFNo%5cDC7#&#zbbV`FAwv&neq(29)j(DG-`6!*YrWSWRpJup~OqML-)Lc z;n?^ui@B1?9C$GB*e@k#hd?g~P}!_Em{K3_`a5h7j!K(zfKGt=BaU3{%Ru_cUOJUF zQYl$qWehY2^*%*bbBMFN6=T5kQ8DRh)upT~)PAxbGolMD$5HmkgZU5c zVotrSx;??Ce*PQI`cbww%)^ z^91Nq<{KE0uhq&cf>BkQ)LmAJ)_scnQ;@|yYUWDaVnb3=X8g`qrj*67FZdHi4FX!P z+OT4{v>>o|I9ivpqN8f#)Da!IwVyTDXy~ROmTGfPMgYVETyJ##wGDFDV{nbCcmC%1 z-xo{yQMNO8qjcxh=(y19+Bl(kpL<<9X7Apq4o;YGSFW;X4q&9iNRao}S;wIAS7L{h zHONJIbhG(ksHAYFwJbT^T6XmpkkLRjnjJCX_Zay5NwE$jNbj%otN&}aB1=#COF{tP zWpCYaP*43ciB~q@CDD*nO%|kCh@#YI1J4BMRvlVk;GKAGsXXw`i+^>HL&B^z1E~Gb zC#HusiUL}&l{Z|-otESc3VNyKRTOg=@4kmX0aFDQ(R@(pA!MtqWo61w+R=pDh!kzc zBt+N0E?kde?YH+M3Z=<{XxGI&SD#fR8_JO_qIBF!WYHByf5h@3X+wQm*TH|j?(D%g zGP*r1ekmso@Z$nUHJ^XIwuB>BfjRzXARue*|1q%me?`lGg;<-Kgevm(nU^Q0a~5A)-T#^ zW(GfT=`aDf);*M5B3YP&YbCqIb0u7-{ul5xlN;eko2V2guP8xPApF+y7mDo+_Pjsa z%G{Dv$}KwYFFzEwrv!}ur9?S^9V7{WQG_WiOdSFy@katARPd_H>Xf?c`DIVGrTIiNHlkOf$I$H92ao+#v@O$3!kRAURMsD)f4_J zkUM2dBa9D;>UZ}9_#_|DR&lqtNIGx5cbei*rR8O#aYr5pNGCwT3`tpxI0QI7EbrXU z_{4HZ&(fGf=RwLpBMw_wgICkX3iO^Z<`9o5iIVuvLl?q(I5zHPp3ymab>S3PB)hD#J5U!i6=(>Q-AEbo{;zN3#_8uir0G?We+HQHJFlm#E`E%1Whklg1U@zxA;c zxBi=smoK45XOqqNJ<4AK2;p?!HDJgGl?&s-vWSehQ~(Hl7dnXm65_~YVaor#C9Je3CY zq4eKGpdhWk3%8AjXz|RSg2zHOX|Z*o`rW-t2Y zg2if3hxN0H6eo524vA{Ji8-~|xB0jQ> zmhG1(QnR#$&j-x|imj26fu%$cd0}{D#KKDC)flgv#zbPD^7CVY@#PyU1)^gOX&bG# z09M%l7qrdK!J|?WBR)G_BR=gVkdh80$G2~zXgHsX9|0=H>j6E;3bm{mmxa`LrZ@t` z4VZ8mt8O-Yt`R+Xhnq!+93z>92seYElGkeWO^V`%K+&u%EaDg_#=_VVY@#-n>vl0* zfU#KyS@udW3ozB|mhy3wYkP*R|r28o7?7uT(UGp2*uCf09Mr z)C!m(o5_$55cytj{psuR+@OBVztJ^uzL2r81m?bY6mO)5cvOI>OLS5?xciiJ4ii9>~gv? ze~IseYm^7u1DBUu3f>05D)c^!^n=Q`6e@#EZ946(4J!64imWRKg<3w#%~;_(s4)E}fFPNV@RT$p2yStMScMo}L*k!D1v3At+gJS`7x#!SG)B|U*j+pP zy%!A7D~=6tk}58 zo%buib~kX1xi9dd@*WAVih;5T)dXmu$7*1xH9ly3xFcre*v4wL0zS721HZ{T1MpRr zv54*)1L(ZV%69$9C1p3^<5P{|0N6D%9_0XeYXkL*2j$|x=3V%$UL`x>q3~Fq98fRz z&;n4(m+nImnhn%g@4oR=Mdj8a>lZn!>ab!Z%dSMH=?XJba|@3^^f}<(Do|T_ulT*< zk4@kODe4^FSSL^l5XV5hzp)l8#b!C0H{e?W$V$JnM)<(`bHquWMNrRO0(22pEcv&p g^Z&+oKgDbv9I>s$EZJ$l3O*c2OJB3}k9&{)2T+MJQ2+n{ literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img11.png b/Term Deposit Prediction/Images/img11.png new file mode 100644 index 0000000000000000000000000000000000000000..cb18d3b832131988d91d10a93546067a949e6099 GIT binary patch literal 31053 zcmeGDWmJ@3*ggyoAfOPo~;ELK)lgmY3?t?)mE zmZ?WYA#rd?%80583aGx?8zyaSIDhc1f~t)njZqHP6J}Y>kFOS}3<BP-{egP|MOkYvo_GBK9&5|GZ<>RyOUC$UN#lQd#2>#qkUsym` znDscGVonT!G&A2c!aDz#!c8p7^MCk}|G$_1zbT10<*K!al!sbu9WM3`>uPB8bmy7G z_&bp_i}aa_eM}C@k|8+gR8iI<#QwEy>J9Y5GN z>vQo8D=gKb9|5yR-<9+@e4Fymd(!je;oDVo1Kh6mySuv3OYA2eo~K8&siI`IF&oDm zhpzNdh5ZfZs#SiMlHM|V4I0rSaY(W?_}MV#px?WEfbU>(-L!0xbF|BRyXX6Fm-Xjq zd^#0gpS|XPm~N#GaKBvdrGJ)h7hSCX6Z$>zEP&SBJ+}OO!DfM;Qb>>DxL~nvzpEYR zsC}IMs;|mx6w@iEeazYR(<7bozNDk|cphlFP5WAtx8~_`wAT1WOWw+SnEiUB#u^GI zt+s4o!?hcg-#1hy<0;#4WvXZHjiG8vTba`7=|oT4&~8%7ND~oeJ3p(qA%5+C`f>I% zr=giHG7D#`qF&#eTF!E}or_~`;y0%{e&h8EXRkM=+*7yM;8HiS63e~@v!RDCEcmgW@r{&ZUW(3N%gwc;WDYWZo^ zTk_0*6HGSiUTS-E&S{d7PHEASu}nma&wA`*c)mBaCpAS1qPE6QJm&-#i;THzRo15* zmBZSa`f*6QQ|~BBgvg&2r9SB>#81+7J~^0uMgK$~au-p9>#zntO#5EQwy-PCs3%!( zO*v43jS$w{e?PV!HyN1w z*tZgfE7|TeMozz}*7Zg2--%3OZV9N}7#hyZH+$M#Ybs+9J;7E$(&t(0HMjSy-J^y=}cWM^f3FNN>%ioRRyu$OK4smib1$^d@xjp5Z^Gokw2L$1?-PQ5-8~ zaE+JiI=%tXubq;Qhx!-iUnB=|zo=Y^|E?ahihky>qP5?t76yQ$~RUHHNs}z zG!5^6R8c+ooA0n9xHpqyr9IcxvhX>ajcLJn>@b<^!)I zlKD37$OA3krxH1?FaF^l{6s&Z37h2E|7xAa*SlDy;~S3WM3WZ3F>RLvE7Wh2^V!l{ zajskJ4jwp`)&FSo`8a)`fV4cA*{4cU!s@lUtg>Z;A|iUYpxnpckNKIFeT+@7r^(r| z>;9c+ycHIV*+KZ8gyCva_5@mX2RNg*o2lj}s^fyL7)Cc3p45*iU$2~Pk1gvYi}_8W z&qUkwRfAZRZKdN5nmhf(mtL4(nzCu?+AXhNvJSOr{^?Up>4x=+*5PA8>=xmxk@l0X zJ`{NEe~|UrSL-l46Sj}uX#8l=Z?5kB$$LXHm%H5JX@%e&;j^#;)rq=Y!*KG)7SXE{ zOdW#X99rfbG@M?)*WFdDRkry2_3-Peh~4-czEtV_R1s%SY4U(g_VGR~!)$r5h`zsdCls#3?wrYv;GdY};eGuM=F55^F{cL_& zgXnaxQ<{SGU|>zD|kTcYpVD0SqHVKc~BLog%Lqf9G+|mCw+6ylz^+PBs4-nU(Hs zS3>-FXKzq2n>aA1U_xwPm+jfyDvYGl$8o@tvNL$VEK$+1YN&5~diwk5Oqv+&+BW?r&zXeSx2fMYuIDT2jk!;4 zrTo^x($WMs4UE-XvABn6DdIx6ZU>LEzk4F$ zUsOH5ukYFQNCF*HDBLy0^W+S5Xgb+57uONq)hK@_#?xd*459>P6!n|3+qjMcvpIP=yi2iYkitt_#*KmaEo9SrkF* zwm53{s(8A+>(it8Yk#LfgT+q4_wNg%CimPderrEg?yfK3LZQ~3wKLe8?}~e3%#J7m|ys7 zvy1ZWF&iIAUKM@3Ii%$!h4#}V@W}#5-(8s9x zdJAXqk~E)R*{>?)(>gu)v$aUNr;nOATqm7A6ny>nc>G9yMPkFm-L*pE;t@^f+=${v zGhG@q#so@~P9=&0)}O3PnyC(-^fWOKNY=q6TzC17uyj~$1k6nb?myh|USvL87tem5 z-`n(feX3g4I>m!}JKm5f9bG3+EPnEFX)gSbyPo;aWVNrN5VP1~oU8H^B1-pN*wzzC zS8S;jm(GELQK}<7ZfzFYMz^L_ba~r)9+?=sq-vbO?_=+@>M7RhuYF9&mzsO5Rm{PS z_=LjU-WX`~LVx}WGw^5<+qlAdlCDz2(5O0o)2hw^!{GsA{{nQCd}CRQ4^KtFR>M(M zCk>Y+`ftkaL2|vEix^wZ&P?^xJ(3Z-C<>alA&vIQYwI$btQFJDmGHd=F9jE$lMn~k zszu@c%ir?mrR);=Jd5ob*D(bRg!l732Tsv>l&DKL`$~$Q-qLhEIx+X<%jjcYRf4A@ zv9$AqBx392oZkA4pXKCv5;@IF%b3vf+vv3npYITx>r6a!A||+hp69 zTtD_LiY^Qq2twf{;vGqPCLc$m?v*aBgq(2U--#^r_5J`w-jgmd*gO0ExR%MvqtE4F z9A?WnU8_D%@zC>MBQsa}+WyD8nP((KG~$f!dXIKfR=;k9lo=n)vVVEPC)oJvNV3y7 z+QG4QvaHXC2LL@2*BFA4o?pI4$e%O&e-Q5fK4#myo1NBim2DeM9wDqz%n5@Y{MctE zI-5WGwqnNybT@vXR?H%I9oOXPW9&mUo2f9eh!DD>J#3mhkMecGW(M}L@6(b7FFV_d zbx5t65T9a|*3fIEd{G>)A@9=NV2J)bX*%k3@bk>^Y;ZB~HPYws<7(ah%9bNs!t%s- z-A7YZ5Y4ZnS#prMT0F(PFD5E3sQsd2j&>!!OVH3q(?Cpg$3D_1`9QDHYl^RSx3MLo zGRWHZU&_*>JE^ zxlI25PZANVBZNH8k0C2Kfu^ZaVkmrOlk*P-{u}?lL>?qcH|`%~{(UWDaqV1@y_8q9 z5o+VQC9IKWCiHv}DHo<@zE+X+C4sZL0Y_L@ zFe(3e6o!m{0JjjP5h(5RPa#&}%dxM8$rJ9MpRd#4iZ)Wpru31_&1l9<=?hLGV(My1 zrt}vHau~%H_rB7PD8~O53WC6roK`m?)EqlQbKA}z2eWGwYvi=T3rg5#Tbue8@oVV$ z(q^34P^)3*8rY%Fj77U{NZY(i;^n5?VABG}Ch?H0zkLC-aOoDk^E=9JV#NupJe*)^ zkoWAj^Yw>zn}vV>TL*JhY9>))S!}7o)&M-$0WRV^HABjP z=&paN)cz)J{K{RQwev#qW%%Ig{XxDPoNg-(NKQE_ivL#f0xKyjlBJU75hmU*2b>)E z(}`JL!Hj`4xlMhCO-_BQ|385yet^INmp!s!ui0KB3d*(h<+v{;lo$em;r$u2ueRk* z(Yn_dTVZ>y0*0ZRMqN@ZTCb5OGS$>8P)gTW^rg}ejLlJ>Dt;Dr^YrBWdHSfHn#xcYDi=@w z-*Z91Bj}I%b1#dcE!rC?dM|Gw1GixR(1oV8(GyIc%O=AAYKfVDn&Ga(Mo$Bxpi+Aa zw%vE@{5WQK*iaqDiK=n_l zNn46g@O`xP)%}0YdBdoS@l#;LwX%B~^$oK+v-eHU*N*@;SQhF+P9PZ2o1k-PJeWOM zNkhLAOjGi3#zpn8yPf9r$Bf;Sd<*%9w>Kxr0_+TXnZZ`}t{%7QhZBCl*Ip z+w7vxI_tl2;t~?{UPz)B3Qnbp7J66TI?Le{WY2PGDGK=5P^K}DkE;DCA=9dz{WOdI zKVFEE@AG?zGV7(j%kGg{kt+CU+eN{mUQy9`q4?(ByUkIL`qs(HKK=PP$q&e_QFM`q z&a2T|(v(C+FA_N4ZMgWf*R6>(Xbbg9MPzMvsa|WK=QEulK$M;zly~TA$@Ox$owfmM z&Yl5JWxu$?(Hn=F2IV+-LszY7P11p*+(dZy=@?1S3~mbB6FR>VtnlGBF&@Y5m?InFY5u6-V<$>^cnG6Z*yx8 zO*YxCz_Vfdj#H#!Hw8=!+cE@o&JWbw%h1fH%C<7`C~u+Xee_d1L-xfPZ#A=nIBlXh z(Rlh;PwwF4Yy5o}9ZhR8G>&8voEtE&hWcOY6DgOkH^*KfH>(S=hs8 z-OT)Jv3EN@KB(eO=!x>~H`v;u>gVJ9i8g2BVg;?V>&IVY7z+>jnJ_2t(^qpn)at)F zlv`UnPCb6Lgqh}Ua|S#>s8jW!?=E67%`Mq%u}9Br{MAa8&pXHTw&S8_>P`8&sOj}d z;XZ8`j^Ji>WTS2KA;&I=q_9MV)n=YUf3uOg5oAmk~EX;)-_QIF#g$ zRkYj+J#|5K+1g{BU-r?a;c^x^OQEqM54Rn59*UZsZ3=Dj%!p;iI`*yGm_??sbNMwpVJvCwkfki&ICgTGJYT%rxahX30<}`6q~j^ZrsB8x zb?02%8&;F5)z@F9@oV6T;AcAe=1@~LHH=MOC~xNzUJvwnWvvnc6}i%1CpDU;@ukTS zW$7a5Y^emp&6O+v`vF;&CW^aFn%b7(tnHO=i9Qdxm{ahD>>k(2dxY;Nm7+|#wzpoL z#{*uv2fx$iMfT8i0h5kXvwD5di!_rBB8X1WhO0Mn*D0RbQ_C&u=ZF8|cQ!Fr-0hE* z+Kk>eyEwZ(Q(geXAwLL=_^RMr6I^@P^fN|az?Z=&8xQ;(gnNO(3@^@vi^SBd2_h>K zV+$rR{XjCZ*Jgab47q=n&Ex|2z6aN1Hu=fi`V^%wu4#)CCrDx&?`UjG9%`J^*=U_9%gR) z(V6|wfhKWZtj`J}PS_u>GL3I=>C7912|pnKw!@TzN`Mg42R*kzRX z4x*7U9KSB}Ec^tMy9LkA;Z@ONGMM%+*PH|MDd z_rKKiTiy@1R2PbC4~;UB zVG0ITY5%5W(TH;)vA%{7USDG+=W@%h)E4_64YWV@!@Zx1FJk`DxjEE3|34kL-87O` zuHnB8QmB(+B)OsPi_0kMbVZx@(PE40vTxx`sNl1!=WB<4fDi^+`DRQVuegW2dtH5T z5eJL%`p}Vj@y_j)`=+UFQCi=u&t=eT`M~k9dg{@dE_9uv`X7onoyi;=ob)4gRU?|X~nQLj$9^0BW7@%3^mhxsH)nzRF+xy{Ekcc ztAYQ>3u6;y9=^e6DsmC9A~4HvAgMqY73r;6%3$0ySQfn80n{?>p#HbJmPU|NO8NDo z115XZsHNr+T8OHb=f=#@f2oNctO5hs7P)N_PJQ(Jka=Jr@7!Ue$St~V3EQFzwm7%4 zcD%DLjr?kf5%yvKp5h{wXy+{aSL`?3fQ$c;Dq?DWeGQ~@96Fp?hx+eF|0VU0;1(IY z3A}TEdCDjU3%N*Se)>RLWGLs4u*0)K`}XN)mtydP5VAr^!@eU*$+_4`HykdIoZlq) zbuG5PoX}^35p>Pd3xGqvx)?#(12z@WbQgRT=E_BvO0d&SvN9?Q!pdmlv zB6cv0-Y{y32?99f>qj-O{A*?ByE@=wQ7R`+e{MiJR&<0`{Ewz4 zHC(8<`NbnY+@b8FL||OkfgWN_Z`~LtXH?Mo24x$@v z`=cGyFouT#qn=tGEX6U;h%xfuJ$hM{{C~nEOVV+o&qW75G);M{O=PM3F?f|0^SO@L zDbaVkXZtejCB*)J#3No+J|?mMo@_*ZC^d{pKDT3^9NTTBVnwQRZ#EJFS?mj*&5cbho>y@l#^}4_B_%4vXGZ0Y@^(X2eZRs0_Jv>K>Ru5HvvBo6NJNtS+!&my zr?fu)dZK%Vm8>hbILE#|xp2Apql=_3*NOoFMt)fyzq0!83D3hPxZF8c6QMYs-OO8g zm+r2Sv%XWDax+`Q(XpJr?52^T00mZ@?Yp_&z*>g~zg*`;w9;UCLRyL~U$KW8Yc~yP zQ{^3^@g~Rq-VNTx0+j8I@c;Qx2>%WtWS99}QB$X!`D^tbqPRd0Dzg@A%=imvw%npr z{_DoxWfUFxFv=&J@S%C1~DD^EI$}WC3gA-z(e- z68$N35#h=x%vTD@(#edWM~drPrmRvLEx*mJDM zTP)?Z!E{m0cD?{l5$R#L9=pC+e_k%fFI<+(i69H{#es79;M8jq-gde70uWT_h-=jo zk$tpnas#L=|7K%fKHm^{zQ-8vILgj)Dka`RjD!3^|9kZTO-#2zdU;Mvxz%ockI$6J^ z-aR@5c|3|OON;*^_eW3zrRTr>BU4({H|^?~_4oL)bjH+y3@c9JBP^fVBdCvxGHm%V z0gvGXbNOw3EAk){{i=eMnS@xBW?4n8z~1U5fDag7CXxmOZ*v)ZFEu}!pRA4! z%so883Cgfdt|Shzr??Qnk1ipDa}Y$n8U;Fzi?%@8L6L+CIJS(Ki3; zvOwqmKz`S(atROu&0JYpKdPuPr-}f?L&ON6P1sVOj7w9_Sf|(IPhRE##*~6RrJct_l%a+oiJupGAXgt;*nDCH3Igj} z?<ip#rsZpOY!RdM@#>FbS)m7sSE*V*B8^*jY5d?K~JEVtIr@TUWB77rS zcQGwtV#R!8nNMdkXsw^F`QOgzlVT^(9c|CDQDT{ix4$qj!_3oFVw;6b|l{Q2XMBG=$aySU2wKjv-li8S|+DY)e>V*4sDHSi#%vvD8(>H z6o=NDuua;fB>W1ACcnAtR@Qo598<3UM?o3oWeGN`mmj@NdFc90kuX?e`~7WE%=iz9 z3k5do=fyVqW$|enAWj%RSLQjmPGCX0)lnCgm&psUsy@qYFxX2A%OAkbl+p-@sqY5H z_w?_%1M}`8ZyD(@j`&1s46qfKgYwyOC^Yv5@WY~+J1mf@30M8bI&re*-Dh7bw1auLFLRc9ES8|QOJ{pX-u$uqW_4^Pp0TbI z-Fno|<&V_KReczrgDCs&;A>aW(WEpuH0O4x19_Imk!ig1%l()uqqI^2%I!-)s+lR+ zoKg9_|HTc=NYeU4Gh|C()73Y|$;G0SzJ0>x1*kf8RJirpwZF5zmB5=K$a zH)0Ow^~`337KuAhIC^FQXPK+I4db;I2&>I0qG$N?X_n|E_-@&3QRy3Kw&eyqKhtN_ zsAt)H#q~irBbgOf-09hxFi_|vf1HpakaN{Gu5!CdVX97~*3mt&^VK)yrg2A!N zp=~^E!Kj1v#_pSP3p-ym;_7e#boLtnJ;C!}r0M~$AfCd#=kZ8-{4 zH0#&JU67D|K|N!P)p>}0rm_+0oMbCnxS-+VZc<%+IO1gAnmaADWl zTI2XPnz$>G$Z@`8yFQP~;E$M}a*Xe@`Wo)lSOwR#>#G%wWDV4Gz8D_CFY}M;SvR$@ zh@h~rD3hKpHk4KSlb}{;l{SR2o4DwG#hr1!Z8;P9t0f7e%%bzhHwiXaeZ8Vry~Yn| z!*YIYG{2?j<&4N{DkRlvgo&gBrYpVTVYo60QBCPDS@IPe(o$6h`v3Wepbx@|OKf`7 zv=%X0t3UU5O0^-jKD@h3`yD-zLgxLN4C?`ey&DLtjtd{F>*?5zE4~${l=3`_T&)Z^&;+F zctux+bNF>USk;teLy^$KJ?$OAasQ9}JR}l1E+_O4=M6D@HLvMq$Zod@1Or)_6Ovx63TvkFS>C@m$i5FIaxL3A>eu@Oty*idxIPXUX&-q? zomiDJ&A!`H{XKYcy7sHjf=wp_3qV5G%D&9PLR3}|=T6if6~~dbYY{!L^q|tFfT6v& z*3?-az2qKL++)QhUhuOJPiNLQ?5C2@ACElPq2Y?K>19FJ{ziyhD&u`BM<$?4X1zhz z<{Vnxx`su`5R^vcnYri&>VMQ>Z`1icq0C%ZadNaN6Rbbb@ci%TtEZ0d%<@l|nnQ;) z@6H!FM01?8Nw-F><7<=J#DqG34!nkBbK|=Qe}a~d0})5bN2l?!5`RyA*N7ajGAu~i zn_7`DrDBsy5c3cl+I&yO`IB~w-iA^!c`wgpTAT%Qx$OWf$PnHAFCQ^bgWulzHf0>m zkr^CM0oz2HT!KbWzVZ^o-_YqF{te8VmiaVw-b{fCS7iHDfD-R!<{1 z@XV3dY})Vh&~B6+tN)zQUk``T{4V>^%S5;M=yu{vGAv4?*C3+S@I$$)L(ZL9fe@f5 z%}LF>?rrX*xz#*}vAzZR!91UTvqXSql;1T1!FMLPGAtX=$Zyr;=ZEGcJHE368<+3y zt=SiD;42Yj`1H7*81^&U?*aiMD8VkI04gY)-8t+V14YC+TvuiTUe!Gs4_hADgZ=?2 zGjkcOf|&d}Kt#GukX)KgP=eet#fTMfiY=;@{Yh)bhoQ80*m} z1RScmyG<6k;S0mzp=PC{0d(JkX{l|$#IB4jrETSiHn^e&o>4aFs;Xl$o2$q4h^8&* z%r_5jLH813(!UWB$T6CzzZMX*WKL?I{>SqHv0CH+YvZB-gpF_yB%2DDEw0F$tfO%| zepHx@JBwEq*qB$af++$|OF)g(js(`aho>>@0&UTdwrXq|4<%frN*ZQVp~dEHctCqa zefU5#2lN{q&Hc_(ZvsK%{y$}Th6cY;P@DXz8cFo+$Y0bBuMitHX%``U{04flr<@2; z`L^Fw)p&I~+xm8=BcRrr=MF{>vQ`K1(Y(pT(rYg7J_ZdYqHHDY_#OSzBWlqqf3hVaw^n_N`(%9w~Wr?=&&2>*)^%emve?FodANFnLob zS0-$51^~yJ=taejNw@s`t zgt*@(hnuWFJA&4>b+W9U#fo-8(=tzOwA^L?6S6X^w+=5G3)l~VT=8``O83mU?hE|= zIDfIgL8%M>TWjwWFW%PGsly+;I0h7Yh<12H&JW7D2SLfcd;h*8wTc*t^HS1tuE}r zL7`TxQd)X3rc}X;_4%mTUF0~ydnersJfeVCgS3pwU4GPTU0R!f6-2!)@eVH$#ueG1 z+~F6lSW^4F!g#M~W_|WE)qK*ac%@KpG{rT!Ok>YCZ|e(9QC{(i&p7nemc$5*_<$;g z7&Pw$Q+yp+P7l}~*8!1pu1w4@O>b@+dl{hA`8^*qqE@yS6x;eJ zSo`Rj=P-v3LYe%K3fY3o1-M`uL=?8I`cAJRb?nAR7}uH-CcxfVRx+%eCa<*W`c|0R z=n`%>K5Q2FLH-G_nzJDxSxdHi#1!C3Yh`VcEe}6feCo)Y7Z?#z+~>*3A=)Sc$R;C=FZ;0L{x z`pRcPjm^m5VQEL75>jejvPBV_fwV+?am-WGY1GPS8Nlm@yjK}4Y#smaRpeHw$t z0iNOg3egFuyYifDbJSs!J5Ls6}%&_%Jw2Vp43_}dmrY1=+ik{=Bg zHMa=KW%}GLq0Y*pRVIo37~>++boe4*M9jsAWy7Jq{)XS=!d6Y@vFZHmS%mnmF4_!b zpCA9%I97Bp8#H++yDa~Gl@Tv(aW0_=G5Ot)#+munmI44cUxkY`PM0pGgyING+Ki>6XE zGk~mpeZ`{+_PThC4OXX-ZFDOlIe7XxGbT*b4oXOk#3ghE-wmXZL4p`xN-lfyP(2XB z&~SX`Z?c`V(vZcU>QM_7j89LZ836ar$bIzSIbk`@EkHsm;Ba|SJ~Z8ks4z-MGg}@Z zfz-Bu272SZNS3~aUsB@~IpN39M>xD(k|kAi-ZzJWlr;hc3Ka+~a3BcP1Nok;ofDVV z*Dq{A^sO5}CW`!;E}5g4Ph^0#xa0PJhCKL;gOnoFCO+1xb&{}3SEFcZ&|Wwmxy|lH zsDGkCjpL4xjs9S@l4>qKK#-MQUunN<#YbQY>t!)P%G65DSr^4X<3QzB@O&p`o4bPpkxSu@G_AtLjdr zQ_j*P-N{X(FWRF8nawT3oPYX$PUXuiHv`GMqkNDlHr;80R}VcojsnXc4(!2xhdt&; zfoPwMJ?l_TCS%9cjBN&)lD3M-I+F9WSkqgJewd!hw9au@iap*B`VF;ZS~VZlm>F5` zWej!a$dtu=>PB;9y`*QCh44}c@Y371-Uj7ft1u11oOYp$AnmHskn1Xqz{InAe}nv} zacTi}i@3{pa?|R-C!}JdG$;9ws**-vaNLB}S1hwTTqbZI+1j~-E#~1{d;wU3_xNH> z*kx5!*rpH(+_IV1v80qLh|2r*f7rT#Zj9AGk2gE%(qRN7Y{{2{8JU#K^BOzt-K2{(ohgKPHoTM9Q*k_$pE{pPxCaH3f zR3#YMLd}i@}_MGqqO&q>Op2dV{VMwB4Jxp`jgi1!UQ1V4=)tzyz9fZ=C{-T>V*7!8PR*Y2) zLf!E(%Ar|%{aLWwD}U9_zIFm&jx|Y}_cnR*&_rQ9f@=L=b|tb)<4~{!mzPA(lB_CQcBW`#!egjJT#Bz|DSU z>AosDzJDYUonM?vfwa}`9vsOct@!}F?){>B2uR4K@{H0TVc`<}-9K$#uhML66r-%c zMu-B3h#MqhE;N|&9G=!$9@*-CqNU^`*QkTXyFIx$t|ivMxt8xZHQK=vUR zN_R&}<3+di4|K3HoN^$*r2!uT2Jgu$r`eYhe1woRE#P*!37B}pHoMDJhdNG0T-y&+ z5k);rPh^@NnXAU;Z>#?%a<7`0d^gx4lgFen{73(_#Db$*yIk~h3svSAMe0K{DS~OK zZje*d4|B5APwxX50g`%6yio7ZT`-!{?rRm}kHU&p&p+z_<{r@hxp`IA54TfYoJR*A z2Skxwdd&m*?kp48fZQM0Mu(P#v0E!Wef}n($D()*xnWwxTRbijIk@*D@87Hmnb}?Q zt5QYxj<)$Wi_0zkIs?*c0pGG!EEV7-tK-L?bM2$GlGs3&O_*Id?<01a=;}$kYJ*xb zRY?iVSU3vxMZOkx5Tr@4o}g1G{%Uo?G~!qw|L3gM;P6aXG$-2TXi2*}!ug|(dSD6} zF(l!`mQspP@5ZYM-i@^glswprOs3D}rJftnh@}yMReudikKL#Kq~VWOhDOqcy%1MKd1Cf;tB8AXd^lw?){0W9JeKlv%xKmtSO7V+#3HbA)jG23tPCfq+@JD} zvNCnv*TSf{BnaZew`y&+?P^?Q+J%=-w38Y~n5PB?10T`}d@SB*LJr7UltId`VZ||9 zyQD{)6JhQn4vo_;BR#?O?Ns+3R`whuj@bsiC~&5~lCAUiks8g0ZOrt{*c$GM?;jBB zo?}3@2ru>N{!x~RX#fU6p?W^dyZ{4s{rztoqWN~zLO|J6-!s^E#R|);$uc$f^)`Vr zErP3N;z$zUEH>}6BSNZ&-jEX7YDC+-=FBGA-Z<=i(QqmW)fS-4ss?ZKs}Q(xkDzV1uJ4g-p{zz=3bi;Sq6=uB zgt*Gs&ZD{Lz`ysi+;36(Y72P0!8495oACjL`dZAJ&_AIv*7T94u5f6_I=!x_+)CMG z?ar4;$EW(iUtp^6MnU8*rb$C~)-|$!c2+Js&;xY4?cnSREpE*Jm2GPZEcG>__3$GdZwQa$gr%gVx6i=P^0h>s`^_@JYX8T^c#uND zB6jAJ#Z%QGnkR(67Gf6?zu6~!zCOnhedu7rK>1+MPr7w4umWF;?NK+kf|Am1tv6#BNGo{`VOl&Ap*)YU)R>`X6R2V}9DN z+1*R}tp7?QAh(2Mj&vY^o=l(JLoZTi{U3Ng%GT^VlrgBtqFx!2w-GvIzJ%kmO<#wT zNsFyOB7RNSHep812r(*n%4wTWo`~0xk-ExZM_&+xXGVw(RU9rdWUQxo-j({pq>^@_ z``6o;PsRrBa4=(8gI%p>c0S~QEvV<0NNQa{EVXVE(~sj451^`2=2m&^0>O<4!mm9I z7=Gv>!zg2s2t}>8ef{>m$Dg@WD|^&NKXI31Mrkxrnn}J`My#=4^B-YX<1#l1%v21G zhS^sb_xpShrBNwS)^MwA_Gmf4?Pro&_>4yw!I~JwsRx=`*(3d8 z4$Br{XR@c-@z^T3*3;wA6AQi#KQUU=HCuD|UTI6e8C}y7Z>0|JF0hNIMa5(juUIEg zT0^3J*T3HuLZk3i%!^NDD(4QinTN@vvh9Txmz)~Edma^ zFA-%nYce&>FQP!*S54#cniEW0BUm4^;%Sx1jq<~h|0>%-oX_r?#y}4d^-|#r%I_umJ6{eF|gi0=iB5R zKn+pPqVndjE4=mM_tDD`cGa-)!i@s&n`(e|RE}UtiX$*%#D+owc~dpl?c-i*jVZSc z&&DSj?x>(L)t@4w7VyT{cOU1QPx1 z--65#`xi^a$m>qTAn12od4iX9FtaAW+wfPbwDeo3zw-B+B!0#oVY>-mM}Jz?$2yL` z>&ZM0bjUVmv{|al+kJbyvPw%RAn^=FjxACcSfd^_V0)xX97EJ>Dw z4(on04xg#$v>NhO0rn>?-r=d-A(>U4&@K7gu3ako*NbaX>ObBjSi*7FC^MXO2q*_R zND>QQ8hp~6R5une%UxfrQz5Q)x!c_P{`weQmlHu#_VwkU$SQRf^Q+B|mR!XC=K6v1 zr5B2)Lh*^nas7`^BYIUY#wjng2(T_m7sbLASltS~-vQ;g~j$m1N_1ZUO^B;zrSKK0Tq-kwglh-jI2 zIGjgKV@#0ZRwo!agoG-(B0P*fk4(blxHX0tC+Kf>l21I7dBX|ba~PsiK)a|z?w=eQ ztV9Ref6uxO*M-I=bFhCTGI}IC!7Djp75o?HDP6d$!lFcdT2eN)e7zD@BADUxdljVG zxAxGw+5yE06PcfZD{@+7#`mm6l}YmO=wN{=~sMLjx`Fl>C$q&8ucLM0wXtIJ3wvE#V0NCDe z@2q*7`az=7rvB3Xo@V8ts?>?B_I>&zBYhk{UHgFBC%u?~$lNpChMn|Ei90J-9~FyP zcdMnvx87tJU0!Vk<>1xs`2!~lhl(jpiiTUBeq@f99 zlfa?KL|bqX!Hb3T*CuHqGO}Fq6hRIkgM{wL_44sWqfB#~swG_JpK1gy9M9jzu9PAk zqOqR{94{YZ`qj^Cn{eOGLyX3&ZT-dw!a(=kYnF+5Q&ye@LEe?CjvMnup z#Ns>5PHmefd6!*}Prl3@?qjyW&_-kQ;-{2Ux^G1r!;p zLcJ)Lk6=m{>1N0THoB`)sj|2E#rdi($OGh!S%dCZ62P=DL|J!cT*8royrDajYkP+| z_oalWkn$ZaFYU%g{jK0F%IJcHcPi<@a6>0x(E;$^^=Gau8PB$rE&Lw?GsWGlfmIGSNOS z2I&7ncNBi|U?V0Zd1JSFw)(oNDYc)s%;07HN+u!|Gk-$#*aev%1~BJsW$LvnIO7zL6YMwf1h459{pSJ`zI;IX`%c9G!;~o)GGcNj}F22{53ttpiK30hfJ*IUqBh4gW?PaVU?ON z8!G|cT}1bybrMXb>iP_tv`ca9+|tBxP72h0Y2dFpseRX7Le&+#pYt1{Ox>4=qSM>x zaang-K7y&dqiTqP030t0G95~Z-K#v+BfIi>2HR``T;L@_J+OZ-2(XQ+%{v^-m8pK? z(oH>wse28hR;|ZFE>V=g};aX@&JOUgUFv2XO_e0&g(=_c{RuI3EsC(&fE@C zEid5OuHc6KAkC{Yovm2Pr4L;^*f#rUD}||5re5=U?w(95QhQ7QlnT)sSA@qc$qu%IV&*iw*OxFm4~_KZ^9V5ing-%i-7YO9X^tbA{zmv5=Mbmk}p7cF;Gt zB0jr2b4kVLrL0J4Seb66dw8OIwS=aEy(PF7IyG z{w`QcNz4oSvD8%o$}e}VARVDLlBV%{pXwrX93e1(CPk#GHBEyRq8|iW4!eR1|8{dW`-kFg412 zat5PC^roy^)S0GoH{>^{A7TaPm|{AHylWL}COvPskb4?AvE|NN1w$tx+}YfOcn8mq zGH2rmz$`n!8UpYj{X%fU>FSg3X$=IKdT8IO zwmmvsszIj;?Ce_>0uY4$*`1@TO}!6@?raY5PQCd}I6NBJiXJ;WvPngIp z`EC9Y8D=4xDbWc0ZkxlB5c5e)J4Zg#x82zLUH>M0=d`MLbj*; zCpekIBw*J+SIQ4pO4mvS*LME4hq#$;@$(m7cnh^FDe)0(XZR-zj{Thd(Q2}tx8J); zv^`T*R-M^6%v?4sh_3w?^QkG7DPR$Rv);EEA;D&#Lm|{lvpP(pTVeb-d&o5WwETp% zkn5#s^Ob8C`%GAgQ>sw^Ij9sjAKI5lzal|>15AHIOL`CSTcdYA6N)5!V4~2=p zN7lWxA5%WE^BhjY&ElWUJFQdl%2%Mq&W_$sHK->luk^++nO3LOpr^yc2|y=O8*RzG zvvim*O&KP7p8^Q4^D5xnk;hYr<$nQFkBgUV<SDypumHTz1zfVg9Efq2z zm?VRsP9R9d7gfR1UwdS(9$3W5FIR!3EDl;-fSP@nJm|!bS}Q|~Fe6*D9@n%ft_EYR zWM<$c7FT*)Rxn2I7m7UHcCk8;#;|6yMHMbC)wtiQ1M>&R3;vavXxOt%%x9fgpe(+I z#HA+Cw+u;J9mhXj_Gwq7uFH6IJ`L@a?Te#fu0XrMCZZy($3VM$J#N8XFxlf}UHZK< zw^~JGJl2p(e5v+jpHF%;8#XaNH&%xu%ShrAljsg4ia5-Yk@-q2FEykTSQ5fnkXG(n1V=^!8-6hxXJy%%YrcSPwRy@Mc# zG=b2o(xtahLQz_P0FjP_GCO|n{AVuaVyo2_xKY1-~@d-^F%EK_;V4;O#Rea-<$wjFt{;9{mbBj+6r8Xt09De9M<)7<8C0z`gF-oZ2m$pk2yAni&uaUtT0+|Yk zz9ym_LE&;V9;0YB-@Vfp9ZsF+u9bq*%CyL~ddWyJ%Tqm^kFXs7Yop&@c;Dy94YbsLt{t+(=HnXN)?5+N?kj!Z#pO z@vym0?Z@R{g>?R1p+gMLYQ}MHZKm0#3h#YeVqO#Av4vQ$a_g0_?_X5TYA1W(zlHuY zc8@!a8c0}xoa6fogsu?(%()H&COwEMVoxNa_2D8wW~NpdV?mM z>O%?|mbRQPQ#am3&Q03wL2ZCFO+tCNeQ#KZvje$nN0RRIa8CVtQ2C$cAvQ){ zr-aCuJ6c}X$}bauaSBosVoLykb7~v9cu>NYoXWpV3JCgw*6weqgv-9Y(%eaTyZ+;< zofHbism|WyzpYNa-=G#evLE+>KWw&qLo<@)_ht~_wQcK%mg+QEN(!#uymQMfYZiz{ zu%6{TvhJ~jo7nS&Yb-gOK@+jsVtt@D;Ked#6&7CtzW|4DQU~`nj>hjf)VIrnDZtW^ z5^nfHuwXqhs2^#UHF<-L}jz=~5a@Vo5aZ9DfD#oTP(E4Uz?CVXv`NFAWE zswW4>O=#aZ%`cZlD)TzD>dZIvOC9}atadKpmjWT{9rEcbADyvxXau-`dw^KPmQ;4w z=HpMW)u#6tPuCZA#pL>zD!(MYw8s?!$sil662iC?t8DoA&c7Wk0Dg#kHTCok0GxN% z3SV?6zG+KzKc0Jk;J|XYczwn(E%cV{rE!hBlmfwHlj=jNnoVGo`-lnMKf0{|d|nVy zMgStMqeWCPyjd@Y@A|O3G3=P6{Pt{}bCCPmgw7L>U6dffuelz|K96jS_@_N7cFWIw zmXS88fnm6I7HxVoR`yrL*TvKc8eWfGBT>@90?+;pQ_-!!$8#vYDh%d;>(ky5@j)FM zZj%xr1z4RDZ0(V}-$Q@4hUE%qW@%=5983kFx%2QC;^5OgUU;+hr#rR5PV$!#oiSw` z>H(PP<%^EntCQ*P@4d<=7I=h}r1EbA}#FV+!ys3{yb51UTdX9$R#lv9MLMb}!ZV5EP>O^H6)1qwArq>U**h0J3!0y05{*8Rlf zW&IDn>mkrGs{yDrX(god5%Hq|g&;aBq{EvLG;H6=KsOiwdVF7^-K|MkX zoP`Qqzn1SX(_NpY0S82FEmzRy*xnMIRePSGj*@nGyf3!gQTBzKc>JCxdZKB zNlUp_%Yd7;^#-^XMP>rw1bOk|k9-ZxmKC$ENbnv}8+lSV9dYPeSb5@{XrNGUArsD~ znH8(pHz~K>j(Fx+%^VnuUR%LjReAGuXaB!6`R}Pu4i}Vl(-p-!ze_D5i8s@gm%0HN{OSq)&T;Q;Z0#P-Q_tq#`#ZVZrLfH__#a^KXMU2>{4 z2?z$nV=Va>)GSZpJ>V}I;lfQ5!*vAJYpa#*(n{e??!CTw@pY9w{-&FzTei=A%!bzrO{>EN$OD zIG=6o=V~jQDU`4^`e$k{iUhRGIzWK~*kegCdUSk|0r<_bXadl>>q=HD{E>$s-Dl8t zLTT0ufB?&fC>b~1EYDmfqkV!ae?9(oOMb_oh3V6kZQv(@d>AbaY?9j!fb(dr1CcIF z;FxQ$g4TfBovJ~|q#|oWqirpp()LR9I%#nFI0lq7i_=u9(+^skUab2;V^@=1{|TR5 zHJWoIngiOOcg=<1wnpeV5l-DFIF~)9cm@U zUL}*+m&r9@YDMhwW2M93#t+-E6{vYtH2$KJv;rs9c5D-12-&;R2xqbDe2x;nUt`kz z!yQ!1D1N16LvMBMnfRx*0#;t2ljCxovu^i*q@A~&Wy!dXeqz{DC3Ia(;8tUdqx||r zl)KxdPb~Eb{f>~30W6WZ+VEeSXkW%s}85P<* z=NJOQQf9CF_yRj!9YcM;3@S+fDb$39Pu%vJ<3+&JgWrfi(`?!+zwJbG_&Y8W|H3ho zzId7U_^Mf$0uf#1dH?Rj+@Z-crPB0PoUbu`Bu%8FFsV;RzXdI6KspT&n9SU=V&G={ ze541<%NzIeB(ApcfBQmx>g?Ge`*1(PTZ7RiusFRjWV=(??D$7zpU9Fn@jT~_#AH*A z4!)QoNl3NSAgy|1#C3%agZCq14_cvQtWtXXcVJR48y-4XiEeU_QzQiM2G6)2zBI0S zW-R@i23Z`Bnt5swhh41SB>G>Lmro+-*B*0cf_k1GPyG9Kp?0-LWIM22)?k~<5H87H zE&F$(cTl08Z>O_ho9+infn9hnn@C(N1q`cV(k@i4U@y*5_!Fe+KSr-uG^x$})9_Ly z3*>PbtEgFB>X~YkmT@`YUYzo{tYbglsx2=6xzx~xcd9Q$CnQO zgkTwb#5dq_VjIt@lOVlWG zv{;7wKY<=i#%c~02qw`Q)7^$p)^%hmDis*HpZ3H)!q|R^2i*Nu{FYCXs#pM=Z%gnh zK@IA!lwz0n?M}9S=ys3reNUUz%6-yQ)iGA+0t>faX^s9Ni=t zr-Hr;JAL0~w^WA@*}TpPmc8YOGrD2_{@HKIKC>PtsOsH{s5L5J!4IPQwfz(5$z@Y) zg5;VHH+0?ur%n3WUdG^A-qeOrgVxu)4letAK(o*gKK~FPY(kUZd&p==TBp;%%r!(R ztopkiimX&KWH8Hi&VoeXt9}$x{uq4g!c*yMmrpEQL^-)g#x9-(8ig;HwfDZ{F??i* z&4C#>g_(Sl{R`FnN_X`8xJhf3PHMCfCFB!PkO4g`cdU%V%(e!y;Qo|~h@Y^SS~b1@ zo8Ce7>jd(A`ycDO{dfo@fP`rU_zDr%8hKr5y11i-|J*?(#X5bx)) zaGPI!0f$@@Hvrts&)@{8K#CjD(PXp{a8ACFD14Q9?RZ~`>bg`TTsbf^t2}71tF(QHYSEm$VZnZegwY~tJtDx2LjoZ^te2-O5J>QZC z%=3x$ak49M1Ei9tiFngksNOChWo>3+Lq3!{bMg*eR;wYao8m9Q$Bqc<^+FS zS5}`R5rJ23iK2|~jlHQR8;=jMifAE)DKFl)Z(c%w2yV3`_a4%a&E>*z0?{@DdTbOX z%EtoC=k$z`4~c8Ee`RLB9F78YAV4mY@}G5X2tDtqk=jT$Z>`?(FQ$WG1)Dw(FDj2R zEeClVn12SgzgCep8HtW^Usp!*mWMiL>n{&6l)YZ&La8Oa*c>D)S0$G&?c%b(o3-)y zOwV0dIqpbc@PYD;zdxZzHyY&E{j6fK-F;1dX8VN1uOzoY2^=nSYNkj0c9HRa(sj&I z*;SSgsY(?3l)?3_1f@PhQ-9N4Gea^D{F2-|S5rK= zbQHXwqqaMQaee>;gCxm@k>ws4HTRn*c`V{pF(6Xy-7Hh(15Hk8Z4RGr zJV3}On{p}b%EX-rL=xI|3Qp!}-$MAlGG|@D99?JM{TRGM$X)SSKwpfMr81F!?(CU+ z)kIJ2cuD{7DCoqGJ2f22rVko=P<-uy`n6ZNTny5Q0h z7dI)e@fdhYPjE~2`mmff=gkg>iFe}ZLKp{#VI)cuo*5Q-mNG=^ca{DS!>bBXCypJy zu_ymme2#a8#_$F}&O`^*ZbK6D*rl5iw?!AtQ(7OkkT(dC*_TV)uUDG&u+)N@L^_?Y*`MEEZJNPw^fWJi)T|?8{}@%o^0Y0V^-MI zAp|&Lz&EEg+IFc1Ku@YX8$-Z`-le_tHy9M2>^dBM^81M=wA%5nu70h~5uKGlGQ(s4PJTcAqH$ z#2~3X!^eu)OOT)Fu?$7@k=}D_QD!%=Oa@U?O4z=R*$7zFAmwZ;)7zICwW?5Qkl>j} z(L~j`)2l7IV7;e}1)wyv#U%KT4b}Hp^NcbHU|%aZO0)++wJtH7#`QT45RSI}Qxzai zL;Ta1@2%lzQ(~^Sn=Ppatn@BvHoX*?7y0b_CY#($702BAfF4&)Z>UrMut*U=NFQr3d%9mmCw?YW%UbC0R<(JGMwH zLxO!ah)Zx()Fgxp#G(PtPKHy;n8`ap<6z>gC;fk(23E{;_xv}CdO)+1)X|GO%$#QX z-#?VuMc_s%pm$UYr9l=FhgT-BGGSi@>2n3Vx_bO4aK(`HSg-frM+b3Qc~3GJZ;Xfj zzmvDw_ivs2_X|MGZJnH;Plf-N!J*N1&D+2Mjj01dUkD_z3cDYIr&66*Q~?5Pa8QwG z-Yg1RDWe(obe=Ot;vKIDHEZ5n+Aa2? zjd!O>*y(Mb@OKc*HtS7~zyuTG%NJirzTd4Rcdl_UOg0>ZTFoH0%Hj$tbd}*_g~(fF z%-T%8R$pNt3VU5=;Lm!U0?7bpqnj{+exW+a65WMwK|O1A72KPOS;=n+s&cW<4aYZc z(IxH$x!DHop0l7D+JE5mTC_D+f9I&0>)7+TKeWrV7w{B1k0fYaM^)%o%@P)Hv^WkLQ{x!Oi_ zihI(zzq6;%dmo8ue_FhC)a|>EY;N4P3z@Ca`hwXjc}$Y#_@6Jlb10tMz>t=g?nA19 zc8Ako>QFEbT9@e;bfo4*wjD>qYe&@&cLi#tr@Qw_i20W;v$8(iI#v|2w@hybyDnHU z6sO4y{k0j7E_r~wvsj^GnUtb`^a+}LH6u?)61#^bJDGjtNS~SOQksn+SD!cK>)sGH zAkZWXKR+K;GC91e^60a#60wjAaQ-3Q)79sG-ox)R#jz_|b@lqt&T#o6HmrT)WRy5*DWv~QLKAjTQiHHtZ?dqADJ|8W_O`7Y{RAc@OT)keUqadp>@=1Q);Bzkzw z67I6e*(mVq(iCm9Y|Wp40zKWUO_u^&jDiKy6yY5^KV1MVS$w5qTwEMxBfA+yk6u zotj(B^OZ0O1Yk3PoX_GfbqD4U9x$M?Guw$vsi1=nwjEKxU6jF=36%t_aOA$Xy|0Iz z?jds7<~MJD6(<{;z5Un8!CX`{{$?b3Ovi$oe7K^mN3Z7}w<=_slGCds4Uv0tm5+Cm zw1>^Zog9P*V=|dcM`Ed}$6%KXs50K*iv~9{XU7-tDM#uS&6oYil|ZW}?no!PQIVTZ zKcPkWr_Ta!UKrkWoN@5Kn>}sY_P{5v{yEF89+ZZfAnlRzDmH<`_l^iz$T znbYxaDtcBPV75zVJ3Ze}@cr^I9qi@1Wo2aGr3H#n=Bm zh61zg=C?pq$E!Irjgs=)xMPZvw5w-O?ZJDo65Bp_@?6uZEb&8^exb5;JPAf^d&GYc zPk5^{HgE{tq8HmO)msI}#mty}&hMpPufeW`Z=|@dDH2X&ME;Oqx6&`!J zp|u)iG@xgz3noNm2VAA?i0HEy4$leyNz97s62KHR9MEM_WQn$o(3VcV@~=8wD{P6U zdi5=-e;hIZZ8Y_sjelSa0utpuzNtl>=+T5X%6S?ztr$vrnfUe|xaeLRe9HVwMpX9D zZt7=J8%x3y)D@o>tJ}M6X(#j>3bZPv5v@w`Ubmuu_C~!xw<_t@$L)5Hjh;V~75Unv z_R!bNQDrgy=f3W}q=%6W2dpi>B~Sw|d6CNjYJ zUa^MZ6|cdJ&=<){oNRT$?4SC#x^a2iO?!nZW?C30AEi%bze!2FW^zIDd@IPfgzD9%yHBax6G?hy62b6l&$0+z)*Yo^?hdQv6z2`4Dn0^%m2JbP zrJ3QaE*fpW>e6{9;(0%LG!M*eip421Pl+L(GGq=;c9xk+p}w_Gwatp>%&c@SuB;Af zNFBGu3Qt%RP3I=W)bd0(R+#veIl}R?`JMcmVsPiZ_xi zKe3azApYd*M)WQ^ZJY@C=y3KpjAVzdzM88Wp~9%VImbAmZ)A16?RHRnmu12xGPXjQ z_(XVkL<%`g>=u&hl?-p}`=lG3m<@^j@n?3;V0y@BgiWGU;LnM-S^@plT)V(=#>aX+ zv5bq;(Y#SF>=lu|?C&uzAQbo(_S|Zm#o)kH!Xu zdgk_N&FnV|zVn>xjVa7UXX%IpP`yUsCf&SNboeYXzF z5Y9aUEwNI@y;dqy6|~Jq8gYRm@uvKNki@0u({EiQVyhJD_2EtV1SRJFsUHQ#dWd?W z!TKo$GRqLxqlT=Ty*KU*>MmOiD0GuVy4y9oExivnX4P2WTB<7!O~e;oU7g7CBDpY* z4bT!-=;h`xT^RMb$NXB4Mx*i+Wo@bD@G&@UQzMt|=yV!RpBqWpOgv0gA}#*SoTm44 zyC-ZV*FjP^gHikuzu(IeLIak@yG2Yu~ zI65gzpR8`oICa=y+)|v1Y{8h^CY@;PMELB|0P(hg`r+7$ym*bNO;b95trx#!Q2JW+ zBd}8oV*_F_Z-Kg%Xyer-y_&#Yg`aH^kcUBq3o>3>Y91W(oxUd*4Vx0&EPRE0mq{4PLnyc zm*ZV?l*8KvdcW&IL`nijMccWaT6ze64?+oK_7<3mePOt9i(!e@msvKEKgl$HEl_tR?W z8tiS1LO{}vpohz{rk7eVQ>(Ln+iIJj3$Z*2|$gLd~QxZLi;_uAYjViN6a-f!hlqa%~K>{Zb!V(+Gr*1y<5iM7y60 z%$X0nW>wX>qz?~L{x-y{gdJJ+dG_9x_v~T*8W@*tAW`V_%w1ALBH(KPa&*LsRxL)> zJ~^hfeq{zf{lya@*yT!ErK)zJ8Ad^9)?G+m2gQ}wwL)aQprTe26;K&#+oW%X%(pRl zGxJt@p+_I721kZXTG%ESMm_Bw(s^ZXiRsd>>5R~Do9TT@?%YI_!%{+3aDm_;gOb>#@% zdx#8UI<86g`&b^FxUux;)br*}kcr|%t+Sut$t&kGsX19rq$DK@kK^*>CW2!lIO^pq zhI6{(q|sYaQPFyVT;^pr%%x(L$Ao>X>OznH#7QJ}8=M^4jivQqB-H36ZNHL8At-L7 z&Iv?@XT48D#~*pypOnvd_O+$&TJB9W36Tk`iVh1uJOg7&b9U8)*qt|#u2`D-cGbH* zTW9@`o6sYdv$oEx_m3yekKCyD8;zKFH+;w~=@~E$mP+?NOe8SBOmdALkxGTfoSyLc zOzf1+?)C(d4oQiL)pX2G_tI%*H=cV4M6ruX=FZ}_E)-X-@Ecb zzv5BGC1rLEc&9INi1#wJe8hXknwt1Ku$n;Y`!~#Wm9mQ-$5>7-iO=n6rqI)(^JP{O?qAFft z#w{Ed1+HM34t;FujcWqFR=v{EA`3fL&3oHQ!&YmXuXmMxTxxKM=cvo_nppiO6X|#u zu%ZwM8%N4LT1&04r<#q!V%ThPrjmP5qT#S+Y9&qR18{S;D5lu2J&?N{t?81Wel+gqr$(K3qzJec9B{;Gw{tTmS}-tw{f()G@nH8(-}128}WWGTW8=dSf|c6_$bu>YP}90fM# zyAfo@Kp;x8>1C%~P-}_L*!(LrHjc;@q>+GE+7@f%-q!b0|IU@NFj?F-Q-vY*!dxlZ5$(-(Z7dI2L0I1- zW9$`?QL&pwCumpe!ENI$uokXBt>cQNUlR9vCE%c&dJXdOjkJ7Qxey*&=K~_*wogGy zY*Y9BV$UCQh#`TeUyY6(^|*EbuHn5%S1LqSqqoTS#B`xN)v&$!B2PkM)zdkp_HK78 z8yFvDAj*S4w6N{$INRkXd&^?{M;g+p7RM@r4K6Q^*`M+Qht?c6CLY#<1ub5$P99|L z^ggZLA<}1YbltA%k{Ko}vA>%xF6}LjO!RQPf2rfj&LIo%##u!b>q!TawP}Rvx%D!lwN2o(^Cb#oJO;<{gjvWOKw{_Dbt& zM+!a@h+S>~7p~y%S1bx6d=*VO<8@j19_)6M_}Fmu`#~44qt;2J5Ix!<1(7QdoN&6U zkXWM+-yMgJyIKAX1e78AI~~(qnis~syVn)*#gA<=Ew#&_%>oDAB}npzKBX|sGqcR~ z4G<;S78X*61;v_qRSf0XrG(8KslW&m{yn`_AIYrObKuU!26v%y=WA6~`zZA(r#+NV zh4XIm%Uh)ml(Q8j5^|ddu%Ux_;xXjx-(LbKUWY<`WR8HlFm%ngIBo_?4=O zCkRB|bM=Kc;P%-L1d2F%ru0PL&vFw@{QAy8*X7Q(>+?IJcq!L;@WjmTf8ugpzD4a4 zGkGnhH=-OW##cWjD}9*1sb^Lj-|loW;S6!AHLOrl)TxhtLBQwX7y9-(C2`cPa&|vT z?Szf9RdE&J8S|`~XNSja{+kd-M~X*MojE5Xz9A}~1CO>+0iA$<<3%;TWPd+}KDbrz z_XDUm^wyQeAP@`TJFb6zB=q8i$35rX=vheHahE2f;dhX7Bt0KB*3s>Pd9Q=KWFsA=+JB3~axtx>gUD+Y?@9}D zJFVYYu=+?va*3iDs~;nQLh&);d$6v{Io>AJqD%T^bpwqkAI@`k$Scrw(T`2(pQjM> z-~Bv~2Ev$QkNGs|T93&apFT}EnJX~MJ%)14; zQI|M)8p~exnm5$G`}XDS$#K{rayn4m3%)JhOjg*#U6}9kS}>%}pRcnLmzURBC6m$l zEtqD(GAA{OoV_U@|B%Nu};fk2;fu4@ZIv{%e8h)Y9u2$->Q;+Av)e0w2ER&URe zmcl5{Gd16@F3#P4V0R;e{Cl_CcTYjnQ(vN?&zG`iF(#qTt zK*38Z7-_`4t}!@omiNUu5zjHMq!QN@hMi3UhbQVx%(DN!nY}^USR#xyLp=SEc;iYQ zts9^HIXFYb-#rT%;b?Z5>kh7fl}KqPoOEjXGVReeDKEVyy>cHGO)($D404#* z9#Vhk?_{;96A}AD5HWcP-V%x5VO~tlK7xM>lt>>7|L61|^!MLao_Jr>jmcK{zIQDi z&om@mk+`^YObvtbzlGu#Z0}tP?9C(3I{AJ!#ocI3aB@O-33Kk0#5~hW3zL8!5m@!K zg?P?UT&cM@LwDf={(dSJFE$1q+Vo$`k1Y3G9bJH$u560}<__nK`e#+i^bi|tOb6Of zL-psS+{$l6EIoXhgK7AgC**>EFT0Wa`SAOoKes2Rads~nD_YWzwnE}Ad<3y)r)Cwk zn_wi7K-t@WB}IkUxM~TXC(W%TnR|lOiO3n8cAmLHLi)sq7m>P9e{yrU{VJ zta0;SU%hq$y?)bE7fVFvfbOclkvLw$5&xky%q1VL^LDwc zArT090|for{;R!;Vf9H{D#Ltb)n*jxy{o-44<|{P<-Gh~ZznZz8>l(GfUDI7r2baQ^+Jfv( zWP5acCv!LVB$Pu^FCM*gI%OI@g=n-{)|ClA`6r%juD#Hj{m}UM<)?a*{$Ms{A7JAdBSE*qV2nvu8UsdQ`R7=ILht?GMQ4`30S*L;!ehP4P(Vbw`OkiUKsNs>0J?SU z|5Z^eaBBYNm@1M@W7#<~xJUS2lT+k5-H?Mn&tC=jQoC6P^{L&yXiJZLcl@*4ua&}Y z^(oH^Jr`)Mvb*@}E;UU+g^iEkn2T9hH6NnevB_zO{>@m>++DsbIWtuDk_;E^u&K%3 z1!}?U2Q=33Q!DBuWL0fsANe-t}e=65$ zUb^g1=E>>S0GCh?Qn|CXN|Ca@#eOy)7~5eeC)d?VnQ$8Roetj9dUdcts$lS~g5VeIL6YIPJoU(m zJryYf*NaD2Ys;&t*QIhvHIyF@aHorE(^E`~w;oQ+pkPPW2Vx&@m-w4D=I8U%DSC}C zr#idTWQ~`Iad(_}EC4E`avu$@SSChNTn@j+h5%{4l0 z7PRh%ov|+1(gjv+CPTdE3UpHlFBg~hye917eDe6!?%m5U@I~fV&qk-2c`)6E%oh{R zGc~#6#8cdIOzC<-t)BO3Qt_yZi&cK2l~qOUFGr`T*2B%wbFZ06@KzA+O{~l4##1I8g#8HQJ?j{)b4!zJ|Hg0f zAsq66?aFeJ>SJ&0o3q1hsEcT@tlla=u!hmr$3{ zqOHbu{wkLJAYok|y?vg-FT-J$(RC@ljZb|MtixuJ9)SH){FIvkF7+py_ki(;?c5sa z(v!#Pf)EYBQXoY~I2Qb$Fk8zQM4B@%d_!z&J&AN+(jUdKw~02LHA_72?*i zNWa;(l}p2%xcH+4KIZdv8F$i7sy{6sI)3c)p-*chs9a-R(mV~l7Q)niu=l<&rKMV5 zJy`E2GzQV_Vtr9HaQWDP&9kme?9l|-`tJp@2(Hx;)3V6m;1)t=dcU@Iw1Y|__?Ks0*S?Kqgq{%_t#=mkV@(d6bYXx;i^WRR63CMFzcS9TU| zgOR{ zDNcK5ydXPPkjWy*LF-Zj_aemRopQFIrcqptcC;L~!LyM|TNvvIlC5G$-`;dw^e4_l z4yj6YXTzi-(ABGTA~sW0F}|%4CHrI)`OWQ8?PN>wn&jN2&wB9^E%&`mpUxKV+PTJp z?Grt(vbxE7g;S-)&)jBZw;jtUJFNisJ$ z0K@k1sGGUP;_Gfmag0`@+{%>LKIXB&NDK5P4l8b`NG5r_IbR0`f&e?jyC4s)&#>ORpa zyO0GJ1RJ(>L%=%arI&ut;Nzn6X{~dyUQ&YnFab!j1UffYzv62!#i&o6%WIFulCy2y()oR)wN;}a^HLddEnw|x3bX2Z0+HAMeY*UIl8s|>YZS%Zps zqN!=eyn85d!yg)vau)&~O?z>#1&^x3C|&MAB+aH|$`nre1Ph)@=&8TDEW2*rG&pkW(EZ zJbGc-Dkx{a*2dv-lf%XtP9QKD1!0FrXO9r~&nrI~a`B<>rsX2O2zxFNyJpZ!+iRYW z{R|do-^fn+CEaN4iqyXvEO`KG=^u3#GTv?rP=H5)Ad_D}n%!D#=(&8gfpX2cjj zb1_Cc0GpXo++%v{wwb*NyY{^sAmY}y;GiG5bu|^k1!NsjK22MkD zq+WV@b+gC6S~nKW1Q?tl_S?()@iGYHEGOHa}^Bt%8 zA1^WTWx3}jE?7$7b#Ki%u5DNFY;GnNYiv#?&eXL_(T#Vzz!Abp{^?EQ&QjjkJJk@K z)t3h{d-xUsoAIKK7j&D`HM&g}n(2Q_2RMR7iCD}1rPVGDa(r9{8^97G?i=uULH;xp z@Y}k1F*kP3wr|ag^*=Ewl#x&*a6B^1+ez~7soq8`P1(=xeLN3nDKt2)D+sVKaQ3^b zCLeJ=6LPWJ;&C1SIOC>&&9>_L8H#q@5x*?n$N5*-7WY836{gH+12WOqr_rP5*P^w} zTG}uG9ld6L;n>n(lQXo0B4|dZ9|tz9 zrxIQSUkaC$RarG|`eGt#&vS%cm7Kk7RLixj@Su9hIHjF-QB+uZd4)%W_9o?C8)}>; zNy*}Wl%eQt`6?H!JYP3McE>~eM7d6+NEEYN9Pm3{4w?L{Q1ndw>Fn{x_N{lUA1L+% zP|BO4oTwH>FN5~GJOp$zW3gsmjHn+}Mm2R-yAM3axWB2&oBNYIHu_QwMeYlOZUoww z1+P{eY)pFP&# z--@)UPi8q~)O+h|nUE%5n{%oE>(mJI$5R&Wf{oSVORd3BjL`?w=lrCGW4=I(7dW@8 z&=?wXi{k->zpalQ_;g70Ss^v87J1a!8b68@V0JP(R*3hmurdaqz_m#CtNcDvBIX>dM;EIpq?AcIvk5Her+ z6zAU|#a@}Qd)R0%;+0F=>@`Lwl3zitIochDsO8?=1YJdXZONhHlBN@qgK%o7`r5)>0{7x-fsm?nc%Q(uF7bbJPmPN zL*SVp-l#!wb?3g#6dzhkOU)}5GlUdhu54d)EzVzt3`7%TfuO&%%1_X5 zkcgPYceWX=XF{1Qigyh>>HMm<99vgIPvkVX8svF$#+*Jxub!!%u;Kcw+Y*kQ;EmI= zniQ3SzXrVwx0-3WA6>h5nwKRKp^;3jcQA2VdGeQx^2TEGvm;+}3bwJFuAO{_6Q6uY7@f zqI_uvH=*m61ARTJWU=4r3!Z9hpIwc$vKEO)H!5&6oj*};GdSQq4|5f{958#cI&;`= zR#LiZUQsJfc##zGQb4!MKn}?!U{qc{dfBS)c?oGFS!sqoomDP#%@bAn6>^wh$z6SV zF%sHgHX_=aMgd1<`B8W>o3l-L4tj0-mtE99BHx?QI|Qw@9z?Jm@_iKyhb*i2Y+lTVfDob zgqZ8QNoB0MzWy@+bJEqBK&M>!2@6>`%y-+>f9UEP00z3w_ZNHm-`79>UFQFDUG4v` z6-em+3MP!ldF)2`tAm#D4s;&eQu3D<9lZXQi$Z?j|N2XRjrPAEarl3{H}d$Bdu!YW zSl2Q$M>n9bTYHtih2AU_3HAAyB(6a{hxBhs*y5syQqBly1)TQZ zQb*<8h3}XwL>uDvL)$*}ks8bH;M1J?6t};8d$;c8+cXNfz1(+2UuE&1BolqI1u&h> zs4zyrqJR>raycSJSnVdS9xx@N`{yRa;r?g>Q|0i)+tntX))sJukT8a@rwth>NH2(^iPIW`4smcx_zhhEAwY zZx=bRs#2jwQM_%dsg|Gc@+54kCfuI&+*?t#;*!eQ-CvMZLyJa0A7d*1VkgZL7Lkob zex5a&v;RhHp8ct>-lsPERzJq|_jUeMStz;xn1Xa|y!@?YytRApxa6glUPJg#d?JR#NaQ_(Cn(w4kQ;DNroX=5{(OQ*hDsrLk6 z72WLR?#E}?l952k~~K~7{sOR3Z@kmse;p;`!^7}}>BSM=WS z-giT$xW~QMxl2-F=EA?V`&q~My1UL{rNY}e8xojnj?vNcfBMMGonch|O%zIPoW-~P z`+GFIex}demqeIZn^`?99U2YFvQfXK+ak>n)C~S<)9*?wfs%nuhqxJuzjilkZXR+7 zg6OOKCg4k@Z+pyVy5Y@CVAeQE$p4YOjI8dzZAIeT&m4_3Ms>Z&r^&SGU`PKJ%oi$z zt(n=QY3}7GlI$CV4@dimEruKBmik<#Y)oOz=$J2(f!fab=TolY_o>PsL(TAis=2J` zO8L2}6lnYxD}Dc7|40a`rGZWQq|ykp@G;!lHLSn2oNo`y+)~o|p*t5{{NOe5J3fb! zf*w-`w-c~BvJ?#tJ6 z7AVu?$VOWjm4t1RANsv>Pg+9V0{ExLJ9?O1y+`9pysT#{#R;Er_Lh?6kEQE^3w`s! zM|#`OMn3)56}pCNY=ISi#ciJlAg zX2UpS`K-VunERCwpXJ7>qKvlA%nI2;UBcG1%KsVVVQ zQYFhzq;;4QV-|DP?#Y?&^t z`aG*q%4*ikc>jxszyB4bSWK@Kvj)@S^(Gz0?P|1S^GjX6{HY-Yec~TFk+b$nT?Q7h zzu3bDE2=hgky~%Pxk`um5On?Zfa5dN+(0FL-h&q|6t4$?=**-?nd5D#Bvqo1C2~X( za>cunV!njajuy+{-}(CZ*2e`LR}oo?E*v)N;Rs8`3w1-tt1sT`4$g1C!nQ-}eNE$v zTLq%miXr7W(VrzO#HQeZR>YY3QxUI`f|>~uf;FzOPHKeIDTRBg=8-VykA+ZZkV4@7 zEAShP?f%6lBb;xlz6WVlOV99e4HT-h_H|r49qJxE=9ItR>=+p5DKp$5xuxnzDW7?Y zAWq$dJ#!0E<@tW7aD~w$MpHOV0&s)QDdxA~PHyEkA`_!yMv>m@i^8I|2C7nZeEydGcWk{9Sm26hWhu_+vJR2FUjSV!M?wqv z9RC>G_VHt8`>Y*@lUl`fPn10V5T%pN82#FF`hZ^~(n&oyXu-;d?sBjE$AHOpxTwqE zmrC})^YuSd<0OYIE~gt49`N48A|i$NU(u#$v8RQkMegULOr1$A0z&IoBDvJp1}Cbn z$O3saiNez2z=gwEt|yHC*~MFy zk8iNFXD`knz83Osp0F2jHhP*a<{sDM0ipy&?(nu%nrdrAuh~>*^_=FZg_zPHF(G5) z2kMHZRzE8V6HVc`S#IeG#%q|e66!%Lt4rXbiINoS)n-0(*=125+O05n?XF}S(2Dih zNO28%R5`KreO%k<-F`$6y(;ws2J@C7i(JWAz?v`&JiJPp@%vMg?F*Rvtm$&CiFXoGp zBpB{qv+y6k_-n^*EDG)6Fgvq9;#^8FC=}U>WuBu$^hWl;ysRUbW)7SBM&CEx~YmvrI1sp=MPH*NI|-@?A1JDiJPo0{%OCgRQ^_I#H&O8sZ225f&ort zFR;}Sjn7_1Rz}M2;lL3MDQjrOr`@RiLu4dEec>n+&*9Bv+SJTDE=wb(60t48*SmmE zTBjo)sPD1iPLHETH#ZIMj0{V52JlykT;%5GNmC)P8p}5(xpqwp?R;y!l(pa9VM)oT zeNO)URnG)Rbs!IX>#s#32Wuc~6A@;np5DE*N5AVCj+Fi^tATNyJ#-gGH_s2l6Bf=V zO~_b&bbU3JuUE#?&60!GW_(-~aeD!-m%E~^##sZrYDH~}iZxM&*iyFpgV+^A^1O#> z9S2Irt1=1sQsVEjg`R^%NAo_ee+hnV5~^?Ce?vr0_;vFlBLx8?XOKd2Hvu==AfNHV z{^aF$+{%bKlixyBN+t%H<^VDIBL?9&(>Gs}xefwNx+CDJ7mFv9F2~AB;@M0(@%&pj zm8J+$%*Psjv-Es|YMm$7ZS4C=cByj}67Y)(G7Y)r6a$uB94Q&uH5HO)Onvs83{ro8 z))w&0$TyH7vALl;pTOQZK!RSE9y3=4!+fjVAR|~@+68wy7EKHSF%$-v;IPe6hMI9} z*szi0$_rp`f~n!bB9VDj*rf23+t~cUat@`Ff$rk)GQsGcE2F56-F;w4Wt1a`kFQy@AjFahe!aT& zO$K;1&f7Z2+szmyKnC7)a%*5;x}g6%nSw%tCd^P!$^!j0@-&R2w(O6;t|F;R8iDc2Uo$~Y4gwbaucH_M-FQx z)WF%!8)UgfQSvm+ZLsWWgP&>gByX|?d3-fdB2r7*k|s+xt5UOn==jN3%GA2*OM}tO zuY!Il@F&vei)TM<-`bV{^sS`^P0n_nE9Ru)ekPD+dfFcvjZ{0znKB_Wj$k62ZRhXn z=;RsDo!`kgI4L|jeL;zNv>M2p+z^Lf{x*TQ+z!sf=SN#;y6hRQd9mmA^grPQTXo@ANARKxiWw!n9c> z#aBq7SRHF?KzO<_mxZ^+!R0PJ>zfGW&1ln4-rtQ2?lZYqOpEvJ2m~e0X=^Q% zRnH8d`rN!xA)U#qP#5FAN7Yu$v--FQE-h7I{o*E3;Ttb)kH$>P7*EQHpRI!hU*nlS z(6?PBWCm){#9ED;jbrc*S@wdrPY~9$4F=IFO)xa+#Q`DO+cYNVdO@G=14~$mDUg-v z7gI+cj{ZU3r>>1x4T^kMj3TL+g4T&HTUn1R4hxA<7CjC8^d-7oH{N`T_QLLkwtcy7 zD;@oxqLwXL&Do0Rkp;k89y)1M1${o#RT{gakDX;rrTV0A=K5;4I0Q(o!Z)6WlK;^5 zeThFx^(Ff$=-FUwxD9@?=Jvb#bQAyE%790Da`GXN!*G~KYE!q@5G_i3wy~r{?AgyV zzS&wxOf)1h6&!17>(BF@e>Bn_J`bz7#L!(!)KC46vPJHIsD}W^V$$%v1^DBgCw&Bh=DqL8>Ia zm7bjyj!ck;t)x##5;Usry(k;_nL45ALu}!HoBV3V0PLz!RV)`GR8U%7i4>1CT}M0{ z)sQ-JA;A_9SXx9}ZH7N+$=BIbfeKfwx3aWZ(`wjbF zIUGuIqV_7%thpgqCBmA&HM&N$Xmx>I8ZYr9#`Q=*;4E7$3ZI>9BHX7^JQSGn7^S{_ z^REgk~5#Chf>Hr2xc$OlLrjQVCJWQ^afdh z6;m9x4&4+aWsiI?9gXn(k z3o2fUVGHn6@YW1j_my*ZoRwG&c9_LOWGvDxf9@&zH~^<3P*qAIY-U~k!pI7pUgo|3 zRvPaq085>hS{>P z5;!hDvALSWWBKld<<*oCE1)I-iZpz6wl=F&lu@(DW-RyUD~DNstfHeB=<_$o2VvPU zL_Y16)vPA=)`tMA;@A?_cd^8v&dK}>2np$uBAdy8pw}K> zEhs=81>Os9H?tJ)(G#e$i$R}TQeZTLLH|D9oG(*kl|u#Jtu}<#FFyzg33 z>X=wJ1p5!t(@hP@)S9f0)L%8e6Xe%M@S-9m7I zgSQu`n^R-=Qc1lk$_ZlKklV?<5i7`t=;JE~i|6pK|zi%IQCkDT% zDe9z2^@``<>73%ZODqUMvxDjzn@Szo}vOV`NMfjS#+q z;0pTcG}2SKN}fi$PrA^KiY1bsM*S9hfI@T=QwG&oUG-RV8#w$#B36>|xX071QM=={ z!fiFZn*nO|J2A(=Rdp$nW2>1Xbpcls#PcYb___|$ExrZ&C0Kr{LoSwFFmMn}tMw}O zcbDva2~CM9guvMQweThdx+WIhn7W-J#sAo~UdzS!wntcE<`4G98urIE74+H00ocOc zW9q1XEZguj189ufZ7qz&p+9JL?79Jod_&d98U{@2l=Zna-(riM(tpH>j=bY2p?(iG zSc+t?jo^^d7)tzHV>i^A>cgpOjJWp~-;P4wwO^|Kbw6`_Ot)8-?eU5aVY=pn4YtIw zs9(G?hbd8qM(Va(6xaq|Vx2_F|LoWg$=-Ti;&&WfsT>(2;T(bJEpfB;Sd+wK>u0uH zRDg@Hn3^TO|0%*|p$8w_WsPSHk(@XfVjD6j((%wNY+ zYubIK8bP0sp7HAJjm0^3SP|H_B{BhCV)8$*Wf^tqXLNv%1zo}NQAk63n+b8Y^_eNe zpap`10#3(aQWLMruQKhO^QAjV($N^^pko~G%2uOc_%CAnNuQ4*a`wP&BAWeP>i$tx zd@Kj=4(#Wo7URpZrCoofEVityQT4f7CFrKVU9ZDPVZDei>D*|B-AbK%r%9!>lk|-vzf#6{SgidDNXai{$XAn&99C-#oo>{gS&yZwsQHHUoK1dVycB1)6v2@KX8J!(k!oLXycE^p^|qMeNWFb^yqJ>~Fa?w2e*OMC z@xyV6KHAyi#=0o>|Jb>Hcf2L(>ip`?o%d5{0Pt?$bGF8;SH1KVy*ZQvUIVPW;D>)v zTwohh-+Ou#M{+hpbpUt;;xBQ!tu!Ee-#^_|x+jg@EF^n__4|++MdRBv8*EoZLVY7Y)m*2=rUvU}wYUOoH!pjQ zLlQ7^*JNws9p&t*Q4}9BHlJ@YBa!i6zxxawQp~C8#RmT(;;eng(QvI5>CUd9=d?eOHI2D;UeD8kz1QN`$P$5A>U&|FK52 zk-wnzv&%vS?|$C*V!SgBrm0Gi9EY1S%z+g0tu}vIg@Oj}48e(!PNBX{ga`nUHMOfk zl9l>_( z|HSkUDUm&rWezV;KhilKJjU28qLN*-o-Z}>KMWl6sNVE;qe^8b_;>RHliv&EzQA0> zp!sF2vYC;YXs=%y`WtMw7X_46M7`6CRT?AqKMW9a=n?#niM22Fk`ES!yt{8tz#?xqKW~{yhRWi&!x1_fVCT6sRnGq zoEd|f|7pZDSTeZ(RlZ~B)GX6|ly!Z|KCh|7y1_Oj9nzhs4`jEiAP=b)76O0|dM#hG z!rx~P74ur!DHC2?N#p@S{6ILROD)#Lii@}+`c0-DAzT<#&n9wXLtwPlYc=h@H~t-} zINo5HqB$!PEUuXKgV`;^&K6q9y=`mFVBX3sqll{{ksFue35N~hI)bhc&D1}wyV6g1l9PdW4|3^ckf*UUgsS6UM2Nsg5u!kUle+aI zlmw*u+SAG>-YAI(UQ85~k|F)c(MVmYVr?*~9MF_y6vlM_JU~Oqv*VUdHCwR^v${Ah z8F*IDy8X25hy^JB=CcnPN=XR902sEn+bw+e8&c4sQSS~=%lE=1S`a;HD*JrZm^yI3 zgthf_h6xcU)b2}Ab^VTuum9jx8J{`PlvOOiu#Ln^YuhqsCD5rL3VodMXdcl+Rqh=S z7x?FF%F{aN0ABN`T~SX9B=50nR+!#pKSF#zw4Y!=!T(TmJ)|u97RQT~U6Re|Wvj-| z&Eu_w65*u!rh9E9DWiGoXgn6ieYrtI`!6;e=Eji`ERCo5Jw@cf9L-}td{Cm*Dq;k`5+>JGz$Q!n&rjQS5tmFZG2de1c6yA>h@dr?&E$D zP&!`s@%-8r3^o>*WkjBywh`fh67Zvu{-lpW`XxZ#nsh%JRfGSCiK{+Yzpo@j;+X<% zFQ48(``iJem>!ChcKWt9y^R?c4kzj`vteZb7wEolQ9efckqwf8egGf=QocnMxHM7Cs>`aM9@W+4V+j zB%+{JAH<$>DKUWvOMB|&+!%ODGZrCsQd{$=Q#}+Pq-t>isss9GiHW0YpO@pqZD5|& zTtL|ERzSDac3`~ zyOunhZt1>6p?1j2Z}DO-U$Z2|2hJb5{#xMAY;Q?3?99Q;18*?ZE*T8cBa?q6c`Zz-da_Fk&< z4t)8XZ?l3NGc5=I)LsbS7B{UVyL5N@C=E7~lt+igLuB{2u4pl{w_dPpJWjJA zK0^xpvC$z8Nwx=Z{PQqdZY0<;<1RoXsXEgzZId$v9(><=;|_o1`)B&p%6@|iBp(n^ zd%vhj)+0VlkM_mg@zuBle(Y*6P`Q-GrSsp=k@n;~F#4Vghka*ec_di%>{ki+Wwnh# zT)K`(&4wl$w*dl@ToM=$N_ZXYWvIlFrX+fN@2C+2^PDQEX>1$lq68%@oMGZdG`t7= z(B^NvmYWnzEcs>HlLBmDFEjw^8SX1qOSZ{+?xmz;+x}osz@XVSFa4UW*(Yfhx__#3 z^>@PXhr9;C)w3oS%boy8L7>GTMRFPy*Mx&ml1UFDE@i2Z*$1y_5Cp&o&)36)F4rSQ zIr)s!FPM%ApT8DelUFi5g9UzhynN@BFrj30+eHFzu)`U)TSO1US}NXFPJpg~P3FYHf7s98ZNvNS#|J?8 zEP}dong$$us3#G%5Ot~KblLV~c4k;n0YgQ@(H4l))A?n$JcX#Y`?d})`#^%Q9O5ma zxLOy(>8K*QJ>)8fbUwZJ*w(-p#Y+O2J7u_m2Xcx7;0S=p0BSOm>xh2pYx7kvuc*Mz zg-=`Qu2+kuSkE|YBt^MO_naTR7})|yui{7di$H!BAm1?^RPc23qpyz2I^t+w!z~Y2eBiE4P|czScAfB{o|b*6Nl`q!eV&$) zEF{6chz3yf;kKuW>QfqJ(Y^VoIB9+EOL?H!vv!n(X_Na=;DbPXOHIn(WppKFB9UCG z6u~^n{#k2;xmO%pQGLwmAUG&7Br))7pk2jWkYg8wVIKr~e9wXRhDdvb&Non<>NS&` z;%5tfTro{jMyiTH|E;U5tP1nDQ#vx&hjyTOgB+N*gByj5+yHU_yB&D7B2k~$2eIMm zy`0B&^3fv8X9+hk%W4kG&m1?_K}Fdj0hwL46$j@NXsf>AZy2h(5eEZl)600ETiRWC z4y0{{dGh7EK-&BwR(YdO#>HJ3kEK{cVv14PM_=H`2ac=Z59BJEy8MX(R$77rG2PN{ zNTy$lvEPJ47iBVFDrS4h>yK_x$OMSkgxdj*Y9S{!N}bZ21wB&Fq{@r1sqYSw95q5* z@B!pxHhPiH{;N)^mTbStb=|l{lI1r>inC|@-a}r%?I#wD1#%40Jyb5{9vb+{%yfoB z$)kW#$NereM@KCMy_$N?G1~7ga8emWd2Ci>UMer)jKY5Jm3bplBb@jOu4t< zzL71Reln*eQhpnZ*l8#pXnbL%vRdW>$EWy4|0jT6LbK1o?H@ZH&w&!WG+upqrJ$5| znH?y9IsvPp`Xqhypz|icR8eY>jw58Ygn?L^a&xHGc|F@}`3-;)uz<6tHMLNT6X641 z%QLP<(^VD>NPy0)&$GIkO?n;-Nw%H=IBBUEdBo6>si90Whd$Mv`|Uv2qe@Z&uA!Ai z-ny`KH*>M17&Q7;jf z+Ki6J;(EAx$)dc<8x^mf8B0}M<Bd40nE=KHlL@%=L9dNLKI*d`3ccT_gmM1b*Z7A)gl{;2T%R$m7jP3a}M-`ql*lP zfjo&A5GzS&@BaD3-()Ki0Hdy%v+^K{5BkY>wg0!LDgc&XGw8@zX8De3A&dXN*tx*W zC|JZziV6#;WpFA0E?c%#F8D#En;a#wisG-CimV;rA|>Ru=6Bfh zcnFQx-J6RC;}uQ2L%&1;V*{TQbFv^3VFQ-plTbV8G>1i_V5MC3YA69n{>yIbemb+- z=(c9U+us28oze7cwsp+px-$UAtO<(eT4VBwDanR>DD*@8;F}$FKH`6a^G0zrkR!$| z_@#k+q~C3Uv(kU)KD2Qgw)+VW2nMt0uZ4Ugryfdj5_6lJ?Fa1%RsPbIW`^O^`MJQN zYJbcMU+-L3S7F}b#U~yEYSZ4s1mvF{COY66;3o@BraSN+D&7xLa2ffOm*f&?UncuM z#vqWc8bHSDk$IjGCB9)UkZv4l!Cwd1f^mKr^MmuwJ+>>DcE*A?sM!klbGN4Cg2#Mf zo(2ReBA}xR{hvABzn`+lBbI z04Hlc4IBg@=iEHIgwbOdXK=5(s|-k09|)7ctOs^eJNxOUEBA9*k90J_4HQ$7ZT?)y zZAUT!-v5{g&~&ccf)$t*YdzC+dmzg~nKP{^h8{_K>01>_2>84cRal@Zkazcc>gHv~ z%@)Wo>QFS-ivv~-cy^+hytk4Szxx;+->=95@D}>O@ z)X$`WUwT1vZ#!h_CKElPz=a_JU@OFZ{p$AbS;@Qyg1W|urBSZR;OFWBFt8;{B`P$S zMpE7pS-B+*d*cReTwX}z0h+UC_MDQ49T+TutK>bqT)-f&m1Ga{%BV`yrB%F*bbWP({JO}bP?$Q|~(A@Vbw zE;q~GGGF|Cj%YJPjv0PVqawQIbOaKGXsV{kF(6?is}BH;J=GU)fUOz=Jpwjwt&*tT z0Ei=g3>ImfCI}U>k$;Fc?p*4iPGNZ$PBH35A)U2I4BoZ1K3_8N;REiRR~2|~9RTRA z{U2Mo+wXuleIl+15D6yNGkY`0Lk(MefXt}}-3w?X%Jr{q4jbSP&M^f-(&y@LS;Yh2 z979dmZveUyH9e1fdUcJxUUjT0^}@?qsZ&b4pmG!un5TAC)*lRYm!GAFQ2@2UbZ$J_ z>hyzKUN@+2&5wq`t<1_-T*>51P5`eB)zK~czpc*Hw0*HdK>W3Y*Zr#|K#fu15YTNe zHQ!}>X*l=<@D9;2<`+Jy6jQOqgkH&Kc&@ZOZxB<`)#YA#fREkzRdl)-IpDfHD9iiiJZP?sBB%yaKzaAofGEU;fPwrTuapf)&~vyLWAs2qNM5^@3LS|%zTlwy&u z?8gg;iSeS575wd!JpUL|2S7mV zc|ebh_O1GZi;_Kw08Z(m)lU#`$#SW1&HhOAccm>~&h&`M_1O=ABjkQyby>vn;tRz< z=87>#(B}p#&vR6w@!4|}H`=>^kr{N5j*`En{R+_Hr(BNJJlb-114Q*Iey?bd8`WUy z^%`)JQ(-ieVj`KKD-;7X8Ag7|QsL1vq4W1toS@Gl)nmB!{@WP|!1gMk@>UFO)Q(h> zE@+W%xvO7+mzs@O9Q0lnTqSX$DWO)I<`4Kcmpg?&j^LUQZR`Sn2%{-^On7@_QjhJb z4rPn0a6vl3wt0iX!hnXtN$M$f9@cM7o7$iAZJNu88JPYF5#?R@ZH~ux7qul_HDj6@ z#rK?q=CkN=ZtB?KmXkR^Tfgbd&tHAC-;_CYmwKX@n0V`$7gKE&y+*TYy#CV2^6)k9 z6>SOD4nNr9TnGb(;bx=2#5D&p;;JpKT&yIsxhL>f#&NA}>4scR#m4~W|6J$O#+1l< zy?l$ecjK;JbcH|lAx4xlBJ>`!QF^e@^8 zeQIrb=&(y4op9MVv(-$gvQD)|d+_gi0!Cp^?Vo2m>t+oK6!UA)=O0P#rakj_6jUZf zM1%Purn&Pc#Zfpr7&iF8+}J8ev{KW}lLc6A6T9`H;UK;`R|#^bK8KB5=-MD`C?*|w zkBBvnRV`$Bn$zA4g>)(Ynbpy#F}P6{ys&vV`FDh*O7er^qiw^KFH|&qzp;`)je=B0CBaji#Afhn|%ugn&_I&S|d}SbqGu7a5-8{t&Z+B=Q%+~48TnXa-Ug0>y=(x#>|g_da?d3zztDP_G`@3}bRCFaK6 z2$dAYk$1THhT_mk@r6^d*Yv0f1V!v-r9ow?2~rmyTx4U zb*V}b>o;Z6@jD~Q;IQlGs7HC(bmOR*f>|{1mjWQ{c7k>D^P&o--s%H4n`d7{Ew!QY zxm|t+IzPI(D|<~O%4PWHO+*Co)GTDx0dbg@%LsQ@fi=-|G9fOZxYLLy(9^MV4*Tco5m$3qN>tM-y{;=Ql#Ya-BZm}VK0;IvfBfiex;~QgnYG>F zv)7+k`J+@4v}l1Y2jgQ~&A$MNEBc8G(V>0`cS8m62T}rFrvx09+tfAPs234&LRJqb ziLR11;0+4ol0kqZb5#i@B&@WV2bw01f$E|PM`<18O`0@hbd@dc5ml4fG~cJb8J)X} z+MGq`tZ11QK{E=ymwDa7F#)1gdG#)uBd5Ypd!NaSh#4>KXu3r^q}uW-0pVDK8;X&w zFDw5uFgUXH>FW)Qi$>M{pJmD*?42X|+A0OuYir{=Uvl?(*-~LbYTJ{Xdqe`7v%;GHnH=dKa4j<^vIxXIlp8N_Pzi1{MBiR3sq=3V zy+6I)ABZNucSMj50C)goEy*`P_WT0IT0~4LvcK&?eitazcScOMktQA@#dUHjkUPDR za?qW{M-lbgp{+L=V#64y`WUmt=4h`Kch=3LT1%}Pu2tbS>gpP=Sw9tc; zfFivl^w4uA=T{Lrx_k$YC`ZwIlN-4p#{Ko4ByPbj?PXX*j6s`4XG`C}&l=wV^<@JqR zMdHZ~H^6v2zPSNFsyOZGwVw!B+neq?s(4jXOn2U)>htbyG~pxaEU`@W{wB80q15UO ze8;wp@fy=!U}WZuhs_g~DN7qa+W}4N#Pox{#fbBm8 zutv5TT1@kcJjN}pb}n0}j~NJ4jHq;5h~bDr&^qi-E7vPRnmpck-|}!RPC>Do4}&5k z0otyFC7NF5-n+uhjCX(@fWJ>^WyE^^!p5}@s@!I0zT7TneyvEDgin zcDZLW6!Rz-upRQ-!R7H0OLyc}OjWFbbEFgP`zZ)1DWGOTA z%j5=GJR$ozwtO@W&sTBkgA3;+@OA@h47JvO|5&(4%^ZsHS7t=Y+^C zvaw|Zy!F9%w4_Kq$7lqRK&FFmx7C2%y)jkptCiu8pbMOuEg1|Jx5gwI4~oC4DbK48 zQ+cDK0Hnf6wEQ3_Puxep3WQY91N`K&`!p~yt4Dy=cd(f+mgdX_-_Gy^p~%A2<)wFs zf~VPbmFUkLL`iYzw!yU4)hza|ACfuf%Zr ziuA!ucwa$GE6Z!%1I8)BvZI8D>;AUx9`KZ06QX4{;$0!b3qlFn;L?z@=xU6VMMM+-os=H(*$WuSi4tzl65zioaj$N3w#T=mM z6|_y{^t6~>OD!cT%p3hQsCQs+(EB+gt*HWHQxdTlc|+E9q%%HZQ5$wVG6*mf*R`3l zYV1xLpzj9A@58rWGjaJYoqKb2SkNk9;>psKifg6RM3^b(N@%Y<#HIPF#&6De)y`d}*Att@3Y76UN0P|nAyM~r z@Q%v)b~s!fme4APyn&cJZqYP`f;Y5+5$unD6hjR8adg(XWh36t*6AU) z1ck_2Y=03iNap;&>>&vFBwSxK+5pRYs?2`8|7l;7B8?1aeLNx66EmM?bW!sc0OgKg z0y$`AjXrtM`Vc-9Ui+8>iu5&fiOu}F->&`~o%w?F;L@a`D7)T4OJe-I3EhCrsE*AE zD>d5V{oKbZ*a;0*9uJpD zXMbNDAyD94rJ1`g>U15?P{!tEE3-Dr4_rEbvHPQuGpanECha5A ztwSVq7s-yXoVIaS;%&I*e4i)oe^TSd0BW!$SmOvE&@y_~P4VuT~cC1#`f4tvgCC;VLHSUspQ@K3kg@ zFwG^hoBPR<(|w?SFegGy;3*w5%JPU{Ma-|~B$(C>+j|e)xoD~8M6S_8R3WyR8*MC7=eA?)0JFo$ z@=URrQ7{!hakxgM_LTWPK$Hf1Sy&+MX0oM*2C({eIe|HC0xM7aNA;_OZ9M9&>zrh( z=msw>!3S&hl=zbG{(k$n-|6D1U>Rxerj`QIOj^HPUFH0t^$rL%k%YBdveJjZ=jGE` zAV&_OqTiE7@f4RSd6=v1Y}pf&X0P0~m;Aw;dTk&plsfL3uFVwS)txNGzc(8_xl`^A z1$2a)s8J>|o3E*~b=#Sj(FeBA@m?%BILRF*!a9+|XVK_AlQL>_aI|0<9&N8I?E6QR zBu0)j#582kL7nzD98$5`EFo#OMz5!?N5L%Q;H#fTMEB)bR40*M#6 z9h9J7$X1d%TIse&%bFfYexWUX;&rqWwd=D=z@Lc}*Tw*Na!3QMeG%myzWtymL7+0Y zzF{_eFH-f4KtB4J(M$Vkf=QjS%Mi(5c%I~CEsHZ@(3ry&?JVluIamq_LH5GPRg`I( zBuk-B&6y7nm&5NP`vJ_YO4EmC{zRyUl*8p8Fjh+bVX^EoBs+%;#C|~7Y3Dx;qIMky znOG|?Cj(Gk;b;G^a(g}IHO^5(2XZPqN6IC@-XR3+faeBd2Re^7k@zN$Cu`E>Gk>Bm z<5YvO{_otz#c4&+O-Fl)W&9b#_vPn6i3tUIkUH2>+q@n%$S0-*=%Ifyd!~CR^A>M9 z*@g1?DwlIT?dh-3pSsl7GsiE$2Ulh_&GWP&0+U$z7E>mcs?#t z1p$hhfwkR=#I&B(%i+Yk8-3^Q0?-5%a`&ce3t^*$EP;(0d$ z!S7ff&xKLvPcKskdr(%0*XbOz482U%O37T6G=F5|hVf<1>BU}20^Q4SQd_&c^oJPZ zd?E#2U_>lp4d;y3}4x-m1JYJtg-8&488ZhJR% z>2Bjok-?pOxovH~s;Sy0NTk}w#g6pI#hh##O7%PubZI)}N^~&a@Rk~_C_eBq`b6`2 zUn8yN+dntKgT{ZR>|jEx_FEjjYG_Mog-^$IREqM^Xb>@SM%?~D`@CApH!k;+u-+s1 z=5X_uVP))qf-)P!!(+u8Ce#DgPp;qgv+2C_yVJmH3rG%X@ zAk0AUeXzQ-4@}R=j=Tba?Qh)-C57ArOaZRyhwSu*fHicgrVX%+4b3|S^k^-$@WmnG z!3E5ZbyQx7D<@^MDErLOk3%3ZZ`yP;6w@SvJ>gX5?_j)bZpvTHRV9 z;h6u*4`@C>9x#IAr3K}^WF!rl+|5UB6GBC)JDV0uB41)$6;1ruRnMoc!bf}#C);Xp z*V>;*zY0+c;j=MIwHM3XO3Y-}U>K4Ee9A%b8#-c{ic3`^bwDe5|8Wy0(CnqY0zqH+ zHT5NXZL^=%58BElv|1y;b3xhM9#;{Qh29enLE@ggbNttzA&{8JhAvNj zBbkl^3fH6FwwL+5OKFjc9-uE#DIhc7hqVLHyalzQ?I02K>X;bnU1e#~*44Z3gD5o2 zDX{Ez+^C=Qjn|U$%30027#=1{zn*Bxq}`RyiX^1WEk~h6Ri@9XFd#oeL;Aeyf-Tyj zD;LX4wlrLi?*HyOqQ4GNaPV6^{Ztg3@ntIr34i$;ck^316c#*WD2`kVd_>iWHXNgJ zovKy)Vv4w`JrLr;B?G!ULrd_6i4bmns#Pp9%yI=$R0TL@5JxN77*hS^!A|c0yERPI z2`;hhJswT2LeQy!bc&5d9F8!Ex6Y#*2go%`=(`MSI(sNv(tP=W5EpqTifZP{l1}^$ zPo*ZFqB1oU++}HyhO*Tgg0%dT+_XeNa@g0+0>bs&Y>F+W7v6JrOCa1&U3#x#x%qDY zrA5=x=roRr@PM2%!1$O_Bs6)Pg=s{`NoK50KU-=K`u?Q8;G95C@HU*9y3sXU?B;4S zn_SA$xR*Oj{DSQ?H$h<`k93iV8EB(TY81+;!2RqbG}kxrVBH2==Qi^u23Y2gJ^kmz zDG;xbe(?>+eex@0x1XI|oJJ2)_El`Jj)JM$-3)=@>5QQdzI=$3;es%ueqIq45IIh} ze7sp(X6zfB3Q%7ns#%2m!x-*a*G$1@6`i=c&Ch{vB#(OZ&s~u>d=lHVUo}KupFm5O z$Y~bwnYzl4HK=#|;AeU-P7Se*%g<#;*(p?ap-yUwEde zqdN6K$JSs0{iH7YzZfCe%9Y9kH}0s0k?@zlNzCLM$+7m_13m+ARw_&Qa>^1QW)I+A0M+cao`(U%BQO2W&3tF40E@ z#~pWEUf=@^5JFH$bc;e+k189QC(xeEbtAMdJ#GP+Aj13P)g4)<9#kAlMWx$@?1;eQ zTBkH!9W$#R??{DP`!SK$%|`@41*F78ch&4~q!R2Bi-8OX*ugD{HnyB|Q*=4xPo%ge zJAXwt#Yc#JGcv9KhCMWts*R&Zr10lB!RHH|=&P;mq%5w*6b5rsfX~F)$a|mn9l-}Zl!0&QP0`sTH zIPD_ZU0J7;NmHloI@VoDHnJ2TTSOTwk8$P--V*K!OM@|=?~4vNpS^0@>8`5r=_f~K z#9vV!BO=57C`LaeKTq4oQieGLmMrL#e=1j zs6X%MjCu3J@0tsj-^9xP0d7)5q0stSptAY^4Dt!r7(YaKpZNQ{g^i9jF3n2_8!z8; z;WC$)3=8gRu^L&s`sqyo|FqGVZN$nqA_BFd0JS##;|H?zSN;;C5@`R{E;$uu#D)g( z;|D|TFPbiaboqS_#gpl1t=z{)INErEHg0q};XPiw)qw2oeMlB)9+844$oc3}`<;vX|e#RXkauX@sw|;}1GU0kM zz|Q!ViHYr4eD3$T%27$d!T0-rR5k#OdNXa76XPpq6B|K5ioT!02<;tmpW{$qBFJaJ z@o)9%&x%j}q?O%Bkp(Bs20za`-?i!dp(IV5`%N%$e{By* z@%^o`6D4%rj*N50jD4S-I?MI#!`i{lj+$=#WEUrAG#M+vmx-hx8y)id^Hfh_BOX{~ zOvEj3jLMAb&)qw#2ujqP9zv}Qpz6I4#{vJefkBn582k>}BU9jS`U zS;E{>5F;}#wmbj3?`lxB+pbeQP~Ue`+GSq56ixH*A=|%mdPv>6$D7#d;ThKJH!6p3Pa$aV8ICmaqBdGr|&SZpDOKJpUpuKwqYV^3c@?u#U!!y|!IQ=@URZ`03V zlJ?fv-wp<>r5m7Wjyr=a`KT#RD%)4Mo}6mW6}!tU)b47ho?xJ5Af|1qgMdgKrrgrzk@G4 zJr$TS(1c^%YazXF{o=jc-6Y}u_H(W@g~6JqdlhILp*TR{kQxr2-+k5s4q6J#9@1C; z>-w&g1hiHzAfM@7&JcWdZ?ldNF<~s+pjK-{jZ$2vDp;Zb4y->HY;x}YP%gU=7{=0O z-p1$BA#a8W#BuN==YU|-?uW0Lf{^u1?EK!#7<}!S!jQq!=aWANq0`7z6o(%-nZRnd zFV7CrHQ|OmnCY4~PG>riz&8gSr=3n9>HZPROjC)4cNUaF%7Gx3BVzrJ1I4 zoa7IA)SFTk{Dh$P8Q>1||4x~KQObCA(%&6%unVj^Dp7Ut;}FNO-TuE$_#NS9|KNc{ zpJs_LhSVDHp(z-&W_?wqxc+T-!1mcm!sqe>gV7smWwE1Zqcl7nxSILj?f;ZcJ!g&~ z^&Hyy`diJW!O{Rs3N~5k<$o8O_kelowj9H0)DLKk@_@a;w(TMrCh46{8MVwo*x-Vw z|DzpNF?q_#05Y2{8}e$F(zSH@SQY}Ra*${OZ3^L(?-?LDa~yXP@5P`RH4{mxRhc&Q zEQj)$*y+I+Q+eY9t z3BL2avsQtBr|Bz!j+HuRP^>{7=X`w#`7n6YeXiD29Ht&+{BI`711Wqp)-7SEN(tom zCauyWC4N=Qo*BIOw{?{P03F}V03^;~eP!;GRav=}3+hpRgY2@Lh8crK*T#RF5c2;a zpYTVbeaSGhmeDV@wi-^EID)G|#A$}xXcP@O82L6mzq0Sj&l?X(_v=9 zk-BDz5eM6R3AB)r?2Pl$9}bU{vAUK2Et3y!5)ixPm`I%$cA5n0fObW%0by;w1=}~$SM4hoXt3}) z$C((6iU{TlK4bPNZ}5)nQbG*t8mC@r`|V_C@w2hzk=KaiLawP<5)Pnx_go=#Bd1=l zUZ!a8r%iY?n~_(KR9&#S0`*~^QDr#Q`6bTbMsHj!zP-=TIMe5^pF-Da_cAM*Asl9v zsj0WUwcH$WNax#VP{J3tO_#eg1p|W4sVjt@X>ay6Ahv@7@dIbLb6zT`4h1S$lajHr zn2hw>GcP%m;)Z+lhFtv?&gquhr6S%|%Z3apgben((D|j-rF6`WkZTg96S(LtPybVO zj!+}*ah^^)2CFO9O{iHhmA7lNI6XD@8^F;#wcpmdT-qCH$9L1<7jja!8C7c^=#8D$ zGgx~+du=$;ja{L zTdueKsaUkO<7--%cCNc1Ul?-x;Q&8owuZRdo;%{@ZmRh=TEY!DUlIrfUCPH|Ka&rH zM;K6@MHe+N>msDi~A~em4&b#}P*}|cb3!zR$ zUWZU<=RA5agm%h?#2DKDy^jA3!J|^pKXL6ap`VSQjkfOj^0?hZ_-*WXYJ9+aF7Rok zvR+6%A}H{}`A+qz8f;hebS% z5|1xwJYnJmJo+atM@n*5`DLdGe6=&$>Y4yKWZS={$T13dg}jTVg${_}3z~eZlAX*8 zZTQ0g*A8Jq>xd`@L9rU&dGgSi$lKAY$^nCG51^hWHkD7#5IAw*7ed@z)jlhY)ETV* zw$ep_A<}DGvxo?+UBcm+j34w1J3m?O`HJw?8f2&Vd=y|CHA;i0>2d`8=ad(?r?+9~ zH4+NF%L*8(HfA!j32#hB1(D(3CQ`8j$B=4nriq{czsCm9tIRtjvFDe6(Vw=^siN#l z^-9=u63dt}1EB^2#=9A>Q@2SZ{qORpPSO#q;lQ_ULpe<43`-P;^OJZ1j4VzZsjsHTl=1LC zXY~B4Fptt_@z3y1Enp*et!HT53avbl1Zqapzm3ZX--Bs132|hxP&i$uiI(J6`-Jm5 zBk<9IfOivBei9Qt2VmO%at&o+rlHi18gCYudO+S^_d$vt@_e5B!HNoViY0Ik64ovN zvZOs*U$_1p|0Q+;7cPEBAZo1&VK*!cjAtR zPSdgazvysZDx_6Mc}o(#Y83{cI(TcLl4Pop_Xp>W#qtEZK1)HfBmo`UlKNlE*>w(c zLAuQOsoT;9X|*qqs^EQqK@0&3rDA!PVW;^?@a9?^P$31b^O8pELuL8rFe0h5AIlwwhJ_iT-@XWFp%0 zxRq}bpY1{O2OR(Fyc03L#&jDeFqIao7;MyEMk7MCq<+0vCnvn{0E!tXYzbgO`;8N9 z3L@eigCL<-x<+Y9mf`mAjRe_FuTX4TSB?;m?~y{NkA7Wn z%E$}E8#fxRYv$N_k)5&nw-J!&XUShH{kDMVyrC%8V-vnCr^j?F?LW=3^J34j!`652 z8?Sr{nnPHR?F3eqM1#q8T4@5T;Y2`6rbqFyp!+s*MtY+|4|thW;7cToc@)t}T?@Gw z#l@b2A;|pxiL#_W&s-&C$c-kI)5Euz#%D-4N$IncH`DNoDDdLN!iZ-6?d}Cwy*q?F zE_t_=Q53xUF8^yF&V2NKPph zWqp?bH4_B{?Hq|cEwc815BE_lg{H2|8#+&lA$OjR0GKT!y#ES-hNvFG*Jg{K`?f1@ zq0T+(qlL*sRVL^>nFf=r5@nxUCRBy`%iyCkyK}4za*>h94+S7=r&=5lKH?t*3K1a$2&J@d@<4*DGt`wDQ~N1G{eY}Z&++@@FKrffE@pI zZ%{@EwDPNTO)LFPq5QD9%Qq)tc^C9m171DgrtEj$a~H{53LNnsfli(s>9KrlQz37T z(OHU-oB9B}OYKa?~TL@J<&EBN`|AZ^+PEQ9p%C zXCI2IU5s#5f8d7(6o<*97LW}}Y4cJhyE=5GZ9V@fNx#tE`}4}oG^=Sej2TzKhD(i2 z<%wRG^TQ}x2yY}{Z*P?T_S#k+SK9Co*A74KIO4#s2h${vEu8Ind02c!G_h6D5nFUbo)PtYQ0oSD_{w)jVaDA{UP^Ez6*@@IbS9#e- zpn|9T_vxNHxgz-Wi@*4&0cFP8-_Ty_3dg4TG_7N7?kDjgfptq^*_XOZ8OQ5(1dASU zx6HIuyRO5iX|@KMvJ$?#wzlg<1W?3NS19`JG+i5|#?b`PIO+5wLdO)YP&PoIM=^)l z_QaM3{~juf@n-#UV@hPOmZZOF4@DSlsVlW0{WAJk_$%Rme^;gd{i}Wl5vaO64yW!n z5m9&s>#6bjzi)e`*$0Z_>tve28wk8A*h8CK_f<$?;#6;*3IWeN^}4~z6w2{ZCN{B~ zd-cQ9VY8vL*Sv7~4Eb3jU#A;Dp)#@ANY&^Eg`fI(n&Q-P@Q@|JRNT<}i7$X~k$r+% zB)hgA@p~1%yp}x~la<7$0Y6?&pkCPTwx}0=<;yVsx%rsx(Z$_rjcpt((^PN$Avx2; zs?y<_&3@*uUp46_9gN8nn$fZ3*!od(Ec|@O#WHNn1_{&FsbhcTq;dGYT#`=aQN{l^iD+~qI<>?~KZFuivCI4$ZI~aMEEJ*}GvHB8w_0{oCsmPE3$`5@z=0n4TN{y5D zggv~LMlfd{+cN+w#>xAtz4A%7yuqK)*RPPcMsttGTSo_EJ%^Ge650+PRi*-(ZbhWH z&T(w>brWp8 z$n2A|E3vL+9UC6Q#G0^^36xv5kVVthKu6$p>(ag#2IYG8lS-XJ^-NAK4a=>T4s64IJE<EmC9TW1{&KbGL4wLj*yCDpi|)X2>9vMa>piMVA}){1g&m|g*wOJ#|z zxmX7nM%Kfh{1a0Yp63Opl_VMJVQgitGI7dUp5aqds_RzRNUnwnP#@8FiRZjP)%1fb zf0a#~bW`jk0@{$+x<>b-TCUFSk1~2`D|MYU( zO*Db8u!6|9vM~1N#2ksYe^u3Yf8&6QdvpcGSyqaIY|j8e2BF=3l|)jp-mPjmA2$C> z$Va8uG(}b@sydNT25mwSRy9)J_tKqXe=IPb!k#-=R80O5f79ZIE6xu)i=J}&So~R| zUNzfIW?h8m6~!<2TwgW2I-iwg+e3W8A!4^T-Q0h=0k`Bst87*xb;(Db)%$F-`DaF> z)aG7a^pHiOi3z$db9akT2TPXn^XOTJdg_9mt%U)1RDbg9&ir_)w~SdPUw*TuUYVQPS&O>GM@_ld)3>=v}SMD#WqxkN~ceyr=?)M)C#(g^jB*4PareGN63z9)?<{qK zmO(tyD|R%{dYpBOYNPS-sAq2`7i=t|H;x!#uc3#o3*MSa_C)6`OFEU(3u^g0KzDcD zr&>oF`f6^s=-x8s{!S7^nZF}-d>kzDayODiRfMqt3}>YYuUK=gbeDFj@S|=&6Psn9 z1bQ^7C)UQ$QS7JLE5jaa_Y|pooY>ZJ_K2~KoyNOHhc4S+hIfC6Fr7z24ULK5PKjE2 zoDGfzd^&kIvWc%&Law~yfV<6wd=a&poK!qs$*}^pC@Y$e#@r~C!K}%v-W2tg?4-N_mfsp>`GR zGVU$5d%CxE+MFGIp%3=JY3cAjnEOeZBR&_{k=SL?8rS=|E3#3GEX}q)ZmYm~@(B+Q zS#SKc?_bgj6_P5zhNB@{j1ie}ieDmSCX&Rgs_CN^aPUYO_=-@c`)=+jO%2W9;!O3k zZ(-tE>Mx1h+T-_Hv=xyLDTjSb8v7shiM>?Z@%1Kk+Kuu1DG1HF?f^)nrQ(^+SW2eD zm9X3?O@vRC?Sz(41I<8NpsDBjbLH!Z_c$1Ewu9IFF(kYv-x2djOMk&(&ToB+Wz2(UCP=&C%uD^LHj=A#}+>r z^~)_V{T-gYXg+0qg5#}Gq2K%DhT)4#!c4aW^euTo^4g{>us)K-?h`gtyrGO)!-bX+ zdTl&AT7Fw$GIlL|DjJP3^Unp;6AQY>Cqi)?;&8E+nGtRYQEI$ZH>CwHNk6->9$ z;*lS(KN2XZt?0Mam$qH?)orqxvU5O-HqQ$DfPE2|Ugkh`+|K-L0tuRC$KQC>n!<2y zcgxLx&Caj+WmD-%sghvIajhP;YQC>`y_5d{xgQ2o{*{c~7U@@sRD9hEfjBtTdAHT9 z4K>+5Vs{#7uJ)3AooM1hFWPAnjhm!4PZ2!iw{cqOdEeaEYh7`&(q!K2y~!(R)G>Lu zLLymiiE&FV!QVAS7qq2(%?Q2zP~*^-CQ2CfAp=9Hqown>!~_&4=gi;nf9`e`H*ZT; zoy3=L0P{&2C#{`m!T)Y2TYu$ia?;rV^-qnLvt+cm$5@*7tMc;}Zo0)@bBb~=@XsfD zZIoT$+r4Mefo3W+LyM{LRzmb6uZKJh$#T88^c*a#@B49|hkn(@yKEgw=PT!ST~vJ& z$2uf>>i}+C>1GM!TGV!!`dI{r&3(tv9Vbh% zcU$?jLFdFK+#zU_JHn)p#(irpi9FgmM2Q9%PjL^V;{=!}`)6dQ85(Og#9rc5 zgkZSZ^`3S*YlFFOnZJ25*>27?c%wDE8nZn9`gm05+NzMQOQGGqhW^yIy72tYQM;m( zm@jVG*PUA<4`4E>FYXi-8^#>^@j5yh$c!=)4eQ{8bruGt$d>ZX8zg)$qja817_GQl zBp6g&h%kJ!eK~&`g)y>fh6Xt-L~+G}#jGE+I{s zw;i0IAT8cJ@7XLQAUZGgCF!2J+;~;T#HVvLDih-mea39{`ssmUcUXFG|J(MD@ZVBc zy`ss~w28X5wcvz?N$uvm+JgPdYgcG&`HY?hr91H-T?*n%CU0_o6U%JiVs?AC;?3uu zX0419d9^V#hxH37v1+KLsigM=-!1eB|E=WFw_{V)I|uWJamb*X^?B|+LGw8J`9nzl zSp9Ep_iQx^EvMMxh+^~GZocHKw9LG$UnnoNQgObV%iC#ay>q!4eQ)L@AO%{)OMI&g!d)JBb*+jyot6@zUrMX z_?@9;^k{H;(4riyN8WrFTmv)x zZMiQNSVC2D9c7S0#9M6sF>=0I+$=k@oQ-W_=L}Zwgk)I@b3ElNo+m-A<8a|EB*NS; zV57eF9P!S#eePt5`{xAJ@jE7POm*dSF&w{9f9t$O zqJvd*K@YEd=)s_4zw84|k^a#*Ctp+g$DO!@KO)j3B722$*9L_adg$1G1P`W?5`+v^IN5ViJ8* ze37pm*ejKEwDKFTYYcRm;|V6*DwQ!Jd&D;pSfJW=DXsK?`L zSg;7}Eya0Xq~l?aH+G0ozbP?rpeJxtUL~(aqwzqm~nYY2EaVNyDCnMG}oEi+hK6Irc<%+>i2{U&-^8`jR8| z%~>Yy-0q5mC06vW9$Q}HKc6~e-7<9&j!-D?PTL>J*Dsf#*f3SSyn4x8XZuB_eRqZ^ zJ3SKmV`|D=w>SwKhsWVP{KMWg;U2tOm>A0&@8QvL=q~d_Q`3+BQLSV(oIHWmjllZS%gDQtEw~Ddii2#L`0WwV^`WbCOT-uXf=` zKjA%b*N6c>vNPD{%mr#|H=8D`!iOHX3_fq3Qr}W)IyTzDZOk{3s5v&)*{mN=2|OWx zPZqvu+{#Hme|KcE8sXAtw?qnyIp|Jp8)(K}*7=N4=(XB(OD@9SwL%w+Oy1|KQm*|_ zBtvfU=O}7WKsZ*NSn@-X^C~jskH7qG+ley$B<1;$!j7>U4$Lz?)ekX2)>C@KrsswB zn|e;lka#S{KiZ<6jc({w|CGdl8_7cbNWXR)W`hH6Jo+GED5(Uw(PFqN8nJ}*FB2CV zR40&K<4=K^9BP_)q&jkjMD>|w2*02mGOI4|e*Z0;*u&SReCG|M4xg386EILI?h)5N zJ0fV$Bn(rkE07{psv<5S>XpMRE)c7IT#0 ze+=7O1$iVwEErgc$g{;j6#~KyFI$G5<`DkB-Z1<0?*DH#JX27ISJ~>lBgmTVI|>LA zj|HCOIW&MQLTCu^6BRvg%1=Tyb+Se`X+a##3jh-Rr7u7@lvtXDCJah+JbtU2c@g$> zD?HsFzVZjk4&;&d3Q(s$@;#gcxaR69z78>8`&X6Crh^NV$};u^4)v%PcNSPM-M2P) z$s=5@EKA+9}mr)6hgLS*Hn<-;GBWj`7XqMc6Ub5goKy^})HxPFp1Tcavw3ZvcwG$?rXzR6 zOcd+D*{w?u&s^B86%-Tso+@wEodal3jo)DPtMJAFPgxeQ+k>B^4lGS$!D*=Db6IY> zs>ACC6CjWtErDc`E;sB7gfm|CPy-M9yAc}f0oZGBsu-xzbZnn|u(P4Fd^baSlYZOP z6;kerD2mNZ3EXx5{hYirwz?#BeroiyzC}UlZqat1QbAi9ta>0lP*eS^@0j%z9Y}q2WswxH;7o<#ux$VgjQG25>`B~ zq&DWD_;qq)lpd9bD$9@nfCL3jc@UMz$xw*xw@|wUhg9+x0-FP*t=`XXnmR#P4@J#T0B1Jh>*^(zO-uw?K_%=KgMdVvZs8o_Igb=bNlzo>y`!WVuvkn!?63LQ%$-ZVA>rly(eaSXs zNcLsy491xE9^dcpeV#ww<9Ppm-{YC%=)h#|&wXE?YdO#Jx<1}(sw>e_vrt1I5ZY%? zpJ+oMXLTVEa*gwp;2rHpK|YnnU zR)(Bi?o|w~Bi1X80~?WF5hXBFvM~&zI?jyfp)zLHD_Sz*Rm)JCslbnTjbf4I2Os5- z(;~n1%OsX~7}%d=ZR>Wu({o|Z|54~pn!9bN^}<|F63)LRqr80L7T6njc^D_uo<03e zR_svm!?kC0jHf>ZIZOC#-;n}mCB3v2GRaTBiMdVw-~TgQDmZ-ylJicMbWRB5rovgC zf8XN1tx0zJ-P23KB+Ee{vf=0dXQ?OuXQ}^pTLsBk&o4M$mqwV|L^LsS8<(neq;`z& z#Pl8hd*70n3jEjM(GS_4_J$3y`_8#fDer!uVjGo`K^LX@S@zev`z*iX@pAf&lfhX; z?Kq2W^65{ckN3A|;nX(uIhnnu+Y_d%EHRcYe5BiR^SaIR%t{k6v-sH>cMoiDH&WCW zRYzAgm=^`DUTVJ`)fFMN_(Ar=Hh+4Vu}q_4OTb!p!=SO0{n@-#fpy-!vY(C5%o}_f z#z;{C$!UzF)@{d#84r^Wz31%SHA$y<1#6J8J*i<@i4C zfrAQ)Wa9hsg5xB1M-S0?HKfk8S?#NT_H+ve-_s8jBzdo-&k+`?RCb*gnZ$jU-qoJ^ zVoaY9mu9_c#FVq|KfmqAToRVvWBQbizImA9-gi&-Vz1)9&mV0q5Ku(zN!R%Nv0CP` zp*?I<17nH-8cKCVDkoeNZ7HvcaLjeCY_;XFjK*Ttb!3V)+nVdL9xQ0rn5P6Hnh0iW zQ=2K_MWg5qxJB3vL%&+-`*O*9nCo7czKohN{EtK84KHH(9?tXFzb$UkyRq#0!h;o_ z>it$>U0;_Z#C5k?tgnAfg2d`c)^QMPQBRXjM#ijj${wK)9(sAvTNEu;8ct-+TXku! z(UP>1ck8j~zZlP_azmTJK+^h0+R^?|c*0mQzSUjb0Z-I>Dn9Jl-7+~>D!gDnA690d zj!`G9i0>HJED8m@n0SNQeLM+8;&tD2DZTea5C?e^gS>?NfEBfBpxFRYfG$E1(NA z>G&hjv%9A6`l{E;FTci>;4KS`1gsi{#bM@RnrnWlf_5QIgioJtaxVUp)R#m&uOJRsILD&jCYbP-%(y*6OZ)n=0W+8jMH(Y zwCmo|=ol{rE$&1coqFAFGD^iLBR^JS1w)@^3dO%U^8IO?IM=RcbA-xH(S2nxc_Bv3 zXjppNMykodQ~UhFu~|y*1|!bbM?RNY$!BcV^Wf;p@);aK+a_b}_E}*ZF$te~XL9=3 zzm|V+nppF%%MRSOB9Axp?$yt#dbE{qzA|RphEglK|Gw+z1fSF$Bfe1s87ZYNsdSSy z_#2~y3wGl(JXK6nh2@FjY)2YxzPCJpp?S=|Y=2m)ubk(Tw{7n?wXD6DwrUz}x^Qn` z=$scShRbe6?MQbrCQiZJG~00D%_}S!;pl`S8H+jjWX?V8uB5?j?OZ+I?Q2;TvIyOmbQv?M%5JQcv{Tw$rRyIEODJ<-78=fyH`Wc@@P`!$87Oui9%Ji`;V(U# zs~%<3W+atrz~K>C3QK2~$02k`_fTnPcqe;QLf3Sz~ZY+M3;fM2JeYzINvoG8; z*s;LConQ7?#F4K`zv z<+q_dIXlAYtBA%S5W0oQ}dWa|8()X^g&uj@2q$eVTRN8{7``< zX8i60Cr@n1`i{AAmHhmaw9^JLzKti%xWvc1zL=DYAf-a=nn^oUrchs=YpB8u*h>TE z`4%6!g$u-&V*$7MWnHBq8pxi*cf8jLJJGv2jYXyyB&Hs!D}PSjRy8UrwvlasJ;iI> zhzE~EF>%l%dj;8&%3kKB{~DwwtiANs3u`{iM5J(9|8U|9_jEW|!zMfUrd~r8)y%IK zsn0KtFV2}m;TN2K z!O#Q#8;i8=$@%Z^1{4+#Aj?hVDk<{1jG4N>e(_ zrgyXg8>L-*`A5WC`sR+`V%oaC~j8p__>?jU(X%#6@YO>P)>EUIEKdBOi( zB$WcjrthnI`?H4)evRq-!G6RH1N!-Q2!dP9I-$ohV5m4i%Q@`$=T@Mi%_8USkLAvC zwsFU>zBv;~a~$TF0*PkWE=3nAHQrNXo%O$8>nY7Y{8QalQ%K%;fw7^ydr&@QO=v-K z-q=-R^AOs+Cw{u>>P84eRGJy3%Ajzx~u# z3vvM+&TAJJ?Iz~0q@?L@2dyu^=)$lX1Q^zi-?*o=JNf1rMzRZDXnI#mkm8L>b7qq5 z)#3H1BcmU^O@Hog@Lqwp4ojm9i9j~?HN@U}9>$)Pz z3bGN^bh^@>t7z+$_H|Sfiq|OFS|ur6SVZKnU4r4v=+;2p;n9Ach|z;#R$n3aX6YI? zBtn{y$r=d?BdXj{NA>rij5A)p&^YDqO3H4b3rw#K=UcacRzL!8>D?D6R}U zH|t~=H|o`X@Gh@4DpOLk&^FC8P9tuhGg4=1;mKc&i4HY4e0;+KQ~!BdeI>uQO5V+} zdez|i*f|G{LnK{8e?+0n_U6TSj6sp%)Mkc*n82X29R`jvbWuI`=^Togf9LC{voP79 zO|nm|@qp(T+t?jsU?y^2buCd{>`NTi0?jC!Zh5!jkkqx$_7+St5g#y{Zax#p>u;08nw?inzGL)vFr(oFqWaE2D^FTgo!_3$-$?u)7Q(BMFun0-!O}}3 z|0GVrGQt#A_gB-Cu16|4daUE0EjF7nJ|Gd9AR4#rxnB=9vbO6}9*pz^Rl0nFz|Oy5?S~PieYI)x+Y#Z0X?(CPC;L;l=*&;G5Dfe>cretkO2 zgEg$LHv$lsS0We28?M(d+KBq7XY5&*)7kj9fM@uiUZsgw_V(1lKhcC+?l$v`To0Ei zS#u8Dc91mzoo9JJDvE@xpx+9FKk#rzQaPsPRyB*WY~8pj_1^02{}^88ye_K39utTW z#!_HpY=WIaE#JfrriJqCOA9l4r?l~)t4ylY|0&80Xxh4U124Zob){e5b;yK*KYgwA zrGmya-JER)(|^QER|t}E@oB4*uip9h<$5MrCED7@n6@J*CT;MzmkEY}8}MbR-a%LB z=H&|}m&vcXAgRoIh72?OjlBcb8mefou@6xGclI~3xlto1j}l!Tfq|yRCOxx1+s)|o0w?-xhW?KNWp|a`TbVAQ76EfSXjYq|NzemOSCjgzu;-q3WMzhjjl`)L1MCj6g*JF7R(R>%ka)^hpufjn{l2lKZ!RyJ_AasG`aJpHW>6 zXxa<7#iD+#l3^?Ko_HevSjr9I3T(w*o`Jf+?A2iFHTriQCy-q_@_6g(XL(?uWE?M{ zW!E$h$0v+dO4&8#>|V{vKiUu5rLS8nMTjcjFZ|{-TsTW@;9M&g?%;jL3in>t3p((Z z*20n2#LXy7oCCJnZ=rsd#@(;&4kaH#EOM;sE~3CZ=&mOcqCS=+8Tc|Tr?4bc{8JJ6Q%-?=p;OjB4c^)uZjQ1 zm@2D~RGaaMsN^}Fs^m1nuc>zaG@XZjR~D;Nnuf()kQ2_M2Tl)XtJ6Y|(aefAV;#QJ85&YVIK%L)#~lCl+6|Inm+aY*(AqvAb@Cm{_eqbDZ?-!@bLr@hSKT z)|z`5bkgcRqOWKi+ru~65seu|)vDb9NELtjW*vol%f%pO15oqRT>_XW5Na0J^+Nf_~6}qv( zEK9tp=`d>&K7`mveSFoL<}?RbY;HyKS9@x`R;Y675Bl3O&8~ zax^c&Fty1-?e14*v-@&(Qw50N50#a3JBO19cR{wc*>Zg4q}TS*xMhMjkWeXyd@(K|z%cs8zTc!W1?QY4Os6d~1LRvkVexj)u$ zv?cS%^8ULi*UfpFDxK?g8Vy;n;0boP<8svP#o4(-%M973Y7CodUF#{U|V0%OtV-F6d0-VstCLeM-YH@-r+YpqY6}tAX;g)4BrQ&p+ zwR)j0=uW2dg&?p6*>=*%`^pD@LxmS2Rdk$Q6)8UF}8 zf2dQxVdjLk>q;nC?tvnrdfEiZm)Oqo$jZz_(ShKhOfNYW>`I@zxV%Nnx?Jk{q?Ou$ z@ST$TqZQ*+S9*tZ@T)btr!n&eCmqej3#l{IdXMr#^Wp0-*}T73$#&`J3#@%$5QtDZ zbD!{1$<5^O^ zV1&pj?l3WMd#_J(Z}hP_c1|j6N58aNbtvk6GoL|3RX%czp9~TZ4H`!=g0E-G_168Qi!Z^Eit9u>7;r(5n3SO=%jM@w)+?#C!xJQ?Ialc@et;4>5r32G)arJh0!51G)L)~}Yu z;_*`))MkNcrqkD)HSMQuM@os|eUEk(M5KvOk&)4H807vyNb!k%w3Xt%hi@T77Jd_; z${Y^ik*xt-fL5!DK59nFuvMUPRZZ+Lluu@eSvbdThmJA8r`D7X^5&WQY*K<54-KA- zl=#4vSx*Gpy3!h-vP++wX{0f6%Qc<$I1&jlJ1AYbabl20=!J9b{-t-kID!UOejdVu znR%bbuUnES3d!8~2Q<$pMa%a%TWq$Ph&cU+%A=>dksl~!> zl}i1y#aN0F`3y3}(~FRZ{hHn`L&!+(YqG5+la&x|bFiw+pIWPdSl@=reGF~JWgwwT z7f8DZ?p@Sz-8P|3gV%-%92ZrVA6>ACx@seq^ty6SgOI2$b6{w9D6e2PWi@t2HqTxn zAUl`yMw>%$&y{=WrQZ&qP5-S!_KV?p4{~PX!Qb++ahpFwggx^+O$4+7>n7q=ls+$GsWGe-cc2YBAMKQ zbTtWl3Q-fo-pz2d<0~?jw!2ONv5#JEW1_#8x(p2d`dizlc{Zs*1bbKp=!DUdB6#{& zSLJm2#T23d%ZY)x*8a#2_A{K_ZI@!i#SEG+={$a9MT)nwa}bYSnm3Wxioe1_36La? z=MTF1d+T-Q7^!!09HfQHg{M>J`s#Jq*AL3vTn>y61=4KC#E^&KEEz=eG@qpl5{)xZ z>J7iHL*0K6Xb7b6JuUthi)V#SoFn#+a zd`r%sc(E=q>$kM3KjP7P#738uo(8zq><6OO@Gq+=Bm}b9b(W`>Hvd1rzKKjiaZAGo zuH;>$FZg%GXlnJ(S(84*f|**l%BhbR@U9)%?~#c-GPS+XGb&RNDi#1)a`+hYL(iEn z{?7x_F>gMf8&wsm(Mev_m=Ha>2-xDECYz{hP`gEDvuzPze+LTAX8GoOEy?}OSp#L$ zh3oJQ15EjbPJ!i{s&%yuGe}VS73rmm_^rb;)RB!S1X)i0Hx3=6<~qwd4NzLiAgT29 zpFfjV$-5AmLWv`ZByZ#8g-2qph#xnxs0L3En^kDh@Vuq1052&>rniDQCf{By7iOoE zdgUoJIAMyrpLcu346Qg#YM1BSas3s~B7~o13B=ceBKWPYc$^DYcxWG+39 znQcO6;a6fx{(|e9$N1WD$b65yx$bOL^mvjVaBWWO@L@%EM4B*G%8TkIa=b9M>ex}j zb8=Ke?(~ozTp(f0H~Up6`g_!bHqCz72KZrBt#&9BD>Ig4KA9UjP5kC1LII(n$hF8kLzdeEt=MlZG87HKy|Fuf)EGH&2 zt9CM%RC>h60%Z-EOe||d=&-tkPt#*b+x>+z%jdAW9UwLFxy>CW-1{6iuS-#cm zMZIW4hyb-m=riAa$<=a^<1fYWlHMQ56Okij(arm@EZ)*N!t*M6#DiJ}>91;z;V2j+ z==&{`dG#!(yvlPiH&kgGUsOm=aw=ov0!gQ1ZWr^&At2nw%}yIh;&PHjVh>|yAe6OvV&X25}G%`SV=YBRjsrV#-~2&a?K!n3!H&6 z3zVS;*6X)v%@6d@yd17u){WAnTq?6?USwRWOKTjMv((+V<_nQs5RzhKFK@C(ivut~ z$>HtAR_mqgUiTd_NCeg5MNB7)_~@v-pr;n8LdHuiQy#vSU%PiPs-IZCa--hBPRw6z z2HBFoA_=)E_mg#hR)8y3K&&4@MsqQ^duk>1oEeXZSWVAlNN_M|UqW!r@7ac30sVFl zj?0^!?A8Q@aa=5j5Xye(6IhyIt!|X$iP9i_7|HN4oizCO0mW%jQQUFC-+!iFV3~Q7 zca?9^?+g{le>AcStUqsUG?}(CmFccWW$12huVPQr=y8^+-6$bqCF8kOanl*dK>WhM z1i(7t!&JIK-)}-P`xw~N*?2B^ac^TEul|a9U^TEC3=S4gfPON>)6ETV%n~5DnA#TTaP{jPI zR5Z;>Wxnvh|9c{1!;w6-dNQy1zNSdpqr7%IHZ6=mOHNgEfP7YfMxnUw2EY?RJM`kf zX$2Md)zbJOXAA&n?&@lJ-aGj2wt!Zo*Uhd1S)0LzL!J^$w)y0I=>SW-^TV5Jsaf$; z$%t^h7*4%)lfS0kC8n9QdfH}k749|_&Z!CIC~Ps%cQ8(D-g{R@)KkkV6{dI~%mUD# zT==L=<{{x@dEPkp-gBhTTwD{)**xJZB4Qj#_1n>Z-{L>06O>M0=C)dJbwbBw+XzCL zy=LiBG$-Hxa52<*Lx|=cGh+b*OXT;>#?kgE`(*rd^i&mZW>yBx)Z@|hH-dQVMBoI4>5x?2t!rc1_Tl8!WYP z&RrPsA^99Gq-fGYrrCn2OUCgv?9A2Yugx~%^60}DMD}#<-y{vYO{~=nPj&T<@MtBq z_eX6QRvM*TCXYp2-dLP!9&pfW$8=2DW}`naHL89832hRA4CxKOBNvHEE_mnea6`Jw zc=ek7s>Uy(QT#DyQQTg;7HOD@kZ-XtT_i4M9y}|+Q|I@l_R2Te!Gk`H0*9ri6vYVc zP3=`pe?f3tY&VwZtQ)EZAXmg zaL?M#i^t{hSG^DV$>KR__{i^%Ck_03%h{^ZY}?8}UvzLRr=VsUm)4?-kvIPhTtdgb z|E@?zz;GiI1ac-iNsZsF)IQm3X3nJ7if8vS#FJw{Pqb7XT9MYmE7O<`2~keZBzRLZk*P z0f%!-)b!i!2WWFd_{kFg=s{MUyjNA3F#tV^tWri|@PR4F}GCM58!2Q7*?4b-$ z2ipG?2}Z5(PxKQMC$~%wLnAfq$E+O3PuyM3P||<6v}{A7b@{5!{&^-*@S~{OD`&LY zM?ePu@HtD;)^T>yTVV7ZT7QB&+R7q)`7(xtFp$oLpbUKJl+$6#wfn&UfgGvnd^&~I zYYrPVDgZFvw+N-x>6xS4RcF2i>Ya5pK*e!8eQ4Ori7c@I2YG+BYj+o#=0kVS($sc4&u64W{fk6gjDkJRBxrf_j%e@9L)-$ZZ)IpJ-PJtqx zj21sYO&c)H6emo$0@`H5Nn@b4NT!(*8Aqht%2_f3eqObw6+^fIAoAu9!xdHi!%iXjg1f* z+H?4pe6|dc0?4^`D6D%6!a9CXbdr2%lWt1BWc>ZMcO6}g z4kZ(SdJY}_t)g>jxgW5xlY+V5uhNL^O{pSdqF#tsN&^=s2{gteC9gmk z#g`cK(*h&FN|N8-Z+va-PhnkU$nx&W1eEtCpS7v$d$*~hKw2?RttleM;@eGqo2XY2 zfWDUvly&IYtzcvNZXx;3?lGU%*!cNah z$tT<=`S8$`#kbp(rFpZs%Lo0~W}<=X*5c1ix}xb_sdD}<4aQu4FyebX{F;xMnoF}K z`n$shfZ0d^=v*$f$-X|?wyysVU?neNwzyv%da?+4e+-51vUVY7T#TpQs@e~I#pX*? zITzCEs1{_~cRHVeK+>u zXM*|T7vH+N*uJb4F9LBO0ZKycFgu`DT=#KrDFgrEH~hzhCvG zQ=WvVykF06FvgO(_%nPsS>XOLlc_Bl;v1Ise&~|)L1eOe##a~(KkzKdw*Y{~L07X& zMq}#XcIB*>beL@L{Z20@fR}nUvMaG*MM3|*3Xo`0EWrSaT#`Du(7}D*s{y98lqO^k z_Om2*G8oe3WBfjJ8qu}?luErpuKCYDp!8dYZT$vu)0f=9)fkwcCtQAdJS4aO05;ds zHzbi*<=Z04D`@I}TVYj3*Kx`pOJE268571ly~0XtDp)nZx* zg8SE%;2?9b-Bh~hShasmWis&7|)Ykr})zByq=`pq?v z8_Yl(!*RZkAW17g$a9P$rgUAeJT7gsFHDQQ0#2FpvnMgbuXWn-06VSyAK+g*>g4tNeX#q6L~88B0+nXY zpp6=+!M?t89&PgjCEN)uKD?Yuo?5<^ZMaR#oV8Hp!ljydx}e7|hMexCEd!9UL}&>S zxzy@`iD~uuzd+p8^gROZ1)#rU$*Z^qE)aYlJLPHi+aI6sj!c^vm*a*HltpSAp55gJQ?Gp|O192k?Ver+4*V346__C(Qg z4x3ZXd{fW%Zzw1^PLj%ksA{0ZX6oHE{{F+82V{Z@o$HI^4O|MKiOK^~89*Q!B!)!d zZk>ZNe%>IWm%C`x?$-=P{;9@|a|HdSh_FT3%ynikf)oQBAF%mvUbDT(8TF_-0=g>z zN7NyaBwzQhF7HMZe2&r7Y~w`>nn(QvfQ;LkaUOj^j$}27NVbuB+L{W{YNf7MJQhGvRES>b1yNgY%%Wq^Up1LC%4z0J98!#Z75GsG7g9fXeR63!@&Q3#Pt*{;={GaN)*KAm2vS%{G!y?>0~~9G$ff2Gm8I zPJ&5^XeHxFfK;zY0s8Hb%78G)|Hfd-J`o~u<=%cM{+hpHFRh&u>vD)J#nmU|iRyzf z6KrFflFeU$#+mc&E$}zt8&xxOHWF5k<2qV$2b%dDolB~K@Cxx&K1EOW6*kDK`^`12 z1t?nshM2&{z5!{oICWLJWadIkQPxgN<{J0T9IMb{P?NKPhOY>0m(@T-nrAVon#P@~ zArN1)-I0LsQC*bR{;o05tBpYg$iux_bD>-g0~-q>3FuOLwzL7nM3VAQ0#?r{xxlZb z6HxlYPi%F~YWgcuizS155dt0{IMM}5hE?91UY4yZ05)|oUCUm(U3--e!~=kJ_cagv zsZBs)_BU#k**B$4+8bL>-Rtc|q`YWds4+8*W0N?yu!sZ-24uH%pt<)HGQFCA1Zr;A zzB<($m+wm5ZQyiJQUmP*Xtjj)oUqci0Q>uXDvS_nEsMS}T^=fPT-#S-Ty!)YFf8ul zqud+CPz3^>P%N%nPD(|}eY-dmN09#a?B{|g840+69gKAul&Gb1YOVa0t*?NFYw%z< zz+87fE+sBLB_C*OdQ0Gm8ImT9A)cf>7B~jIQZUHz?S1b)J6tokVi+R|k=)5+zG(N> z9EidV-A#bj%NIS=FKw;pUKp7Q?Yjq_x~aoIObqvoK*G}XjOh_<(g;0Xq*{>6cnIQh z^YVKkr|TanJY*(5|K3v?m;3gIp)>}d0zH_! zo+~QLd{VK&Jx0k@+bOd`?Z+ytC{(>Fc&fj~@o9nH5vi>>Wki z8F$e%_uTQLisbf6a1Ka)1;kK>(n8&8RQ<#5JQRzI%8Kf@_TYfT7#up~mIxSGbHaU& zBa{j?cB?r=>TI6GiOxi7^{s5eOf*QzZsjD*CSsVE5ZRrYqQVWYD z5FHAnTf1DA@_CXam7+_WgRg)#sV;7_r3g$EtUY_I1FJ!TJOH_zB#?ERB!DyIE8KPD zR`lD9?qhp0j`+wduzQ<@p$6;uBQD{j>HJUHkXON)jZW)u2Cx9*k$n zZ4vY?Rx{syD?LZ|s@41MFZh-R=g%8I2>m?cIo|sSd$xIFOf%0Nz4i8^W3kmVSK!L6`Va zL^r0{-z>;7boD@>xsm|MMJNs?dh;5&%YK|a_xpDknX=I76w3d)z?}3<_t3j&V!r?P zTh!RV$%~&9r~h0XYyq5uj`~VJ0*O*9gjj!wEY5oU;BS*d%D|mP6dmf;BleShB^C*y zGibZaB;3!fU(fmB2QLrpg?idzw9^jTOpB(sgC64%yHKEsL1Mg;Qy2tWuU|Xm6*n=5 zZaYR{cuh$T_DcmXVm2p?IP(_Xmj+iZae6s8W>=r(+N%+jEvzN$YFXNSlc7b>Ap&HO zzqWY;+>zaM*ZE;H6>8PbGc`fGjQ5hU{;FHtM@N?w=wud474F{B{2pWjV%*T%DQFuf zQv*nbp^p)HT)RXF4yI37U_(_j)wBHaDh5LV9#Gb_ArTrOL-Py9Ho1jx1*?&AoGR9p(NtrYjxt>Cs9?w zEb5Scu-cLN+#j~JA%DRHk>lHF%At=*a=+m-4}m_Qv2a^cu4N0%=dBex!)P_7zp8>c z5MwA^T;4n5Nr&z;5<3G-diZbCh2PI|0ej|&eV8C&p%;J7V=-$rIe+H7efVw?e){H* zA4U4tr&OHR9k4t8Ql<%DjnSDnI{vX3?>NN1?90#VZX_l^5~cFt2UNz~lE;5PIa(eG z0%%HBUO!XqE{%(XrR+%GynYz^LHFN26Gzphg3PglX}9_v#iOZF$h3%(mD!Rpuk}MPv^*TO2wiH=eEqyUl3;?Ua5*YK@X>FB+}_f{-Bq!}kJkjiB#* zBx%MG>Lh8$qQk{buuho>xMm@#_o@oUE_|urPioR_Rp3XCzl}o=Cv#YZO)r-HU_*vut8kU@>XsKbAz=2 zO{QGUymvqcpqkiwDNQp>G3fW|Vc2mfNUk%%fDuKg%PvRGVSpb)miYn3AB%nc$$8W0 z+aIRLJ#|6hsB{Tubf?K#o+Zsuio`o-xmt-U-7xYvd(T`JK-c?Tk#$WF@!la`QqCRp zV3C``3Tbr7Byynk(kSPGFykwrEjy*4xbK6zd7BrmY8h0ySqwW9M;`{}Hi-J5+D+cz zYB9^wY_oE_Een97Z0h(|ww+tQWqh+?XWkfo<*_Vm8;xV z^k&X{kmjogM9u65^HSF{aUj98FTzU!DDejB2k3D9(6hb5zzy1@b2}5F_pc_AcY~I+ z6B-bl2@bGGJD3JmrqOgZ9sxmIs`W3QY1XKbIe?~dn-_sTl74mGP$TJ)E?4It=McVp z0=i_Bg=?1HbsB)@rS)r$AZY(7$hjmeEpkita7hexmaEs3lhN1W&B_UGTDNh(+;f4+ zyKpPXGhCnTzA=WC^jxFVw_Udn0a{F{q`@yr)*S`U7eCNWDVEjmlrn|h9fn4!(r7BT zOd!rF6SzaX2ELjl^UsO|a5HmbxD=AX<+z?xxxnGe$SKqJOuU(9@TnJv)7E^r@sHqcn3H$EjN z|NF#cz?YZ(iXuwvi0e(;iePV_Ud*UA(y)27%H0f=wSnx+FK|$DdHd(91!X^dniY`Z zxnIlcdDJ4EH7s*@PQ>Z(JB;Xy>c|QH;9!2m8|{HQGvAq^N5m6# zv1j0RXW~eFC!qEH+oscNzcB`uM<&Ec9h#b5xLWsG!8!A>ppnO0@W}_D3j%!xRw_OL zDSDZW&&@CM(UE5e&L#eK)D-Al0rlImFN`!{gayPISTYk7l&q4bL4-O-Yrw!I@_6Z? zgUNEwqx=Y1kaq0}FEt?2$*r_g`rxxS32mW-1Gi9K*JWKaC1@=Eo$z7~+@b=*Ox3WP z%)!cRR7r<8*1lI`qzm=X17+dR^(Yi}F2AP=TA|5P?^~UH$0W z4=qCdzng#+V_#GlOLA;?-2hTO3@z&i1TOH}O&XY*_TyW8vzj9g4*c-7!n$k5Q^q#? zLDDc1X_36;sKirw2h=f2pzzl6g5H_-gD1c$fc=5rkj)5x)f!m2O&uq)LJcnT`uRrO zKsx7d6L=RGekG0SK_E*yAR8OmHuWTJJ2##^G9K+zVI&PzgN#YtKygJq9#0xqHwsJZ&eH>3Tkv{EkHW=`IbOFV+s$7acg-l0 z8Rr;?H#@JJU_Ui3q$g4OlIqpmMsxl=faDW-pW(#(# zX7$p{VpEOmqOU_|G?gCpgDI0Px~D$w9?@gaT<{kjHh}U11SUf;nnV8$@CKWCb0@Sc z{QQ;1)_@;=qJ@RcqlnQ?6N0N)phEcWAnPSvTkMYm)VES|!aeetgqE?&XT| zTf4jj{cZ_nCFY)oWRKustV=LTvxlOQuE98i`!TJOR*sfJiXz`%)fssDE-VH)Yt(mc@-K*jCDW7I$VB2$ z;i-G}$qAh0iSV3#pyQ87yMOD-6V;UbxsqG~2F8anWADExA5{ELpI>I+-#-6Vo4dhk z!~18qRGRdR^@O(K5QL^TSa2DL(StOf-YaKCD)Xl;6J=d4kR}|JPIBy{cH|hJYJuxu zcbDE(c`TA~yF{uMqR1@%?=b<`X9)qIJB0TtTl42?`zXmLUnySGU#$J&P5KKl1F(-> z`Pd;arAAVAS(ii%11YHOP_}hIF{aAt`uCYdjJ!Tn$1eCyl4AYOiAjqr)Ra|tM?yhQ ziUU_(M8??1S2DQ$5cO^b49uMkkB=HfFt$+zE0bFHSHLBL_8&}sect=s1W-<1zcCjO zGW`)|kMy#*H{u0M%5R}hx(zRFBWMCg^!okycJn@QYV0d!4r#g0tT-9FKygG-Ptyd` z-0&Poj>0*zn1B*3V-I2+#Y_2jf2qg!TQ|bKx1M#nw)9WyNzlK~WdvC-H)+rS{M41c z(zmOF|DvExnh_HGaB0zY=~#fvb(uj#8pkWLew$ zH3UQBIoUmKhu?KSkN7@yaA}B0B>dgHhJXG`K2aY79=H6hPP+Mh3a>UckO@fvHVI?o zz6tQ(i~x4`RAau?uf)r?F=V7kd)4#g@!=dl)Ft}aju!Ykos*I~`i2Tw)k_jnsx95t zul_AL0qA5-FO9!$jnh@Ei?6quo-o;w(!)sC~q`n3SX=X2R8pE}qd?w^#>-czypguS+JUfX?fG zGibr-mvcsY&Uy zrFzN_|M<80=D(%Gex-;B-ub_}`_8Z?x2{br=uuQW^drqekuIVj9pQ-5kt!viAf131 z2)zjwK#HgosnUydNPrMPs?v)}NlF zuf6wL_qy-3hazqO>Gy`c7GeGgWC3Tjt2;#4zKLCgk|tZI3Ej2t2%_od zU!aFmr&d2EN%nFMBSuac0@BfC-`1j%i~>%kY-nuy-p)Lc2>0UlL*#%Bp|K`hOqIZK zk|6n@9@^ptYG}^@y_oSUWZ2B>5&PkCsG`wW%8nhGf#T@W$S~j=hTw+|0}9C7x<-$ytcGlhDaZv8?<_7jx*w6pZigdNO3&Vs4ZKYuh0 zA`*iQHWYlSk<(zAqv1QJlu^i%z|z=CH&eRuVASkuXEz$2jsX#UM^ra?npx(Ek9x_v zu3N4a2(M^@5O$6hEr%n<>D!b%M~MQ#99L7kQzjMW+`u8g)3XA=G>{A~nEymoFd%Yn zC$r=`BnplmMs#a|SHA+U9-jLM%Vo$>r?$sjJmwM)&Sz#IFCiSMooeuk{gug&m&EG# zu|s16R^RmRXIY8czE_{J1D1e8G3+4hW7N8KzKcLmc$C?nR0_A#!G07Cj%raxZ<%C(#xzs{ z@a!{;f%iVpgXe-iC780Q4nLm$0?~0#^3a)IzG0HdheHB`K^|LsQqQ?kVHM%%p-wQm z^aYv$CC4UAz-(34-DQpvTAt%f-Ibl+gW=&&bg1MyM>wbGB$b~bX<0$OLn?wg5=3@@ zGQ(TXK}UR}VF#D}R8%j5#9A*m@E%0`%~fn7Q^!2i&s^2+%7aQLoHcxlZP+x`EB&5g zLH8ihsuIHP5*egd_`wM-`?KyM37-jSaj-Fak5JA@4Dj?9yF^sKcX$$bPctS7N<+35 ztUzzT63H$y#5HnYNe1di)_KWS7XSwoB*Af#pBvmAHOi*`08Zu6pVxFviU_tdg~$=U zqV-|uStUW`>dHF}`%Eb>;Md(aMk6g6{+e*B(37K~N|d4~UQc zR#6pz$#~w&Nn%nZV5NpyRnA=imgasLUS87$n;NHR^?S6uCRi|QAbZ z4{(Klgr9G>_&$6PTWI{`m#`_?@@X{5*kr{(0g^pJ#&5Pr9m-FT#1YZ#0HTn9c-VPF zYk2>Yi>eU{pMZgYLQW!<1*RnfUz7!$SnX9_zmkG;4e~*Deobt$KoM^PQ0G^#7yOP~ zR|ROH=-!R^QRJ6wI}*bj9q1@i;aQ!6vC-YW)NEP$OK_+PUeGEF00l-KDj2YKubFP{D8(kh-mxG=5HrKxU4V8u!VI^vHJu+vPfVl@WYD+*AEEY za7ZhPJzio-g6UMQ{5+rU_%zOkGI5{HLD*ISXr`G=)n4WB3ka}Qi2_>u(E>kLT)+#| zOV)Hvey)lXq};*hY`qgOGNZUH$%z5rtu)CEedI_=Qb|{?UG#-?Id)QkDf33)TnaEi zR{Nj0uLTJx^QX~nle=x=8H7=upQQ?|k@E z0o90rzKE*^!+GxNAn_8}&}ExPSs`2y2vjm8<1ad3sUePMO)~&Q0N~PSU>Wif-pW%a zYwQDMvc5^G1VjD%Yz{(WG_7MK$l5J3%!~YH+&(P?^R?Umulbrl+V|pV@w&WUwIC-B z+Jb3%3<293_7fmfAnA;TXO-O1$(mcZ$pmGzkNh+RPFbtqhnIq$C`&Koe9xhOEr!p2 zSB>Oms=B(wPHd}rmQ5-EniiN}dh8t)O2a>IRbPkT3)>CopdWywUmdldtq4)T``*a| zXCJQ*N?ounpvqIezhfaH3mgi$ltUp?**9=W($7R>{c21AG}bwu>VVh}KeY4K*e6eT z=Lev#3d8mNhM5XQ61~(30mR)0=?as~ZSce%Z^ZU{oeZEUW(29L0hfE@S?xJnqTn<8 zJOP+vj7X6sXi)Su^SprgN(++Q@TWq1cR|cG|L>D2cP_Nr&Ni~6odqpoL;%%`2Fs-j z1fsR3>&ywNuaSQiBwVtou}!(?l(OsH%Hoi-y4_04hqTQMZ5Qo>7As{1{Z!ui%uTus z0$Q7|ktldpG$jJ{nTi3S*r;TmrBB(D4iIiQoMavATnym+R$)Kx$2{!PFGgN5N=S2S zKHxBQqG)Zna!C8dIL`S7Z7X^G2L1e?#Hyi*MY^|0^hxkp=_QW^xzj5OD?HhIA393x@0?Ne{SYcM6JMAJ;&&Jr>>1T~QKN=klP%)yEAI zKg7$CE*qbcfEAqsq9vQJ(PgAN2dvT+*Y81jLenREEl(MD{>9#fSIfgY3d0QsR#xNH z-LSWvbu$as=Ho~+<(4*_Pp*JgX?!$*7lWJ!$z&i@CrBP?PMS)-fGqV}J&L2U~C@->J(?e}U3`1V@wZrYoL!HSzIIg9jw*NLm~y9LfhND&E6 zlt9h&0Tq>isi&)6fH4_nMb{79*#noaZUukSAINi4XA6_?e!gOmX)ScW!BxK8PD>y2~v5(6aeEITCs7#9?_emDV-ouxL-H-n@$3xn&ir$_Nb$As|@t@PF!PIO<3HR-_s%8{t zGEhy3Ujvl|>=O^l{u-#DypcUmQ+VAc-=Ofks5#p;05?!ruM1j`ir@Vz)5n_Vc^ip> zbx#TG169{(?hb1g{hT+6on|hG-mW*2&7qJ{tfhPiE<(=ta$f-C5kQ<_Oxne3hK+N` zI1w6^Vs2kG2nv2w)(h0>{{%yejQJn8x6?*#yp~=T1b#a}(B_}7S4?n-eH!oAjnX19 z>8sGP{ozykL|tysteJg70;Tzyh>s%*9aFJ`-k84mH(-v(zyB!J0TBa_L<5utWXGGB zPFw>AQi~J6dD;68qoPUz<(%IP-Edwp)k}Yn1IGJLVPr&qTSF9JVs{3s*KIv`j6V-G z>0|ljwft`g0MC2mDHR+t%bMW}@3&I=)~rO`2Q5Hq4zm{h<|1?oN*<}-vZ_2Tg_FD# zL&b(}IlYBNdyA}|8|PGh6fE+a`FP4$0UqC|1h{nIRcDK?N(~E8sK>eW?V{qPt&d9P z3b&d3NxT4YIzxr39K=9E!ljv8_j5QJ13z(R6zs{ql6c-rrvc3j{JZ4~at@z>q8wGh zKYll!ErG&El+^3)2d;^DI`yFsf0UVWfR!o$wnsu+BO^PRu>g1WMlwBQ|G`)Fh5GlQM?0HqA4e6EtJeL)d~MFX8KK;}*ek6QFW(h6WxW$?S{ z)Y7go;>u#XL{WbgG5h&r!NC{qEHY<~Lylwcb7~`Pe=HH4BT~*>cjf!*#0fs2y`0hL zj{*GU)!~DO0AU4mBj`DU^wv$x36^^O`g6^2_8l?FvE1dyCmmfLs)*e^3xr4Dp_toe zJmtX|_0-EJ|HNS`tl@y-Oo}|lHb(^j??asaPir$mz}kO_V*cI>KiLpoUuUM}TIURG z5z=RY;hzrOkhh5kwHIDDq<=v5>y(!>T}*aJqMUeaC-z%PelS+b9X_}rCb1|eB&E|0 zXxElLAX|OHZ-3yT66g7+x_Ms8e;r@3p><~W7t@_%$vlZIeeZqm4V?X-hO+v|?bx{0 zxAh-5A3m!8%6;{EutqLU5=;_~YBC>gy|BhmLm3?a7|xkp2lO}qi@njtIuaW1Li%FR zY3s+QoU1gz0<(c#8%Fg@`R%4ZY9&5M8)wRFg*ckjXQ1Q5#m!)iQ=+RQUc$UP(nDn3 zIp{qkYN7$?nPYK@;g{E}a0&%E!?nfMIGn!fpFgY8HEe~#em+uRO1RXF>c@Z>MG&~X zgj2@1pR69COA z6hyGh@w`4aohdEgs4WCtsM}P-bOGYvLF-(Cq)%K!`YoWrMsXGcWc`Q~wHps83%>|^ zv9H3a*J&$z_LKY1P>>K}rhE#G7YG;2G*;hF#7lIc`X#z5KaIA!h~vMfwv#~4hiV6n zgKWklAr^x2ojr?;A8rHB<$OER8}t$q4T67i{of8zb`8K9MTVvRnIxaT{CEN^)BS!b zC4aB)M$QBM-H)5Bc*&mVy(u-3Ufx#w7oyY`oYl5&wYDg%GN$d(0W8w#Ke+L4XKG)9 z6^f)9+G(+YJcx)@*aUM5PBZtvc~l(EF$hlyH>i80lxqh$9IWjIfUA z{~6+_u>It`*wV)E!4S(CT0v?wz!?RTEZLBBw*@Kqmhtu)0}vg+B>;{#h8pe+crCKx z0$I`BzGoaiUcO=1CLn{9zSgxI%x_b4E!8*+yZ^t)F4D_8Z-|m}S=4(sP(@UQ1}Q|{ zYtM)xi!WETa3tJ{^e3xom69F+Wd4N(B>JdysXy+7o@4d&7OLDwJMFX4IYm~?U({a9 z#(Rx$QsWY1U1~TJ<8np_SURzkIZJq>4ycGS0WlRX86yfB6A=6mugzhoocjXXZdllV zhA`Qe{2x7~tQd-cnTl8RQ^Jq!4&dsJ&q7X31}M`DA{W@f`Ou6?r|1IJAA$*sFjwnH z^<1XBx`JE0B2`q5j??`7l%Q}}Ng4xpBlL-E&y_LbCJuhm%}mMA;*ke*!7rW1LBWTG z@VeR&GrBDLi4QL>Bw>+wGpI-pRE=j@UPJTx=*FSg1c+!O=5Cr}tDd`==%w@(g0B%+ zz^x%e0XrDKoyfEo<-btBGJrb`OE432Z-q)013D3cj08rr*`bb;SL`z_+`4cW-O0SAkqH-Ty!$ zlpNWvU_^}p#2-P-+56<&vI_A+FqP0%@cWw%f|ECUdVy{cIc^h4@ySe8;*nyuV(>E)u zEUj3&CxUeRtNGX$sLRDqpc9ZLx$wJ&Ea~zcIWs5`ANe<+6v7j%LWR;$VC_*iJte77 z&z&BpDi+v{j5w>xqp19v<>&B2^VGwdruN)QM}%XsZ!=0ujF|`U`O>-w@x@$~QRrX^ze!@a2vp1aA&d6@P{(6+X7%qsdoRzOrf3_tbw1&ZrnZ5M9~eo&<*%)L>>_^ z9;gQ|jR4r(@`3amZYQyL6I9pGgYx>ab#?&1OAMm!r+Q4p%~!CWfV%_erDY^d=0e^< zaGr;!Ub81C@j*&^FwIPWDlk)ZQJZ~xhusnf;=P>Te*kqGE<$;+Q`)Ic@rf5N?Y@cQ zl9>eQ1cnbx)K7VEN*TkA?tC}qN6T;SN=W1*2&u9Y(I(+n!2TgX-IG6a;7-41yaSA*$l$kOBRAY zxJ!xeh5vEdNkA`sn(AB8$mh*}Dipb4RuSP^+WB7Ch>p)^Dt#3L^ieeXZy zC`BlbJB&>XPZ0dee&5mXxvuPnzmC)31+;ijf}#T@ph{P{-!%5DDJ*}cR?1nHurM#4 z(Bhc;cOiXVKB^6MpmKi>EEw<={h}439EDI)&9@Y!e9!4l(}BrW+P}tOjyDprryCO3 z;YK^hTu>D*dxr1EDH1>z0YQW^&RAXsy)__DNtAaeX8KS@3KqrSk^}+Js`PY!B3UUY zlBTZscc=WViOUw?&=^J9v$om?N8PtbFP}SS$Wb^viTjVq*w)%sA_`^XB8eV_bj*|$ z^p_CCfI20G+qj!R;@^-^1qCyJQfX8&2z6N)psre-GkH06O4IFcIw4Ue{su&8{`$rv zqYD#_FrnmO$8~|OdPgvE4hAh+nwx+*vp8U>%L564mJ2` z1W3Uc2?~#%VXb{P?7{d_InK~*{F2S0v&gy;WqaudX$@$XKmsk>;={AYnQA5ed@KlT zVea@1hY>Er$Q8p&qZncvfSUw#y$xTen>yybQvXW(hIL`y>Rb7%=OEh|Dgb>mo)!O< zC3hXDndWF&4~6{|&ID~JPm%i1S?0oBzkGPnZ6Qlav?`;xBW}PQfxZ3`#G^K~Ge%&Q zDN;wIVd?X&Mhy$@+q?@J;pqRCjC>gz=+_EM>&O3ahkEtUE8GcNk z>Exd|G~=&s2Y38iQZzx}g{w$x0kU#UL0n>;1GI^wX7St@jcE~49 zXa@V>0E{kx)?dht3ev-~V6iD`Ow)n=u2!fyd_c6nj@j%=Esv2o62Ojgj<=!^X=R;N zaD#kLZuCXc90@R+C(ls18h!Gh9EZsTVn*ZEZb{V~_to3M5#uH@%9x9)bneEgK)`$C zc$>n7f0f1r9$ePbx`w?(m@06KE7%*X39}je8&A)HItd_oXtefq9H>c|T}6U=?wg;a zuwvN$XnKmo+W?>el!kF7?3|A&N;mF&JgK1MxWBBUA7k$+stWhb(a-E{fE)w@fWeu8 zAi9`4MUAxPtRbZjgaWo7Z`ye3Tyn|f8Bsu~WB>Qup^yi*_jsDAdP|)^*4TY?{zp3# z0ckGRWRf=OA22(jwE6qb_NP*)!RsBr5RuaaW01ZR zY4$&3xm5%^ct`=W-4Gv%`Se564LTXxEGd2OAtLmutU0p=jl@dx}x@Y#TsF zs2v6(CC-&YpU0??ypp1$jK6aKNHh-VdQ`AJ`K`+i)6r)Cpw;~|WJkDe!IOfX0*x9T z=~@c1Z}z!rQFV0$GrG^_zZ;<=5f-a_fJgzngCFs0TS864#bV9Ua{jq}4yc&hyK)W(=i* z;X(uDBvkMXY9 zX&>I(ed373Nd~3vPwb(XW6D-~oEy{ZKG!wU2euA^Nhkh(y#XjXfVuM6K`R(f4jHYNv(ST&<$85ce>6#JMux|G9dI~#3W4ULHQ1Q(rBoRF%SStdZ!oY|F@_Py%^qHnLk z`LPC8geh10bWf_eHqx*bFS+0RVJob5`3l{lrozYa zh_Oippfd%I$I`xUay?x<02eLwQb+T*vu#^V-zT*{@|T{09I(;7BwIf2iI_i8aLBvS z;WS>Wiif)PyNUA#%LyZnCvQK$BMZ1&>AnARZ$r|$O0pG>5HqV9AW+;5`Ew7~dMO?x zOU7Zb25plc*3Pn&?8}`0Uo3f`^0*DcK;I&L*}B{2Kk&Y8&j29h9qxR$Iq^(^@R{6x zLpMT-26QNI$YtFii$FG>elygw25SJU-&~8;JVVL3;ER9HEEAwKW`cS*3p0hK$cO;9 zc(k&ULG5JF6*pCWtlEE-O1X8e&m*Q$vTfxSv?4Jv>J&AP12j5@{{Lf~{jv_Rt@@}J=lFBLD-Z3+ zVx^awya|(7`YrEy`_x}Jya)1s=lDVWLS5#Un)4V5|>fo z#2t8!ERNZ(hK88tZfQr}8No)S_c%MKyvu%-7wUgBKW{?iJt)u39i#3PG&KJgZ)4jp zvP11r-(x_j8=$6^0dM2qx;GCB*2@?bX%*HLg1*mM0sM-hk}L#w!j#Jo72HANpxXioQ?R{ev^M8!q%!fx@7ouE(UI+b++@XbGc_qq$mg~qX*J|>InPP2!~HqY?xVXHQY z%z;VB2|}{Q1gF!FfzQ9HdoA~{Qkyx~%U!(!eX$#eobL+t_T#&#_MKHZdizZ_aa?bp z@Ag=pR8_JaUjuy>ThPW&#A)9K_4=&oGQkSmv}V%C5P@5EyaYdbld!|_Ug2T!k(>0d z@u0wub8s60L^OjO<1c&OhJ#Bz!f{LN7^Xt^BJ^LJw*rVA1`>!GM9>@={Rn1~;oUQ> z4OO8bhGA?s$xbL_a1Q!cDs64xc79gFOPAf`IYuEVu@T|K5&nR*YuR|bU$^PNP}w^S zT4l*3b3mZSR|oz=U9$b@ogTH0Sm}X{uSJ2bL^bt~c`Xg?%b)<(j2BbjURHz2s;Bv# zreoddrH)UIV;j2Xr5G)8vseAOm%>(q+-3JjBt)i#-R{iGiKBX-jC-#eCZZ>*<5vV{ z<*ZC}Qs^^F5`)&Em?_#SFg44?y*r8D zE2@tchqlWvNi}`>BE9>WZQDqIEGe>Qxk#w|vYwhX(d}=(dX2oQdxxPRp!Cv#XPf6P z&Tne@6=CqKRwW(;S5mC&$jZHs3TbM+hWy()ourox(}=wplHA5)QS=37TkbOM;#^_f zl^^=8Pecm3lQIdlUMUz~*)_gdtXOQ|`#IOR)_$;hZ5>11mVZc#~tJGI`4+Sd5Kl zMT)0dHn+cwpbAG){WCi^f1*lM#wPA8`j28~p7|<9HWVQ+zP2;6v)KrDoq?Z{y|5Lh z*Z~A#|X6lD`9V5~Fjvoe(|sE2n1bvVfM?L0dg}G}Y;$;AWdUjE@E;>+`G*_!E5PHVNNQuJ-x2 zye;P*%Ie+Q%nmzhKhuV7TrJO*35xnthc$`o<18`+;@}PEoF}<%-gJ$|Zpy|#ob|t`2CT$eViwKS&@KJ3W#E&=_K688d|f<0b|h)@ zdyA`I%52{7_%IiHdRt21Xv59b$<`mIW5+Zq$GI}#7L1!7+(}K>vE4sP{JTJn{1q8w z6?gS4OBh41{9-Q=7!7iFaC%l1mfWx@J-d!lY~~~)#!|P4=PZ_5kSeDMh3TZ_WmO~m+_J(+9UEk)zIHOba@2LkMN zcjvl2i#H1K(vn}RR!w+P{T0Kv>!w$l5@1P-H60mAC3>l+=0?8&YOT%bBZ7q)oO zfQdi;8Zq2${1)*bIxs43cg$~^ zw9~J}HT}yC$a}~9W77t&!X0iqronU@!Wr5A( zbN&P4gtwkWuxk9tPL1&7&9_5g<0w+u+N*+1pAn3e!o?QOS&ihEsaw|S#_cD4t-jQ? z|H}BfG(;D}@55~|u!AG&EV^B0@hhU#2b^3l;w~N|EidiBJ!b28-S*T;Rdy5K6<)bK z^A(E@EZOYg73##Wvxp4iZudCpVJ9#y*Jh6h_$4_t@M`-6!Y~hzQ{q|r@ZP{~Yr%Vp zYJMq%ZAF43`%lmH>XekdwXK>L72KX)yWpkXw{Kz%G+kS^5UNXT;y&iS_nH{wouasx zE#nd*(X^X}>9S zBaBc0XevA8?Qu+y!hd7 zQN>*7)z!53UM{aLvvau*==052yEd&v`LOZ?I8@!SL9}rfOiO*sa#J07*Sw5=gSZjOb@Q4OY9q=s^{($gYt+QDN`9T#>NGKWtnYG} z9fJ??tdP1>?OQ(XM$Hj?mP^V8Qb2vPvbZ~V$lMCcI%ZW^HY+0OA_Lbhb$-SWICbCW zB#$C1r+Yt1bMdn+=3)CO=aA3MF1g#vQm9O)GV8bs*Mye?#k+A<^4+z^Eo;FkntEd) zuA24<$qB==42pueVJEFjwI693gNrDiGBnUC1UdvbFVPcAi$m#?HbQKtCTwQ8t$gR| zzSfnxCit*%2EG`M`=L5fXN3HqDLgkvnk-F8-K%w+ei~P0Zt5HQi9>67tZi@}+SDZO z^hWA^IdTr}8;OrO?{E#4+a4h1_rO<;pM~C|YA1Hc0zWT3UbAJvKYs1VXjzxwY8;EUREGSmClTRRwVB4!?WcU91dscP! zKKvbOlqC4wsA{cN?TpKK&G17SA<`1phz6eAF0fX;^oS&H=f1$kB-Pat+O~}4sNF$S z1#F?)Kadyo?b{t+SFx+s1geD9-Mc@t)IrxY<@;?k^(H(jQoP45ryI+`kemPBSfy1u zNK4Aqs)yUlX&|xM`rX)~QQnfIY_a4rA^S`F1I(qi=y=URi~bst?`#D*xxNM&O;^S^QXIt|1}i@~>pFDg19@j~6Gya^QE(xQbkI!` zhK(O=q*PBb6f^ajIVZ$V=rLwdoIxy}2`xK&h=|@JCF|4>ut@e9zw`5T=R`l3*KS?r zlVsvkFt@C9ahhGCTgFT8MatVwInDoix3R^@p2MU__uBLMyz*?cQ_nFOnZ0@EBu{y5 z0m**5pXER^gC|j{=@p$QIW)93 z-Uh2$?X-yoib{OR|LWg=ZDi8!nZPBiUu>^XoxhMb&U|sHpy>p+M(SS|Sq`IqWb|@O zC--XhEQEeK*_2Uv>ZK3C)gdKiAu4m@B;PP>$h?@4_z7O5!FS!GodvnYwy}4GdCGb( z+U$LUE1hs+8lpzFjkqm6etaFqWGLaUxZD`J0`vEI^YaMpEvX4l1~OmOLt za;N{%m7`9KuUZ104o_TgdvZ`pL~0e)-WHV<;mtL!+um)-a;%9$?F zZ$s(1He5e=W4jmchy<#TTYE%VCbS5L#g3tuqfE*O?jB>8_C}6-+R}Prewe{`6bEK; z3Q9QF?O4pT@8VJV5<G80sM)uNA_SlY4Mj`Oe%YdgeRMp zP=zILiVCcuIUs*PS}I*v)-vYJ4lX5_e}hAsbyga_d5uYIQm&`QtNrx$7;=^E(+Z+W z->h^nt&@YEaW`;tOTx=yB)Dyj$K4|B3*yK&dWg8zPTsz4ku+&7O6U}w+<9-FjNp*? zvgdcx@BT$9D@GE;`Z2+p4{FV6+3`PuVpSL2(XJ+e$CK!#gceh#`|@R*9&*tx3$y^^6_Uv{*3STbp2sPx0X`0rKghShQ@ z%d_#Gz+UtS__#(64oNM)_Lj^L6eUhkrT~5&Emf2NBo9ab4UM3p75_)CuD{e+G@N5i z1v-dYfVuS;(E!j82Co|^KeOWLoY|&6%m1SF}5(w zitSNmMx@1_H{?^?$a8ZnVFJn?B|8WUZj?5IiUS*FnQ2`t|Ay@DkWD{HH{xYBjf3Y_ z!q*QLts6Oz4r+-hrq?BE)ZJ5wFhl|}kztOv=ct+c-73k~O!>&|l~966iqoU`^RSWY z=f+--$VS63HyUnvE%LsR;w9Swm~V~`0<9l##m%u2bOc=Sa<3B`GaPTqV)d==wbA)p zmaf71npbrgzrUZ0wNK5Ng$QcZ1etPxjCiOsNAn+*f?(E2u94lfj-v%SYCwHWui^(j zf}R4S&)Sft#quOwqinV0vf+wL=TE4iHu4;kZ`?e0t9|9FlZl?lE9=gyLOLBn7dKp9 z+LORd>BiELVcBk*^LM`i_H&RZ1iS~WLIT5t^bAL=x<03Dg?+NBY{Z*P(h0_IpP)N7 zE$Mj4m(kO@cJpIfgg57u`4Z+;#m&I)cp&TkTsNAYQE}E9Xmi0$t_fr8_d#*zc@T5R zkjNWGHBL`YDo@$5%1CKkDH+pTk~6giH6Uqd^gy{(K$M<ASsTWY{Iz@Yq0{F zwb+!lL=&LqX_Wqbj~-|n0PS@AI;mMtDTqFeQUNuA@VnpO?=kyShyNe1N~8?H|63n; berNAu0Oq~j-cWO7Z|1MU(`{=&`V*R@n literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img14.png b/Term Deposit Prediction/Images/img14.png new file mode 100644 index 0000000000000000000000000000000000000000..ecf9053409ad253b58a5654fc24ae0eb9090c59d GIT binary patch literal 31349 zcmeFZXH-*N&;|;kB8Va=0!pt^q$6DrP32nepIC@bm`5S&*d zAUH>J=_2?`GUXE*@Pp7(S4p0rteld32_(D$`mn;{7_H<2 zx`@tynsh*F%9EToh#)akHAyl&M|F+6)Bqc_W=2K&gxV_aC*!;DyHp^eQMUWD zp6jrsj8(^4li=9_2g!wg^?cN{)L!P{v}a~PVPj*X1`rE;WmBaE{Jk>11pRvI0-$FI;<=`6B|L!sx}-G@0gX!&%@ZD&C$@Sp!9v)E)BOJ)|c!! zNA&Y~Yb^TiIz=}!7w(BOi{uj~pN~kKM=#6D-WAIbd-x^#SsJnHI>mLnsc8&$VL+Cn zrW;1=`GrQ}7=f`(H<4VW*&lx+Y+G$|rc`W-G&yuNNmMB|*+!~GBjwG!fo_v#?S`MF zVR^G@za-z5ZJU;TNnDyU$2&7hg!>A2!;i}jxu@T7~Gz&okqdAa`PIi;|OcK**5(*xA{fl$bzvYPn93^EB0!rG&X>@n>a; zn#5#D%u4%z%|#m`4;JY4d`>DAYF*7a)%ZO%CnX;BTOPf4@zV76vui48Ynl^DnW~Z6 z-nyL09&9OW1EWt&yhd){$!J{_^$vxV^g-H;KLzc^i=RtBxwj+{-pGApiN9~{&m zefTlB=OE1pOEDy4qP zDnXh{vl9pD_sT6;9O?pMza1aXV1CP{*=9w>!>KJZe*2AD3XYft>t*im+@6ouO!tCK zR|Pk@Xq69$*&TYuqCR@Y2=XIyPxu!6XFiOtB!&9b=6nmjnxR(e)BU^}J@sw8Ji&bo zJ9k46udT(~FWFURTwv+9JRmtiPeK$;dxPFs<)_-af7SEpPgZgFRG;yQWO}zDoxCp1%B(ku|ZuNh7$ma!cp7&HY9ThDLLs9;P)ilSYr0X|Hd#v}x7Kp5P-V*c93@ne-;juV9Zm9^!ldeJ^lxp4A zDocILAhmu^Vu6TI<;bpO+SHxFd86JBanN0dn&gb82=NbU{49Gy25)h0DQT77+R!+* z=-*j3T=71lsY+T>z8}^Z6F*fWE4(sON#9Vqww7xG`E0c1@(%AB3Fru4vJ)+ZWTs4v z-bfpAK=!p+@$Z=j!P0{hj`dUQc~c%P&}TMQ4XQte?Ywbb<>HNoPta%ntP1F)gh?s1 ztdp74J0%uQvaI`LaL$@e3od?Vq>q~kF~3{aD=~KUB5X-%1j-lh`OU5c(_PYWDM6~;^WF@GSwIIC5C?`u9mlogIjnC%16h5p4a;?IRM;3VF zIZtoi@Q99gv}({877mDM(r6tUJ2;)Q++qo1J)#?qN#mzhzY?xkhfdx0mo=E@Gw0KC zt0_>&J4Lw<=q+oMB3wm77+HTsmupO83kM~xMcq%%v6;Rhap+u!QdlWH)zawj4X%>@ zJ%_;#KkrC%q}EI!;fwFOytf3Ga_+qWP02FNE2vOEsSipB-nARq(U0q5OhIo?Q6X^N zJB8k#0ygTpIXJpgZM+P$Zz0ERm?%N|j3zuAXTY0@7FHwbiJC@cP zar)eE_b>%jmxZugk+kHXddWG_a`!~hwAHZf1*|3#Et|^j>2BwjLOVC8ftyXE_{+$@DDl#ODnQp6ZKYk1{YV-j)jya5tZ z)8Z}kkPL6Rq*qwgE`F`5>rLQt7)S{)lD*5nI>qy$FxBbj%~K3V530b5L#%X`dBt5) z`ZI2OZuCy*>m!^`osWd>1K9H@QbFT#%v7cN+WPHUv~$t#S`XTNnIy%nAI)50eMuhf zRqKI?dC&C@<#bz0PLd8XMmI{VrlUiX3i4re@ngDm4=)JD#B-%&ILq3?_c!5^0^6Ha zb*P(%%v%x-cEh*S2^%sk7L;WXka6;P6sq-gbH$I; zvWYRfL@dn?Z1r2_)or?3)7n*i!nn|=pz>qn()ED46TO&iPvt`xiFWjT1!(I>Rg?0B zycSwQJa!?tz&7xT-NK-A39TQ+`s=4tgUydOo0B6PXsi#t&2h-CNZ1vpTW`HTN-rgJ z>X{$mmS-PD_|PfFsSvaK|8BHga*t!R3maYe!9w^uE%B7ErA5`tDM?X2JyET;WHSHN z`J7pwOjxRrQGcq)qg=nHqm#FtIS*C`9DP??J(68!9FDKDo|E+3p!b1sO6omXPkXr} zr{&|{auR(KaavdWkav{2@)f=z36`GEbI7qt__x+Fe)%*kRP&X}uIv1{twz4mIHT=n;h}W0rD74vug>Wt>WA(KLNYB$1Z~l@Lv+c`d$9u$f=;(~ovV-SS z)*8$vcfAKztJkk@eo72eYVzVv#@6u;@{y}i>q^M$K7eMDbuIiFrGy=Ru)%&cq3%hp zD^Iv$=F@ZExydUwjk!jwWN~KW3SNG{C~H(4sj9TMkn4I~GyIE5J+6hZpH~ZG=~I5& zXT%nkee3jFMj72miw43>OX2t*{JevZ$I)9NI&XD&Xj zP1>{R*m^1r(rLKEKnR132R8gHArH6O?HLz^jYO}u$ucDlq&vt8bk*{{=j&z&iVEC~ zVSr?n_?vvwCye$;#QnUQBQoDp9l2>lWor*JqImNO?bzJteS$Z^5u4nzW zTgnxGFO(o;+(HZerHQ<4q8{$KGyAK}Xkbw98D+?!$%3A-n|Zm?bp31q%>2NzZfC!l z?e-MAw#M=C348)so5i2P(_gK2vp^QJgR$F+4daYUaEv%wzF@#Hc_0lfO-XZFoz+X; zX>pjNlnAP>`EGnlF1wYW87OtI&A!>C;c1uPKWIv9#B0HyHlRcGLTKmEv(SPw?bO9J zN31WUDnI|F+4#V?dV)=$q3|}eP*4PK4cf?eMa9J!b*b3i#IbVTc*o%6s$A-Qm6Geo zwaB&W2mQ^p`C@vy`W3ceyt;NKO^IK527=w8fx);R6r=_G7+%>?yBAWG&ffl}4}Hqj zj$CU3?dAjh#(4{ZQ_4d2gl(6;80c=5X`UKIrY?Il_pbG6C*u)rSQ*rj``X}}uC^@b zMqh*Wvic5mH$7`+-KrP5WVI4UUvoHsqMT|} z?fA*KLeK0*KoDU|Fcx$e2|*VX;NHwUNbVNVW4TlAYH?RAT}pyg`=fM|bz>kdW@mG= zjo##b+AGAy=N-sKko~2XxXBBixT3}aT+OQ(G4i$Kl#u7q=_{9#w);mA&*ph8?upMG zr(UN#*wdUu_%|G7*Ddt&^QAOw$SSz~nY=f-7RaymGuxkkWlySRMJ_^juWI38ADQk5 z#B$O2(IdUAk%l7kb-tA?4ctKmTgiZ2Q0?Ay%{OVGUP~)xPyW_NnSmbVuXWoB4$OUI z?t0HYyQrF^f%v61JD3+eQf`3hsp7%*a7r=G4V4f4SZcyC)by9S-kozO-PvAMJ$IH@ zWn-6+e>1I6*3N%d|2J|jycH4rKasrs{{sOH{C|}x3n+ex32AdAbRl01cRi=+LjE-N z>__`|*8f*C^#7+e8O79yTuIbJPuu@x53uK6vcGz2`S4Bp#_wOuMEGgq6vSg0ZAYfv zU~|7y|1t`3YnPy8ANwL+w`R@l^faledEY)0$W{#h^h36ijc#bt;*$8;ADIq8bWuEg z>KLCKAMTcAupV!6Uj6J2(*L~L#mQJ3oqaVSIA$TBd9yZwat6=b5D-j8Sfj2PQ`9J> zsCzZMk2#Y>4$5jQbpB*|l+F34;7r-?1KYQlQq0-MnGUb<(z5WdQ0zOXMYE?zUp3V3F&o}(<#m8BR-CN$Ji&fI(zB}T2He8$xSYYKL%j1Ze znuxY~W2a`ztvhFTkT=h(z5RMJZrH&8#Hd@MZw)%haE{~bmhJVI?492ueAQ3Bj^={p z$UxH3d4I*T{sVNt0Uu&lN~!;EF*liwh18$lqQc>MkRbMX1eEe(y$Dqr=wfjwWG zEV{?*@1Bs6zhpPDwqs*CG&RdBDOA?#=Bio8dvAjFUrfdc7oNDfLaf+IFpRuBiMPoA z8<6k38lubn)@>Y2QNGTA>&JETyv8%wL-6)yM*=T`g%WCOmKJq~k7JVOOoYzY)+#sm zjnpDb!XJ4b_HIJCZzN}mi5iG`& ze*~c)+G%~EPE~I3C2>wDRQ1Y#E1?7{`3hB(KPeC_!+_0~$SYB=`@8<{%*F{g!$&NT z!Wx6-hYy9i=R{-A7@*J&`3g3)XmxE*PoWIGLnG#{=s%OC(Lb*SY3HBwm`qY$+@&iw zit$Na{f#0^ z{-`r^64lM>0R7MI7o}dZ`~6fJ3O~9F8(ovIEZ3*5ayr{9amsX^h4@1jilC5}#rk}| z68>qI6&O&gi`qR@qp> z;rQCxZLjoGVD%09-DiK#)&k;wD7bao&gP>|odIHEFA4f@Zx?Ah5~O!JmG$*q({(<7 z7V1_&7@aA`Khjzy^T0u^YMPp4Ww*NrjT^x+{1adX>{<8tmnWMA`5eGo`Qu#K|J&ro zM?khx5tL=DX9M7Qfuim_H9^cA?3+$JWrQkxnx zcb9wkuZ{;PIugzevbZ8Xsdr1jtJUZIVgH<^(Ix1O@KOzu{f#g6ZUes$u-N}m4Gi3h zJM5&8_&UV`93||()kr?9$PJ})a!yX>m|P*NGjsYMUl~Th%O$Wf=do`AR0A9gHsilD zOmG_r;1$Bg?K*ypQC0n))x^C3BKx=GnHVa5YLr3G#aH#n{4;Sddr9{b!O2YZWv~|E zkMA|k^iS|c7<;Z(h;nFegZpmsP6x(vV^r4>&^errA?5EzS;OI;OKf1L2_JyS}m_E^}G!a>1 zZ@``J4!=&EJeOk~HS$8o=S9gL=L$hEZW-rAERjvw4IP=4k zWx*3!8kdRQSgW+XWKR>yvZ^)tR!EyjA%GG^7Zu^7iLH-XWMJ`!2fNiGX%2%{+`eBl z$+-Rp?)(qxvALy5%@K1Yd=)d}n9Wvtyw!s8PQb0lKH5I6PoRXU{XI5vge=Cob!NM& za$j08yv|$L#UYjt2lVz0IT!{v(ex6NGfeRBRR>?5HmiQ+AZTW=`N*I5v z`<0&8Rpazm19_XY^Y>pNj^X;W-vK9@?C&?1+*uA!tFpA*8i?bWU|@Kt+w{D3$5YBq zAtssJZR5jJeM=1veCSAi_a8*azIF}RL!X4@_-Yz+Bq)2_ULG%QX5F%zA1b!n7-iob zFs^&3x7U-JQ-GG=dS_lc9L1+&_nLoGhn^U}CEDW3zuxf$<$Tob-}7gGTtj_N1X;^5 z_9>o)f;#;x!yp6Z{Qv$4?dV2QdN~^Ka_`)|`?Ge6+E-@x6@C-~ti((9MO_e!4Bsz_ zGje*VE>&pi9fEO^1X|*?wpz;IN>rqXBDK-z%E*T|I&W8fS>|2 zJGIc?$>R#Z z{0%nD6gF6xej&)t4iXXj7Yl|S$yb~Ys+EY3- zwJ*DNul-MgxDQp<f-JKz&%B|ivO$zphbbF3{j7Ejs@A-A%bInL8Qb>Ym$q7R*B%yjd=9`_QkT| zaDN@P+&xy~mk)NHiExLwx{a?5_%-WV>gWFTW41gm*=h7$$4mJDFi^?MgK+%=UM4YM zxEaROR9jcxd;q*G{j3~ee{n`!G>}_anl7@Z&CGOLB>i#_9$hox3Jn8#SioMqWdtjZ zcsoAsg_wZbxxs&56Ceytir`D(4QHf8NP=Kt3u>D*LTzp?Nd+ZokQW1-8+SaG?h)K* zOgko|olQ+LJ7+LY0Y)O@1fSEDefKE0vQ*>C4Qljfbr9>}zy0mf(N`Hly4IlO2Kr|) z{w+C}6E0?IiVXu+#@QotaFO6mkAXg$QR;W(D;#0asYJO^zg-cKuf2lB_$6}z_Z+|- zOSO_*G&;TZm$C(BR`*s8jZza4t)rZ=u%5@4xp{C3c4xq~eQ=JKs`F<@xJ;w%OK`XX zf`DS*U`G)``xQ;*btz$=4o+H?#WOHVP&v8(@DtfxAp1>z_QXwXks`bT%d*ei5f>v~ zbrh40{=AJ$NNQqv>?b&xt5#b4y4-Fazl&t_;F){mO01ivo>gvEi#rIxb9ZR0b`6y6 zbSht)nt4C#Qb{(oVu(Suft6RkNZ`%M@@T)8gm z!;^BjO0dmlqL+PSO^AB5q{Qq>&2GFt5^Np~H?Y4|hIfy!a?Zv2H^HXNJMj=;b3p!s z#t!SwtUKvPj9mX+FYU4^Wnp5%RRDWk0i>ic$3M1PQ`>W#FBv0A@uvizV8prKJY35y zEB>f6X#=^pgFShwcu!=C^_Sb`p&bkBFYw$&`VLClH&&*c=h{R&hh!IaP#CTh5~hJb z%*MoCQ(D@{eyaaU*)!u>QPGIvLS?sI;@nS-V0G;vJ$PC2Tbq~ruB+=NBRl&NHjE&S zeDrDDKoTZre#)qADLTByU0=4YDevJIlMQd-Gi6?+0@Foj^z}j7U}>jZE4e?t>dfj0 znI`gH-UbFc8etLJwK9Gm;wR1)QG0J+&IHC=Qms@31hxK7!TZ3_PvmAYb>ePB*Bi^M zKQvBPnY#P%<_a_QWy?`bKN%cl^Le|rCytqmk1RcA!>^A4OqgLX^u9Gj%MpM2up-Ge z*cGbe#?qo${GK<->c?;;;`#X^ng9w;K6lVzMP!qvq@Yy*f{}#OHd{r8JCPp&6C3{c@G~#C^~xyvDtcR zXl$qbXm`ekxK>7GbjhCn2qY%uCok|e+))&C-o2VEB`!YRA8P|^>TkvlI2cSVd z`j2+-tw@wrTAFtN6I>ud^-mFH8w1Fm#9%tSU}=l8FWHf%x35Pd?z@o-XRYj@eDR@= z2@^DF#C-De2}y13t`ywaN1yBQ&Ixz>(FsDRA%;`}JV^wc8DfgH^1Wubv1^8xxjX`=x%Gv8I48cxWN9s%O#&#Jp_~ylh*tx&Z`?A6&cKa-Y_u z*Zwk-RECKqA18Dw*>Rl|(-HY$6L?Uq_wdNbqhJYmlIjy6r_#GBP3-Hi-o*qPHPzux z3|QOr_qxQ!`%l-ZMv?U&o;!#qUFDmlyo5C7#)8k&Q2>pQl#6igpu!-T-8>^Rz`=yN z{9aRSyI;8O<_0yeSMAkyu5shm>d|!0lK5C}oN@z%Yq?pl4E^0032Pwce-HV9IS^U)U%puvMKd1`DA{Ny7TB z6%dSJcB;P;uH>t^XCc4QB zw`fxMR!CvuxozBF=R7Fw1W&tr`+3A4&b}nmt!sl;w{Ok)hc^gK%q4qxoe+`e>Wks_U)^8tW6nR_X#9 zlkEvcl(77A@Jjcz$i$_za z^70y6rlSUt5BE&l4u$jO`}(ak@1hn-L6B!&GKiTblr3uKYSJa=366ffgafu5>c0Vdyv^esb&tgND+L^&s z6Kejdke|;KFpQCz@{oFbZ^T_-@fK!kc*H}Kk0&t_B;nSfcSYEJe8j}iMTHsWk|}sP z$s)dDw61zFo?YxLAQFuEdPnQaT%*jyO7fh=uC^b+ zVmS$4O8VOG#obLhwdJV{qeK;Y0mrH-y%{%{7G4+vS2-o<>P*Y0>d+s*m3g@j&CEV; z6dDo|9D66KEFTnqsXyw_|K3C0rp7kBZ)6|P0wMexskn_13d;&CHeUo0=Q~$Qp*Q^o z$zo5#F?X~0>dMa(wa2G|vswvAiy$Mmy@FYodCj)tp!%IP{z-`4_fF8 zZfi#CAA`VhN0I2>l>)bZe?QkFUK0yv27_(fTB1nQ&@%vlZ6_HQ@t~5PDtdTCXPpe3*Vf3|8dOGn1z%*K2wpXEgtxP;QGu`} zUh3&3*G68E@{4aju?`g;$tH&Xrp(gn@w!alzwkDc{*Ey?qQ!lEjTVT3q-gFL+ zj&l@1lTmd%YeS-7Z{EEAU4wKcPa9(2@Bq{#6^MH>@S0s}*2u^m<;bS3Lj7m%uCA(! z37>iZcyIWM_Id;oO5=;-#vk+N1dcCG&cy;+w;m-d01P5g+4xd6F}L!jU*gJQzy+b> zd|_ZKo7$sS#jPxLm>mQ%0O-9D_u?{iv@CHgV7}*lshUv!>@>nVYIJq-!A~Qyw6N0t zliPRi>Kf{^r3f^hmm_y0(O(J>ZT!ilN1v}f2I#W;3=?a&i3nke?VwJ7Bb<;F3QC$= z4&fmaPB3YQH-5c_Vhg?|RXj{1^X1onveR7sFmAXXKla1uq^d+65al2q?e_EXr(D;N zlf$irBI)BRT-2uav)nd`ZEyV5E=@MWz;B^({>`b{eS3+KPp(oAkCae~Rb*tM-rl|n zIYHjrAV&QK!p|DN=!f_*-5R5M%p^IqLjNJI*)fR0rZkB2Y%J#Qo7YI+rp8=%aZRT9 z{2AoGgB_n#+v-aXW$yMZ4Lz+`b8{TRCC&i|*ZLniU>d+1ZP;j-B8R$(8&vpihL8^1 zHgr`4-Tq8F;d{DxdgXdq7HoyU!FngxB zCk*~+Km@HxZ@n*lzIGK(%b0W*?Vy(7M@GZ9@cNJc=;+OCc-+?Kcck}d z`YA=I@i9;GX#eW3+a=oYYVZp1d%q+mV?q^;3`wKYc9QHz+1cUKwm7Yee-H2?NW`Fo_Ga3ZeRuHe0&5GS}0@M_k_hp68EdbQ_ zO>-D{&p3yRyucPQ&6N&eC2m%X^?+fU)ti0ne^nrzA>uO@@Re>>%QoL+v@?fG0v9i^>J1`9ThHLy=`W^aYsFKIoMu z#iK-f)kASo0rLb`*CjyVCqpR&2uTNTtTctBVl=m#rR8-eS`X@q;%tK4evBLXm4nQI z_zo8t0l{WB!3DLLl*-`viP}CfH0-7uhU=%SDn}}g+2K)Lt|wf2!f%X$Gaxr=&O!2M z6*BpCaw{Xc?1AA_x^iwgn-z8k6@af`$vv*`PoFN2c!(=k3CN{Am_HR2MOjb;n9k9z zLmHZ2B320qm}GCX7f#|39>2*Zn>dmc>>^xfW$KIwuameYmcYZ5G?`^r~j!kbt( zyw%cEHWV%Kiq5@4;D-7O7RhQOY=~G6pR0Ybjy0N1h>MEPf$P!BwL1aRs;6Htrv|n~0Ybh;ai1Rk^B0NFaBWr>LyVP-Tr6DQ$AxLkY8| zrWSbKllqvKv3a|}A09upmOoG!$m;oUJSrKsM8OHuk8>Cr?X~s(P^xCTnNDSo3XUbQ zM?v@NV(3qUN91dzYDKwbBi5+3%+jPSmXi;AihG3#Hc{L2^?|~{%5@9-UzCF?)#?NV ziZG_Q#;=5a1vOehExGz-zoU}!Kc0L4`!YehK=JI3!^kH&+V2d#;8@5X(lK;W-&u-n zl<0Oip%-(bgf(^vLhM_6z3#iujIXBN5e>K}+`>uRqGQf2d$)LWO*lbtUt8EH?M0wS zdF6xI)2=m6ZJ|q7si@G$ncO5dlaU^GRbW{avhKjh&4t@p)eu?*tZMq+>7O}!c5fd- zqYT<67BwJfk}BbXo!rH}nncud(I*!s*VdPvEHu58gt)9+#o2z>zBu$RjDMsU82@Qk zVEd-w0nQ~>>11q}Wr6XlJ3}ACeziugSIP=pyl3wB`{~>HBA!;2v2p<}*PlHJAh>9C z`UuL4DM90E2lNt5ihO+4mexzi-$gNS(zbnSiluB@O_ov8t;r8MNxb?J;6_K51!=mP z#1;lCQ|^@1^Kk@_+4CuC#HvXf@uS{@aB1z?*sp{Mm!&OX8Z{u5i?cbP;vF(@vn_B@ zUihuOstejFBVetY3F?;8frN>T5-T{-Q?dqYn4cWZK!T@AGPXx6fp%1Cf}e!5Z?r1IUapy#{;L7rQ!%U7y6M`~|N zL*HM0DKIg&1VK@FJfE8FRO>E@6~>G?U>APG3eT!^6Sc8LN5?FQmbd14zR%6lYH>Hx z^NJH5T};U6Q{h5PrTEiYoWnM5wOGOy5nGAVpS|Lky?xkt2l9BZ`b!je{B|b7oLz|( zn|@m-FJ}8`;-DE~gqP=Xor&6<7JX}1fp?W1LYUUMNiHIzS5!Cz^=X8ze4_68zQ$Br zL8JHW&qAaWP}#t-_|Nr|xKd0tn1- zUWV_}n_%u&*|RdxmZl87XT47o8MgchCf5Kg51yo%SW^Qkk-` zH=RlO@&gqJlTx1^PrA>v<#e%&z4r#$Yh2#}1@9#D4m||xeSa$V`83VQIY`(o3&g=*Tp#F^E{jB5VvW^D+n}m{VzryWvz$5Re6708(}C@-XCUt{8K+ znmNTc4~3M{!qw?+FA9hfBcB&FFDeXy>OV+`vqX|b2(WL9`$+avjrA>SG{*&-gHxW4 zN~kAoNn7sI>CpiXa&u)uB>k_8GFjplQsdVhvj)x&&Q>@Dk+5s_?jEJXW?Oa5HNGk@ z9AamE?@W$;ZEE$VxinW1pm1zvIQ@3lFTF7j{bV|vGgUG~@(e6MmuF#Fs*pzea&i!Pz8*^g2RbvSa~MdF^UC|+s*rJW3K zbxUaEtJ17xb>*fPhUn-TAR}Jefx2K+9LlvW9zwQf417@XYejPoJn*gAI_1QiJg}fEp!%UE9@SfYZ z*5J+O!QLr)sqipf(vC<#KR>Afhi3pc1gH$+4r|%durb=&bpzacNNSaQfYaU*vZ{p! zE3*e=e21X&T1jUv3W$^yRkwM99v44R*r+Qu4B$jW&#D!F)oy83VH~K~y)_1>4Q)4< z>F<{#R`*%>^^0nx62A%OQ*wM~h$rw@x{odpTi+QqU7%&j}}qaVHJuyw_AE>s|6p&O3R%z%Frc*R97o|dsNn}AM2_HgT5Mp^9NZ~wjEv)yVd*lA1(uz zxj8gq_rc`+X5R*ARCp*|hDkXHlnf&Yec|)A$y`%(WCm)&IfM*xuc<~3Yb)dN6le=5 zE5M_2nsaQv7cPba>G_NGHh8#MCV2#u=Zy@P4<)yP6dwEP7$5~Z1PzLUEH4}ygSqPu zGQNAy2~}OXQQrcfRE5g!flgi8@|AXirlMhfgU_FJXNMCsOQJsgUitE14DW5Gf&+0#aIxjGQR3H2-A)4-EpaV zBfptiQ(k(9dw49q`HXodin1mVxP)&z(VAbbD~i#3q{JZ3vdpw2nkcXz^UV08t7~KQ zr{@(l2CcVARgjHYix3nGo|g+H1l2JbHrbfZ+s6Usd60;SVhq87eWff@*+-UrGa)Xm zuCuQ9ushRR2Dwh<|QCjNP_|+oExMDbTgJr&%nv?^^(}) zBIq#+wyuo^SqZ*7=AwMtEB5P7%eZKn`C8w%f7qEuZb~tz&E7-nZVAhM&_-GMh>ET7 zPpxuj?uND+YddO{8efk^6{B+9h}PiQ+mhGc8|J8u-nkCMK3P_(u*EY!C3Kh-jF-vN zV9Gl;K<5W2EG4F0-?U2%Ae7r{#crWMA#B(-C~Tb>&f{MpO$nWaA=cE+5&HSSGp+%j z`CVD?3NelC857Mg;hMba{h`71YPKgU@G_S0jH;T6eL?D~v%-X~KlFv4=4&)vJPH@rnWMLeq~5I>dVH zU9Jy!BVMF_$=-g=M8^_1BrXX?k0xAykrQoavKCV($VT=Dgrt({NA)EM{hgIObz7Zl z)5wz>>>k+V;R|frR1Qw<*A5C z7gaVapC0pqd8`rNNBpGX=YaoY&gTx8cG(o5TY#W43=D+wl2jzx#dvtUTN8qS7wmh^Bq2rcU$KrP`{Y=V{gkS%?) zsyMXpb-9m$k(#LIYJ5R{QZlMrBRK)1uHtH4am2!q!kBivLLGD;6e-SH=`w!sk|Blm z9~Os7hL_DpAxW5a-^iv)2XPo+7wP!5x~Q>y;K3b@ERQyo;>=1lk0*Pplwz71hxuj?0ud_rI99nR+O?;0 zxUsJlB%eWa9pRbyu9WYhz%tHFm z8oYd5T?$u$rXFc?5B*Akc`T+p~73fXwYHUgOIo4_(+8bog-blV8doG3OZtrr$0kS1Jb zL4#9Z8v|UX81btE2IS46gZHV>9P`CP@D$fdN*5j1DraC1yn5JGnUQF@P@}WHMM=;J6_g06Kv6&aBGsdPS705 zH*x+IWu4^Ssg5p-kD&qDOV9B<^5Qa+X9HXa0{B)zXR`~4F*Q`~wA(rV0<**6a)UVK z+XSKV55fE%ZE7MtFF}@Ks22I>-8*d43vSrMhs3rK&fLd8D{IjcscATpM8)e!`!+|H zB*s(#EVuk|fr-wb&Uyo{HwIrpSd#lax&))r0G#Q{d2c@YK(Z=)m`LP!RzUgmT*J@! zr}~*99WCzq`aNWiRtX8TL5CxO-_L01&3!|KSAgR7`omxR>U4}W;DAVgu1rLa247p8 zRc9hcQgOHSpGt6J)xF}clLC=JX$r|2Hf4${vVL{cSgFGgD&;6qHm)v#KQGJWIqJ=a zSzIATY%UBJAn3avvYWq6mlTNeZ61EMQm-Qc&v)oBB85R!7?L>FVRbul38w{0*K04h zE1lyBUb(;amfvU3(yB{2kKgTwVWwu_RE6BC+%4w*<71IGD-A4k6BMPHv}Wi@)G}0b z3+FMj7Bcc*K+m+DwSa{IILwpdqih3gl#N%gMQ!)Q&}+<6iv>l|eP;mY0(jLst{c?P zaRD5a^PunnF*2xW#xxRNM1yk?__dL%E`F5C?J?WY7-RYvI&mv z#SiAa*{i8l&8|0IFDZh?reKUtU%Y_4@jmCLuM$C5U0cNn55aKjR-X2mWKO`7przr~)SX$0+XG(?#erEGF zNKOHm6YNeCXoBYzqk`PGSySNO5iF%32n__*b;lar`517r%ezZ%b<=tVcgG&C-W&{= z-960vSg3pg?1_h;@QtknFNdrk6$Di0m^?revES<|mh5&JnrLLk&)1wTP-#S({&h*wt`dM-1O%f6yiNX8*NWi%^Fw-Q>*WRPQ(@3Ofb>+SHydgIn7kCLaYUHJ(Vzk$|&Gld5;hI+TC_etIZFN+2z z7x}BsR+m`a@~N((D2ks@1o3k_vqu;k1Q)4IOdLvlhZi9OT0BXw@i*0Ula+43+-O8dMHUE1Wf-f z(2y7R_&7)8%PX6&xrn7OE6MC9p>8?Pg7Q8w*llNf3l+X}B9H{2i3Q)JvE~d)^vQUH zf~5mfHhKdGNNz$Of&-217F-1%mB#|*KI}U^d~>7(4ByE$*}y)HU{FGIbNO?wOooRJ z6VqH_+^b+3J#*d-$H!Bw1Z3=B7=L~0=$;vhrk^N$@0XTAO_XQDwh-wnZmysY6a8%! zY+c*8vpMm8rFh2z?(P_`Gaj+d5+c`gNhIgGrE?RF`+T4NMR~!w{%mAe(0NHo&?diLRy2OtR{+{C#Ge}V zE|FjqPH4<@S=@PQ-Nuh~id<*D+@xL!@LpL-Rx@aD1Fsl_;Qp8mepMm>UHT*fikrCX z-K<77d%2WYR~P5R+X@f%>8W%McvEV_Ku@R1Q||BSmG0$Tr8_Y%l)A-2f`$*SS~#>S z#D4w=$@2b)xn3JKot>YTe~t-mjnv`3rt4C7Y}h0=YH5IbF|~ zWk0VT(`g#F;^KsHlNTK*6q$4QLwPW-Zs~k{1a1B{%u7u#Zq4x7I(shdv}}ji*3hrP z&5Ft;u5>1<$0mR#&}p<=$KF56(^Q?CW*B2T5Bjjeh?q-bY8xlk3^O|O+tM+LPO~LP zEe$5b>a_wrRoVZmgSiJ9-Xi5?B}pUG&lgUA`>L;B!9-XOwU~cp&@a1?+-tP|spAzQ z2e$wFRYZ*Y03j#D(iS5YaDBQ|tyDdpNdLsRdCc0BB^6DXvtfWLbZqQ-%H_f~;& z&32R!qp&wRDo0OHx$b?f3wvp(Wve>E!vw6XNOcF`rxw`r#?xM`SQ zuV+;!^K>FNq3x}m1N8%OEcq@)JN~sSviLyR!l1m5@_d4Mc6ImIv5jvpIu5HXs@J-c z7pea;D)lZ>$C#CG2-YwDxfz4X%agSJs7fN6@-)d=3LdA2#JobYX~+~6&V*kZF(fSb zCOJ5jdi6D(Ce&a28YTL}>#-Tv>)ebnJ&`$uM|X-$uQqgT-tH!|{sp4oTV-atQNCZk zxOY9OGr@ThTp(j05OugsZ@0Cp?V6D-E#Z`uWX#E1q+Y>I9o3=KU00C~C{wi~!Wql! zktmt?-XXL7W|=}Kr+!8FQfN3W{m&&_;WdN!wONkE$Ha=JYtqc~mB$JqGWLbr)f#wC zc|!kSL@!FeLeaqTR*|DTjVYaQXonKW%30n(v^}B7BmBz?*GN&tDiDk6ls-(S#*0u; zUqFL!jdi{f)|*4);uUy#;In0xx!a>>GuN-8Zz;V=H=kk9KZ%N>W9E3_#4R9HM4ltR zYs$F~Y;xZI95eSF-KUSIzqwp@s!kw%AK1%A`E4?NGzX-FbXe*b+JCzsFIlMJ)8q|O zu+Zr08q`l~BKn%=2=9PD;Wg`SSM-;58;Ey>g`Qp-`h8d3$mFocQ{5nOMgGCQt4)rZ z!^*CJd@N}t5o14-a?#qo@|B35k)LF*b039&rLr}}Y2VIao?1cQ`)%T!b^vX7_5oxw z+=RTF#Q(DqALvI%(~nk;2x%R>GpUld4cJ58+%>BU>sE>xUU5ktg9pbIkt)24asSbn zQ>1!de|~&lSpSoe=q-2gTH<7u>M8&#x&)lj)E=68sh8#rOdd0Z)I@^T2tgFcftl zPR$RY|6fHgjE<_bk0l4oh$`Wm52+~Lo^!zL{?c4wTkB?hw7fe}dcDR~J?$0**Z~G# zDg`?xb{wQ9-zv6Qf8UiHH$EVNUXWA@i>le}Y@w(6_=#?b4%k3~TUx-%qizr1Z3jk= z)TU|4n?}n^mG8JoLSnsnHHAKLI(YQ{^V2srA7~gD>_5-5vWLC)JRPA)!6-1#@aa$1 z%1k?Eg4K_5fN+l7qS3#%o+QTFiU z$t!e=x-FOtn3?@I*6%1G*F-}&EhbG}Go%1pT4#sk`wK!A&yaGj$Oh#k7WZb_&XYu8 znK8jW(7IkP&j*e?78^B%%7*}~0h}SwuU$*FlK7s#{Nt4uZ7qOf_n+V|_$ttgK(0x7 zoQQJX>m*{aKo;F;J$%tSeli27JJt|`kBmIYPkG@c$MXW}M0jY-*0mpH$gneY2Q)^t zZKoEz4Um7L6E5Abg(a{;bSDL$QS_wWH)$AqQJ^{(wErNL#e^(&uJei5?+eLZ)cixQ zs7wVqGVh>dhc6PE>^d#un{#Mx{X$OzJvVY1mqL{^wRFk&0ms&3@fNXds+C>goKN?I z?s()S($aQaZp(7g6i>4kPM=h5jliD5ULLz6l3%OI9SpTCNwU96j+9}JKhz}a;a%qd zRu=K}#yN!XY0=#|JJXNcsxfrrV>scSz#;i#@|T%Kl#_LrFC(&tw8ec=EAKT!pQj+c zwSLaYxksiByo}U5ryw?yb}UT&GF4VVBhT2_HXZKhs}_OT^mb;^aQNEr*jrBf+oRbyIT2{Y=cwiF9~^G8{ztEMTV;S9T$);~y2 zfWs_!KS%~hy@y7YdV`3Yyc5h@!LEd5_F2i*Q;@;=sO+p+>iQTOSH9bEfLBH4#4lDt zD1ek#V=jHcwy&8H!IM-}XBX-8TvDJg)EGq)2*l08A~a_j9z|o7qiG;4b4-*yha_He z!yBXj2G~~o7!UW7DEv3}mB;PPQ2=IzK)jYCUYHBYx+z+UJZu#LwZ9qdkZSm-B;^!4 zJgx@R;a&kOlLX?H1g*WXXN@^MMYjt^-s)1v?r#7hH2)}#)paaQuM39zUYiODJTVf@ zySdUB0~q9-<>%Qi*Dp7UUX7EeKIj)p?mOu?<2WIR_{KC?V3iW!LT$eEaH1-IsT&1< z86jMPX5B|-u1P{($~Q`0O?C`X0ut(Xyu1On4_@kQ8yxk`$6nh6Lr zK8>dM(Caos>p3X7t(momyr1jjsJ;retAU#`7>1nq78gYHKzHiW(v~9r!v2L0JBTm9 zlwOte z^KqJi>Kw`l>6rH&ha_+k9PE1O+z9ufge9DR zm&}WaCByI$*UCrAQuSmYE_rNnow7@7d=uFvt?mErolVe#e13ozJ=g-Wb3nShOwTPy zD0?@(M4@10DcDn5@>=>Xi-n8Id=X!e%y!YbD1@DO&^V-hl%{?&$Ox&*$|#~=5O+YU z7=6>^G&?s567Wbc-#BA8iTm*DYSX1S;EhdxrY=y*7X(Zn^`U^b!oN8m7-t1Qj)vhp&fiv$gf;O0Il3wUWG>402#1O=cxo+4!NnV zFc}Eq_ZKTl9PT!Tfp@_JybF-KTATq;&PxFI>DJ@q^ni~s5+9qU`qm2CJPfOdWO*eeHYfx^zeP(RTBRYKR7~(++B)p5GG74W$d!sBZ6i#t<))XoL z=Mn1d|B%L1u^hqoJ~Wc|6y%bS#OWP>JLzY(?$zedwG_vP{gmuv0E~&HH{AaRY$K$r zXYoNT=DIKQFB*)vvPP@ex|YfvFhXAb+ySW8GV`PmNf^IXw&js=08P3MbnyV2RGgm# z*68>5ZcKfs3O}&a)4RQ``QXDnH?Saq9u2rFlZaX#0QyC=DFC+?s7d<~w~s5MjrR

`F`i^JzPfX zU4NLOwD+K5CUt3~4~@Swxtk^ukf*C?M%eI#2!^miVr*QO^9mY8qDu;-C!M8Exy5~{a&bZT&A<^d;EfGq zJkr14yKj%x*l0$jYNGgJW62&M8rUz|$%2ex?_mFR>&k#tAJ7@RoS-z5G%VniNm_zf za8;;2hyv^KDlxcbwsfV6t7fhn_%q!8Lyw_NB(|5~&Mzz3MK-eRV{j$GUh3T(@7vE4 zFVmLEEVw}vk;suE)jck(0fE{-ctP4& z$#1xnT{Z7ya; zR2z(FJBir_U^$goF0=I@S_A{So~0!_MVW_g4zIST%Zt4zTo+ao1L~d>&2WDNnrQ81rD=Y*k?AZSrU_E;A{{x=si@?hj zya7-D;J}~pfrIZpO;X*Td|LO%>9<^rA*)6#XwlXKoHKXbf$Mu57~+|YMw0=gCVN+FURR2yO^c#VZrF|!| z=3tnWgX7=?@z>JzglEVHi%!}jbwLYlWX|VvE8~M1#3hS|6>A^8ia1X7Z9;;!$^mHe z;+gYlyT4NMv%f9?puWm9qDr0Q1NoUd;e8)C?y~dT2*G5yZ)3CJ%h^rry`J_F?{zza z%pjugVC1nyIq~%9oV9~w3IpC0w289Yi>-9}SA${uQ1gIei2`6ua_3e5NTvX8%b_JJ zfym57A%(qQ6t?fU-@*kkwbLw*l_$3(wrsQ>+5Dsh*YieTkE~W@Xf3g}4cZP;Wiyx{ z@HSBl(Y1p9&rJErPfvtg{q3n5GET`zhF>p}onmE-@{azs^UUmH^=c&5&_!ziF!8%-DYkp~%V-rha*z6wA*r+)OhjB(`?6rY;m02sZM zGwv(Ib4XD>1gb^Cp375b0o3Z&D1JOf`+gTusTmgx2ApGH+Ua%QF<`F3tjqb<=8kF2 zm_L#P<`hGMTH_cz-)U}BV@)WFr=c9K?LB!0?+h@cir4NSD(k*fRK|YU*l4OMW0#@! z`Y>^_vW0%;D|Hh4BEtnI%8yS9NgR?FORiSNi;W|ql17-^XX5hSc5Wm<1f?=1OW6Wt zhAg-mGUGR3)tX!fmBIFIUtDew6eoh2Og?G6Qws~yBk$?jykl5vW%{l`7IJtn^{ER$ z;{&PKMDXTh$oLt6y#SB$u7bcvht0y9u6DlK>3b%H8o3L{&v~&iQxOZa8@x zrnCI&4ar#=D%>VqZK&VNV_Ea|GvgK1lStL#Fj@3361HL+jSO8~F|ruHX(rmmx9wyZ zA8*Gi_VGg6YQbVpVAdi~ZyAggL=6k6e_-uuMRu96wZifwe^_59!8H!a5!BBAMhH&bqpo{g-jvVz=nR_#!u|q*p)02qw*HQxMFXdvF<5tW+ znhEl<=4IHXJ%39M0FNw649z|#04fI)GDWZ#SY%eyECsx0fQ$EDe2-W2Wx9GPCss=- zYcY9eBL3iM@ziBR{nrEI;-{2Xj;9qdF%yc@)sKwUrshxR4iC0{c^df?J!zj)GiYp= z+sfTROXJ{m`Q;LTp&5EH>YY%9?kJo}iKT`ADT!&=Ea7oS_Pm^(J)pqhV~lzY-(BXy z&`3)8z!7X7xH^m)^ z91;_70#T}({m0Eq!>`uv)d~w9*?!YWRK+e~hJGVhg1tM{7z%24s-lo(L$6WAuxY0l zv%8m9^&a%wLep!Vg9iJRI#-_XAkUPH$se0m0{i`@vsY}BN*h(WXlUQY#T0;o{D0#U z#N6#}-89!0h3LO*0Su@U^OeVryk|E$aXB-y+GT~PNI>5{yRIE<%aP9xcc2AJs`*ZF zOAETH7P^7K=gWhfc&BD-AYCj?1SkoQw|C-xtT<(UxjFx=Z6Ne6BCYYE(H`-HtoD1R zxwLQav!CvYGP!p{lS}KCW^2o~B5kEl5K;nnS!qtPh|l&-z?WVIAircX4I#dMS$){?%8G-T5&Fxm>T_1H^`v3U#0K0T zsg_VS`g>J^@W@P$_LUw7@U2zL1ofWbz909_<$7t&pU9bNC;;j5!PZ+2=Af#?5pX(v zx-na)n6P2gfsG59&3PihY082(S^DV1vT3C7xO2g*(cvNB~n^6qz5Ky+$)p-IAi$ zr3%$lrlttOn|jg!5Ure@sN!12>PtDNd;$v+hCCY#}NOx_=HUyq_ z+r`D@A(Rq8^)aM$+ZJ??Gv8muPmPHfQ(_^)g4s|Cuy0T3cy57FV92&a(W_>UToJwkaBvoQ(@F)~XY>ENw%}uJr4%zG< z(h*BCke=jmmGLvFmjI9J(DH#htx);>d^rR@zPTY72{)D)zZat-MHH0@P|1)aql)g0 zQCP>!Ow*g3r^lcysD(-qc>fjkZpm86J$mj|&*^T)PDrG7p6~8K_8hNkN1MyiL{9-FO34{O zn5M~AaWDQ=IMgnF=sAF>J-*}z7_gX{Ats73VYl;SQoshJ5VG}}4>?Fz!P3@sPsP7( zxJ;VWX({o{S-Gr_p&`$~gnEwm6L}OVT&rsPo&_iY)zd5V5^7t&Nt%5+@Sc`qOXuF# zKN`57q){+N3>nB#KfOV3C_tOYuHDjlFisRsz(3ShZd@k=2sauFa7LO$-Rm-L8skfx zc-W;BlZEv6hV=_I81DbMOd44>0FLBl9swu{k92(jyODk$vSv3nX{MaK(q*XyUR;(4 zT=z66m9w18+FwadVtkh2Hdwh)6@~z{$LZ4?UKHlRq!o^yvi27xrqXZ@wZ;7MGPn6l zttmF{%MGU}u|ytKv-QJxkGYb9#D4R?W2E$$2MiDW%6Z=eTxxj++GYaVn|?{Wp5s5l z+E@6_Z-S2(N?I#DK|{GWvmFf7kEgT-As zqs|#8H0C{@i|`1&`b&YBE`C_|CE!fQwm#m%yBj0SOlv_I&O3E1J1;a{y~eH2r|2Cw zFj?xzh7@hVN}1MNb*ZuwE@M7aQ@J6~UXrT$Tmz^5ZqOn5v}3QtN||fNB`Nogf@I!f zhuWu-y4ZpMfBd(0ME!Ftci`&eJz+ro;`M2lfDEZ1KqJ4T;;W|ZoXe!`%52i@E2(iE zYEFttVbWubMb^a*mkifn|Ba>gN9PfVbxsjhJa*d^?1cC}Gy)enie9!c4 z{G07l;2;6__V4>Cey2Cs87x0)78sU4 zDk=$3WEt7KPY;kE0w(_UD&6Gikb*o z>L&q+0=XrW6wu#EB?t-v?7c+(ctSK|Ol`ziSvKBBJ72Ch$7SpD2utRJ>)JQm7H?m{ z)ru=vEvJ{>XLxfd$kyD}DC(-3%O;S+CT6Je@vbgyBpJer|^PQFvL)1&{#L)yD| z_`|`0XH|l(EvQ7PJ_iY|9+@K9Q?w*4AQuE%=$o8bPfZSfU@y6l+cXEqFmQgam`=~E zos*1MGOI?!q_CORa6CYWyZN{*l*#0rU7JRjiROj`f$}d-?->)!kV-!uqS9Iwe{2C@ z=AEPSOt13gm?ehxw!tRb(iafk<1+?r#aQ4R0mq(XY_yxz-+JmiCy$&pmyv(q>o;y@ zQbQ_6vN8G$M&1R=;JEg&(*bF>sHQ*D8@;^%jnK*un zLi$CrfaEeCsC$vAp%kM&`sUu*1!_(;T^?97pj9)o&N8!rtdmu@NFE*2FZV`%`Tule zkGS8}^O!bO=2Q7%c;LOJCWj6jOyq3QLcdq{6DhNSmff6W^R=1jvdp`eo3J{v^x*wO zJxWE`TKvCIn6BACpwH zRI`m0o?Yb$0iY+1i=HVZHcygIZpFT>n=BG@n7c z-Cessnx+Sv{Ds@Smm-9g1>DTJ(4)=t>$9ut0UC9$_R=Ks>oOxt8SEXmvXL&{q^IKP z7Ro!sgIHcJTbdh}llJ!-9-AKJ&9}Xvq^R&!0*4Zs+>KE8q;s3>p^FhUV;C(7lyM8s zUZUvky~fy-nn}zp>T_KHwPJq|uUkW^7#j*O3x81rGz%2l^*${@Gc}psbiVu-Ay#G+ z&?&9{g#UmZu!hsKMY%x3-mjo7=aII=+l99h-=t9xR~ylV3g&dpF& zp#(x_K=t_Xem8R4`^?Br^|@ESW!cbhI_>n^y?g5DC4C<;WD1E_Wf)h_&gHOmi)xBi zK5mIM-gs595~O}R54L*LHpW@;sxsPJEKj}TwLBAPR^$pJl}Pko{52<`qyngzkXl^7 zP9b+la5R60!xj#5Kp&Qii`&(|f@BpfZfZp}&50(1uB8qu+0|d^1%I{qx-gT(ApNyL z@=%HHx{{}nj2sN~FBD9z&WQoEd%&B@@X>HIe=M5NIY7Td`RI3UiS&D}zGM%LL@=lT z$pN(wrR+SC>GBZ=-cpZlD!?d)o|wf%{Vpc(w9*_AZ2cvM9UuHIbo#Kc<_FpYPkT_8 zC4hwV#Uz^(WuCPgqkIQibvX61(f9oDD1gaNV$u`4+14J(V~-la(NQ7xS*yZl$-s@_ z%oF+Kn2PckZxfl(m}%-hIDqpP2@qwL@+tm_RcYzSc3?Q=+d54^ zAf$oZU{WxG%jBL_=c66hW5=LTymg5M7A(Qm(V6wP$y=X6qFUZodv2TJAL^wTiTCoB7QmDDFj(&BQD-Ao*la$A9n`*cz0jDYlHsD z@@*ajQqN;r^P4{l&uo6XwbgZKRl!`m6+K^D9y(wx61(j0MxWVm=d&wn4SY>iUGu>_ z(!BXO-!YS>;+bRMI41(iuTmJ0()fX0lFcQn)yi;94N@{AQ&=A=PFczRB{C@jjl_j* zP(`TWgzgAETDIcWHRFAq2u^o5fEo=}DFM-|Gq^s(WeS?!4msY3xs?oa)t9T9?@jP2 z@ZZ)UrSCN@s$0Tv+M_xA_7?sLn<#uek(7u?K=AD#q?PWCKNB=$Qz&h~AN!hjP}8j9u1{#{A2kF!la z2jn7~=OD#ffr~s}li8Of{|20kHPrCQesiLGZl&Vv#3&PZXk_gbGuDLYDRWHf;HO>a z^&Eg9lch$Y5j;=bZECnx**!&7KPbU41Hky!#}L$BFwm$PMh;oihn&_a%tse@V?96h z?p=-v=0CE{SiGY-g$tH|1+N{WND^h^jfoA<`mnuc6r$@pt=_GD5kCxmzKAX-yx z$UhWY0YsI{r|h^L1*rR`S7pOVVxB=g@&^c$s%3h2+k1}cGY$}dsBiU=71_E2Y!u2s z@8{j?(G3oTR+JGcVyr^PyB0VWhhQv7tZo-@r^-0~?P5M+)hOai5gc&o2X_INo|W*- z9aOys8GLxZ;4Ex7JjHWM^7w&N-&e)#-$1rh)oWMbCn6%%>}Q2AheP1TD`s~>~+en^R-ZafL8qpz-7qNTnykp_g@bV4D7c1b*RIkF%{$=QKO{Qk^VZYJl+7M?f!cvlwyvl_Vh8YI!cspCYhNa|2sh-%kRxOIPx2HFY`RB&|8jw>0$E3$V^SQ zEL!O2knww!J6Y1hA?7a*P~$t6TGLJl-N+UFGhy2vRL?dRBVTh{JjZ>+{gIF=m3ETc zo-zb7YyU6T;#0Kv$sKXO;i)zQqp<5zTFyOYmZ<%mF0~-Dbvo-07U24ziqChR4Us1p z#PQcMNT<^)lw~PpXZJZq2FW6a_IZ8psCMkJ6B!^SIY#7dD0uID8rzU}Pe2SfD_3U^ zS(j8iDoMGX;5x46o^i73bTaS?H3x6%Z+nNNkN&(O(P}*>>YqIFQg0Y3uBb~@ugwNp z2$Sub8E-w9fl2NAi@`BvQGVgr z$&?&p3z^d4c!0c_9*VVT!Q|hZ1(o*ra-KVfo;FT4m;hQB5Baaq9XhH$RH!x0uLcK$ z=-?w9evc?NP+x)1eDRtOS|kB#&zV0n}|?|te*XtQ{s$sIpL7~+Y^`r2^x zOZYmIEl%6)SE{+!C&oN=q3NBNE{~<_t(Ztm^%W(thrjAKl02j8bg-Cq5mECDE$-H9 zb%t-E16A&mnzG87*h_b&*qp?ruwZ+SAYdM4P=tot0`aH`+u7BFAL}%3L?G($y^CC&vc)^Uo-Ai zGHib2wo^QVlwu!KI2rJSN5e?nJ!9ZDkJ3?&4?W5Al84qKISB~0dTEs9aPw{`tIr$# zT$Ut(G2MCgQMeQKRnLQQEw#s0*78JbD#(VPk|2kz?VXEoph=`&=m9hLXdTwR7My%j z?_`I2WsQ3uEU+*~9&@4J%0`8-=-(0Jzs@$Id&Xk)MBY zL3kye!ybdmt}x8G6`bk0zs;X#erPTZ=cMdbx3A7ub|U_#9wZlCF;6(>7w<#cJg>{l znLgCHPb$xQ!*iOTL{RnIs$lgEuLOfKz|@ap&Fh`KawvB14D#r$$lc3^v3DwV7QH$@ z)niR*dyB={S+5{Wh^+kD5#q1)EJ{o&fNUxS^|Oo>!rL$hKIs?qvxyK_Fb*d~z?eGJ z#PZyugwIAM{^tn+u3>-jl<_m+!7|sC0_WcCob0VovTM13nf!qjZUIBB>Uz97*8Zzv zeAte0mLmq*Pe)P#51l{a>RYMg>LBe={B0%bN5qQ@2+mivBQYfP*z?jt^#@VO*lDZ zGgKk)%yqBH9Xr=NxI#dtc4K{Y6yIjnDVl}cDDb59qg8N4X!mu1f=YNc5IP1Q09_f! zHG6G(A=Vzloal|PD??D0iT=6ryhyBJs?3gnx86@*rdth{@$s@cJ2<0jSczW7%hf`( zZ39Vcy0k188OX;i1g-+z8@^0%bg)*rF1+K%&EaVx&*=oEaEU!%x_S#W?lxTa>BQGB z7Qi>~2Zv%ewm!OyZuS>L5=1Xn$v}-+6YBUdtxhY2Q6xZi~CZ(iXb@ z;mi6R?>A3YOg=MI&87AWS67FZV6Pp)KeunK@vAYEpe41B|0%~)f>3RoipvB4*c66inqt!=O+KPY>VHEww+ZA`xIKZHAAn+ll(-~- z5`CFg>V)+Xxct|=huH$Uk&#e99*)XlfQPz_+z#L>cU^a?Y!TSd=>r;fJmfXUjh6e# z|4I;~QOuYhzB$)HGKNTE`M*3F#Z+CdI6OU*Dr!>9NH!l4WS(t)KKuC?MWzW%4g&>? z%w^cr=+~yL+juijfFn!1{RYJFfVG0wJ1id1*H(~d=DGw|xC~O+xFgv!&BI=QVEIt1 zv(<*Jai3{u1VjU60G}mvo0G@p0^vu+|FT#UD5Sz%N7{k>1lbXSWmBS2!qFufhxeL3 zlHfyZoay*C6=Ml(d05{EWYnrU(2~h<`<^@(RkvkKK#;i7tE4cgrV9&8du5KV?kbYagO<~EYg>_!5JC_RS;!eCwwZeK7n)A%aX|% ztzP{l38Rq78&#uqWW-|m9|sN<3I)`H`Gs@>_uG=hpz%*zQ_+SJ;I`Wy&kodFHTbV@7ys^nRugK>_1MgbP@q=stV zMP4nFLQLi(`18&XkO$)O!q(MHhNpF~8xh~i(@A_n${yzPc0?Y=`)^bUKImlUV7Hai z1AuC>HRwkYP5QlUy7#9_t%r(j{~@ygmtd7dPi2l1Q1aFUYP&z7@<8Y zeyTkylf5E>6@h$wXbnC=1T@sd`5utY*|CR-u0|CyLw*BtoajA&SzHeS?n!tLf6ABwOWhPva>2` z!Qnzm&C&R}u5P8Sg&eiwrI>GoB>?FS-~o@p=HrY5PR{}o$e+^_AGC>fQ)uU7IOMFp za&}X(cYs$ieyBS=lq;Ev4=O{Hg|aN0^aUf2=BmKRHH5)4T{|&%wouCBi5mihr1Vja zO9jRAJ4SN@{e|7hz9$nog_i6GWa+P(w<`5-J~RsSYIGgciD|tEndXMsB)fR~$OkLb zV}l^3K{g~}gu|b2uhs%p#+{h8?ys|99dLxz+GD}I9Sg{*sQX!c%eWOIRIY!1H+2ZB z$)&SyjT=Ympq@~;53%KZ+?$3fs`^k{=v8TyMCWz@dP{S~+l^f}9X|q3+)99~xHs~u z8mDtwc;s`%gG#f(ni6JO1X?Rd@;~H3DG#!>%VSbA9BR`@VVbY}wXXZ{HuN+B$;F7L zWvd3uyI2fGuYFfXa0*Yojd>o!FQ}b`&k9MXWoFjh@74zOcvT=Z51$didZ@kXi3Gfm zacH%c6>ICe5_&X%N?@St2z6`B{w-FoA)z$;(-NlHIGtVorz!vLZ7K6Z9cB3b&Y_jb zSa(9Qa>4LM9UUMfw~sMeG&A5a|NI+UhoL+4x$+GA&fnHh$e8tUG;5TcFkaSnXg2N- z;CB0p-1m;aS!l?Er!~aq90(LT{&1l0_tV#_WoH*qzw&6mC zl_BZ%i;w9;z`Xdi5G@7ycVOMcldU@Whvr|WtyqbRJI4qR>cw+}^ zIc;z^#xRuRHIYY1OTG#Yi{~gOPi@Cbpw(MTEJ^c!vG$%pO}%Z~FQABsf*k=V7C=Ej zdXu84s5Fr#2}P+wDAGhiiGqNDf`XwJ1?dE&*CZk!y+cAx=m7#mN)jMI_5%O+{XS(s z@9bx0`z2;36V_y{bzSFqoX7E7_B{ISI#yuY1>)Yb@X-iCa}J%XgOkh9opleuBK+w2 z5co3dPG-@tQ=yuujO`BSW5DV_#?=tLia6T`3BgUc8cE*c>57b>FJHg4oqo6dNUVsc z$W0)Y>iXgRjc&wX!Rl69UiWJGFtM>N_FxEa2WVpt?=d50)ZLhF^rC%jpCg6dF^M+Z zzlIMu5n;`w8?oG8xx-V(CMN&mDjpTVWjiHKjk;4zbw*X@m><5@ayo1XQB#lWjnTs) z{;lls>lq3Nr4H;pGC?fr4w4y{9Z93Ei#jy?{P%L)%&eJP2uo+LhH~15nC}z*TQ`NH zD`)!xYNpQ7*RDff+7|{Gq!O8*n{|S!TUx2^`M=E^6Zg;RVYB@ywN(Gk#+Lb;K;)Qg7he8SiT3?t(Cz zT#7lsee=0^!NsP1tDyjx*jdU*h}{0vuj7zc=k@FJT|7_ooM%GYeiVTc`t8zLorq(& z|C@&%JY_mT-62RK=!5nn=qn1v^X>NovLNeSCZyDHK+NY=-b-Ld8f136zW!b2=`Rem zOy9K>HN>|ciQivO-vi$J{C^y>mb6GBki$0UtaVm1SsFG-l$(9GC$!7d?+zVmva&VHmCrQPhVV|*vg=3^i};KRg01T!26LR1J1FB2j8y-5+fR1N*qT~D z>`%Lg175`r;Vu!dPM&IG6bQbDCETKJ?V<44X|oIoU1?$!7H@&-4}6ZJ5RdtHr-7cQ zp6gubEPeTtC}!!ZY#GNQ)p8mcqessALEi)d0l&t-2ysM0FP>ko+xGx7eN7q0^8m?v z$A1Us^Dn8;Mxsu0lwAC~3o~)raBVJkcbH8Qj^2_xTWVubLW;xEfKrOF2;j z+{apFfR6dV>qKvuLArZEBQNF5c$4VA0|&RZd=GeCC)KZ8+r`&i9u_jc=eg2tqhwnX zaWy=tbYOBu>?3#T%)Ut#mO9Y$C+BiC(%4<|E|Z9Jt1mRXjNcxN;y3MGqAR5*24`e%&A!l4@bmplVg z*MjLO^V`|g-z?hZCG1a@#I1k7Hm8IM=(;Y-l9CLz#iHyw!ykc&8{7`2orDiV*oiaA zb=OdJqR(?pAfERDRZP<&C`t7Ga7{11y;0{4@%^yw{MNKJ1>aU}k!~)prsX+hM%~8W za^V2NyH<3!K8@Leju|^{iZ?&EU3V?l$4;fmRZF|-&aj&`32_=kZ3Oi+*z9k|RKCsXa!u9fn^Z1wMZX_# z67v*UR#3V7Yt*X{++Am_{%})iC>3NTO3M_cs7jg@7mKD0? z&qdx*>vn2j>r-fF%dld|cX@$dyu;Yp+9wGNVeZ}zzzU^Wyh{e;MTax)C0Bv*3^42E zaxd{@wim@e9QEk*lsj;w#a=DJmlNnTh@Fsv?s0lzK}7P`+kyK~16F~SXoYHHz!I;Ta%P@?~~wu z3#ai(P;$RSR*(jQ){3uoHoASG$^6M4jWNnVM$6Lco5#)FBc$W|XIFhf;caw(%1NoG z%#dgm!xq3nSvV&@JN{Qo{l6fgx>{;M$c5RdSL1{kqJ}6UJze!^n*TxEtCc>BeyN#4 zrjOMF9SY*Sc}3=;{(tmyu&;)4onQ5;s?FMo2#RPkL~%& z)9uRVoLlbZSb?BOtilmOO|^+}omYv- z9fmg^e}feh+SPE_$c1N&44%Mw22RNv>B+-SQ6@qvH?!dk?X{qtr?ypnpYpS`IZ)As zp{RT6M;L0N|AQ6howOYq;=4C@J;ibh+}}e^*=)PXi*$`Gh}ceyJ?vT9J^No$4ob9k z93!g|C3mB1o!~%^oM=p!;Mq#}@3Y?hCI8Kc9AC%3Dx=o3QC$?LM#K22i`z=3W-70l4>plx8S)k(`FKYS5z6oYe9q@hr zOd%zq1uoLqu-6=EPwDz{5x1AO+HF!x#`UgOTdFhR_Q?oy?^j%Yb zvM(dUUDYJ&QvT&~p{CzB@b`Vr4r>@QP1;hlC6>3A?XMFIZwf^}DViqoEOuVe{ELyw zwZlpOO$`#4`v!89P5>zb@6VtAdgLr%@dvpaYOjQH>t-RG{TJf8B_ZA zL|VlLFs(ri>mUFN_EO?35bQjWA|eI`1~a;a@Pnx=SKDfn6<~+>CvAHoVomn;H|G$b zv`H@3(A1ruC`x@yZNn$V7LpoGLUNnShPQX((hmhXPyP?wg#Tjb_@~SM|6u1haZ`+; z%a)cDm5WVWSscEYJiS++uRCAI^PNq1x{Bj!Lw!T@;6IqO!#7%{uGWk7+z{5(dVN%% z#%#LZ_b)40Q)(*+uBm-njBF(r|HEC1|M*|Zkd$5c>rb5 z8oaiDWmzUv7k0Cj$k=OR!`RR-Kn%(4UCKAiODash2Hs#PR4UXfR0Sk33Kpln0%W0&r6?Ru5aV%$QHZZ+}R9hh|(YSP~TG!H&O1oP7;Us5j(9*`c6ef|DV zsKwmoA4JtC$dEnm)89a(wjUs6@BdS1J}l5Obz<1f<45Ci{nURWPyytCzXU3h1Z}6r z&S*byZ*f@gZ_u4=R<%@WQvRU&%4MU7f3A+feQFyfzj3Rw-~j+4*3>aDPQ;1+%Z+Zk z??#Ww5d4=Ly+_G_D61@@+5YTYU3_*;u3dG%hut%$$iG499wX)-HIJJwtva9nyeTJn z6-DMgtv)r{_<8gE&*~42mFhG=aHvV2@caA68Iu1MQQl`E|JCRIyLaz@w?3#pa{{n+ z@<5~2aqqzF-ccMEoNa{|vp)a(CDy;-iEpQ0!Mt-h3Mlt_$OoI8xml^P>KwBQpI?*A zJqKelXyKcs_&}b!>vrcMz+8Ke<-r)kN94zS@|{?5U77~~(So3cyYkldH^Cb~B+Q&| ze^Kmd%6!pr#iGZ0?`i+pCR0A%8fYO(Dr#<$`Z3oP? zGDcv?cd&DvgmjDhKjW+T*w2%t3$%xc`^FB&1NBefcLg54paXP?K{^fBmwQ=wmS7lF zLVL57o^b0pAk)|I9i*64b*DyHEFWSu(6>H5SGyvdXm-Qyb>FOQ&GJR|vSgW7QtBg> zDUNI953XHo4L*~|w`E;wYB%uZo>)}emkV#AXw?w0Z4SOR&Z7mfY->M zwU1So{B%$!F@&5ktXg&uW?fkjEI>|`oLz5`o&i_axHKf?sWyuoPf=D{BXeE84cWhUqw>cTv6-fcH;tjC z^>2F0Nu5pLHOh{4)Mjj`DwapJPrRRLV&K4h^wWds1^`YpJfbun-HvN& zNzzjzu$=@-t#m1*A_dbwW=AN`|E610mqxPcpft5FMW9piykRhj`7*2f39K~=xWP2b zFxI-pnzFRQ_qmIQCk7}1Wd=1ADYEo>p`2f;c=gg+%n|*uWu^y5|6Y3c){ftLVL3yD z3nN{qlh3c?n$U*1EGe((GejYN*>`pt2`&+)D>#Q#-|9Jki48w#v$?{U!{=(EbJ&!! zZ&VmajiU9^z5sQ`)k-Sh9b1Cb%BNW@v;AUtAa2Q_yuOu8t-TvEjm+mvnI0d4BV{-z_JlD{W?R)4gigey5m$#9!g*UDk}OdaY* z>-s8^et5QySp3~J-sVRVWAdXC6qC;+H&)_(4J;$LFc;{hi?jE)sh>SI;*~#KTT}cn zw=or=v$3q=oeC^?bL(l^|7HZdDSUfSt0;K*zFIhxNjxUJ^3-7N1o{}u^TNLG?%DPc zm$&$xzKuytI=IA+J614G9QUdIe3`Wx+5L?!P4E)}AD4E_W?<_vIvB{P-`PH~UrL7; zDwNQ!AamQ{ucCLPSJri->CZ>O@F$!d&krR#yLseq9!hgdxb+af%JL)`Cw}mVZ)~`4 zfjG>;xwct%Yph2}Z5wmt*y~qZdisv@a?||rJ#`O8MVM~nL%w(;M{QNpK<_~>=XwA`U?rw%#LjA}Sd`c`k+_zVzEssZ2=fIzNw`jpMXeRjgX zreVNFA;8wN2gH0tf#?~q;R$=-sF!T<(;7eGl;P6rOL7dXU?gG1DdZ3OJu z_M=U70^X~>R=E?f!rvlW?P8bl1NQ#nH^mf^=3AM{)S$q3rte2|73@9n-U2tz0RN-@ zGcaLz5U9><`cF{i-m#>6Rqgj@L$d*}`ddJY`#h_m*=ghxV|ua=m_DJLkDH$@gdAn~ zX*y*X6Q9mAt!q1ChXD%qsq^jptMF}4MYv!(ChQhJu*YVff1i9q_odC9goM@>1AsM^ ze(aO;K1dm0TKI6UbST$H13C8tOzR4_%SjVXVOY}$(t;6ich63p__0}c*8Jqgy z3hyGHlQ-kuK^|1z-H&*^edITK`SH|R;H7-cbCAgk@}MdAL(<2XA6Ol_1_Uje#$Rdw z$wCI*SYf5~d)bLsLS9)cIUanJ37+&#dvI9ZK0Gj08#i)ZAnU4f9>qU z>u1%&+G%{7`}gILJP-)8HCv(nOxgx5Q8idDwe-CL;8btOpH+93II;vUh^vw4gUp0s zdn=&Te_nkVhyG@gg=xYkRYm}BApzQd9QoFs7pQz zP(#?6OSVF{s}w;PM^6QMcrzLqk~4Yl62ggA5U#d!{gD$p_w*OEo+$0xm5WO5cUWNL zcQq_dRga?_O37Oif~fTr4xibTsEv;)622!GSF_vEh=PHDMU2?$_?@vGnH& z&KfzAA9-bXysT`zcsgyNN7-n5C&XS`3rjf8IYKYLLqKksoW}=m^qFwSX@V4yAv7}elhL*&*+&|{okZ%?JxtR=wv?5nc)T*9uhQ}qw;}zf zk8Ak)nZ#L2O~@Pxd-P9#@s?ZM^H1IxCDM_FzxX--B?SNQI*HHV@H1jD|-EzWY^Ee zfDHo(u)Wt!J`J}PT=|jqmrv#+oZ%MAz6_)!fCR4Q-EK|Y4>RE6?5()Cg^Fg8Ss_`p zj8;^WC#!dDaA?d76GPX%(Exxos|Sw|JQYXjKSxpH_ZwLJ`IO;7_+#;0Oz5>NpfaAT zdsW~NzE)^a)@_>+@`#-e5n71oN25C>kE_!zwWR+mgbTF53M!A!$35JVf7kVd<$vPo zYHkf?LR})1A&@84NR+!~+5FTHUtv{;w{V}_ziLu;!3r-XF_gfEq#+8Zc6TiR;a5CN zS?XhXgguv13cAj4I4S91>JsVwcCGMyDAV#KSzBn2DIMIEGI7@SgEn@*bklm{vgUC; z`XVPoSEM(Y5Hl0)7*j>az5b}y45%W#pB;KrdgJ8n^Y+)ed-S((Lu-pqY=@&l&u=pc z{nJJ1)=C3x5NOArZvd37%;~F7p|lPnifdZ&Df7NjInPuzPrdZWZ+=neEAu?jLY0rT zk-im+c=>m_6`28t`Z7~$)Ad>aB%!=lbzhDYu%>928jFkUv#6ajwRViQYx*;KvA&WO zY`cQ^8#m!|J1Q4bM7$7J^;zE7NHRuqSgi48BwuGW5}Qu#XZmS+HYfQ8F9NtGhd>|H zWUZg3M0ZMBo0z+Klr_#-DmKZD@F)VJrtbch3|xp86-{4Oe2&RnZfUhTCh5 zCHVDgA5ku>^?JogK(}L1FR6Z5K?J%gX_(TKONJ>~Ig@y#kyn$I!Jhd*onqjfKbSX* z+I`uAB7iimw20UEp^VXZ&NioMLCa{;0Xy5=k_L|UKJ-HEuf4(ZT6P@Sm2W7QMWbQZ zBXxj9e~T&Qq8P4(#j@Dm(x(sH9d{8s{M!!}O^QE^XXxR3;5QmMBDU&$^3#8Ab>$>6 z3pR60Of{wy!m5miDnOxJ2FQu~oiI4r`6|jetg&)F{BQ2l`w*jnTjJpBE-iBKb&fbn~+|NXx zR{#6i>BFWgG>P1;yDw28^er|5P+|d!S>r*a6-&AIDN}HNIu9H|MhvqlWkh%c_H=N( zgSp{TecHm}^Xx6km6qszESv_@(UPl?2ix@i%jhW^$$im0u=JyVme#(6xQ__VK2~z$ zx}qhGniRrtfr{1zECB!Kj{%1T7y|Z>?w=P2%fqH1fPh?hO#y#-UxJ8kX0>B>V|o+w zPhBSi1+@Is8(|s3T2}Kwi37Zi1m1oFiX7l=y!3KwpD!$PS6A6_E^xAi8J2%WMVC~i zrxzPL-x^p56qEp8`805Rfa3YDLk~Gfgi zaC+?@(Em89E_dimqIq&V*@45P`n@=(&uJvMMy9^74 zmBWwz6%|jO1jOL)`@SQ9x#|}0@Ho$Xr6aZt1Bvw*vPQxuc=_nB%)Iw=qX0_HT3EIJvl#4gWstA7*3IM#uY*)!!!W>6?*r+6 zj$B)?w-dimIDct;JrkGhGe*~LHmQ3)$7Hkd(mWpeIl)1hP(|MpCM}>Nu?exys>*0E zlM&7%iPeo4hdj)-Ii$}B5Mbn67g{o%jzQ_hkn9QS<_PgahekpG+5 z`AP(uGbzAD(zba(DEmG4*VoTre(v`9yBG6}1~CzE#lTe^hAtgVoO!lRoLSLvc5C3e znrAr98R({+6riGqx2!g&>9DGh>z3i^EUE=vqjM#}iLSU5+3c>^py~ zvvGrde~2-!LtZailuG_AQd4BzbvxcT+0Y<3JWcVd19iNBaa@N7N-OGb6uV8JtbrinDgy#$Gm8MyYd%=RFy}RC-cu$x>QRzSB%1 zGjpLOv8l#wiV1G3?1kNX(g! z&;`P|JVj8^tVg&Ew)(*&a-aqYGg?JbuM;QT;c;{`dH-znQp}GA-L?h&y0V9|?GZBW z9lPA}rP_nOol<3n;4I}8F_ZC3hngIe*_q#Jc}=A4px-P;mBBpEp9?#dZ|-T9=cpQ) zSeUuOOmIc4?MLSs?LWqBo@acuqXN;#A&u+PR4H?60o|b0eh18_>!OGh3pOh!Gxs7{ z8yuAQBLQFeJlCteQ_mDm(>VlEa@i~AE%Y5s^jmMhu${0Jo9W_F(x#ccYMu=sD95Hxm0VB&%RFT->zIl<}1AX2$Zk)BNQr#_M zN?WFy;bb7azIJ?)b<=xd-ATNjHkIWr-~8*^z%I_~{;iq}4-OOhokR zQH^jYx8$6`=+L>`Jo>fqwR7w{`s}+#P5l2%_np2um{z{r2+NyW2FWJR=eMI9-PFG8(G7Wb z)C55RFW~200-3+koAJH$2TJXK(*S!s*`9W7orfOv z1UR>sOknpM;yC)=bSHQ*Ts;xGC{QY)bY8_nJ!WsxE|XTMNO83&$`d_8EXcEHoj0f(lMnykCUaw? z3AR(wzn6Ll+^MBS?vt%fOg^Pjw%Ec_M64%`6(vu>p_2)wZQETLB4ONxC$&c__ly?k zG(MHRMv1Z)hB4v7=U-sjI=9!ip_$oL9VBvI-_~s`j(wP5)%AWF7i9Ej)7xtn-8oowPj=-;+?VGj5Orz< ze2aX0#5FC+nNIEog821(Ql5`b@GB`7M1|nxHKI74=DWoJ^aRChJ>G)j!kp8%PLZwF zs4uc}st?f|`CiU3%RFxa)Eu5~i>@-Ih40;KSMvlVZqz39%i6A+$XKsR zl)YL|yGD3c?ZUdo+MCT!Y|z-19l1+{`uqHFp*O<}>+u)+;r(kHVrTBYC=4(@gYrl# zX032=e!YtPhJ%3Vh(6>E?8F|iFBE`w_-Fl1{bkWjrK-BuXOUH%p z8={4n<$hQ}v%zx2lp4!UV3(qW*hoPyb@nb=Z;7%7+kILI+jT6GGFZ+}q*(!*F#)fi zyAT9LV2%#EX1>>e4W?&v!!18$)VuuLJ%b3y(w-%XZVW{+rNV5mMCf7yU@=!zx;9I3 zsYYvedefi6+4%aVJ?0?e68H1ALnF#Y(%jqjcDlBEU5z-uKQrp)8-cYb%VmCO87#Gx z_N)~#LiMUvRKwBQ?1Hq{^4978`rfXe!$kwZd8p@^{x|4j2$4Vh)bVZ`qzhVEGegr1 z@u3J;FwBO^2k$+}io?kg4;wb{pC@AMu|98O0pNDUc8%YH1iy&E4wS`Fc+DUbT$9M ztcjlq{G8wjX!V1|1)~h#r8Dh`KbhH~*QQr;x%Wn^6aN(Ce(I;)@yCHL=<J<70_hg%~kQ=K<>|c;2=~QC!=eY$miowU0RQfP8s;Lyz1R zzd(L9{KqU(9JH5{wbO5xrxxkvw9VsNF4@o!)vHxiMHPGrX~;STbvLjy_A0f!+SbC(&Uv z*DIof%2yXGUzt)@v_d!c@wfDQ7v4N^e_T|n+;8HU{}$E5tNTemWVKyhl%CbO-Ed#{ z=Syv`QOAv1`?&e?fxT__H-SwJ(xrpzTT<{^c>$+!3Cx6~LHSf>tA*Z25N($nTAxU7 zlLp!A6`lLgvuCN6=W7wBn7W+Ds{WD`A4yp%3XJD#(k122nlx{uj?juLM0G6Lo2?>q zeXzoB^T%W+Vjn`kJA|#gPQN3ot6mChKx^ck4vo5Rs5VvPXP&! zR-Yw}D0c*;kr%mYs<|I=yYdrN%cH>K%j;MPON4{R`oMZFw*2}APAUv7YxUzuybwe7 zGxt)4*z(bb;pZM|SGtn*rmvdQdZ3fO27yU+E1NEm@gl<01bMvkiPjoyV%3fc@rTz> zkSxuG7#XKlMnP7NByNpg$23}^on?9HL(t{kTA+Z53`wgMd+|_k8SgVqihJ6Rk{@p? zrnbvcRM~`0RZBW`P>Ngl^q3fsuL#0nj~r;%J&H*W&3?)yRK4~)7N%gAaA2`6fYOPTQm49DhQvi_}K!!yxSLjtenS zaJ0j$XSu?7r|05m6#tKkU0eYDW0I{H6oQb&@0oSs9gEy&G>GNH221|RO^NIGH;R}3 z%nf3~#rMp6%3Q+W9>lYdwO@n4(|KLN#Kle$Bzg*`zxPevRc1FJQg$X3b@vygc%?kl zKkQl1_dO$GWI^Z^)<@=c`uatUd&@=AR<;(BujAb4i6m89gnQ%`4GUsk*<0gpUb3b)cliw6$?x-X z4LJ=9MQb|ikcQHTog^^rLC5h%prHw&GV>L_u=00Gn;3J}0rUEPgQUH|zp5l}+DX^? zBFJN;LzG!up!cuc%_Gu8zpWw*E1fb4D=EK(Wn`OB5onZ>^i}Jpf>FG?-=G3}5%|T4 zYJ~0VyPkj%ml5v~%N=PG*o7hLP*>dY?rMK|FPgqbMVxEL*3jGu=-q*~A9{S*Vnt;b zWbp`ehlN60=^ezeW}kYWr=P~avG>-a9 z&-+`af$J(>#(G7pZzUly`RuP=B4r77ma;{9~zS4K=Q-Fs>HD~-xa)#nH)!pmSfV>(7Z_gWQ&X7PWjDd2!e^G zC9+;iiHr7N*_ykKvB~DtexvsuG*<0dMQio0Y)wIr)-3SPJw3C0hTLrV3VJlb_O{#0 zBy!bmYW4J%vl!`uqVNNX@51Vdz1k_30xz|+)7RTyP!@I&^~$X7L0W2NT&O>PA}xyr zRhA@@pRZAJproFfB@6d3hkt^$>Wfx0x1qV#!?MBVCh0g_FKmQr)< ziahOd9t+%Gzhw7g<@iK9s)icqeVok!;kg+ixZ-n9;p@~!RtdKKhs1^yzl95eZ7TQ& zUFGyBt=UJ-xviV=?G`kpY7D({EtN~e z0Zx>(^QtDwJ6-O?$aseNNpBHE+gFzSHwrDSfk*8D(}(uUypZF|8G}YiS6b)U2j_FA zj%AK{=SwB8&f1xgr>S=dUW%uGI-U(`)*Gyp6YqJKoo~qb2s)%<)DWr=l&$eFM3~5d z7QuvPcE1=8yqHNAM@L$8V5yM*q%L!Clk`SPRH_k1j0ze1&eXYEN)^hdtrPRwS_Wqz zJ4Slj*QUEdWdKO!ZWa76_H9qjN7(1AaqrT)N0Sz_SzlVK_2Eey^+XX1=(l4lD4gNt zV;AslFgm8vNLnO1smW_Vb%ow;DGOagxVS$TG4~PYmNgZ1=O#}a&W<*N=V4uqb^0ac z@o!7J&x_@;lB9+0?{1qE8E^NZ9rt$cfzI|=qmncn3@toUPi2>Mp$)J5gT9yOj*E6L z=4!bNvPpDe(~DpQ*{O2PI|9h&Uj(bHz!BVI@zS7?jgE%xv?fS7Vow6J(LnRs-Hj;o z8`T`Khl$-?EA>mS@eYcE*=$w{L(2TcV`cq62UIpZeC2D`yt@kvF!m7Tu621bw-WS) z-txeR-k;&Jw(t^onr%JziXktsRoUN~5ZqgleerHr(ThT~l=aX}$Xl*_T9hvZUuYjb z{_|%2`LCHlB-4mw@f?EyI~A18H`!H8?UiwTFqet5e_3B*vaF~SO6`F*>bQhugsb+C z{!VPGPtWB(^eAZ6AAd9Br{Xhb*f7_k6?79Ik-{fQ?7Xh%VNy{Tg$4;29L3aBR+x@b z4;OgkdFJQW`KL(H~Yb~Zx;?LPv5s|wW1Dp_v%RJ&9 zJJyi#wKP+21t0U@Do*Eaa6IeIy`bMf)$T6o&@=&!{!&q>EN9xU<4?Uhd`Z4Nx9mdd9I6>a$#PdiPY2i`My%(8Z0I!1Z>4qB;pvOb zS>WzLpHlX0`{8NIRy<6t2H9N#{1lb-d#Pi*KS-_9nuruqJgK$fBGp+L|I`YNuCw^< z-2rxX_J%q%vd1j6z4EP|D0Fl83=W0((puFzMAm%BAx&zi?W+WS^`C&X06|oF5Oe-k z29|FpuTNq(e2rfMQv+*zMLOo|ZR~>iP;3Fe5M@9qHS?;ju4xK;!=ghqv>lVxfQxFC zO_uW$UsZAkn+(sa_ph*;$c4Qy9{+84qH3TcWRry9Mf6T7+K!xERvm75w7cDjR0^kGZcZq+=Vw5Qp-b|2Lj{J)7m z$yi*xf;<{&D1qgmuX$&MpR*kTzsP&MD$OFZ{Efa~tm**H%zra}8|c82$66EVcMGpy z!F^vu%PdkzHuvNFBCD?~QBFb&4D%~7`E%pf@XA#vO07F0g&m+-CBTeEJKdDlgI5ckO37Ms=xFev9Cr-{SZ z_b2cjCEeic!ZyUO4L0YT*Y}C38 zJY)OBAhBS%#Jlkr72BhrQ#92)Zn5_{7>-MM`)1gLZ0KowMvcm@b=9}lny{E%050K+ zyn0G`6Ga}0HfexAsVUp7MF^EjSb3;dO&O`U`RXa zat3}2*E%^hv*4I;QtpE8t1+sGVtIj5+4`($uS)bGfDGc;3lUy=c?_Wc&26@H;mC3cKHCFB=iisaURLKL5)$ z5^8mX>4{`*C3wi3%F+n~HbEa}eWPZNO)(nNrX6jnaj8L_-9#Z^V1&BL2+5H4yyADM z@3+(vqj%mT6CCv?62sf1h1k+MUo%eHoh>`m!1ZeGI4^RrcA@9;YF5$@rR`rXcwY$O z<88EsTj;NjFg};Dk)D|z$%080$hb295s7&Fyj&yHj!C%%u@UTLtMhM&V*qp>dJw%aWJLsw1$rupRa@(oo6VuZSb?8+gd-)n{(xr`hH3`d z5=wrJobORi{>H{pl&7n$d(@-&H2b@nxACV!Sfh(WaC4n8Y z0mB=G_<;$IddqlS`Zc`R%z_SK0!GBu%{{7kdF#6ITm~B=VO1P7H7@%n4s_xy;oVK$pRK$u zv$Z^9Q<2%bdw#<2Em!zKq5*$iMyzxftGumK?{LrWtLE9J3A$Jj!2yoYtM7P!$n6D` zOKf7jQu2=b_SX#7*9wFYCTN)Oeeqdd&#e~Moh#K$t@7@P8WARRed_f^z6-C^EzPP{ zdDk)Z^$)Odg`yf+$EuOwm2#mtw7o2EaTNK4D|nq=pBh!oaQs~q-a9n0+;~mVv!FY< zQgtom2i`)yX!b{xdM>zE%Ct_5V)t(P&k7acwF30G^rxo>4&!k>sGR8lr=q1OV{reN zzoCP3ekFCdUC&gp^7lr?u|R_qm{My3F~u6~-}R$$FQCP@4LXUSE_?iV1nK2iDR*Io z76}{%9!Hd{Xz#S=c&5Gr{ng^N>RNEQYr_*!!khyotg=Y6eGzE8bTiZ4D8cIp4zNc6 zJwSj1#RFTmDM@ot;X8IGc)7yDcgS*ezajMD0CRQS3r~`^3NzwTwnOHZ;;of4LK4fD zx_Eq>rF#a?Sv46yd@pTQuT+IeNaRP8Mw z?WEr&TI>YN-AMW_O21`-r)#{))4$L_g5Kw`xNdy=cT-lA$M+gDY55Q-JS=@s&Bsuh zScpkCc~n+D#f4~D{?Pr7=HnC*M-B+k|A<;wk2IOQGCz1O{q;Fz zi|s{k@>j56eg1&Hf4_MfHC*&{Bwsn+nR9X7CHQQ!aNcOIW+i<_I8mn2av>vPQRQj> zdHP*uP9p~^7gR{(_GgkbMzcY<&?}8#8 zx;g17Ea$%7xNlmB-Dq=Vv05KTJ0^GKZX#-LaBswrsxNA^SW~sHKzdMo27@x-3F1cd z$>|61ERMXg9IH=u^z{qNU>Wo2)SSm3cNK|V!*OsF*I+>zapx#n84A$b(* zwNaRx7_%4G;?|)Gqpg{+JNgFY{_#wIC|k~$#~v~vRexTJz5ZNvew8${u%Ep9OVYjXZ90%k2!jVhOaeF>=&K-hKMzxFb;!zeyWf=`l2U zUrg74_~r;d7Hv3}>_3lICg2e3QCb}F4Ky$bIeqo*4i1P+y=Lc_Q{H@lLa-aQE+DrY`5c{IPeZ z1CzC8pcvQXi@wKG$4g|Vt@9I^o=r#lT0;x`mS%%*hK1~^1QojFw{;w|iyFS7D={QE zCw(CgT0Wu`8SqB~GTp9QH06u<047yrAtL=AbC7)SBbyjGn(~!rD(WdamtB#Z3*Sn7 z90q*u^@H0Ht-#uGhF6nTez@hjRbP<9_i;s1 z6c$Dvv4e7DK&}ARlZL&Lk-gvfE>Fe?#!1H%b!AgV>s;cy;szVt`Vk3~FufQLN$M^f zqe~5=H2sNAGmWVD{h^-yy^wuNgxWgNU&^QRmox4|TIpE9nW4pFmt45)E%&(dM3e6V zKeCkvLsO)drj|?Pe0<$QIl^J7yfx6t^0hq&edDp+0-W>shPiLr?u0#NTB0(VCq18k zGzHSXZ|Za@ zECMs1^%_&&TaEV6u=M?tFOqWf!fT z%BNgXY}N$ZQdV)V91cw@=r_=l7lE~PKJvzl8hv9C28NGB31f^-19>*8P1eQlbDNr{ zF=gP(xff&Uog=PuK@%-|L2WxpqUkvM!c27Ot|6)?>A z9{pAU6+4BvpbIRD;0R+6SJG}Vz1vn~Z(vWiN>GW^xu>_(ZHh+O@$(syOV`U@gMX~u z`93D20egMRK+|H2QzsepwP5TXXcriI_&nuUn71VVlI9ns^OK&~U85)XN5=XP5RbM> z{n^(X7}ng&dw@NUUTVC9)=5nAO)FU`M-%pJQ(A?|Va93(g-XJNfpacF#B_;i(-L4>Rd56MBIF&iEe19Vk%MXfb#DL-_60ydd zDmmXW*1VQC`5ji;wx7+h+`(E0imBHs>}z=J+4&P|}huEmt zA}79t2M|>t+2~O_f!DKtq<(i6^U-%f-uyDdwCv8ob4)opgXc~b)0`nqHIF&2_16mc zVaM`4&w)pVIxAPrEsM&=M+>|dYx}F$XG0N}qKtp@2F#70vT#JO&88@!MnS#lftpLG zm0yu{&ME=ERTi6qc|54l@8=Ca6A-WS-*0&T?x|8`tdllQQpnXb;ZgzUbYG{K3Mc2cwM|&rC`9Y&{ zp=-`fYIecy=wRsHk}t`q@{50cTA_Yn`2&Rqb6g44?@6kK0~{pSWA8d+l9&Q0 z<6eZL44?>FcwNYF(L~71#3$mQ;6a%9V3j0wpU;LJ;9@A;Q&VgB|Mj!7hQ!a|E z0po~?z~c^HBKtJF-zD{Zk-Yg7`R>TrT2!KcnW1;b4HLku1Q-Br^SVL#-mM(voDrG! zz|{b?LGtRA^4uDsCq{%ItdSYUgxNdE-#`7~AS@TVSNJqDoiHf!+5sh$(EZim_HyyI zQzsYy?zb^|+#}?Ggh9fglxpjd4Wb~lwYon*=LZhFh|}N%L3k$$2*e{t$ zK?X+6d)irMl23!iEmX-M3$t$<4vK9{%i`pBzJ!ESZi)vx4EneM9g~~Ut&1i1x0fxP z@$OWgCs*%r-zq@YN+k2yiA4e>NsCw852|&DBFdT@+w8!N2@J_u^vh`x7>W<4m=Gx(y@L-RE4q(<0fn%MB$L1^^yWg|& zQ}9}z@Fx#%>Etg;>{S1`S{`m0-P4VO?FgV%sB~d9N_t5#O?Gr}32Y73XjUi+{e%_{ zt-aN)bsU$Ou=9XRckdL81FiyeBCmXNN+wDkj*QVu$d-F$A&l zISErMoeJt1Z>aU=nswC{$OVOM+bN8xBfH3F|CZ~Y7I29g9a%YA)z( zwO#k8#c%Y(F~5&w$F0&_NVR_?+ma35sg(*@wu@<9uC8Me+(>1G3@b}4BInKry;go~ z^fP@3P461-C46;RsT?BJ4O!T;;49|3EnJ+BZz`&F=>QI0R=*ejPjlb-*3=g4jo<-M zEJvC&5k0g(K*Z3?5v3eTXbGVsAcP_{AV_E`h!jzj(0eB|5klzTL5fsq0g}+05JFHO zp@uh}dq2E?!kv%v>}Tzny=K;0d)CZvst&$%$#p4PZ|I*f7MqgFXbYEv^Bc|;qKq4AE0URJVpc{C%!!Dx)M0(SL?=$t!5;n@Wv|suW(18F(5OXk@%g$ zXTUhovhUE}@}}LJe5U1MW|Q1|CEJqqmRudL36^HuWsTJWuXSCT1#k{)`+*N$0>v)4 zI54$aY(dnU2>edQQ=yE6Hq5lM1MfO&($1%CXF9o4+}CTP4C8g!g#)&)%z~LW$(i#F z4TmFF4I^u`BLNWTI?f$e-y7~aD>q!eQm=5A+xS^Kyx)cq>!?CL&j$@vNk56e{o5-+ zvCNh8jzb;3TD1rcC|7MAiO}G&-IhCT5XCirmuth&_|^Qp3skZ^jOfdms=1({=4H0= zD)(Ir%bK>S{-7r&uV6nIRh)T#)5W+LG?Xj+t-XxU za0Khl~sK3YB@4as6bMp>fvVDGunucj2pACd} zL~o~Lj#O$!5?vUf2VLq<75Fzo653+zL`3k`^zsUb5irb9Z=tkJ;sz<;S~2>OS4H`- zq+jb-Yj_TJmuCDN>e4#Hr0n5!hKiAWzRgLo0Q#Q@|XRoOvy2IH{NX;Y4_F}U5(wjw&*uzsT+V=K)lLh%X zJC(EWz-^9^Tvt0zel5QVA5<-roH#bc_jV6>&D%r zUWag1S0$tO!Rirfm6smNlE!(EoS0Q3XfO5GM!O?cA%r8Jlkxj9?0)85@hyUv7=X<^ zK_ZsO#B*VVV!1t%6gAzC2-p~Jl>e^rsS36KAhK=#_B`8gY>-ZTV5Gv%x(S|f z71;;bvZ4JlcJ`Mrs=XMh&fQ!Pwoj<+pRZv|Yi|}jI?S!@?&@6MA*}D`yQ;A5=hkKD zVe5*GWflwbQ){HAO54aw{Kw@ojCXhdMKw#S%foZ2D(P{Ery_LrR(#DAe4^>X_irY4 z7qZ9K%}`4N__>pqd+NoRAaV%=dr|jrP}u$7Usz1ovi?vjO~d81%n*tZ9{7hCKAlU} z*mnhnZsejOQ0bHJndS>`$kIPa!rmy&lHLIR^PV{u>jc>PDv1}c_ zo}z1ORt`*jMv3B&`ZX&SHpPJLXBu{A#-5;sqc8jm8l&Z0=6UQc7?q`Awn%f4wSian z4+g04@3TJtf5Kh4{}N=zs#=)7N`d$uFZk}4*mwD3mQdHBJSSC~beHBHbsNsCFjoV< z{r3ve2f6w|v~=+f-&VZa-u~^WTI&zFF7L#?77c23nJD*wkA~DXW&yH=iL4p^c-5J8m*>6=o z4Qxt+=BR#E+#83dag=? z#~RaZAR5opC!4SDuq_J`8uMF(e8%T(%_eH@j|x7$deP#bKDez-!TO7kF$v@oZ(qm# z!#fpCTlLs%4G{J5MW4j27kB#Ey^1l$srVp`bE&9pg}m&ZV`pM=Xb8Sh#9hHVI45B= zlaT7Zg@+4e1`f8g>KSPY-3Sp8fP z(a`leLR}du`AWb3P|tY4as-2YIAi(%7Z?Jr_2DYpTDTHMw~s5x%+A0L8T;fx07IUnEv3BaLVMuji9!?RylH7;vC)YexvMCX{ZKm5{+kB>%!dto?_Bl>(P4;cWIqYqE=lT z3lARly^PW7D^e0oP-ImralFG-?b{PQoO>vcLfmbDiQEt-rt z)5+*JfOr${P^DO2aw(5jx3L9n3~;LM`Soy_g%jnI%nP{N&%&yJ)uta0zYe!bepAfV zvRZuMS9SAj;eC6Aq)l$7qU3QM>fUGl0Zt(R<*vh3t}hvlN>+810!c?s&Yeoq;PfC> zRoTv$uNLJ$KzH0~*Lv0^NFR4YM}&6+J4f zjY$m%|EJ!NF#&;<8$mjV^%@+y3Yq*dsaje13dDZyw$c5bJu+`rza~$4>k|^K69w>c zXwxzt(i=AxLcv`rgf`B^Tm! zw=4IL72)Ok8*-T?rDqSsu>ve!l<`I34Cp-1<`w+@L(DUmVyVO6v|rRUDZ~fv!JvAy zXdbgV5vBWfq?G&zUYSsW=L9R)aO|m7%Jp1G6q-t2Y6Am-P&iaY%A^tZlO4zSlEQ~7^i&Q z-ukIk253xaFyzhA8@aV0S#f`q+w&zJl+JYEkA)VM5Ax7zBR=bJ>F;JHYHs0~`m(Vmi^ET}(^)7Di2iiS`#A}dXA^%zc~>QVzOrz>b*63yTWLtPhMf;CfJB=sHjA1@w(NUNC?~@V(aBjzAw$S#*2ZT^Iq67CvQ>tA* zF&91Uh-?4**~TXxX^onwf~Vc-uk<_}3Tl1m;m)~-I6jtvu<{DjxZDH3cMel|ejh=q zVmh2*K6}igtA+ZBJ`?}av;q%;z#uix)Gm6x)?lWSe89{n?M$hn#aGn^%TCFujvRR5 z{SygaL=|A(g8_{tJ)RD0tt;X1g7!N!Ym;lzmg8>?*S2R2)C0n?PX!dHQCY7y+cvCC zKrnHHGcnNHS_ZZ8X16E{_L5r>QSGW5?V%*^JvxIw^c>sevrDH4 zZmRs!gf|QJAXf-IbYvZAxM0@KW!{c-)K1r$(mm|?d5+N56*D8$Gdlw)l&Tpl<&K_A z@}@TI&d%a&bG=9zUac|Qa~AcTMs{TM!NO_voiP5*J$?t@#Qjmn&_p05V`cobduWzf zrK%;2>Tq`AU}ri~Lk1|(1E&-N*JpEGOncybLQcNO9uRgx(T>z#X+Z+Qo9_+Dg}1@$ zY-aPT8#j6a-NMgkyLQh9<|u%|an5b|luL_?@XS1`<*NO$)OQ}ciTVBZ?ixV%$)91m zlSx^XQF1w{v#e>x(=}2=TlhZo#~VBP5L# zCOEd%?B;?@wZvqbKk&w^)g+iF1NFLewE-esO5xe-<-VOq`QT$J%ER|jeM9=dtAfgT z7FODa=(Ss64oefd+&S*cBI7BN2(#Ek$frkK*zuOvA2KVx-f&3Eo>ZF>TDNpy0r`Cs z4sa``Y%RD71#y)t%xz1W;B8BWGSMI<4|Gm!oXJ5Ndk=g@I2kTKH()+t@-O+3L~$QL z-^-(=ghv}NW_P|#mpmhn&iS)MeDJN5%p@+LEW6mFapZ#4_nP`34#+{jb_V4NbQ5BF zyBoY|7eX{I8(L>&?Nonk8$Ti@_ky#NvtYk~5%&WDOyj$C!f@fMqP{F0sH3<3k^Elb2kEY1`= zOGY)OoQ`>8k|R_;w-|+a#hT~p06#cWp{ue(6Zj<+OaQBU!1RS|pPgsH9u{PnZA2sc z{5?DX`)-mi#!sR7)a9@EvM8oyr@CL=v65<6 zv4J{FRhCT(?EloSpzF&DZ6_KwI6fHrbhq1Og`|hqEWf9ys|<768&q0;-=IRa!7}y} z+k8p+kM~8p%KL=}Gqp-_!tvkh+Rz!y58}W`Sd9IzMA_{HK?GJ&qw=WtAu|mx#Dk8i z)Xrfpeog5>NUC_eye-~a@yQM4+C+78+$34=&cpUe;$6hvwC*w9q8lAj05p{3gyZve z{64N9B5L_Zk8-kuZON|>w?zfk!KbZ|;`G2p4qyZ#U7bF88tWZORYi=0WWLAsEw>l$ z0FN*wA8d!_ri*@vBDi?vw1BQj#JF;mRu^!MC2v4w7Vv!m-6pNzeylk_kH8um567%b^wiOFzMbfbi( z)Ggw?pC|soR^CR;FVB39_QjTxD|IV2W$ng)$i3iON~g>q&QxK!aHEYwwc{_18|uHR zN_ve=-$13?0<`K2Znl+dE+GI{bI{n`qhSk{ka~yev2*KwDA2p_$?$avNB@z1DDsv$ zqTK+OO4Y+SNRJ*((aM}`KR38MqBVP;i@5XTLC2JTxqdG=7uJOZ`QL0sM^m^ZqET8* z-y;H>145k>Ehf+OYfgK2L!J#@2ojiC>>2Vl_e(6HTpG6z3c5%Ne(17zQ8ecbu2*%L z``dy577>pa%mQV08~~fP1W@bph>_XXr$I8sylr^(mOFX%d=!Iz8+7P4RC(!6#Dr-X zT`w``c)W%YnG9?|6O-~+vj+mis!EXwGoUeLG3d;A8h5NsMZjO~yFV_6Al{e{Oij9t zWk|R2EwhgjWK%p4`R2psRi95o&|3yeAgO|p&$bJ~U;Rb)kX^loCblQHi-ED@TE|YF z>L8}PdH%=dPc2>~0@*DN*_uMc=JNf6$S9rD)sOt$G8^W+W#p{Ht&Zv_6oTE-7w#RB z_|JYfvYs@mRD3A&cI)ZHiy-~IK7*e*k=@f8;h*%4UO)t#^os6b;huDCbcO~pny2Uq zU>#Do4yu#b#_5OxX_6@#xAYo%W6*7f%|t0xTM$}}1W7D}8YhT7{z7it8`3WKCy_$7 zS-!Pn^TZ#^v5XXhF(ZRx-<%mgMDdP*h+SI$*-PfZovW_DoBlDGR-N!QjiuQ23;K}n zK`2HrC$E>_>YwBU=94?N{;n>Y2MM8GnKN}y^Z(l)Z=l<7hLW@dv`{|az`6e4m}p7j zn)!R>YxU`N4%Uobig%+q8msknn?DdzHU_2Cn)WsxT;Du~~6j9p*MZXX}x-Sn4ds zz&W~bEuUZYA>g!9A2`Q%KJ|)Jue3~SROBD@yO1wkMR>dqa=3O|VT&Q6GoiK#%vpMQ zB3e^uEMva4s5Bw-OaI@1ugYIbc7D2cI)z4z249WS+Q-LhoQuy7>FBbPo+Vg$nH&d# zE~n=uv%@jI_9eKRo{*Mf?oL>RM?BUI>{R=dPar_4!uS*wUyKj*i@Qk6>`uJ|Qgw;X z0^vAPDyoj=c4yy$QY9nI%Qq!6;t7xclUfiqEE$3F+g-b8w$k^YhYH1vghGYI&24Xl zkI@7@ThRE?pDGPsLbbx}P|){#@?sR;f1+Y0^UA`{2gc_f~yotHMfaJP!^^QPfSR?o%_sY;tv~3q^hTV&ge2 z242oJUwnic)L_!PyXqrO=#x}N1ARw+SCG^gtar)0qTZLrDw-ho%wDDPYd8Epq2;ZB zTj2a)wQw@}p_F)|kE{A06?Y^I-{w{~K{j^vx$Tmx8k2Au4-JekwuQI3=N2YjP85dx zB?9#sM%oHF+?>n^gfn*OCn%N83lWyaW>lM5?PjFT1;8RuJCJL@{P1R^wYviggxpOrsM^TK7e48E_`{(N=}>rC7nNmMM7?i)vOIi^;So$sG(1c@gZ>NZ3Z4Zbp7*NW z2?#zGjJ9cs%taTMJo>|j+kHNo#IGhhS$DoqX)4D$(1>sa&%J7HIb+v|cQjwzo~t^0 zktyftq&!x3smT=rCntJZR_Kftli@SKqW|2=!zJ^_O zr0Rnp5rzZ{;kO<)Aq#V0i^EN0F%_ubyiq*+!M9t+olgATmqr(wRl>&CW)$|x{(lhJ zf4eb*m~Bc8dKK3sPWMcPLKMsjV;UjtE#T2P8Ca*#?fJ?oHtguUDiO-?ItDGUMg1=zL->Ew@qde@ z7L^f)xbNL_6KYM+tnpYK(Hr~al!{?=(72ZNTfasMV<{7LCvs3=iCHws+_HcJdYj@| z|JlFDO5^v-fKh)Eh@sKR4H1U6v}_~4rk1@`_GM3l1Pq0q=7y!)lSof2qG}bje6}fV znuyl*V8-J_<=+nC`!MHk*Ca7(0)x{C`pvni6qd?4>lB-ai7Gv|)Wz)oYdlr49e+q` z{iIvmgKaUREX=!X9{V64d-VMtM&S3SRWlj9{W;zGc%U+8Rn^9c_@(C^%iHUs-pRP< z?+6`wquNch5~eDk4q;Gp{y@P!exJtYplD~Y*M0LX((&EDVTrQ>J|{?a29odJnmP=J z>0~J?pDwqH8?{FkVS4X|C$&85ubyZ>7wu>3ouE|-l)qpF7ldUX_uyCVp;5Wk1wSfJ z>_rA2AyYm;3OY=bc$t{?%>NVYuC2=R0-dH+{3WiMcLT41B!{(!WPNVbu7CPpfjVGvKUbu4Mio z#2v<~XXMxv76IdrCOkIGk=;r%wR-v?qop^hHD|QAy-$3m;8;&iq4MHw=GJu0%{NaP zqT5{v41FSFre&Ksa5RP+*vs1pl%`k;ye`vL*&vAY4T-{2O2cDQXB1|z=I{6{3`bA} zg&q)mSXR>`aT~uNx%lqmb>fe8wVG&m3VW_^FSKA)cFVLJvvC-d?p2C_W}<4mJA608Te)<0Z)R4mL literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img3.png b/Term Deposit Prediction/Images/img3.png new file mode 100644 index 0000000000000000000000000000000000000000..209e5da0a70f26fca6f68b8eaf8157350142040f GIT binary patch literal 29297 zcmeFZcQ~7W+%K++s-kvLv_+K`wQFmw+Iz3st5$7_s-lW6wf80wYQ%_DRih<#5=5wK ztq3h*#rWO9_xqgRbDp!V>->3KSFYYkklY2ih^Ccmn z>LfnS^mvsykdQnjRa1Ik7-Wq*p!74sM;;L(UMOAStIzPet;{^SxfgGFwOhZ?KjRll zK{XuW4^eU3w|%myO))MX1ubzldp{jlZRPwkF9l12J8%y#+Sd{+!3rDjym>dx#ir4j zr{(w{yfSW<^u6#cUA;d0$fNL`9N(?r{&SK%&I>Iz?jDka*_GD8@cT{?1KT&&UMK@s z3H-i2P88$hE5LJ6!Xp;A3cjzICp%oLlsF3 z3JJ*{wzHJS2S23Gvk1jZvWQj{7$=6pUuKDwAr&D0cQX+7C67N$pjRxh;7L;W%Q0;Z z7n9CqGQUE6PB6oa?k+V<)M4J1mi4#)S>Qwt>Wri;oI&r{pP={%`Fum{cm;+_ocl+y zfmJMY&)VKEPB?Hhk43G$9lS?vY8J|NxhQC+m}=K$i5ZJhLc~x3 zvNcL7`&X9D7(VpUN3LD13$#Cu4WZIsee6wW2af#BX~pF{HIsjUZKV!?gUY2nXjzN5=#I_VpShq;i!1 zPL2UeNQ4;7&t+O5g~G>6<_izp=SCiiaGNlI!!v^yHScL|%_VuDI+j+o_S8R_aNM>j z-j*+l@DN!jIN({Hs?m>VzHKA5lYxBJU?$50&%C7>x15D7QlWs;qX}!1@^5Df1S8sX zM+JOJn`i}dgQG#0CJEKXMiYL)CS+5-9x`U7krO_iCR`3n-rD73ul5!35^=g9qd!OVk zvJFy)LU*gBbo?*7e;OR6Hb>xg8PJkFV01Rhssq+rle3YwDRmL2x+wMO&B4>q1D{xg z0giWdT(oR>a*akBRa#OSUO4(4g^>?Z8N@Uz_?Bb_r~U%}n9PLU+&PDc7@!iHMC`l{ z#1zU;bF4rsHyHf+Y~0q`rKg^)ZR0U15-O$;?ts=+xw~G~HVy7gX3oEYO7E{#qhS7W zC>i|VveeZkK^0hgfDvf@aqb4p)!$*_krC6Nq;I$E041o|F>L3W6rs9Yqm?6L*EVO+ zuH9Kfw_#@1b77tgiH$xWUtQ442nf!9EoV~PKC@pW9*$RE$eKAyLTQSzo77;pquK<- z%(ovcnntgV=5Tt(<<72At_exyhhwcx8KiDyhGcIS?@>V|34dC91AnfUP9iwydKY) z{MI2z18eMs6ueci(}X7r$J)F5IscJZ79#kCc+0 zB7(IJR>y=S!^(7|XReLCTez_i6&3L5leNu$hu3CgdP;!mB-AOmAL^Msn2ol8E>Bp^ z{^7(Cu$D73qX(JO7jqSz<;`+~>)`TlCq4T59R+CxyT{2#RbFH>tELLD{XSN7CnU^26<(Z8rYNCd-^# z52KSO$7ysS2e3MoY^SiTd+T;T!ps})cKC=yH5B!bu?@Onss`OA_tj-lc3U%(r87^g zAd^`5LnhnBWcZ$^Y5|_CZtKn2Z4q?VAlq)mz|hvYZIhKGuQEJpRZd#@r-Y$YRo~gf zoZkjaYVxhl@vB~vm9AZmlUJwTI&a$j5aE-OEQ2S$-=O!gJTT9LvT8QdY&C`KJHdy^ z#SUhw5*KYl7v=Z-diNUq^x`VLdAPT}*(IByQm6N+@jVA$WS-{poty4xWrWxdwHZ_; z>~+BT*W00!;a264S$v7qG_rHv0FG1)X=9uw=vh zzHx6ov{0vA>Q_@G&e1p}E%+Oo)S(`R?Nb|_qEShG6=HJmH+HkiVr&!ro{ZDlzBRXY zkC@We?QaE>C)O?>GGQMm)I#fRp`gkJ_BV;Hxp(!J{GGTWCpknxhi_=%O=E1i;#emm zjOWpp>C%QT?T2RABNO)n)J&x_d!^wwqxWP`*W4B}{~6fC9_OAIzGY6ERmRDLrx#T^ z-~Xmg(Oa!;-qNOIvd1` zr|BXn$tC21X0j+7YUnwBFuB&~7kShQp|Ge%J;Ez&JE77CnORtcrQx&KJ<`MIW2J=* z9hbk`VOrPk@Kv{w*(?TtD;!j|a!rVnj|w9h%d}0DeT;|Lfa2;O(ylm>i1%pbQ3d+WoW{ect2>EezPhoRf9F4p2s498Ub2>;+xGd0Sr$0yOVzOqY~K$rgK!BIqSc+0`^0;5ZYG;eVoZcPY#*l>;p zyJvCrlF^q+L)UWFj1`GU`|;x4_a78*q}uQ*!v`wrD8@eC#Q<;bj|gjlFGZ47KnNR6liFT(6Sg?oII{E8S6})# zA?5YE5Fv-xYIX|Qk(pN2<+5#fhqvtZU++n({E+}QE{O%Yd8VC?Mn+@%G@Ds5MUyv@mQT^X zO~q1W{+Y1Nk(>wE`|N`|f`g?xFx-31%voNoce)wd5{A*Ytx((d?~DG(@?(IjTgiZn zVAg{en~FQr!HQZsvZVx*XF3uQe}NI!TEnogNwS0NxZ0<`KbQEzd>{+KyYaL|tCmB~ zeiHVIZF#=AZ}QS%jX7(>!Bx{w(*c-jjcCigdZuWj~b zG?IRL$sm>Ojn$DWgVm}w3$!gl|Ff%LiIV?Y2%_Dy;Z33I+V!zRC6%;|@V&41P)4xr zz^|y8^OB=rHnuGx^St)`I%(c=jY`9%R(Hg1eD0zI`cT_~13ZGs?L(2ZhnsCzg#{}i zaz}1%VuY-@2Z@8Wu+s-JmRkSLg^Gx9g7kp^|Ap)GFzniN@qnIq{i5H@{dP^D zhCr-?S45B>JC`S!CcoVg>+yUilK3ED4m816&9NB)m46VG#_LDD2pRuP7k$$Nj(FJI z8fS87g(;tmzACERn|k0CQUcTD&dtidQ>pnEdzj3TjCq+q3dg-l+t{2J@aOO=4ZEoS$!M|zCJ71wYM z1i6dMx&xWJKR?25Z=(Av=Dz$9o|Tv5zG`#3iKV0Y>zyRR;3s|Sh#myS!^E8zNl6a6 zQH*JtTb`^_(?a^omxh$f$&Xy=^Nc7N+Ote4c714{?( zquSUR$&LB$y1C)f!}GivUk+Gsa?TsU02EbF(OOrSQ$J8H$E+$>iF+*TN0bdTVU!oQ zDBZ?AyL+C*$hB`eY1JME*=%Q1hS;vn_Hz72o?95|m?>K#%iR1xE*(<;%qG#pt84~s z^fP^KIk@xioQ#cf?nS6)YLx~~oGSudoVvxcX1?_^xvYQHakjS)s5tGzH+-LIbFk{7 zQjQc80|?jkF5%0uD|xo58I%3aQ2B*SoOy#?R7RF#%WHgbGh{AeT_WU9GkjUjPObr; zLp{BOpwLOT7da4aAbYnuQ%*4L7e1PE?80?#GHbU6Hg}+MXz&+lrF3Eup8}F#K%cN| z^HR@kGQV+!ipvQ6l~8!je`a2KHKn2qTYS%xt(r z?M$EajWr4nBtdoa54P!${m2;~v;IXSYB}7ql^y#DY1U-wXp+9f?7i3d0KXPIAr(RG zju?cn)eHpx!E$#RW-lV7-~4_zJ1 zmw>D#LUB?>6ClW|k7c}RBB)&%!6%`T``PYm?${)Mb10nct?+W#K-)1)ixXM`XZ4$z z7c!vCBN7^9OVRBvEGw3KviuRtl*KE&J}*o7VJ3qZi!xU-8-vc}wWV&|xx8cme79zf z?R?iQ`q&kBM(hF#yX83ZN|b$18G8e@s=eupfT2S!`Z0hueYc`;wg-!mWMBG1nk}?E zeqrhbDnP~)e%PJ;XGw>X*K%3g_rf4gLul?%1mCr^EWe4JZNaK-nBfMS3e4JvROd7p zP3NEOqCpMK0aNHo0vNtfKkd7*p2t$3Y45x1yg9Q5&FQ5w?|UW|lHP5@?Gjq>Ny%}m zdh)0yC1L`z5X?a7rsWfqwPEPtH78-tF#T2xCbE;USIXq3j4?6%P-3?+s&2BJdp4i} z;+#!Z*>3H&HDSpqKk19aX>ToMG^$Xk`nFW6|eMUYx8( z;SqRki6O^`&`iddN{rAHE2qCpGoEd^Nxsjd?!MJV%7r#ab8GPp&&Dpvs(`@C{Ix08 z_Q^bdoW5Q`cY4pKLAr2jfQ)&^a4Uk9B{gNy>*(*AVMNaphWpf1yL@R8waZ6?&UJsO zLig=hZ0q1dUkI%D?=dWh@V22Rolk!!^Bw&30L^@QXd~WEFVI3*tNV+VaQE>k5^BCv znGF_%JbP3nV_hzpL$)kwL$%mM&@gle56(6=Ez_}HI(#TwdFc++r%!PYJ!rEeN21vv zH^}6L^0heB_NU0=E=Z5jVzR*+lcyWsM`MoQ+dQ7wpC29?$sQKflYalQ=A&NttgYYo z$vX58HlQ%}{a|Pplp7SbvNqP#G>KEb@f!bm>c@mLA&YU)*!KH|OIW4XzOJC${KVTo z&K_ek1A!V8MSWStXAYduisqrJaq5>8dpe9@!jHqWu{+#*%E6*N=r&~T8##e3pTkhB zd4x|f`o3#-e@!JAat2|dI#3>_bGNc`7^&L;Da6cZ$QQyQDuyx0rl)Hh?z_qyT9_fQ z@4AjC2+I)83;B^G0>plMXTV{0|w?ky8KQ_7DBx_m|!YfE$88E zWt8lG>Xo25aUcdF*e!;R?cJ3yMMtcY385P-^(z>rHvH562ymee3H#SQu?B-QF5Aifv>P!q-?GvJo23jJ?^N&vpQFs$H?v-yZz&H-jS#CQy2Y(tBFDf4Qv5)r@<` z;f8Hsa>*~vj{CAC#2-au=tzG4@@75d46B~jQl8R(?*A8gMB=BA{NErX|KEv#2>dTd z+y5M+U&M9!C+O&_8PHpvSNHYxB^|U+4zSx`T1RXP{7&iLdUeR zL+gQsvFo=K3Am}Kv$c_niy>N1gfr5<{fS=+ddmHlQm{cL-2kgTnr_;|w39Ad%4z;A z$t}`j?zzU0>yc?KM)S2T8NK^-C34VQ!Yx)-)Upsiqe<(wS-)86On|@Y8P=9vKF^?o zRTkm>J{-0u5nMmK*U0_>D)5l9h}lT{`Peb-{jT^@-KL&|QqVjV@V?B+ttaiP`)*B@ z!Ul#lrqr16st5w+UHaqAdY5mL4fvtA9Anu|`s0Y-Az#S(X!~m?HaPH4I;REQGeZux zrR+*bmK2idu8SStg}N^_aaQJjI!to?N#kGz0zWnOjo9*@wFLo z0Kd>hAG7O8-zy}QN6@O8{_iB9yP5p3dfWXk3A*2|VE(4UIyBFW+yH~JF4wyoDMMJc zGkmU79P{;$Kh&`9J~MY4FJs_#8d0uA7owG133I=;<%rc0YK9cP5iyC4N)ej^)s=BoU^kBi$dQiN%pV zESwx88R3-W7UhFN3)KieW1t{D(RdQM2gmY21S}+_(x{!P&AppVktN6i=K98}{Z|O& z;7`U(hDJ4kkvDVC(d$(c; zA}#OIqi6o9j~G((>toV_kyl(y8mn$Lo5xLrk1qELd*YM6qT|sKYkN;}`0fr9kQMB; z7i&097Sl(ou1*MFjZ?E2?7+2QvNuHnGm!#r(=BzbbRD+J=i|0tf`47Tz+Er(TC7cS zGYd(ua1IF~1dam&Y z%GpROrlGdvY2!fqX|L3e-e01Jp~JSZw7)x=CMWd@qqkl*;$pw9dVM%}o1Nnj=7Ux? zE_`{c>Nwl5Yn{NFVS1DSx5R5` zsVTf5A7O#zB907i>=@v}f`Z6>We{{LVj*XolB&Gjf-h4eODO#$F$@obB5#bIdpi2k zP?EP|?6q6-HnrDwajRPbw%#a1q~ZRp3UAiwC&Kn`b{opu>U6Lb+o8>hP}Uhgn3Wd2 z!itBuhf5Isfbo00&M3GV^R=6AI4si6|AItpbF@DgYDzFNFYGB~xfDG!+^0sn`4ni9 z@5X(wRXuA*vn|YuFe?cobCIN(8@|H~BJ2KLe%P~Dc{s7Zzp}+!*Xvs}z>)LkTVH(T zM^!(Prri{#ZTASBSY+4y5~=2|knL+>#BS)fc3Y^g31RqQ)9vSG<%p-s-D0uj%f>38 z%%YXwTu#ls=I2?|j_;MriHzm#HR)1}bN~4wBe-Mmc@{~xmUEPkYi2WPh?ThJO1td2 z@{^DP-%y;j_Vaj!|0M3!T=};wl3b_I`+fdV;)&{4a|KYq#-54}T{U#iGbXBe_lf5u z`9l{$#u9}yHyX}EDmA?nsWRSp*jZwItZtFia1hV7&+M||5uo_m5xy*(RDcH!XPDIG z1KQY1z8;?J#mnPy;+g$Ta8{Od#Dk;Sqp`G@QRl%-D9KW?GluIBlIEED#k5`{z5!xn zl%MXz?B=c;+`|t90rXkZ_u)Il2=WaJzaJ=T%+*=BP+UOF%MXdDs2pKg2y=du<5vpk zY}daNzY^6q*`uo>PG?6z^EEP%bhXjIrp5Io12JEfHs-#&(nCQWYs?1`4GF807V9>H z*sb;fRNb>mv!a=zmhV)Qn`$Wdo0rV>X0=8oXIhg#O0`tew5Fh_4B;cu@7tvcu=4b;oI@c`rm#jk;OssPV$B z{CZZ`>BkQ>zw`0PX1YNw&)_V~>`KO`emrE&FqDut{9UA?+~M@)GEgV=f(UP&p?le* zhLYdjRoTcX&*aK#aWrkxid<;=c|hmP)AIe>+gw(R*N+B%=2$)+J@^F&k!|MMZ{cQa zg#9?p-fRUNy2}nkG(Ee`yOS6Z?V3lz&&kGb^Dm5OZHe#YIu^ zM|~y@nQ>j9ZJBLJ+$~bV6piZUGwhjr`~6J%PT{@UWAgnM%IDW7n5aqax~0s3GK(b`g20(;v+)z-XU5e4 z&N3ZzsS*%wH5M-yxel>lJm@!OT}23ohYyxWL7D}wOy`sUR%3RdzYEd#2&~PSalbXrG^K+s zUREZLzsqkqQMRX#jUlh&Y59CSJf|C$Lvm=h2Sjovp`9{w40o--u-#SnOlkQs@~?T* zQrDB=_<(KQ0+keHL906wgzfbwDiKb=u^1vbkHO9l&u!0AWS$53|3U7GmQ$dZf1^Y|-?mshWI@%+JK*^+eNtJ|=uhOaluvgZ z2zrrSgAI+1RuQrvI>CK^Whpz-t{i+N?{rhcykm~Nu&0~`H zU2yif-_JHU2A?ZE6y*hH5wDu$R?-c8poX&VrQ(jxuZYX8p+aF{)dzQaGDwe0USfXOvYuVo> zW1fmd7R|!kFd1J6du>kQ`tYR6ncZFpmHcar{RB>ZsqQcir+89kXwV4%YL06}Sp5F# z*?DvC0BDeE>V83JgUkFJh7pEQ1@;D?78#Sxj*!zCpjJxD1R3nDd^_W_v2SxkiL~<% z|EWFf-}m+lb%ccU=XIc_yE^Vp>(UMauxERQ@T~V<-NM+ZU5XH(wzR_B{fd<;(|sQ_ z9Qn7E{Pu-Q6-ygySV+6M$a8946#Z~~*N+kuIBPG8K1CfjjLmYVyR|C{b8mSD)2oNm z1D5E|QUYU-ZfQ0{qFQrcSJ&K0ZNKvS18;Cf@Whx99G$E~MVY#AU6(Sa7fP zExamj6@T9KWLP6Hdj-_~li?SrDW{$f;EmtO-?5yw<{O|al7D+eMlUT3K(25c&K?L+ zmJa4fxStuhGYC_=-ShGDY#|Sv$lM08H5`UK`!z0!le52d9pWa?H=2>YPn8}okSk{- z;`}SKy1(XJqI}EN+V{|1XQ%JImOD0#i?6GYL;iP!Ux0z)26QN0aYM-_2e0k27@z6} zvkgALK%&yqscR86e_>M0p?ef;lE?scn{rnfy-A1e4L^aM@1k#O=4R39CipI%IXbni z?5KB)Kqpbaq~mn0Dekm|=?-i^6&|lNVt{5ilX~G_D;Yfs5m!#p+GLM4$mSMpe*lSc z3K7=pLo51~zZ>_cbla%()`grI+}CP#g3;8jE^eFK$wf>NPNO(+8_1qI_uZtCIX10H zXG$P(#30(%U0O3lJ;R2863)~12A-)*cM<|SO+{d1AB=>=Al(z>Ryd3zrD z{*wfuJhoe0YIX2}$ll2eW3Lo;@r`;!Sq1l1a?_Q2oNgFoXq5kZ-OlN)8Yc#ii*PT) zgUIXoDwj{3Hwr1`W5~zFm-qXeW^?-8vm!gsn`@xt(u}!28gwHH2PoF0l8aF z_(YZd_r59>Si=`z{!qlT8VnnQH&}B`ImIo@V5=~njE(ZQ83l%Z>X#qABb*7b_DBVR zZ*D-grp!QC+4B+6u+M(C%sp{B9jom z8*k{IN-tz2R{*LSN8fE#{%t=wPb{H`X%=$%C)zIdXHyiCnRx=ebf8r z%Ut~JK(FrX{w7#5T;0$a6g7@8$uQ=*D1I;h)TDHn0$T1>rntbG2%cMI`Q=u$meBZfD|sUt}Z0RYzeW^@korWVNb0#hdPy% z*$}IP3y@$OHiD4-N75vGw0iLc$IUg?wPX+DZc9zlt5LiVjFhYbdcQ&;`gR%Sk@F`# zyqj@T;NjFq_y?8#s^KtKtODr{*!QVX4N`WAg_~zmFT2I>5 z59g^kWL=32;AdYV%*^H!5MrHC#O@B{Mt|>_e`i#cy!U43S(@B$YPgVuf0p1RX8pfDvfhXE zC1n3n1s_vWovqJ2dU=w(B>%Y19P;BTp4tVX_ey;idSpn_6$E+IhWY@iLBS4an`XcR zxPVkTV4PdRL`j8vZc6N-x6M5oiE(iS;nMX zN-U=I8K-G!hc}8JKuKFR+@T=2)#qTZJS)Y4v^%gmWrqo+5b+BLL-WD`VxHGs3~csU z<9LDsHHLldI>yc<&+mRj8);8M_Yuk^n~H!-VFczljF57Zc&V=Xb#QIMu+$%Q;mgLh z|9Qi)zbb~WXzXH{hl}|u9LZ?;U9pHajPB@du1g|MqWP+TJpc2%EDY!BVQjL*&nGBK zcTeEo><&myQunYjv$IAclt6~y0Ngk$i_PhX6rtcH$$gy^k33WUq*CJPZ9S_3S_VM8 zpVF_`i*4PgaFj*A5e_mv;4?nbDb(=mM~}HPzM4VJDqcxo_$PT-F5vle^~%R0ZtFX9 z!ZIG|YAqWa(S&N3eN@Vp7Ay%-`^XvFqx-Z#M|u0Dy6?DR;WG7k*?g6_6hjRydH)7! zAenI%#VJ8&uO?8Rl*i|9x!gXA)aVDyKx9va{Z^)2Yczccgym!plr zeGBE;57&A7+qLk;fIX%{8w-nv2GJxs7oGd(HbGfRFGCoc1T8%}(JImDUe?Xr_X}9B zut|wtPaZ&C6Ja-QREWp@m{s#yqQoBLFLRcZCU^g-SNF5YGt~mOVjEIyFzg1GIw4y> z%PRF5f>q4_1>HDW7M%HNUE(a2HvWTdT*4Q1k15^q62$vmX-~YdWHtKJtMG_mZ_f|3 zY=9w99AsT${#xWbf&-D~BHBEr>iqa~ZMgfc0sx{CwfQeGVhV(@Gm{ocqW50Mrvyfh z3+DerNBoiUJizbtR{Ktdb!#e^BP>%&#YA@5gqf^_IBiTcbKOp-9v}r_bJ-C>1}gK_ zV8*3k$=qQgq$>66adUN7rNlWGk^gtq=ij;M4!z4}ZrF?_bCXf+JdKNsE+kS4SMf@) zDe~`sUvpqDyMx`Yg7?cM!-26%gw(LzgC96O&3`^Uag=$^ahlWroAl`7Z!Yo>NucaL zO0d=zje}dmqax3)NUt88du}6yK1tcnWcj2op~|5U;cF&R4uQlydmNyOg*mQQcUa0I%D}A(}e+wI`>`?!FBev`nv;% zK?|WEf3EC>l%ZFk5n6n3g{?tVx-A7iNA1zHquq=brG0P-06t!s#|E;NzlqwA8x-!D&8E51h{$fQDpaA!zE`M?t)xhE z-6D|IP03IQ9AmojyF-fu)W%ZWVp(~L@3&Xb_fV55!D$VOFA?WJGfwmA{;Qv&UK?)M zP4t-)Z0c^*RX_#FUI5neMM>?I-J;eCj$yH)+B61Gu=KG{b3th>+QgMHe@`Z}k zQH9F;-M=PvSN=-*8#@1MDmRuzOnXd`;)O`;vn|=2D_pmu-)bb)Tcax0X<}HCM20?f zCZtigyF>jIuee>;z<95z;9L@!!!041hDGl3o{S@zla^5RV-ovIpAnW+#H5wqd>zhc zg}!3eBZ8`1tn@AuDyrwPoA&aU`(gf&D7iRfs(XkT{u6o-dJV2@Pyiu-Zs@)Kbih`b>Qz`6uV<^B^gZiE`tL8M11w9 z<)IPAUUsG7CHsmMlobi$t84pm!Q2u+p~7(wi3oCgl*L95mo8snEz7Y|TW=dHe*+m_ zQTNujDxl63-LS=L$<`Bk5|R}+IhbdCX~tV9Jg=Er(F5WJqEce3jW!bF!vbawnkNDJ zq%4ZDq(uO$xGMQ-;KA_oY4rfzhh2dxdMy_ol^zH}UAEb5hDX5gos?4i&qT!DMB#7P z_iTE{qxL}cK$$XzoV7;Q)iB+_w&?H1(ueV~2Y_GkykkFhEB$2cACD{Eh;&EPO%xru1GN{(Lj zp3eQrEcQMvyjE>HNCqf35)zr1T9K;C||2!@0_PV_0!xR7luGnPT8(wm@(4kiY&2VK&lnuO* zONO(R=I$$Y#9+i2B7T zXKU{6##1vJ)dZH>md@t(*MujlK5l^;_s2)=-e#uTV9iQ>ui?ZMzvLn&yGtYt+iLV< z3*J<7Z#8iR$m~C%F}JB1d@Mn`99;i*wNz5TDu3|DrEbb=-y{ODRpFLQyinU( z*0WZ3Wam7tjr9fRqIJs}JSYX5QFNvGLtGxfj+QI`U=08sJOXHCa}nRCj1?+wfF6<2 z85x7mTV*)(nN0bWK1dUc^zD*q;R((qj^d@;`DeI<$=jK=G%7madI!IyFdb$3 zcM2X-rJ^}}no~wQ$!~o`2Xt%Azyxpge*(m*052|gi@F(2pD(YVTkG*jvCM;fFq5R) zo@syWGzV`3Iq@7|#j*;NBSc`cgYv37G5zUT9>Bf5=A|?lyKN}?jsNgzAHBNE_1YlZF<<7p&`;seKUPj_ zqe$}O4)CfO@Bo05-Vkx=_fKp%J@G5i{5E<_fO8xVQBAJjo7Zk1F&%X#+`tT^U@A9q zt%>r1959R>W4eNKiPTgph~hQBOkPgk@Q}!Lrs)THkqOs_9=%ZDl$eO@uH%r)Ycb&I zr!N{UU#kE_ViJy;xsjNA#0m-QtVekQ;0aXwfF!~vGj}UEAI-?-Q94ngTi#M z=AjUpQ~1TF{xm`Q^dnPTQR^m5(Hai`sn5T!030{wd5@cmwtsDc-r#k?31j^*;fi#> zX?UJW_B0W8rB4BsaU`-6xkq7StyfX`qfd`8IXVfb78ZuqF1H?Ao{aP)HJX0BuU-@z zfsC31Rwxszj4;o(q3~?^yoM~=D@3WxP`u%D`U0Px)hGRF-Zvcq9-h3$2c6Tw$eL-| ztJZ*Q)<5|c{!QK6)NUJ5SyEG|3~J@+*z(akrBci)6_kthkMbYAyJDrqRdx$se)LL~ z$56dsAe+gcmFxTa&cZvAdZy)xXt$yv7+jZqMTBBpy{^dIZLho;lV5LKn(>`hha~Fn zDJAxYrrCC2$L%K6sS@t7Gg|pt|E|9T_*o-BC9mjmwpfL_7>1RL9l$1LX|Dn@UR`~& zMs`#bQf{mKt~aaIP|2B7gxp6-)bTP5Zc_qn*NU54kKx1B{Kxh)q|%S?S13A#q*+CO zC1>y7F$K1OWn;QPRqNvPA(_h>1YktWMw)Ff3KslLIAxJZ9H9S)6mm`I-RiU)V}L_` zZMSV*Q(<PHMe14B zwNNl_u&^H!%I%sYplZ1j{+HDA-jC1L zVVj6NfCJ)4nJV9p4sLsb~S?4fng!k8_Qk(UabuXz*s=z=frED~LS5bL6-x$2T}D(3$0Y%RS0eV2ksz>P%s6y99v8sG{S3kuQfoRFt+xh`_Le0{X78}piH z4o1sjR!0}$&F`68-73nA=B!0B>`&j4lt9R92YC!7I8Wx8pMz#Jl%ol5~XACt@ke(cHXZRkr@x&fmXSg-O^cy(y!=lZ`^tF#qnYVVv zZB=yFD+00p$iM2oW&f0gTzzcEv_Y}`EF@Wf+m=mu&iX>Ur=A%g%2B5pU#(-`BN&G2 z6kn>S&OtiyetKv$%fc58s+li$)G0cz+`lDy%p48h74gip5qa$Ois?bPl9Zclb%&gHpxIzHv@u3<)Yp z!vhZ1>NmRr{@wG^bFWSy^u4AonQ`~EK68{+IrqT19U@)re*t?F!M$SZ-(2gWA5Br$ z2si{%n)==rpBY)q>!RY?Gc>Ng?(_Im)>KbPy?;i-A>v^tznfDn|t>wMqVzK zbgwAo@#elG9C=v6bW-CUkNB#4r_o-Jtum*cL&Vn&W&gfSAsPeLP>RVYa|GO!^0;ND z;`d~SdKXx=Z`-{{A^I`YA&-o{6#CWAr=`X*faNUtzlsE@r_jThUCBSVbh76zE4`t;7PtayT?l8`SS;~EsQ3=x$pPtUG^@TV%aMzz8lkCN|M~kof4v>TL|I+G zu{Aj;#5O$wsM&?AG`NXhxZg!e8Y^yM;MUew(~1K>`Bc|yVmmdZ&I}D1ecmzBa`_;U z-$FfwVpnG3`+`o>!r|>P!?m>Z)34S~C-Hm#O8l%$ki}6q)Ig}cdx=I#52thW^ z-gGaY;kW)(*$8aVbw7Nb5<73SqNism$U}ZP@Y#y5({>|mpiB&}&(rto0;c`$LD%F$ zMp_;Uq_3|^XKZzneGFWFnf}603ZIRaI$FALGHUfes&N0wi12Og-G5_5AYu=fo*%rx z4%Goo=5(^EtOBuGxdPW+%UVw7REM(Bf!E!7o9~3fvns90Kn0T%e<&)C*&T(4+crXu zhUdCJZ#I6Y5gPhSl)Cf~52yHe-ft=GN7J&X=|1F?(0j;P3rxQxhf3st-2YN#HDi&M z#reo@Iw4Wp+M1nPRHdIk+t$SB+aq#v>7iFk+Ry;Sq-7ag+|CJA2dHU8eUjvJ?&)By z<&bw~=gdq3aX|Y&Gj3k#TCK+)bgm`3-VY0Sf@wWlsN4Wi8}e}XEI=ds3(&?Se|TUX z@Vmgnif+OK%;xg!PxBe8t@xQVV89IN$h~vajwvEW=8^nAG1!eIRTV4xM>71CKom>C zMjlHOjQb}JJCb*@TjK84%2DR3AI&yF)nDkm@2`0nzm-n0PM>0={dZ;UicO+`4b#z1 zGR3qAe^J-D5gPskwU|@7O;*Kdy@Nl0xDgd134|GphA`pGJ+(5Osev81#ZP22`$e7q zq>zw9Iw1o;`y0TG<5&v8H7bA`wx4F~raLJCpO1)Qk76;tK;Hte!ws?W z{mi?7G(V8to<|)nk=JK)Syn5tzdZAh>Gx4XrYL`|JL6L7&7nmjdu83pp(5CMwGUPf zB}CCIW^Vy5JaBk{V3_HBL@s(NMUgxQ2AgB~En`t(u2Zq6e|+)TFFFp+AqAC$UA{X+ zLP-u7ePzIx>#@~Ewkos%u2jwUb@QxvrDlmb|8uo9zybhUp9J@aUU9l^(EY3!-!dt1 zEGgt@#cZwUo46*fvih(UTZ;*}rvT2S)M9S!C+XX_*DIM1HF6*uzB98({CL$eD>JYJKO#hH;_CsEtUn zZgXC9Q!G5OExlwrcpI)2{EXYf#i1A2(CmjV7<5z5Ne6_#=!T;pWAKcm7Ap($I=-)T zkx*N@#F=VsS90B?CF1AGOKAR?oese1_LW?e9`G}AJH3XZuasq>u(0Bq5n%WkL=eqi zq8gJf^r8~Ow_TiuZ{H@_p-X(>#0bFL%D5-=^naq%cH#GrJJ_F3iJ?-MMp9IU+>1=$ zZ&MsEuIDS_Pk=p20e|YVX=ELoFY11(Q-@;UAr<^1F5S9lCkVE3?Dcsg4aUkRhGDM9 z+`w_v+TIBdd4oLb4BgxTW}f?60oc{yEl?`X8`4)$#0viI*m2{gIgwf5d^(dsM2-O9 z;2Ar`FJ*u!okn6*JWm`~lt7uA1Yj`mu&T>HQzX73VLyB=o`bs% z4^ynl1K-o&oP92T5-*q40zKX9Q2Iy}PtKuUt>fXJ*d9($eZ0cCNBmt9g;oy>jW_hE z0AHKN>AAm;tGfU;C`1jw&3QmTw_K|#KLWoGJnpKy0L%HL(Y$X4noW^-y;nDpOP(zC zhqO8!?<62mm`@N|<~Iyh21bi}RTPC#Es`WCNtN;z~B*EO&w(6K+Vdno@* zIdSgsIezK6CbNCsFnA$~Xd%cuD+26#1AeX>=x-8b85YAN=6D0PaAZZhMq0m_wq7M$%Q>+c?w>@(F#>3LwrKIUnN+klhEC&g# zu~Kw8*+rpHQgl%?W^9HZF`d!KlN8-xtd0TPQVFLqzLfalBv>=Vue_|x&@BXtN>IfH zL#_C-A(BqlPCm*2_^4=5NTZ4){{x6yyyt;0pi}o*yf!-W1~lW-KkcHaX7#&>XuM{D zHWmti(8%>4mL51$Fle#<;c1}l&U?7fgZQp4)gaj1>W2DH!rCj!a^d8tjgEtO*U45; z2ZNv83LdhVDkzv);ilP2yA{kse1q1rwcv(@p*Q% zHS_cexDkNcqq8A#c*Cvv*a~)HNmVHMnmlA0y9ZfVi7o-*bf|Aoo7*SdnR)Fy%VX1$LHT1)aYq|j9q;VRUdn~)r!G$ z*qP1iX8NJg(@e}Ph=8&FgzAWRv53A*C!&$6oJb$t%bI4y;GeWJ|GgigM79>BD{U?j z6YIRXIF`X9<==1i_z|YLC^r0B`cbWy8n%6jQY>a{>m_SI#f0ZA;LCVyN<_#-Bj^Hd z_Zg(3e7J64hMKKODmE^(N`kYJRn9`7^)QspryJNjF)YR3I?3!~iI1)_#V(;b0^#SK z({-=f-MRsxO{uRQ^fgq=Sls=~?QyfSu>G2_2D7R(-UYM^e8@4;^)BJy@$yUN;e4g1 zfEp28>bZxs!#pneTCL%qmYPPQrjA}Y+SbNQT;Wx#EzGwRtW12#ViJ}wAS@`;cmoB^ zz3t6ZbHAfU!om;YY^C$;hA;;SNdgCvoudsg$jl}irFqFbYx65N)wm@5Ip#<|J^*Z) zD+si7NnUmI6rjjK{^TTm=n7d>S^BY-lv;Uzt1n_CUc%VjY%vV!|A%^TOS%0wb&!;gSgOa*L%ePqZG_u>>n|E>TjXY z|F6973~OrL)@8Ytg{8m(T$IpM1O+J~pmb0{X;P#pAcQ7WKw5x62r7bfDN2!Eq&MkA zKt(CiTY%6+kN|OIC7c}uJp?yHVWlr!0A#_56yNrYX+YqA7zE)SxY(N*6BQW#xh z8)q7vAtfOTLm;$=vr;ZzOPh!%u!uA=#u&GungQ1Z4cT;>-V^Y@g@@A9pC2Vd^Uux+L9C!nDl>99bQ z8$z!M<4hjQmz;js`G@~YZXoi(S4wWb8%u*>U3>--!@?xj`>$#-@HGdr=d0UxCh47T zK%7_eJP(GO{I3>UR|Fd&UscDXT-C?hIE;PjaPm9FtU%-{}{-1m<#t4KX!(NQrDbmrOWq?pGdcDLL&$CLR%=0o@rZt**zk?ebOP1*?Q#Xq2kc18*_?AA@1bKhd6ODE3*@W$lBP-A!IvkO$nU%!oFs%y<$l zb#Q!Pe^*XCNHf7-l5qZR)=!SM3I|vusI014e(JLEL3QLw3kfUQH_8C$|3hh0{$@N) zV)BIZ<%6G9TSw0y!t9`W&ju8%-~PVpgeza{mD){{qqn`WW{T}+v3uaQD1XP7KnH$N z%5@oAOpYWs`~>(ZsX)YEp+Yu*8g{CCrLUC_rvliY>$2WUt(ADcJ3K7HmwKlv>0V#D;rgLL8UJ%N5OAs_ z?R>)65934Zr)+wOrOR1zQuj=1hVnW!H5|%J3k4k{MSDxmicfb8Y&^5dZEwA{-7w`VuMXFmZKuVlhvTmqispKbsbk(k*UiOPoGca z>K|YdLpWiZihGhj)?R&;_57rHT_&a2SN)#oUeVjxL|UaIx9L;+9N*-`lG~rh&<;-_ z%*Z)%&|SS&^0g?2pvj?1C|NbW(dz^F9>TkMIF8H;MOW@?bjGc1Z1eOuY{}+UQE9__ zdq4Cx4@L(zqcvK|56+<)kl%}bMu|I(Oc2*;6+ssuoT7Zb-Ha^_3}UvEDC`Jt$)~rQ z`g$Zcu%+HPzo_!Q>BO3W9+e|_HeS<*z;%Z>{VTW)U+PU6m4a@~nLD4JTCyqTlFuw7 zNlfaXod@Q8bB$xbUE2&yJ7THIRv;t#?BAy_g52OfUa!n84U1%gu-~PU43jsVc6pzG z0w^c&*vn6|L>r-^!Int=3gmZ(LspsSOM5$RfufRNOaj0lLlp;@Sr*1!U>Bp_~Y5kjPSD74+v)vJ+ zds08Jts+dN$kV)IR*Uba8MW5)@veH<^^!c+l!U$|gSr;Xe5B zGSP9f`m@jgAmtdUF2S!7lGv%2N|WXYog(g_*zEnx^<}#WyP)Hq*zMe`8xg$0lr$pA zg-)^Lbt*!LNp-}c1yhst+Gj3Ot9UI4g1+J^SuW%&B^2Wyx4D7{9ba+~i1KSIlJ5I>xP&Asr;8<0!(;!Qn$7_Oo4ai!;kO52 zNV3MVU2$Ywb(w}wg2Tm(Z81E?GuD6G&SzZa{rH(#p#MB9TH4MZiBOxl<3zFvgH5fa zr(VtxeeYa5T!~y8ow{{x(Wg=`%HO?)^tCc$O&s<0D^9o`7ow#Or5^h`mM1OQ<^BwoIWn`F_HDA!`R?C1g`P1ECi5t=ix zCnWZ}MJ&YnFI#1oq~EhvI_Da|pd~Z-41)la8fu zj~NHdV(mu7%;|LMaF^A6ScT>!<){nL!%`sR9W?FX#}CbR2Spg`e!qIG-UgL8f3g3j zV&uZtsu~pyG%ShHq%L*sDyKupgrVI*Y*(DuRNp@~iHCQ!MPKefZv380Hb=zEBSW-E zwy6MB6>P*MEBIT%@$DK~4Y^Sb+eIRXl>o2<-ZbmDS7sNo<*>h!GK1z@|EDCJ%2NE# zBpfh;r$Ndz12oJ4)w~Rt(161%=JSW0CO6qnx{P44?^AR4MYRr;0pI<*duJ^rL+7W|3&htl-FXw6AI{10CLLcABN z2C)MeXr|%Ddx~g}LhYfU*_oI#$$|QCEq2r|SQiodL1*loN9fN>wxXZ&3 z_VQQrjY^<)FAM67lcKN+<7ZD)UVwu15qzwlC)?kg=~YVed8JwkiI>y>Rq{!SVDGSy z92Ho3`sID<`=x$X{<0C!d`nG7E2Y2;M`mt16oDS8oXaMhsBM1`C8A5u*m$z($F<%QTp6SlKf2&ijTbO&n6F5R333lcKU|VJ{&UcgS;VAA3~9wv}mE|U<#+X zWclScmh_KAoboaMk|u%c>1>mF^RpiS@bcN8MdFJ$$Mcg(&nn5g8enVoPKo>8PQ*gp z1ySj(RE2F!#cu!(^KT#CwCH2P4edP z=_WAtJq%{g`GRf|Eo{|1EXPM(){jB7c+=XOPnjf|Ug51ZG$|abdY_qiIGZ$S3CT}_ za=XH0(s52NLzvGYO~w7TF<$`VQqw`UX_}f)7B@ zk9S#9XZz(VibI81x^C~1N>+MotF_B%5AtgujivC7a9yXfem?9okqJK{VT*k()pj-P zuR=F_qi~g*4&n~3=%$JA`}jvdzuwHMzQF}K+9d=znj&X++G8CIIt~VG$ zUKv2SeCBx1-o3Pfa*LYx19UsU)gV15s{U-VxL1OjSjpZEQ%$u{+?J2y=tOXG|$t}ng2bHO84rpl({4ZgORPy-j^pMBvubfF~LjNA}O1+>hsP!5LHZ7DuN zYbcKIP4-G99Mf7`|3DiAnQlMd`}-^#{y8RBqAFOKOf`Pnr9s7rJ#_PfzpHKgR=NC zbZN4x$DV9Srcf-o7;a%kFXq1-<(Z>N;~lqQew?k0ybl8T-Im zg08v-htNlCy!Ed#t=}k24Wa-@0czo(^t|#F?t zX1OeP#0#O8bZaDl%8|`5g|E`}T43;Q|S9o~!lxB!4 zNcD_2;`QZ=S-Z~D)I9^w2mq1{>!&9pFn#s9ibTWcM5dWVH+hS$slL5*yhJR`Ed3#~ z?61JU|1IVC%WXp)8`Jdg)ocCYe$$?9jnbNV5!_Y`1@Y?~27V|G+J$gqQR6Jp63_Ul zaa{MY%XNqCxiOs9iFceO96>mdCAZ5zOLomuL*;0*LvB2=qS{<>m=Qq z7p~O%bTtfA@$jMAA|n-!q{`A}ZioT$jA|ZrUx4q(8;5&B~8TlBn_X& z_1s9Z3pdZHhC=%$QuNRKa&I-LRDdknSY*E&pCB-UT~FxgRrzJVhRsX`P=8oHpM_hOnobK>L#9qUFf?Wd<3}4w z98{`~&R9BH&6n1gFtP|6a=tt@_3`Vxb8TzvM(>rxD83j-l=}+Zk4a5Kg4w zl19rZ*<$iYX)Nvy*6YWkHJwi??aex;M`wYSP8BzeLraE3#Mbdo?`%91#k^nTb;H{* zwQaq@Q~+V_*%5kk@9DyhC$3;V5r#hT~% z_FF?dC$va9R-aZ9fiFPuObV}}{=+QY1I37y`!uY8d*N8ubTQC>XpMy7Ik;3L|Cz*O z>7TMH#0*DfN`QWKGpYRHiV3AFQZ%6@t!a8rTdRGgV`qlTS2TO2k&_}pns|jt zT4iVpL5Vh}U0O6-GYih}{o?-UM(f#aZ(u1YKS8TERyE#v5{hb{v{Hsv^lij;yKl?S zO@{2r^|fAIvyD{fcE!TNv1egvyhKLdVm_HUn?XkRh(Lu3tatrJ4754YA`-cGN@XS9 z3sp|Erqd-pVjrplC~fC{*>z9YX1-9_r;T(Qc{{}iS?^vOV*M`EuiR{vg7Jv+FWAzX zW55M7q$qJODC==o;8f)Ddo1*Zz^rWJDccvX$&@g6%R@g>jj9HBs znFl)I{Py(v6>{A#^)yb znUkzM{GhWuOmQ-G1yc@ghV62clgiamT zV^uyD3QaR=skqbRu4uK1jU! zZ?fNLMeg)0i7+Ev;5|L7*Z~$Ksp#NwHM@I}P#?~VFpN5=b&^RFgB|3TPESW7;R#OJ zQasHQ@mVqi*WsK4|BVL7g}HtuIh0I}0(Zw-7@(O)i7fTbz8;2S}HxYJWquRCzG&a0$1@Oh1 zyVGd;S}hYc#Kv7cKBqP3t$aA&+HDq3kT1uYYmOax>3K0DI>+Ifx4*qG#TY1m!Qh%} zP1yR7PpGkML$w_cw0>NtZ~%ep2l}F@uIVS4xdynx2y25dkv02OJ1&dx$c;nij$z8D ziFnxZ39?{cA(t>3TX!MCbNs>$`v@8NFGj4B#sZ!^=(FN@Ne~P99d}!U^Pk>Debk$M z_xK4*y!t`#jV6}Q>WEZd<2OSFTrcXh9ORl#8#)wXlP=!(2>beJSm&wxRr1xL_-%VE zx9=11SeoVIHF8b4T^Mb}r{sed-irngPB|S6luNHW-t81sXNE&tCNCYzth9P^m^_zF zDBO?utw!Rf;nJ<$VuV3QYAsa%=8~gXc~g+@q`O_ZHjrvzH;gx);l;EhMGbojVNv%D zQkUZ>^?kj}A%%aEqVcX~$YeeRs_Y0_|0 zp54=*8BuzH$#;ql>Bql5*>M`X(>m_EMivcGgjwyDaE(^eSTi4?OFN8TQu~UN^XJ~d zT)!%8@swkMSInoqG>nLQx3n_`itvPN30Pm_;tc&mD* zP8^TInCPYCo@O#*wej8NDQfQOIa^N1F`v%f5;o+78jF7DXg{g_B4C&fjt|%h_75Cm(*s&_bhBZevw6YsyuKH^FQYM6^lE(%#Zt8pP^(D{ej*UR$+@>2Vk&^UW#5Qw( zMo&m;Ma#AOt!KwcK|TR@Bwfbo$Xuz#L8u@-ZZhqaaYQ2C-6a?jZN-R*#C}B6E{+Eu z==1%y-xX+~Wq)GhfSH*yoP;UY=pX5jC}@;eS5ho6Z;lJ}P}f-k^2T{X2bEAJZg3yH zms*rL$uQ0HWNuNf{a#xCj8j!vlPm!t%IVY0)6nCcr8VVW z7MW-d))w}Ec{M+L6C2+j&3ZGE*xU(8Ry>s=>fgiKuq$aZ0p4YT6G4Ah+2=Wv!pHi( zr@~}#)Fj+TAKW~1Q94A1`sq3B%eGS3-0)aJ0dq(=0byUPt0GW%fqm2s8u=|=9W|?= z|0n&MjStaFPd=Pp;b}*(zyl@>XYy?xW+!1){aor8GAkro!*eAkNgbn`CCdb-&V_`JoV*KARYnzxZ+lTpARIfoU>GS^*Ci1(p zI6*V?cx106&%w!J&+!!BmPVu{oT!3TAQ?Ezc;!1M;Hs zWTN#{;r3d2W0u~g$h7|0qjK&t%L1o*C$`bM@qe_Pko_a9UZG3gv8AQcUi(wMNbyS5 z2ob3XY-8owJc}k)1r732FNeFSw~b^rby%%P=YBTnL`<<66!UI2aJkDH5f}VQek0@% z$#*tno=-<=qsM(`1o-3V4iq!w=8|iUWj4irkN5`sl&g=LXZ~Slov%u;M1MOSFWGc? zlrGsRFFdJf#?XaPhKMZa^MrLgbC2a8T=Vq9Rcf(LP2QYms8qYh>MgVcC0*^@8Z4d= zGPsWnco1jNT~X0BkIR-Ix$Qel{! z%GiJ(w8hlQd8VO!c|x-dVNbT0Kj5U@z64IPruf#u^o;yd!f5LUcvR+M%<-X>-{@co zS@V0#-MbZG*11XXO5^1)R2jFcRbaD!a8w|oL9)PX(#ml;c;m9|9M_8nVck_MBL3XS zVuiPYxg-7#ygS`$@cn^H1qT5Sy96=4){spOd?RN^9ZwgbfL0nnRo7qTK?3skEoab9U)tKpc=}6}@)?7$b zz3RBMwrfxLEDH7>%*Bl#qoyed!yk6ak@7~uJv@CcEP2w>x(#hZGhcqF?N|jD>8sJC z>&ap1moZ#^zvVps<5_1p(x()#x^)9%W?Cj-Wcg$-np(EFUM0wVaxBRnWp_&AeD!>; zw1WS^)^7@55VY33HN#QuBW!sLQbP(?^oCmLy|W5dlbp0wUGxC9_lKSN{trvv-kBln@3Xm-&NCMbfhv0lSE@oyfY!!KpWCSD&}h;~;8=ZD5TMqKS7W)htI z3Zp+GszGrX$*1DUZkv|5J?g~E`>sT&^c-NBxlycM&J;>9OjG#MU3z>EO@KOKzmJ__ zp7=LgP!g{VqsHf~gBu1`wDgC&0Lrj?oQVoTmsa zf$tk6jpc?f@SIY2(cOJq7?ywTF85LeKmB}hpF-({fAkq`QQfPv1$=Yc10W+RZyBrN zeXwk;lfs3zEj61xc9vpeseLBRC*!EGprBw{ zogieH7YAnPcjxU*8q0f*v<3Nr_)N?Ft-zj(~Xv1047*=YmGY@p7) zjypS^2M8?1zMAp*(VnBKjcuM;?Qy(K*`TJPrCf5u{ONxH De8=|i literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img4.png b/Term Deposit Prediction/Images/img4.png new file mode 100644 index 0000000000000000000000000000000000000000..572949b1171bb92d73c13e3f991a8132d3abef17 GIT binary patch literal 33447 zcmeEtc{tQ>*zZItWT`AssQhH7vXdoi_I=+<+1Em{jIB_F$iA;*9m3d#K?x!2F!n83 z2UD0Cj4|gs{oeOI?>Xo1^Ut}?T$c+o-{*Pm=UzVd=f0n3-W%v?(9y8dfIuKR&Bv-n zAkcXm5Qu{N(golhg$0HU;MX}{BMoIx&G5}F;Ggr(k8~e_Ky`_MS&|(0y*Hg+8uo zd|eS#tL;u~P95(ltr6~NnzCZ{g1#&@v5K973Q#cnoMV!xP7>a^|MBx%CFQ36u;EPS zCo5JYEkB)z^tn2c!XBj1TJ8dH?-W`E3_jL=foKw@bjT z$S>s&|F_@j(M0_i|5*3Q4=)!5p}cfI@7cR2YM6&!ik)T9`y7A>O4rrAmtRWTYj2#| zH7~qK9L9wzH7k@bw4Ny}94-4H>RlRMnPwoPY-=Dh&E9D*brMa=1C1jIdUnHp=m%U= z?dqLzQhwGs-6Y4jd$-@-ktpE*G1(#tU%|y;99|yVT zPVH&lC-q{RNfQ}zchMb+?G>eRu|w2vjxmFOLY>9;etk{))V7xf^E_jTOO-HZYcfYvlr8rT9h?q80t6m zdRn@L#j&!?){Q;@20voe{2JnIedsKlPYe$w6dSTHe95`JQ!g>o0lp?Ne^~Hz%Ut0J zNlqcmF?#DA?0E72^ zZ3Ca3e9Dq{gsDR`dEz!Ud;3^i%^PLvgjH6{tjfSjt8=G3tix!p%biu{Kp+GA6e^M9 zAgq2|O4)f#dK@oygwV$?$NlBzL9Dic8zusNa?*Bq`err73r-o6lDu{QUxntn ztetJ;yqf5Chc(fd>CAXaL0UtQ{l=bMiyMFO$8G?k*IyUT(x&HmKasE%P7tb1b z(S^*YvpWk8`AZ(i?j!T#WkT4RJbbM`kZwLqjJW`JcAloA)<4#47^#oJE82Y$-$un? zkurm+toP;$zpR`^7&}CA9$4pv7|X;AZACIcbBqJ*YdZCti7U2<{g~kP-BF#Ve3q+- zQ#oGuAE_M#Ht@^7r6evHVlDT_U?b+CU#b7m>91mJ#-2TFR6j$I+xi0ENS2V; z?%0Y;F*cA2D&t8W4{|+9ZQkmUN!*M$xMp(pM@TnN@OPb8NYKQ4yIRy?&wXR5If58Q zA~6DSEGoDh@W{W;?8h;}t93Deed(~Nw{~u%gAPA|h{goV95qh1FR2Z|hhE7k8QZf8 zgQ1ilP*+lspwFMs`B=m1=McK|-R42)C zu>-$&xJc?hSIB&Z$K6P6}A%}%&PG3h@z=CHL}NdH|y-QXYl>qN6+z=%2c z^{uqN$j+OA-uSprh$+0+0+=5cx)Kad;0z=F+S4f5x6N+!Q7Me2fVdv*Au;|lp9bAA z&IORAn0xYlG%Q%k9c+1 z24;SRn0xqW!M8t)z0qe_XkkC5l(@N z$7ZWzAfiyhOY>b~}#zy5Q89Id=+(# zuNv!Qp=-QxOvKU9A1d97M1CJa2+kJXnvefu12e!#+>3?u<5x=Z zp9v?`nsersmO4_ye`)wn9Utd#p@$2paVbpb!Dk%kKo769 zr`aud>P_hAb_`*~@%}5wUsJMx&2I`^}Yd7IOC^zL9N9V0=-Kr!^2r>r&ygPi}yuY+|(oRlBYhg@};*YxlaFa z<`b++cWu$EPmf>V@k-$G#mACy9}&=7@tmc~jdqGZ1U)LNsl$ z7Ny%Xk|GLLXhYPkkQ{Dhp*NSl6Y>x9UZvEJ>uAg>#dp5U2q-hLes!!-W8&5`XJ#;_ z&G0a^wwD2yKOGE4G)UBUy26r67K{C+hES~Vp#fTUW=Gdq@Fk@0j}M&M@D&jv?gWn3 z*}ku%7!pz>@<*YG6y&}3ha{W72_BxmXD1aLFxb2<-Uq1JZuk4RA`?bs{>wtbX+mj)Dlsowk8}v^L6zK~R5`?#aePwm95=!M%>( zs{_-Qi&zLGerVE{G#4JVQbR)i9g59;tT4h!j_kSgX>z&RIlSg}X~FS=I_+{k_^aff{zMqtd_ zurSQ?KAfiGjyZ3p0d$?3QSgfHA;$U+KiVW7cV<&pwR?9B zw&}kzIq^3Va>$XOAP@C+G8*1vJc~jSR+?oRZw+Wyi@tQ#x-5j+dbx(Ohsl+e7uT{m zxWa#(T|C^xB1%#L4I%yGNqFz_bYH`%7r@>~ye-0+!%U~cCIKPH4sF2BC zG(3ovS5Ro={y~&1KhKkro$YQs!^~V z2n45jogO$Bibh%*Runrmn|g$*81Km5pUFC1rpzLp_*!|nk&fI|b5eXB_WeK?w8Qux zsZ_9>1*WmE@VXqmeIN8^&DClTe0c{hM3+$Hb^`@VA8THy=zoKVj~udED(SlO1J5I( z%k2$T(q7!}kX%c`fAHbrAM@1fa5+VR_envwG(pa${KcUr}{7YuCEd zs7m?%K&eNY-EsF#VeDSQS>g+~m&|F`+U<VvjxM3+=2}M0VZ(3(`jSw{HXEY;OUP}U9i~PC zvt3vQtrgczDoDVw9y(?ynxPXJevB()d~w@@>KS)x z7B^~{Wka@z6zz?BSo1ybt}r+-VLkJeJ717a-L@1qLLGO|}I#I-&VRht2njWZ=7y80=ABs+Me6QD|V%+F|yeAYCn2Z&Juw zZfPOE$<14sIGf#l#k(k9(kiR}6qi&m*C#{vunx_MEJEA&s+s22{|uK5cF_hdiC4m* z>H(x}v9-)sZ`AcBk}En)6=D|y=S7^{gsEf$%P~IklTjyA&pJo-S*1?R4VSKdJ}Xrb zOg;EXgs-hV>&z^J@RXOd7!{Z4&{~{`nBGwOH=A8uQ+;@}IHfc6WCT6Z|W zhx6)fG^OUN92FmKOh?Akea}?TZ2nOfyM93@qOxy3EePLdv@MSrL2P*5@_alzn%fCh zRlK=PN?vUYOsGMuE72w@^Z0;?5k`G_6N+3n%M_e`X^aIYqU(93xCrK9m|bn`Vn=e&2wr(8 z`++3`^it@eWkSG?#o5O97g#wBeG<;j)*(^#kIW((8i-$0tzB>s4%rD^Xy!W#(2T6V zc$Y80*R{*Hn-t{nI1;~f)c=uqqbvcT8J7Jrs(w5Eo7-}ocQ4wMIe+U9I)6+MnAW;Y?Yddqci?_!nIhTd3lGd+MP{ympJ zJ$N9#Uq2SK3~$82k#>E!|}-gq6KECW#|kYDsQWf zP9M>k$W3=d2`6nMc6Q>_(aoY%;6NHG_nGAl&bqiz$eg{%wG;)v6i)Dpt9%$@QqRx| zA(|`vx*Cc;!f>HuSda4ssR!!!67jNUf##!rF)Y+WzST299}X0z!m9hzkGa~y(R8Oq zTdAQliRc9dlJArLDn-=mwle<`dr7qe#7M)%nh`TxS4w!8D5mp33FDdjKuz1OlB>xg z0UzYP2bMW=Z?4&_CLM2td7a{4yC0escr0M|Z951*JB84P+|jQ4TzRtnqHCzt6%r8( zOCt$Ld$_9l+SR__aM}00=HJjfg2y~r!0FxQv&b#T4tt$_m#V#Ee59GP`$DL__(nid zDNl1N+rJqst^DT7)niHbUfo1=VrD$i|N4-5br^A5fp|D5csL>>MKw{kTu1IBf^G^5 zXtb!dbF^9+d@RW3{csm_DT=0wb7(ND!(!Wa^4*D=N?Z-Pu^;uuSZ`$#V8Sd zak>LeEkR<(?kX8h1u);k!$JIZa=3EILlpVZ@My*s5H`iFC%?>X_Turt!iu1c+vLwy zm-$9Gx~({M;maNc`MKqm|JnRwCub7ibz6P;?`I%Jhx7mct-mVye?}85#;cAvz?rO4 z%Zw_Un%N1?o^4;}YGNyvn!-+I<8ZrX$E6o1?n^%6SiS1rOkej$D_+;c%_cHH+r;5= zm^R=S!%AfDP%bJm5m+!UuBYtCFC`$d7ZNHwn~3}9#T6PGb|jBTKPUAws(anZZJR$Q78mnvhYW#16aXhL()&}xzB}g-CCJG! zEy6Lsa+*j1l_}*j8DE{7`7$_#nA@DNlSSA%`<@4QEH`<`9h>7qc4n_~!!NV!yOw~; z-s}aV17-7qKf4&t^Y?%uY=4J*kWedk`J|zCqcpOSGgv%suJ!5L z!S~O3{9zhhIa3{S=PrXlhT%ZBKK#-X-D?7~&pkPJE!~C3Zd!U{k{DagH^lz78!hA| zKXxUS+|*~SPkVCa7Oz2&JXUYGInOrZz2TK(G-0CxY_UE8><=z87Kf;aA_4k6|L=gA zZ0q8M{NR*)W5CE`2P~ZLxor}hpA+`rBD+j-A$5`0L0$c=j%a0sZF@H?3u3KYFL}9j z1{S`~?Q;&)wW39%^L<|}9_JlD+`Q{TYeQk1n^u9A!%q1x<}X|`(h&s}$W(W&c@v~E z&5)Pfrrvi^@$#Tf0kzRP=(5e8)oBdoRiREVR>E+m`V-N@X&D*U8(6_-rtP+*MsQvI z)W}$gCkaL3m={Pq3T6Yf=#I%Hx_?hm6L_$@+MlUV(O(wjd!+^Nja#UcLQyAk_p>*q zCx<<5!Ov;`x$sNtV&wp~lOVYnEsWWQHP*W9*EpX1_KA?80r?2XJ!F&9d^++W@Q%XQ^ zH>6-ch<>+h2HJKDvJ!mv*vd6FP7+5ZcCuNv(hB&s#4x$H7rgbv0*cf}GAmu(e>{47 zJ_4|`r^l35qCybFN;|)D9Ow8}NcT%h5hQSRS#qIc7fc7V9pzI<6;0+T8Qh@o$A++% znP~|*S~Uj2d6a`#TB~6+oKcn%f|%w8wX*+pYo`sb$jpGJ}?@X zGj)+=q#-L27O|~`iOJ~UM3B$|!ufX4S~J7!Qkm;3;}7jk)3)ns&9-yq!)A-^B{_s8 zfnyf0W_N;9Jg1z_7R2+0tnw$At+m@ha>17JH78eB#HtJJ-${$=DUJ3zD;s~Co1UE3 zPR=$*C9%865h@dAv9`ngxm8@46AN@=Q2s|y_;;tNfXwQc6a9)@qv!f;4`Rk%k&~Yb zRgauIY#TFa_4{!tikPp#6MV@^?}Blxp5FU1qp;})E$7<&Dz2R)B^gH{aT<`V$@zw8r`?>VZPu#&nS3u#`C5h7d#pXZ8wHv9tXeBVUaV6R6E-hPQv5r<( zr4gI_?pjx7*~#|0{W$;}57;YKxy6SH&33X;gk?Wod#F2$^9H{@5?ne5Qu=$Q+DjWoOL_K^gO$oB8}@FFO5PjzhpjgdmeoN`-50~G@QxXQKDKIg|vj#`G& z-zM&xRJmSgM3>O1cu5Ku9RJm5#5i$$J!*3H)I0H^DdZZ|3DXmNNJK7*3&S8cJuR21q&EfFmKh&* zd#Ol>G$w8V>1*f_9e}J^eBKorae3tvv*uOQ*0a~cxZHxhZ_Y!sB|9qecTOzSOf_^x z0Rsz=F;(vg-kDSQ%rjLXtko)JUzeAWC$!T!Roy#8R}?e%BnSjjG6pykX!PAzIteSB zM{1h9J+vtP!{I{h#S3@P@3-wuJi zshAdZ0i=p(=iyxISTmeCw|F(zZDg8)c#9y6j6`03tc4s2&V$aiLt%JI6*$q`e!y!4#6yZ zX#T9cdb;8jZ!5q=Q|CZMMvD%KX{SxGpL=+K?b6qBen+a^IMYuIZ8S=iXm0{_@tPxh z^~M=Vl8#BSKazTX>3Gj>EqnZ3^`%QdJfPgt5t0?OI7Wx}X5zWly%!V4(3k_o#y9Cx z3|;U|xmUrw>bH^VZ!8@17n0IkH4C>~-hWkt%lSf^k9?RChG&|1c` zvnx_al*LnnF4t{a_0jv7S9m#I-#5kA06X0J$&9HStKXvBuSejfD8Qt7&5)4I>~6UCN2Itzg4S_ zwuasWK01ru(d9ItPt(^7mEgb@Iz`FOWzabZEf2-PXBq7vqw4W+StFGb`n#8q8I3p6^)?p3_UIouo2MZ&(Az zC}dD$Y=>PU+otHKjB(deWBRIQh7ptHSyR|2k)^{lmYXy;=jlO7ya;^=lX$8|)bRjP z$q{>R*J=BcjDhwWbVapgMdrW+NU)p#zYu%ppQAVF{v#jcaG}d@|L*(^ziLt(zgm*B z?o6nh-!U=I6mk)CXLMBXaPzxb)|Jm+^@rOntz`Ef#=EY7(hsj}xE{t@2K6(wG?pXNJC={Dk&p*5T2b>4&4qvJ zxdh}CG!v#~Y&+~;6kpc8Qa<>p`N>vL8C3fc;v!4gsns zLWWuM>5lp0#C)jP@l#|3pUQWZ`27KfEr92_ofYN+h6Len0W3>;aXri&jbyDf?G`F3 z@A*))+1On9gWh(X1h)iw_$(oikZL zITqL^U8mZ>pL#NrJLiTp0NUV_qi|+nnYb7g>2j=Z?X4cSo!$g$R%r# z_z(tHJ&q3ud13|JEQ!jJa!ii?KsOB$GD?z}&B)o(mE*{X2h!Q{C9bo8MqKr?G{Nxo zz#1Q@*W6i$>$&i5rW%y8?nE*`XonXeTZTj9*T1HelS{!%ZR8{o+4#ZZ+~@;QW^hGz zvt+F#B?$JO%s95COS2)(DyyAxdR9rbwvaM48rH47E<>@uJUIBR&hnqShLmRsnyp#u zyV*^5T@G~-gVL{_4=-StvY!3T+)5T}r$faYg1|0va%2cn=o{9H62c&#nj+h|Av;>j zr-N@T2ZHWCnfQUKcofmEBriJ^76Nfvf<10NA77anh`GEK>YLSiO(JO6L|04@v!Rp! zmjud_;627Ejjtt&UuFTt2Z&J;ZI5?3=&S(gPyzIZ>eeUhM^mNdMvd5MtZgLZyrpsUj}^${&i!+Q5N*ii6tf@W*CW$e$eshM zfNIO1I7k9+g~Cqc-6ZO-1OZOyQy)7KE#k5DzhbF-tihuW`L)gG>SIU8WF&oCFzU^8 zhdfQDCs)wn%pf4kY;Ueyn#+rRFY+{>zou1W1tOWCv}51X{yThXjGX!#65;m*ft7;t&C>V8gh4LPaNn=h z${3@!D>8Q94hj*<_Ro8vV4Ut1Tdmhp18O^$bh!2tUD#v|wIPogbboW@-v&3!7{}K8 zS2R`{c3~4TvnpnohCG|d{d5M9Qq^?be6haWEssZo{{@6f2fOUAs)Bf7Qo^7y$YEk) z`Oj`D$fWoSd4d3T%Up-nMFC)&N>#JR6&iw0j7`hG7+aQ~JKlu|1bo-kN{E+|2Nh|q zmFeaiT;p4rUr))R+9ub0uq=Rep8VbtFg4GhFNnHi!$^}}f*Xr`GzEAd2pR|U=EBVk z;hpOCr}3Yu!hMB=W=b&_ml^xkb08Oyzbk$Z>?u|eqNnJ3nkQ&eb}=B#!3rq4ILV)V zhvuOT&saH;6d>oo_GK|5esL1;2_-Zc2;Z6jTuySh?6C;QnJ_k-c(~s|NB(e=oUxUi zFemJ5?aI>>T^wi6<~p%ve_jEz+=7u4#qAd*-&vbpf42s;eD|C?gC;VtW&qL_cGr)B z!ap8uCYqkONqFn#RJ@g3#9BDA#lEOymNl#NDgP#huSvy#pNF$4HViSFB5$p>e)z!EUBg zGi<)C7Y4dzLMDv=(6QZUk*^7iTKD082?^Gh0_dmCjXhNWs9fqI8=3m47-cxWlT`C> z&bV8F7-`f7kgCF#4~@}3nx4lVjsi$>zf9@ZU*CP#`M4%S^ZYI46ch95LRui@HQm+c zDDy+s|1H=WZLRh04Xm~NpLiB=PQL~cNB}Mfv4f2<4-z;seg7w^EKnntm@)W|O`vx| zwDh|ZD#!VNiQn3h8ATBCHGm@=|3x4HfN>4-Lr)ZRJul$QwU(-M!s*8OX^%3MX5xoG z?n#wp${7}K=uC=>H9Yv=*<se-TMCiWYGXwcsZW5C+#{sFl#8(jR`8SD-a7gRgJeJBe-Yg zp-z|UgXpbffN_erGiet#d8Dd4Uq~2~c~wHM_ZNbME;dcN?2@hkd-On6su8LN$(U-^ zbT@nKPI~BbDpBFumHPjMJWgfc9|Y7H~l9n?ren;2^8a1|aA_5T4YJQbR&;lqk7%i0Ut z2h&wIp&6y=ZW`a2+!pOwHKpQ5eUQb>gRp;mg2w)3gWE$B`THg?_crnR^pgz9tZ1@V zE2lb+!>52Gr<%Wzs*z!JzF;jn!62=ZC3ePZ20*MVqi~dBDz8ri1pE90^1zo@0Am-{ znW^xLYwW>9@Ud}8%-y5Jk&hj7Is9rf@CmC)zU81kouLVj*mX&3-~#Z>MNq*bncCMo zsqe#mX2hD56u*ZK!or)Rpd*3s&fwjpgmW!F^6hI-u_IadzT&+Fhr@58tGfT>X>1p|66UgM8?kR(L14aOVEnAS&NRVWQ#xwI|Y(~TV_`r9lO<#7A2qGurc4nSj9IfFsFW1J8Z zFjxF6+~74F6Ls>mxeyQu1W2SRU-ft|MqiAMQkeCcpueKL`a-*P@3Mve@a3?UaTCFW zow4NP5QMj9OhDDVv1bBk=u>7!rDNGbK^`?fz`YrF0dw6N5GL9-;?^I)sfLg|g6a!; zai%A?W^Tusy7%nT2Mb^y^_!mn?T(XCK(vVUmQI3?F4{K_VAe$(WEtv&+#U4jZMnuiiy+2kVOZRC@=omCF!C0luju z4&>=@zQ(g5H)vRHg{pK~W0t{)82C|K_I4dCwUp<$aYcJ?j1t0HE+&P3urM7MP8OJ% zEO23L_xM*0K~wmWAIMHVx`*$e-2y8wg*seTtsY&AD#8X4mnD&uk2eA~3llBwvV)2^ z{|=+W1i{wxC%hto^zj!==qDjU|Ub51)1G46&gZG;fZ37LR_-l+pl z&FEM;SW1;>w)LAcl&H~AVp2icl$LYZx=uyqGZ$-WgOB=ZGql(_c6iGQtLajkIwMsn zH>gUfGyx>NaK47XBn_F`dvKmCy6ZQpj78&2W4z7_L)VJC?YBe;9TVDW_F0^&#YOjv3CE-2AP0#Q8p)XSM{JP^SUQd3o-UcFT{MPD_2J5J;n=No9g$?O~^h zls_8)wBasac}0PxtQDWIZMs}dXDmk6#vywY6L~$T#n80)7_ zmX-%;x>(=-xt}&{(^s$hf<0T+aG60_k1JUuz9SoL?R{N_I}77qmPXY$f`ItGW%YYQ z1oZCe2e0?^6${VAe+K_y_Yb)FG)~19RaYxNyY|P<-nhO|MC#6>J^uax;6+!+>(K0+ zek*1sb#JCUmf9Sbrt1(u+3mCKJz<_~bZcu5^~v6P^p6|Yjat*PFm1}@aiDm<#eVNA zFuJRWp&!MaDUs}WsQ*)9XYQ@Am#-JWE6B4eHK=5&6>>3Y^Ie%%1K#@qS!DoK3%`_3 ziqZ&1iRJPcVHJ4QSx@ij0a{l0<-~x!SvYmkrsB)4Y$m5FyP%KE_S2HvAk}MR>-bD~ zy|;NIl86ip=&Q2T_?q_EhultGteD!K%e7RNzUuif$e@AY9(hO9WWW3Tb3p=NZpim{ z#(rbIxlW&7?B&+&{6?Sk$-g3WAvgut&@sA$&WQoUNOx3n0dz%(4QkSsGWSw z{U|VaNBA9+P7>SFpO~scqm2!T3)_g4n*&rztMY3(1Ty@3A+!p!RtLz zhV*DUQueJ#((TUuck+#wK#VhFM5BnRxA4;J*B5_AFm0TRaa>n=HjsCax5sN`?m6p{ zbRXa6-qq8tyJ}&!`O-c85rnEa$dTj(<59A@2a15i3nciqU zceHO}EKc&a-xtl+<;B;IIqENL#P`AoiO57aotSXTSS)uitR6N>-Z7aM-}xW`6ts@) zypD+|=FZYR+uo}5EyH<<6RS#CjYsO13pHkqWgUWf{p3jwCDm}WQErpAh+ZvP-W;QOUK=jpYdDS@2cLoRUO z#++_|^X2=(Ekma&azmV;TUY;7(1Y%L?+}&{n7s}^5vJ3O=em`Oaj{%BB34MII-|eB z#B>34H}aljM3~-qR{}ZHW4%kj33seo``s$ItAiI2rOH{?aV*se7N89oishIsKDT|- zz+Lj_LGI>+_A`mimy2m*AtTruP#^`kSowTnpbsmZbR>`+*!Af7MbMRho;O-s#W6?! zV_O}HWm)_~byv;Q>20hzVoP~0tj2#}GJ?kUw`#KJXUZI@q2mPuZwO|}!GFEkGX9dV zR2iuh{!e3~>lfYYYZRcQII{g7^O^Iy>1a-}@K@v;>B_;(wz_xCw}xVa4>`m*zUMu7 zo*+4t3BR`-g2u_pz1HNqUfj?*ICo!f@djn>#0)d8lDQfhs-2(mSS1}3YzLZ;Cl8}|_|6aD2CyTS?%c)AW*?CYBAEbA1 zhZ1Dt@ue0>ID&_r<51A5H^EnTusL${1?{Mn_5%!fP@KXM{Z*k8`BA#T$gp**Ngeil z(YX20Z}d3EkI)FiZzO{e9S6Xb*W`{QE7k%F3H!x~T7TzsF>n>rZjfF?Qk>~?so#fs z_fFTP>2CHd$&bpeb9_g}2Oj9s>IFDjDI(;5y8*09m4=M4AcEx7CUMCmlO@M%)Ul2o zCmj2$$e;KiEGqAG+ZP%6$#QjGGXF)KyfQV2QRWEA4pI$|^ryGaz0??#t2Q0k^hdQe z2@c~HWNnSWPU**PP$>N(r^rj6rG8ZPYxv_i4C zcx#;Nmx>IsA)@rdK+6s>c$5nRl`qFgmexd}obh``g@vD=c7sHGB;BpX7AqeBI%*-4 zwwCKXFLOl?PA#yV@0zXOE={^-2DNNlLPlOoeJ#KS#K4t*{==|NGYzJ*M76myc2WN0 z_h+wuIe^RhB(x;JP4ye%&oI`I6|s`JIrzO9arQ@7Z&?K^RAV){-+n;hC1MWQ9__IA7Hzw>8{bq7a7Bfgf0yH^;Q+g->o>MtP6a_kO z;n{z9r9eIv`zmHc7NiTMS;2h(%unXdY>>wGp)=O6x?Va%X5hBP{=v25F?}2yof>GG z(3&C<(aAi_?6-}>=E!D~?A(d{+$PBk>L*c3-e&W~m4HqQ$W8)j0yFx`aexJ zF=_1c6EE<{QxF3BK-#-rvhC@gUM2n;%wMkxdK~8|=$!gfPIYQk;WpeJTXnr-CBS_f zD-NZn76z)<@-N!=R;v1Nx=$7X)fiyz257sg`v5MR1=KYJxKmdt&ilp5hfxX+KB=~N zzKYp9JlHBlFkemWcxn|TGh{clbBVQSer8Pvd947zj1=hbdx$66s~K++jS=m6BNAr{ zcqWM6*ZxAWO^(M}5&~cd%T7S1ST?#CAT8&^&mU-sPJtR5Z>s}$i5dLqud^A;*_Ic6 zUXwPuR$m&MOQ)mj29}TMneKUcuI$8VLkL`T00K@jL(HsPaKMd#-m*s^pTf#w3E39p zmk8|{-&fG|+Y5R%KAy!?K^()C3l!1|B=llC<26rmwR49u|I)dxD0+`tL;q4&>3B(7FQ->V2x4bn=@qX{Ya}Ue66lKj8^j3G7hXd>g zdndQ4{5bk)Y+|b@*G(xvHt+S{f|ix_a`m3aKX%odPG(nB5?C?}o7Gp+O`Dilnyj(= zwX{>zimD%71QTT0%a0wHXBuZ0t_5Yhn%fGy?G5!wB*5v6n~zv{ie1!FB{-qdS38Q9 zK;fgy#3h{W>hE61(+~+M@3ar~s?s+iklL){koV$1>wU5y*-$0rbWFz_?5$3SM zZR%;)%@am44H9difJ%&itEqKJ^YrpDEpqqsT$kTw{tWXaPDYb6km8gqva;<*w1nAI z>DexDS_jsv3Dwd5ka@HA!xx~kPX|uM+4JPgnI*6&2aODHv2hr2DO?c9lgs3CWch*F zm-(qs14k<_2P#3)D&OmoADc$;^A_>#VicI`MPE7QSka~S&Ftw%a?yI?Kq%h0 zUwR2-(<_jH)^g->wcUnZVQaF`D||(3v(sj)ClTxuo68*2_-FGG8D6gB)1T{dw7Jpp z&(byVRKAyo?3`75Dj8bm@$A{N*5+l7Su8mYYW)6yhyQhRM|zKEcgvB796%=rpFQpW zapsM&kfO~KvWJlyg(AK_Wit`nCAfEn`B&O=fiGPx1Qw7_#94Bdk>kn${qf;exJ?lr zXF=tw-Qn;y?vuq+?aP!ljJNN;;_$#NpU+QasjTmP2DD$B$<1`u7oNnlODKZJIEyO1 zyH!%7EPc)wW8-3Gjq+6rkXH}TEnU8IW2p+Y9rhMeo6EzaIJShFvX^ZNPES9KpV)(} znc{Msc7UYTZWIRo>d;DOTO+*OeoUwx&*s7H)umgKxf8ZS&vTWh4C>IjK?*M|xMI1t z@F(KT1ZadXdLd78$_Q-?K+8Hjo16pULU5gvvnP*^DAG@fienM5aD#4o**xQ*=4St= z^@`F-BGq&XI2YS5_`|0^|ERDMLNr8B0YNs!CP?!{j-QXGoED4itV$W0Nj49rT7;IZ@ z)2rQXKGf_7SnZ7%VSZagVxNo-ukx?fB4fydYd1b9T)7}bM+e$dBiqr)X!-Nc_l^gL zPmig;CbV>Dnb**pWW0K}#%j&&QJo~}S=Bdc(ZhSS<<|Z;LG|>29e1ls&9=-jrZx*& zol56GQ1VSUo1%IX0sPcGYB6`3kq^6z&>e~eSN(%JKl2S$*O9Zpf#$g(le3&NCtJvj zo#1_Li*}>ci?0(gA2EBiMtK3e@*QpRlbZmG^Mhm#|5C(!AXe=dH$nDh+N18gywV~) zm_QSAx_=QQPAdU8C=bpXI@XzA{y;e99@Wd3^OMFE!d^FS{TAna?$*s$a0^qX<{LbX zeM(;vC@M83OQZ)wlh{QI)20>Fr%pxe>i$3|-`xYcNpv=H*7lZ~qF?u*5$0RlFdcHB zP=)1Dg3_gJq?Ws7k}+eA731)F_!S-myd5ehM%m;w^*Xp=cT7~5#aY)l8F%w|;)5GC z+@=atE0L?|*fdSE`}5HF~^VA6s!(u{YM|sRR;Kf3@9#=Fh0K?2?Zl%zs|v2DPXv zX@0tAS;|1WSjq9ip~0;@5RM&qc>v~TuPdTd&{triP6D*udY1?3OT@!nZl;~-SHhsYt7r475OK=bc`gOuf~ zv|JVAUvgK7sbCLqnuqN)uTO=GJu$@}vR2i2l_^WSVo&?`+J*X>RY!k%Suf@xB0vJ{ ziwn_oNnT|=E{DV)yvlyp^QG*8YcFELZwG<)f!o%yH$btvgvoi7$F8kR%ar+afWGF`#tw`jX)S@&PVPNxT)NACnR5-8q+p z`SGj9iD3oSu>Wp`64XLw*e&7Q=6tb6=SAM#-Dtu%;TZMuve9mcA%Qp z8!c>OS^}uVSh2Zsa4xFmlk4rAS1HB-_Ro`h%r>`91)08l-DFWM7W;%8;{5u)wD4RP zm@G1t7R^Io$%$ho3RYDv2(t{OwhCo9feaS3zhiWrpS-0l8hcE^s!`x00vyg0)cYidrIZOUO z{Ok7#gP^IU8~dfW50C2D50KL2nSq0O_r)&{k#3Y1_x<)JZkA@Q>rt@!ztH>3go)V@bOn!BdEm?OV2I-uyN_kZ0q%NeRMQUF+*!0) z{}%Q}P2yg^QKoBC6L1T(TxGtFd-pVAuxL&LXq_c%hvEbxXqSy90Kbo^sw}_l@gkgl zp?oQFb5ihj&rWM9wRMnfNmOU+mqi75jfFEwNW=CAzYywi7JPMlxdNM5hWJzSAo@t( zH|f>h_c1oE=7rzgxv3@w7eP{FSBR++*@)}71{=92r^K|KI=#5lIuSvEogOp2(K~_o zI5@0mE0l zr5YQ=Mra3VFk_}G4ukAJ)27zh$fhLS;ovjWsCwshgQd&!{d$5=9nCpwZvX0{?z35O zvyXn8@d5t*?z;Btb0U201>a!v!{+Z=YhBMNxs%WSVya{ZScyK`e!&QX<$p?hcq+jj z?XIl`8=L~0&H8WBC!#L*bJgNQw}y?Ldg`XZgGACqYGp9mfu_C!!9GFs_5dO#i+Wju7(8b3MN=iU~P&EPON4d4P*6={!m=sj+4` zK^~y5T2!qM&cGkjc8&qxsI=$siRzfC=yaWQb+L2_Hqp{sx+`MMaXM`glBjQqSgWT@ z8=wzrua5j0k*G^_Y-)h5z#Zu5+vUHIdW$JIH3-wUnJqTzM2Z8rQg;?h-(b&(U~bc$ zu>8a5e9@-a(l#*u{+bbKE1{_>K3>7$j{{e{Ic3QVL)Eqxyj2oYE7%5p?qY8EMsFv{#{zY`5iZ zA#>~Oad*1U)?nqt+@a4c`SlqS;MG=}BW?pbGB5LERt86_dSh+)TeOBX+OWmx4 zHrh078~nt5esFVad~0x6u*oY%C0}lnXu7gYc2n%BUOCW z-Xg#F>yE7IFt#RL_pzjkgICN>18rI`1@hCGr!L5=+rTkRYj!5~CR zYgdW}c?P~ypU6m=a`7j$3Zz6ZsZ7-N>Hp2Na{atkh71-E(=N?3$yZz1Vj%Hd{+6t@ zVnNE_q>ic>-eGTFU4j!Rp12c*EuD=iLF;Ng+*!KLgIpR)Z}CXAI}B4D>$_Du*?LjT z2y!Qr=dY@gRC`N`@&zF6G}sEyg&u}Wq2HEZfa$$2+07NJCL% zo}eMRY0VKmK4Z#Rs+>@SYj%s<&wG%=gjCU4ABw&Go5J&5>HOvhK)~ro|2CATE41>B zxn%rQv{T2NQEX{CfeOYL`jq{>zWZZ*1q_<##j#h);=L+>w^ObS(6}x1DdWsBOTkg< z^JQ2wbM*NO#Nt93gim|YN6L&oBiXo#g4Qp4`=kq)g%|l3q$aL0sl@Kp-U%5{`@Bo> zqwrZ;O+Egjkm(}cuz|UVH_OasE7Caar7$^>zu=ivw?oy?oYBcdNBb0|i(*Zu{xoQc z-(koFK*K1Tul_Z@=BWPFFyq?Fc(qQg*DhV8(~HM&Pr4CXq^27|@n|-Yly~S_8d(n4 z)$5<^T{vuJ6DDoyoyt+x?%0}Qyw}hBbZ$H^10D6u`|U0Y)UaiYUt(k#I&UXB3ocKkbreaFnkC1=9PolN_ zP{?8L@Acx+oj>go#80J!t!pLHNq=5TwO$xf5B}+JAwSqiKExpMc3lD#P)tE6B-$cv z8lm{YmL|gTM-aML?X4WX0BDU7+=y7JexPsd?}02GlQP?#+Vf6ihk{U0e9KV5ZGq(G2m{avn0|JaU{21&TO z>gx=bVC1d$kJq=R%Ue0Vn&vkXR67B9ogYY8ZTE!;`C@2Q4sU^?5v^26uLIa8PM)}{1z~YQqF{X_uwy?n+-4ALDlsVe` z(YozY`SyJP2QXqK;lS^u335XQY{Fi_9)dgOT`;I|;E(3!=4iN|EHChtD|wd@E&M-w z$DK>9&Np{O_33cWYt_uUMsA_%T&i?@@&0G~^{0pEjcpx|Z9J|8d}G02q!L9A3PnE( zFRyzxj#;*DI&l*G2Op#`B4J2_qRd%4!+b}h{R`Hc32D4!2lbK(%=nk{we_37V3QY4m#1qT zWVLNGUhmJPyt9)kLzT@#?>p$PyPhnvT@dTCg5Uj zlD|*T(?{&9gX$>ZUP9tT4TZ3JcT-(zyG8!KM)W0;*0blH@KS!|rOEuepFYiGzPXcl z8S*aCD(7M3=)U^pn>o5lHD}FutuiN6GSn8wxf&T-BsGQ%HWb+|8Od`Aaj_w3kH_3H z&fT3~RYTNHjr1rb^$N-+UKmU$khtb{f*ku1b>8vSvOs7Q3G^ zxGKX>#5qvdllzpAl-u0egoU=q*tN=uD&?2&+vVFcl3~f*j;{<9>mL*OWL!pr$?j6D z=lI*q`>@?g|Mg&_;OHeI1*SazQd1YjSMnD({Y4IHl{K9OoU=)N9^bUvd?li@wwF~Vs?##5g`tL`a`tHN>w$HYAQ^U1)A1nP2}VH z0~;8hZ*1f8lkXNHb)<~DZI*6$EiXh-p#;Q8OhQOTGNzY0b4mGyOi?Qi$jB&FB`^C{ zTVqrZlC(KIC1nbkei&{NU+c0g_QOx0=G)wDCL!?`eS2JqGW>%Hp7Wa&p&apUjE=T* z%CyBDJP%=4e4x#-w=(CH(<=tB`x_)YUTWuP$a0e~l-1+sw6s>0y7yPwtFQL(LI$2u zu{Knm9*{0;lpp)tk$;S9y!3H=XlTLwg|IaRBlnkNvVre$vrBO$z1Se zF%Y$ae*c`KG0)9?OR6j);eUotXM@kV(0}{&6q{ZxbMTUhbm{#C$B+mq>D)i&UvX-9 z^D@S;;)h!W;?gsvg3tU@L#xAl{GAvsWxD&n_dq-SwEPM-G`nwS`J;`~&zxeYCeH@j z*arBHg7D~hw8HPp9ZXZxi3a#RuKHA|OT0t$3CcP_O`6s$D+@o)t(kqW!XtM8Hyh@<7Flw$O za32QpG54=miq0>!j&C(i4CF@ue9P?cF~AjhWeEUp8TSiN5S;XLYY2qX2Uz zq52n3RoL+SzL;tI-jH@SBk~holR1VZieu-%JuHs8m&bXG)nI~;=tw7e$vKsi@|TNS z9Z5{USK9ip=j*i|-5WFG119h_1;CI&)xRUc5Y@?_=4DDee)qJYNpu@>C%$WWtUR5O zBmF?GY3-?FO>51cTQW^5b?pz4kXE&KlFv=dtpS&T9r8cnmS>|!xW;$#2g&K=GG7&S z)+QNNze>(MEItt!>oxv_>Ua88#}dfm6`#7jJe7On1C9@JaetmL!OCFS*904DM2@9= z7G{Rno@bC#WTy8>4!E3^=7~n}7Z(eYM`Wf}V0p$wGmoAXo+Y?OVAtMNeUs-#S&`9d zwIkc}y3WF;PBVdGWVEINDq5+9pZagY;;p^Z%N^Aj`EtKURF!`830E&oL)Wgp9JTNy zLz_8CvQ@k9Xv1#mo;DhgjTjF~oPXY+{HuYcj;UV%cBy6`OYWPKM-AyNk8#Q4X7^xbZqOQk z_9IhO?Y9~EbFYi7i-ymn)QvWGXb0YlsM3!*ho0QAN(=)b_boDkOBR|-Sr38<)#IZ@ z=DuHx(58!aYv|qIVT0LgnfT%&yR7}1@YH9e#J@0umpWW@6odC_tu}(ehUqlrkA4*q z^yHeQ0mz!Q3cqilE@Ny*43uiQv}Kky*~${pwv$cflNnkMUOdpF zJ=(Bpu$_gWolgeU0i9KUSixoocb-M{!<8#m_#Oi?#2!EXt#?b*l;!GX)$XFl9i7mN zI`pr&;8lC}6DZ&O><|qOp(iXz!C@-7C9PxiK*|^cz7-P?n5RRX%aUW9oI9I*#WQs^ zP&M(&<*Uz);`DF|PS*P72+KFBp`9Fz*Bw z>zXfK2o36AkAnbHbfraqe-!TFDnwFVldZA>x%RTJY zJXP#HoueMNWNtoCqU+|kAD`tkTDa|Ec^&V1W0hB;mf(^HAPB$SL9W%HYlPloeL@}M zZ)2W#CH29LFwM&`q__Ky32zUcIiB8HO2N$oMCc|ey?vq7mH^nSZm60u{ zN7LfErQi4B^={4v8e&1=X0=5?JAx8mWs+}cKl-!B&t&(z(>?!Td20v77s`oE zXE4 zo}lMc`P@IVx94` zNeyZ;8Pu8=mALCHCH!OpXMIR-Hy>kDV~Y|OB^BN($OJ&i<}1)WmmPHD)17Hkbt&m` z49fpTri1F-E1@f}GKRzvP-@f4`tIWR(6sn=*~A2e6*s8H712$dh2=q@Do%U>zrS6A zNtaMq^%<+3@#F*qBHS8b6KFRAH8l=uYWt&x<`{r`;ZN1d+p-UoRnahzJ}u-y@0J5- z(&qKiQQI6LPU4a)6?Gn>f`yuZScF2@Tq2ahybm@$Gr@E-b@=ds@%OE{@qv?ojXM|v z7r2Q32&+4SY}~&hu`}PAb!0zT`gt69(cYhh7e0C;tqU})Lc%e?T7HEpE`u8GqA&0? zYQb-P;zVkla)*8Kk3iY+R~TeYnX)I>Sum6p0zIMBH&!}~BS_=dj>5-ctG&LU>R(p0 zl;V>d6QCle2IN*$`fP1ErONBbzGgTE86v+#p`d!mX@5l8()$FduI&Fz&DVI+M%2lB z(yh<||JIC~jr9O5IqD<=;M-N zL&}{CEi$c^jw3-%isdu?GPkzD*k)Bn(#HW-*S{NS+XX`OXB0}NEW^mxc**L{T*_|S zo?KM~)&3^nT0Stks{mUvM0_q{f~%#HS!>48Pc7an7%&WJTZH5uAF zHnugn%&xctyGskV505Ln?iA}VuHqaM94eg7!6Yw0(OLmclv`%y<-)W*!}!K`06r7D z{)XeJQJ9ra5i((*3pDOFC=kHPboa&1(q@d-_NV^x;w~ncGW6%rSU7812_R6w=p@fV z&nmYXK4f?D{ly=H@LT_exuT8#IQfRjfXd#sbsPe>o_CiahM|`L+IOY*`t0-ti#d&@ zbv+4M98C>R1`1)Te{f`vV~&j7hFtogzWFw z+maH>lZxTH{W9=Mr(9J1BIk0qYDS4H^wu;8eMLe^)p(z_v;adB>Hd7-UH5^kGN*%% z?wkSCv68?Sc$0`T(K;0n%5&Va5MSBxXZ-5+Q;F?ccbfrz>w4TsJJe~Xpehmzmj#6* z667xFh3mmbOW}wIXC8F@FXc4Ty$C`8tOsWlEv_YyQAj zha6o$%mHA^y52mY!oM4J&u$kx1q!;e6MK_1;%++~Oj4)^+lzmZFl?EE3zBws;b zkDmf?lKlijKAKw z-RF|+Tv?M)T8Ep|02(iZfKF}bscKM@d;r#}x{Jl;<9Um@0wW%Gn#kpW;<-kNXxIZG+GZnKB&oT%Q0op#UHG@YcPk^rSO4W!6!Q0E0SshMOQ5 zp}+OnU{v~s8_^xfMB!4do|VxFevY!SQXz`Ie@=w*$Dg}kfO5J9|L`)u+|9}Ed8edgCCVbn|)kr8})9E z46EC{HC((_GYqj#H@miP_G&f1CBB;u7_m3$*Do@{Qp6_g=w`37Ng3Cql~v7RW>u^0 zvSkuo)Qq1bYREq?U-V~q!_GC(WEo^XTC!K1Th+9E`)a{89+)IE)WWmXT_4pE`VzFI z4B4XVgm-q!6p)BqDa$=Vv3R9V8M?Ad$;AM`@1Ko|Bw z;Xf8gedx7;h3fZMH6%)ClK$h0p}q3YguovYuUupAd9Ew5=((g`?P4}{rL^k0me-T| zH!&*{`xEqm@x65OX4FhSTy%IFC>#($R`wZENT_PQfq$o?+jp=h)8>K4#d00TllHA* zF9tFTHEbv40`(mvK4@U61JGnBQkt#Z5;K0l0|2D!W-R2mu0gip^;A2TaLIG0vUynB zI#afjS#Ig~-Oy^8mzv|5Wyij96o}D=XO%qFW=z=>&$E($AeVbMegG%|pld*zkeh8e z$I``oHLdq)`M(RXXliG#ap!h__!v~0K?lN2y#hM8JeP#!;#B_j;dpT@2s;+Vd15~c zN}WV{R)F{{1&TW)W9~fft!2(v1ElOT(lSd3jNP7Mc;H^_*X}_1rIe-NYNi*(Yp>eA>Xb@)Rj!@j0?PE1fyOKL3$Flz<=;hii&V`hgrV zqw#Mxt_Kb~vY39yX+;JTVlE9B)tBD-?P=$^<%t|YV!lO(z^U7H>Zqgbd>^n}0-6Ab zVZr}DgL8lrNzuDshdbi+f= z+TL}oTS3^UK&m*x1uMs;G|_=n=%3iv2lP&FGbqGRe$#$%!-G3cnNxvsLV^Cv`nl$1 zJyX|sR{BOXwe;@7Oe2wNu5(;e)bBXGBwOZ$UHOEGn)lGa&_M%J?)6kT{Yb~<0ZA$8 zfk>|7lKvBp`JldaQfiegdhY zhWlt6deKRJnUiTY{M*DbpNt2duS(WTcONyIZ1YIRuZcO7Gktp~fK!#F@G>Um6q8MB zYOw(J?jZG+7Kq7wa0Fcf`^O4$l_Ryx@~RD?|F)}u54>#ap|Ii4l|i9-_^F7Is_xAL zt{!aR?X?ocY?V9;~&#}Zv|%PvyoxZ=>7F;Sumc+jY^=#XJs1*J1EPU#|qB=cz_kcdW?7M|DEkQcTac2 z|6#L6x>*wSw%m&X>C$a^BS8n47!zOiddSU}=u-SY~Z$isewC-ptIz$~}*iF3umJ&HM9=<|gCU1-MG>f^7*H zib+T`=$p2`9a=6|g*SVw%a28z$;idID3GX zn544sJPS+FMIUq1yHi_}TE4b9q4wh-8;WY$qFCMX4SoXXgfOz{FJyqxhSF@!lGO-C zCG&1CMCE&y*FNSrKSC|bbgQf#NIGo$T0H|CP49g$-(kfDGil4&)hExgza5i!y8cz` zS5vaMt0iv`E(8B*>RT!D%fb(YZU1rTT))z#o}t~^?WUL7`SZoVDUXli{AQXXkDIr! z$j}xeGJa$f;9LY~5;M=hS_M|HTE&X|WPVNSIe%sJgu8H*Ie-xMsA#zi?|Jo`K z2M?yq!>x!|V9;fyQuRJ9tlJ3Kkhhcr!Bn1OIyWV~X22`-D&O%a&PIe-Wh4e(SAJvF zA@8bTwADqJ8NKN9bFk0{2UvmhM48-ob3z<;F+zEW4A*Pi0S$WiVJg zL`R(bW00dB^e4#5Zu|RCR!v;uBMzQsK++Z%dV#rm28Mt{-E1V_0WD_TvsK1C&voOa zGc-@cd5xvzC}ItqDxJZXc0Gf4DZhQ#r3@3>T3@7tb>D5g*OYZYInJkGq_%dVyj;R1 zM=D>OjeIwJE`IiSwb4NxfdNL=ZSVf}0*q()+rBRt$XbzG1%_Uc%1O(3_NTA^FC9<}*e`1(;Yn zSY=?bEP&8PC_ld#?JDLQ=w*#CD=Bkk+E$CbFnRguswXCI#Xb;vzq`8uct69AEH&qTiBV@@91?Ka#48y;l_gfs;w5C&D9h?z=X_(~ z2yKu6EOBVEm|Y>1zwkY9&s4}Zjiy0htDX@T5&KQ3dUOu*3+;d^DGULDs=Ez(bi2}Z z1})ouZA74^j2NvF4R*cPD_9Lbc=jGausDdJ59Fa_cn0h~2Icm356%A;)P3U`ds}Kt zHk@}#tWM)Da!agm#|6@lXOe%fi8x8yKGE`Upo83X(AVh(qskjx5+cdUr!Rm3W*PcK&hB zgpQ0hycHLFt3*aIO(QD~CBs`$g^X0AwtMRn#Hv?&nUPl&aWYX4i5DG;y&H%%REgJH z->p`n>gvI^Xwa0f7;1U!%0R_DSxS(m}g$>qdrdz~)O%$w2#cCOQpu(2xGIPUAK6}bhW5*}K_Dx}P{Y7&Mc z%<+TnZrO&s_X{dK|9qb8nH?|P8!M)J*&UHIecm$1>CoBSUL!@CL3Z?S=cvq%$tKkw zfp;ZNs`Easg@9fGln}Q6_??51l#{N8Xl8hRrmBc{YkR|z=QfB_h@$q!;Yl^lj8TSN z6AVC3u$akw;x+!xXccJna(4IcSNV+>>KFGtADrhBW=rtl<16%Vst$L^f+mU(;W2AKUeg?kN-3{Xy$ubCSBPh3u3v#Ty@sg`?&#c{R`dmnRyDm zIY$!l&0>^NuDJR|*G3>|B;CarlCMvTVOP*UufQc_0QfrWOMJw6=0=x}S_b{B zj1=U8Hw_gs|ONHI(BNbdxwz*e0h)HtXYr6 zsmNR7q&$38LJ1$!0wzLpjT4yJ_(Q}1tmQ!&_XFzwfcqLrRF6`OtzE)vtf}XVUF@ab zn{&V!GkQ=O$-4R^Y2?NgsU=pq)@}G+$q7rL-TmxsoB1{x+I=z&e8HEBUmnG%Gr3C% zs`)+COb7o|G$4OKDDhb6X^UCCgyj70uJ^;@_%*_eBeMD+Yt)JBF-OwQVP4nYecQb! z&}ul)3Q$5~*+o%-qBC)}m|6G6{c7={Ua3$=GwWUN0Yi=>IY1vbvw+N;&vvB0fPUR! zzIMgP#68(+39K01Bjly5HsVVFhc4^Y$p{oDU^pmz5Q`IB61F8gX(+dbXT5aeEqfc# z^k$S#Rbuj;hLJzV8b!r8STfCYPM^z5$P+NW>^S$h&eZ83NJN+~nr5V-es=|A#}PnS z#oOjoKct-d%M253Mey>8CQFW67p_|)F#Mt}r7O4t#tJzZKmRWhXuNB6exJG*HwP{~ z<@d-=rq8FFZ-7n^wA;A(CZ4jwUU4+X(=Cyo16Ta62`n}7B0!A8`wQeC8`$HMWp(AV zI$wB-e?9WYupaJ4v7#D$etUDg+=9;~=^IOQqpsox7=<+A^}Z>n0;h>#jXn|5&*WjU zT*#K(dq_)edIx$Nv>mv)+(2CsOgKq_?16*zLk}%=FB8f*c67KD9(TK1iIK8G>vj9o zkZXpE0GnPI&-IEXGtZYPb8#BJRp`B=-gOVgp_tz}2vHkW=nJW!$;F3$o$4^AnThLuGQH?GJxc+5CMYC%f z_BZ|inFS!nZSj5uOLLvlGIQa&^4^VIclSZv{ zv+&x6UC^w~jKw~>_7LS$EKP+|R;Qn3z8J2QRgM}T)f>qx325JYfZcgx9$69dMT=Ma zMpj;5Q3yz#A<@(4ch)G!zdc_Oc3z|FehiIr24n{U3KjvJ^Y(7yUsv>Fql$(BcU0Ob zO`UKVZyF}Y7K%4hZEXI^sTP^E7MD^s;PUQV^nT9mijOMqACFy`TNF{xLYYvQK?*G1 z3{8E`F&>~-je)QswH3+OXkX?rS9T*7E!RH0Jek(Vp2Q$QF;e=%twmHS5i;_99)ArqZ4HNVi;uK0vwvI!a% zs|GMRy;DOf9w?Z43U}fV7##wdptJoBB^bx`CabqGfdQMZl3H{XKB5(?RVs%Y9N%>A z(2TUQy7|Vo@Y#y$&l@%d6RVFuLBqlh4NI%=POld7u*ey2{`F66BYo6niikfEruD}( zuIkr5UB0xO_^*+UKC{IrwY+jB5!d9h)uBCExNDi6SOP6tU`TX$`AqAc+yp5vpm%~b z$Xgi7Cr{EtQW(zWk!|GBq4&zxBQpA}b}T?fUE6uAIQG+656(Ma*2qiN6k`u$24KH@ z0gM_pXqI>*^?_GHlIWe--CYNbxoiLrFUd!?OL5#1itot_B2RE2ehn1JiXn%dcXjC~ z)T-Y>@Tg*@)_-TML}HQQocNep z%Het{9i8$RqKuKq@2!-5AJv1$ne7vRe%%`oYyeyoI1W)acRr>-=!AGf=4n4a!k~|h zi{0_4cEv+rR6(k&?m9jhy%{i`Qjk?GPXU9ip30w9cgAqjJ7`t~Z0jYFXPd_835@Zz z+0`u()0vuWOfE&nM4N-hf4B_kt9`gXYu%|lobwb+NA-JV4O8BcuHo!F{OKb+^d+St zFDJNiPk<@_oAi!k_{oY0h~`EX{n_z2u#h0iIrkDfsPgq`Sj|%Nl~1AvM|zFmDO3|t zU#@(KPf>V!h(X;#9Q_|F!S@EBV<#s0vSRn1!{L!W^oM8cu1EC@WJ7 zVXQEgiZ>ZIB~j<;mQ8JQV=YR9EfR!DWOXdqq4jPs$!>l&`Rsbg{`CjXe~0 zx5ZrdP`;8a&PILaj;y)8%Yh6Td)T0R*rItI9ovp{>irT#>P&j>4KH|v`PgSfx)lJb zLreO2>EYP!Y>T;RWZ%;P{@X308q}%`WjSzje{OZ5Mx2hUF*{y5rT;IJtJ!hZ-~yBw zB?iK|5G(3~)(s z;VCWbWgXI2g*%P?WwhUeOGMT>gMI+v4dnA*cGm>|&!db_Sn+euljurhG&NU^BaBRi9Ft#eUs;xhH88Q?HzA*uTa~f`3^JXDm<#T)W))w_Y zZc$Gc2W@MpjUM^nBNPVq^TY5&^Sh5YBp+K)rx3e^D3$&(0{ILvd&s>>MiMOJ)cBUP z)pNB`u8d9Oia8P$;tmLf$)@Z}+IKXrrb|7en`n~~9@TF3Rj_#fgu9}=UYUnuZz@ug zF!CBHNBY?e*rj?(6t5)=*4m2NbYU{*i{@n;6V&{(a;?Z!z?J3e> z2Qt$F%&Yt~#Ctc;wE@B*@+;~78G70JdpFV}hMa*wu9&@n%oW&8tPA-vzNc1RvpL*J zPElt=ek{fsA!GhZM(Ny+c4+Q_f%&(->4;W!5x|q>+Fdq*wEuGmi}wZkKktVPRE0#J7Jx{-XG3` z(%N$hu=l?+>I4+mV0F-10jmnr$GINzGcHJd11}=ZBLNKk>9La%A0fVlLfxocGzimU8Py4iDI57($<6COI3( z;<&C7S=qLI^P0icFMWScLNw*&j;3pDYC!2#*sL559|idu?-nSKvN=n=b)qOeaa<{) zzw#I^z_vKn_jgxT{+!jP8xsmnrt!&@j} z!^0a?Jf{r|mU|u!WJZA+P@Eo+NxllLnDKsX6yrr1^y=1sdx4luN$`#AEAu-bGu!Ni zF&%Y4bjrMhx_{E>wBd!=Y$y@$hW%_hp@;w2;_f&+Tk-p0O`mXcT3*I*vyJpWi5{{0 z(Cw7Bd7BT^3w|TjA134zm~`a0-f@(z(tA7*?!ZxUPAtB~A~R-F$l=iHK>}gNU=ke% z1Bim(Ov27th=Z6#zlr6GgG31A4fbJk(U254K~;qrN@dNnO>kX_sx2H?8&FV7+cm9HmkEAGYc5Sp?cD9W|Uh#ZTkZS%3zqs*+E#@5S(%~+A`BU>H z9ak0{KlrA9Kd||L-O(Ry=a<`nRr?o%^n>f^ z%#8Gi%o9v4LOo9eIx;mV3Dl82NR(AHvBcZ~y#>`nL6uEJxD?B7?Tal%j7qub&q{an zllts$@e}#Yc z4D3DSpGaam3YUNI*!Z4fw;H$X{dm=dtEnLN1#i z{7GwKB+Gq&G9z_VAZ;XI8?tFJKxy!C+I-&Y6 zmW_S=_~E0cwVTJk?sU~u&-sNgICY)(_)7Shl%gZ?)-qZ}*r2&mc?cxhai>QJki^7> z8wf{iEO%(`e02x-?~vlPv7Dov1FJqC$6V%DAkCj`0YU>-XRt7?d4@Yp90r%}A07PI zMdjcT^WY;$sG*PVHeojxVc%05e(G`1k5wvOGqu$3-k`VB-3in2@M8rYJPWdR=#qGN zdP)TNo7e|vh@i{wR5#r+MQIBo2hNxF8J&sMG$ZH#9&hTJhk}l>g?O1TGphfa+#~q8 z*l%dLPLemW*zB{F;pdRu|FFe_7%iSHOVw3))sf?xYO?Cdy58`Xmt!)znkY1?pi5X* z5S;1YRENUka<_7bwF29Dq$<$pK2lu*%CJWr=&hdHS$eO&) z)#!W?GBpi~3GUJEk3j1=>YgO{$evSY&lj2d!vyy|omsnHR@S2IRHU|-Xy+V*@FQ(V z=#fc;#q4KaNAG|;)%SQY=ro77MK@w6g{_Z1bAyKnK+2-92BSYnRi2kYxSQWhWJsv1 zx5@&}%U>+ST;@dvv?vyL^2>*XMgV1V9`j8O{SzFG{e&Jm3kwWYoh_7#fG)r5fGu%){Xd_p zu0=x+wt(&ZxB^vPJdWpWN|YQVJPJBPY}C*X%-K8*aOydR-MWn@S4RXtZnBq{&aFz5 z^*tW+GRzVJFv0kBw(@QuxD}lAVqOcSLCVD2;6Mo#Ga+zC_Z(zTHU&UIIsH^s*OIO} zBE6&S!6QrXzc@i?WN#}}6iUgsR9>G3&!jvR)`l8$dN`C=6PwETCAMruBof>S!$Bf& zFx`hhbRBmaQkU2G&+PCZQWJ|iT@^Y4^pd5eIeUYh2!!I_KjYHV?{wj>Ux50`PyU}g zB`hx@8)XO$3hK8cM~sldA_feZcL}sJgf2=0Ie?3VE)s6&h2Zk0gdPrE|1baaE6L{b z>J8zS&kjeS(*U%dWUmel0p-^*(NkgURnLrW9C&K?$Z0QC>B`4FlGX0|3666a;FAxt zN}#8#a1NWOeDUSy#xOreFNcrM&se9OPxlA~51zpNhpg##O;njccn60#RT=C*dRfb~eDER%qvrPnk<*me}A6FBI z@4;PBxDt!@k0uwjQ+4(gdw!36gU$}Kgn;WX{~iGlq9@V1)*oq5owD shG3@wU1A^p_w<9t;Qyz8ir79mlQuRq7W#C^25Q*L=L(W}60hF<4+DT@hbC_Y+u-1=r}Cye*dm#M$IjW4Ky<^M8;?&7eeU!K8rq{v1fWOy) zV1`p<2Q>{q3GhX(*Wj4@QYp27UOqnYXYcl66TB;uvN)1bF!|@7=lV$h24Mz`d87XO zBu0c^`tJkeOMnA-7zl*s@fYU*{`7(7e~m|30oenAh&{sucmsa5i`66l`+$$$PW11C z|Lgxxm-_vkMUg^CccE)w7?&$hG7eg}irj)7^on`x`@ik7UxjqU{pC#z=v!BdUFYsF zgC=HIL3dEuc$NEjf+mcQ)`mZN@b^8|w!!~uYGH}!BXI7?<^4isv^;tL|0iQ1K|LL(4a>h@9tqr>jebyh!895-qiJyS^g)P){#!} z`cbLP$FifRQ~8vOO~+$4O~*f-J3H_C#kdh1a`F~RqoXOX!~h27TSJ0}*AhA&mSp^P zjpmBjLOeT1ItlDX<0ZUZ+l48fMOsA-zR09}b|yU+FC26(M+iKf=EcqwW6lRsv*oGM zvIatL*>bJdPnfa}V3E|6GC|!I1ufQ}?daSH&;!_?K%ej#Ynb^zwMN zfvD9e!9|hLA&+^H%=StAE-B385LK}r8&6XW;l? zeQjf~U6zZb$uc&liP4oiwe#}{sa5JzGTfrLqAn0K_*+ob~ zE6%f#UM-F3+MU_KXyZm>u{wrUQFf-zv-ahp(eX)T9`C}@@nbVP=I!3Xu(fJp1ovNo zCZ6>V5u(DfXil%J=kxXYb^3nh^X+NB*6^#p!99Vi+}?00TPxCPZ1nx&{?v|GKFXQv zzo2nvY%Wt(>u%&v7F}nDAp(b8-nP8T9mFUz3gNx^F?S003^csTvLQ+ExLsfDUb!$T z?4~G@@4>yBW4I^PiL&_n9cR|9+D|!PuF=u&=;9FF;OzIS-g)~{43Os>G;Dcj^loI? zOQ)=(b7ezpNyxD$5%>JLGMoB5Dtq(hCEo)Fin)EHYF%TK(JSp&(S6R3jo$2j^O&{h zlIu%9NoH$6uqR)x$2$&bDMiNnG>Gev%Lk))H1sBO>G{>4M|skp-q%{`2ONZ-ad;`C zQdv}3c{g?&D}IJK_FE^v$zR(vQ?ySOF{>=S-r4OS8Fr!FPIdQaR`aj~;`bd;gNQZ`7M=y8Xo&Rejp`fq3iQx|_-|#fQA= zbUqF5)8D_ZI~t0nc_es^D6i|@-*Qz_4dqBvkL!fGpahqsUB_Mk&t$fg7nHd=xgy>2 zv|;wcoeE_PE?37oO>SNx(Q&`D@=6oM@ zS`!(%H82{ry{w)eCbAeduVrSsGv+riJR6(ti5O@}n4hYCb-H-Bxt%JbG-0`*OrjU% zr57I`cXA^7CndKoLk}8Q+HtmVLmy?ia)Y~;Ya}wmxBI49ny1l=$ zdfxo(Nlr`1$#RRF652UJwX1UIHGow}t2)5qh%#eqJkF?Gno7r8@}s(}OU~{xL^afk zIZ9AKKFfr~I7rFuJ2iK?0{V9_I2qY~zGC;=SzYD$=+1eJXp+2dLKn{Z zMpJi55XC;d47V{r*wLIIUDp!fcqC)+gpWnLE*Ig~R5l@1_pt4VqsXi}nXl%&F!6E1 zOXd^PfQxctUY$jWh&Mt_LlSXBr4i|BgXt|}o#i?Z{Z=AAmKeclnv)Lm`bw6Pb(mZ1 zqqnn)4i(m|k52eyQ!MyP7Q4n?`#3S0y!O43b=XMTwkDDD=(?wU`#RY)jI%`>h5P>g zXWJZ|Udv`FU5(J4XG9Z?L*p*_0Q=@e-E2uZRJIS<=%JH$yAYdGedrc0Z#St{C(0uy zp^-DxtnV;=AiV_7;5%JX(+znSxkbwNXCisv{Z{ioedbzVI-t z-URi99Wxj(cVg9=St4SmPDA0{h-h+&9TCDZ-uLNiy19$<(t*6v)|J-x}^w@^(%v@wlyc#mfKT0@PUsBpGsuR^aX-S24Q~4+a4f?2*l@zRzPXlHu z9iJ7jiRK$WCo-kMdoM*Gnhd>SuKi?`#ZQUj0{=AqqxGP@f694sVX}7eB-W#UKl2yn zt>HweDZX|yoy(q0a8Ng9=nI?f*@-r#r0^T`dz_FExg3`fv0`$w{rC=;Wnh*H=^0tD zfb01>C8qB`uLKYOn2CPiCrU z;IWP1ksF-L+@!j_OtcQCP$!7Gz=Y}Fe>H@&Nu2p!zmK`UPA-KX8J>~52B9wqN}aeR zF-u9-PL@=O)V_!R8tj!F8-{o9{KVFk!7j0d8ck}n?ProZPZ(LyExHbFxH0f^x3AEG z*!tVQ9!qPjcleJrXHKjy?6dZ=;=xGCz4q$jA5HNcHZrdVcb}t?@MMcxW;R3nY|nM8 z>!nxLo=VZ41_E+rO&sq}kO8T=zB|%oo%o#$<2;0sbJwb6PS@)8F%c?B9vq=JjE-L* zj*`!|m$(lWLeDntXk9wDWoLOWoD6vHPngQs9TRt{xff>F3v@_aY9>qglVf?vJT?iE zd1((57b(gTx^SlW4RZUVUhYJ<_?00$)g;Fs)F7ATIKtl+MO^8lHE|yXq{AgoMTsGsU8!C^(HN<&UAZK-!T2GSvhQA&T?4B z)R!$vSbWzMlA3>{ECjW9huRg-I-D)zT()LAJm;5|JrmFoF!lI-u$E#4)z}d!8Q)(= z;j`OI<4+o|ZIi+hE}&DxC77#^dwYU)!Z~THLWAAh*R=f;my65W+ zmX}nPS8tsBgoM<4dq!=T%LSUG4h2BL;oJXZ(=RMoi&d$7?R6hD`@Ydt`a>xX`@Q~< zV$EXeySLF+lq8pj9X39-CA+gPWsB^C@%l(U-NT}J>(OS&-`qqnCR-tjW;tvFOFd1B zMD!ZP1sxsn9`OZctk#g6Ug8BDbo|I7n;uRrr&4=ueEm+%A|6MW>Bc?E)d*=o_mlB* z$E};l)a_qI)8pDt_vAphlHce1P<7h7P-ck;Y@JfIf+@C@P9(RyariO%t~<1%)j@oa z*lZv%dxyy5?KZZ$03^PKV{C#2-- zWY9>^mi4JPE?NmYKx-Imw)79=smBM@>QL<|(}B3~>f61;To9Ran|+WV8s#zn;&f)< zu@73##fXfx_;du9^8(t&{8ulR z1#7)=&W`Hw*h;rH8({~xWoyz8rPe{Bg`9V5rNXlY>jJZ<;b8JHRp+A_~FLH zSt@BQSP8q$HPMUCwO$--xIqi;Bu-~>UQt(;+mvNVjI$k9CEisx-2Whdv(?pet=^5+ z)%Sk8d;YDK&}%sqHRO!dhVJp9`MisDzY*r}@W7?1Ip*@#Hz1FHXMe%b3e+PKb<#S- zF=Eh{QH3L+oQ)R`A(~QVQKesGtv9Tm&bk=j+Ht3(rkAdcy){6J2wlj%=sHs?I~{(J z*|W{+JgDeqIeFt|Y3h)JAj2ciXE$t6T4mqLW+N@kUHtT_@bf#82r6Ess(X)=ka!&} zx`v^NP@$K(xrO#ID%0=(Gvg*2n^ogb`JRi1q@QL}ecRb7i}j4BHH1qEE_Wir+~;M= zJGoD~w>bHkc5Z%_W|4d!m$w%x_Q1o@f-kS~hlHTGES>yvUM=ULpTo@0DGER1zCBSU zoBO3MroLku;qy7R6!UwqFYe?=QKhq>?hi8C`9~LcF{ikMPc{)-t2 zC>0$OSjI5A?Kw>_R3sZYjB9 zqo=iBL_#8=M7mIge958v zy!WRhmp-F1l#cSTuF@yg8XO8Br z#HF$Mh6cq|^n@_yoi+7$g6+hB(=`BVLXuzI7UYP`1`{^B?Srzy!mtLCrk`N1$mz(+ zVui362=E7r%csPDVFm2d{0YDW6{-7F1E$_v9>P2p9fqZS$_<6xuug~E67+8V@!Ve$ zd&-#lvjXFlXdkd4kOD(+3-z}n(Ff}W*Fi#k$O$D<=5Ks|OVq1shMVKM^g0w+TjaxB zof-INQh_sn#Rnx8+3siDA|&elD_d#_9fio~oX6><8@}dJv>;C@TdPiLMKCS*ET_K$XyO_mPez~UpAC&w9(h$hgsHL*(gBH#GV!z2n z!P4P?Z+_}4-<6;8Xv;bmPhFk$Y>Eh9=18;OcNBYIdowX{zCwbC5t&;4T^@mX=++jl zk^pr%nicoSQkDA@_F&|=N2}_W>lmL~;<1=4R-#0j1ZIjc?$<`Vs6A?2Q6icF{u+`* zr18tLN67HH+?wd(Lufcq)AzA92UUK$T-imEO6q(QV%^e)xwvkv87ifDXREoW4$wd# z-S|zG;xowtb|rauRQXw4ueJiN%rB2W>w3n#`3%%>I3-ZJ6@{Mp?gFtRlgg+EHU(m6pk=8c~%Aw>dsMNKoP3$j3b11q? zsmTw_lioG*lhpT18Jr;p1;M8CJd7w$J4>$3>)~+-ix}PR!mB%r zNM(Zbv#lAex7Jmc-Wzm)v2r=gM_|B}Vi(mUZsK`sb;n4)jK+1*b|p9`p}wKwQ2kXS zZY{^2GU^snMV*g70_ zCTCaaT6Y+xv*}q+2E+8^_5~d{)WTU(cuV4EYgIm~bw34H?yq_qw>+K!EX$^D&8m$( zp2IqKdwsYhB7B-7U8a0wbtR{(1HczUHGD{8=bfeIQFUt4>YLfr2-ITu`f_YWP(n1L zB+A@xlj^qsQhoi9D?wz9z|&)(oyEesOFoHER(=>L7H!!YnL2p{EW|8t`0*g`3i?8 zbt5PV#2I>-RVJo&H2(!C#`0~!RxQ^mQd}a>RSL~B&fVW}xut$$QV&&Ac183fDVbHf zBtC(N301*Jpg)=_so+CUb4B;kuS6gM&K-L-G2LFknJzB`kN4*7-n~!5)Uq1PyjQ{@ z-BJxVHwVx-p~S)L?wy)?d*(fEd)zaSrRBNp{6^>!LEtzGB`l+Z!pxx#>a4h>9* ziPXx}*t$VezdDiDP6_t9)yS-RxgbdA*|BG!ntzEg+PQT7Q*tH#9@57;k@iXeiPLFB zrE4NLKMI*j7rE>^HR~(gD`5*SoA{k#J(IE|+cShAkcqAsexn;|ScEa!*YX43!|lRN zp=+zWA)sHOLJDGMHLNMs%<4-xAP0O84~$seE3`eozZb_P+BWD&lA{6o+Ycg#hz2bo zU3kDdQ;3*Zj`i9XSzS*x5;aV8V%fBjKIEkrt&T9}_ zdN)Qwh`|(^;ylMZy08H|h#YNYBzRL%|7ZqFu6KT^zFRe@E8uD2?Ln^pR}8M%Pb6!w^9y(ef+;9G)Y;<0cAf0+ieax&`EW! zyb~2QqzzZjzZf5G9-SS?di~M~VLH(4o!WJd8Q*PcV6? zWwkdw!1v5NKEycmw9~cHVrxSpk2E+BEn;7}+$0N}B-xx%x79l47wgtR#uex;y(#zC z0iMhJ4)$it`F;`|QUGDrZ*ZmYm-37Dk{+X2FC*6qMvAy`tpKH5Db zZDrhy1f~F_nni)48bE_r?X-gzpd|3}xJ5+x!HpP(2B85uV-SA{Lhs{R+*`|%LI_=; zl)N|DLw&b85D8a;)`hX&e3*Fr@?k(7^0cRR&o`psmyBrD7*NoP10#3LS-*z?rqsIz zU~bV36;K|Ri(f;5WO9OYXD@EvgAl<4`L;jgce2%;iwfYOIw2elNi1;AYfS2R&x8u{ zcA6D4cflDd@8fw?#|OcbHs8l}Qs-w>suP$H8T=35WQ_T>GU)w$(+eT(L=<-Y3<=j~ z&yA7%i#)xim<$^1V1-O}9(Bx^S|*r7v5+7BC1PenW-T<@NDc~RO6OLCydr8y5EH%H zyhw6rN`9x~RHbkW*!`7xJxNGY{1FYpgg9d~97t4bMTQ)icUO0h+a3a86`2MI?~i`h zdH6U)5J3t`>he9$t{x*3L%zO>kp4b3ngnzj#|s3&mGCF+#Jmo!YYHKm$BQ@9#mX%- z0D;<15lW=CY#+~By`5grxZBM?MoXAC5Neobi|1c%u$ln~a%&0?DT&VBoirF9J0eUN1vFOni zKmFnb+p5cE*;L!sO7RoFqTX4DGz-v8{~6U%%Ne3$jf7} zjP5@Ac&732cZdWL#=q;z)m^v{GR!8|*3EZP9qj~wtPw%^gYC zlpjLumTme_uzkYyrdru-Ka+{`^bfpK%~#GKFpV`{&KKuB7~p)iS`wb>YjKMLRKru~ zjyH`-v)%@>KS#yT4X(|_Dpe@45`;^aXi-+j>tU5Ed{s9_@5v0sUuv2UVVaYyH@Nw zP4ZE~_T`p+!%ZDrnToP~-&C z&b~Rg=60{k7?9WY!40yMYNEJ^c0u_2E4euLpo~V{_<r)d5Qa9hn<0 z5;la!7pOvreXnpu?|nEl0<`>QuDqvgYU#YUkE{;j&nE@$`6Vp?^1Fy$$G3?)&KU^I zGC-|;SI&j+ug$w-onhW@9-s#iy9KV!_&@u}dnM(Hj*NeDe}Ga}sabvx#K6r!gdq0# zkJpZw2k`(e5#%>phVpd_Uej#MM|6M{C;)lJPQgpJ(r7Hk*ffzgi+}OZ0sQ`r4d_KV z$HC-4@57XQ9H(@{A43!vM*8-=Y;0*hS*fK#9$>%xhnwMi);aBEVhH{mKzwURSaU}4?St2ZIt0JPb?+R*4Iddo6A$ph zf8f&93?m-}Ni16%NST$J0dNHf1}RCpfDADhJXz*e%0tm%O9mkMr&@ODMj4g$tPq+mkdv`jCnvEFE2e;_X*OD$ z>Mu*8LWO+&XR2nC0?dmp%!)*K`kpRsVTP=n^bqxciKa@QP(}!(oF6o_7s`__h`jL^ zO5^s>dSK3O(ea67kX>VCB?jQ6G{oQzghbQE0xB_U$W3#ZG7E}05Lb>1y^Q9YfNgQ0 zW&m*4pMf#)JUz@e(V_^kF-&r!>b$)l-RFZAxtwIY*(*|4i%~p$R^lY@C~xqvd}WeV zD4Kh4u(iN$R_Zr>ha`5@d|jq2a!dqp8&p5S%UWC9(i&B@__fK&;?lQGb2LNxSQE9w zF2DUhnk`?SM9Y6_cvvj4XHnsfWbx&~azB0lPE<-8IHnNA8`J(wY3aAb+pZnoLAS2-I zF7Ey+_W&$&Z4(w8HJu1yI>Z!hbKWvm4Q?21sa_6e_(5LjOpjn$SO_e z``C(j$dFbrN6!pd_dAc|FXGRVvOYPj8*fb^P>!~H#AV7~jh%-aEw3!g)J(W#lOAjp zKgMVg^v(6tc8U=1@O`#Oj>WF(-g6_x8WGqwGL_Noc0=vlT?w*Mv zXez7n54ah8Sz1~bg&&1Py6KG*w5WoZNcacy`o^^jjq+?wUl~+XUa$75Us@D9DqHt# z7csoY3sVHDtUjR9DIR%NA2gG%8^GHij}tQQIuscd?#0VvP!*ZhKgCi_C5zFV_jn2$ zD5g?wSPApCTd+_>sf20aqH|8#&I>eC>4}BXP6tPiXzWJ@9C$AOA}Z2ek$ZEOx;Hgx z8yddX5e$CjpG1;Q1AGOYW^-)2E_jqQ}x$3QyE2zQpda6pGcG zJVIyb^b0v=rd?e;^b2bNrbYOqoWPNKgWyFhT!NRMjF;PD*Z%HZ z3$evj^_#x3i5>UtfFi->1_{5$G3aa$P>_I-12+Zz$(H9D3~mnK@0$%~%;^TTKgc&{ z6pB9C_%u#OnB$Dd$}#j=x0xJG{buWRaaCgyXQUI*7tI17)J85Q(`Ms}lELeCGbRWm zI|{%EE3rj#_JZXx#=I~WwkFt6)(IXu(~2TuRHN9n59WFSWt0Ebam?`2{^w=H z9$EJ)k8VrEI?pDxEqJSB7sy=iV`MZNY+)-=BKH=>Fh#V?K~LX-YWeRtMej#0oLr3C zsTI&r)7`D}3nsTE)B?S1L0(@t|L9aMpB9A0S1rG4(C z9eMBZH=@{9njVjz{aFbEW6$>&qZ|DvmR&3vJoYQ=3fYzS9y)>;luN1qP6rwW_aTd6 z=3UhNpt`Gx>op_g7ee~&(Yry%pePW)>8HqqR9~xFZDvZe$5qa8lPo1D@+f~-vky1b{F_g{;e|_IJW9yX>mM1u6+3!nLP^-9=`CS;|mE$fezZk z)i}kB!cR4$Kff^WLTHd=r95BH6l$H|`FwPI{aBV+RhrASK&8Brja$^gi_7_k)<-!s z=J=Pgi>-HjXE8&Me`n>~OK4pDB#CpJIYVXU{)5oJTvtihhxb80Sn#c{O(?b}UDYU) z^AeOGL9#;=s3G_t(n}PGe1sR&E3&@zz4D-(wX-TtS>G~vIa!^dQhx02*ts~&(o>g* z>+#o7_s7l`+#;uLiMDWVO3aaw@&Mqw9% zntZDSPNouUEdssJI_$_wo`9MVIfvxopZNzYJy58YK`;@fX32g$p#fQazkDw|?$phW$Z|6~y752!91j?g4>9aB?t?}$5ho_P8qj{Y@~P6o5Ae1DSm z=Ki>Z%fVfh>bnJ|+;NUy{(!B=C$@|qS@4W zS>7?_$#hzc%Sq^ixmK3@6v91}>K5gJ4GF>xBFT&2aPx-qyU*VXP5xBCG+s;&JiS>7 zt4WvJE4I^A9a8JZH0ilV@%6b(Vz0ks{5usfRqrf!KznO}259F>5(eZ&j>AUF!28FK z&|k@_T757jNoJKB^)Z`t(TUcR2VJV~cXZ~OK|X1hu7@~d`j83e>Tnsm6WY|r3gQ+i z@8qFz8Xyb+l^yjGZ&z*QHYu-?*E)PXXa|ZasCvxQxT+jXe>Gm)4`ajg3O}vmoa5?7 zww7Oy-Pu=14EV)X877lTu~fM}CG)b5R?3AxXVXz@owNgEw{ey{pbCIW*ncVMQKs;k z=x=bb1aGdskF~>*?(clkDj!cTtJ^)3xUG=KKKrjTDOwHl%1&Ic($?m$5N887>@F97OY%^kmOnV20%yfZ^g{8z_zfdk44YaVsqr(@+mxfT#{l! zXAOUp$X_(nER54rT$>p6>>V&OoVke>tdFIM&hlbMU8 z5;#!y_HERK_%ktG^SHt_Yj08o;CAVYwkqC?<1=VAxQ}Gw*FxUL=sEWJ6-`ss-xo8D zE|tvX6UjEzoOZTdyvFtUd4TI3`ND;l*7YN_0$KgHa0{S$CgL`_6|-d;)?0untFwc_ z0P;|gS(|)`RkVI4hio3^agkAF^{C!)^{_BEVdE`p&27uIU0vzUaq%||z9zCQSF0Fa zcR40UjG%-Qyeo?HpPoDJliK3BLY`%MmS>N&O^DQhaDE~Jka$t%R;Ydd`_#jRGuHs+ zk5(l4v@7K>%~UeAZUQVro0n$e&?0V!`a=IOuTQCZvUX}Tc`ScUnM9Wefif1#KiUqm zuQnKJ(WcZYCKdQ;7Dh6~EVTaW0EkI)`Ht_cb;YHA^4?KlT%Q7oqetL{hEPqxJhx7E z=6P8c!&PG+kmV{h!A39PvRWo1=@iVyANBwTcm`^&T-X_-c&^S^P@r|`_|J5xDP)wc zLFHp?j$X+j-78r+*6|so1d&0F0+c)kSv;?(>X-5Z@>H%rt)eJwfgCu}et-DDp3(2f zVmhUUl?ym9sNzhF`#_x|m1^N9VyySA7C#)B@|%&x6gITa#DGfq+!~Cu=~7DLUR?Z~ zGA;Zd+oY`3o4AyMg{hnnskGq0jU->91EgPRa0Q@g^#%0P^qqaNnSYokYD{QLC-)v{ z;(zu5T1Cg<0H41NS)j3iaYPY_$m(ys6&^Wmh5N|rniSDw=nZWMxVY{WvA?x;ftFw^ z;b2WH#0agI_Nc~C6uJbpg;jl4<3g4k92Qqf<4#OatpGE36$5uEpzw%KtrmDIP#CX< zmlA9ql#ohS15I)JbKc(>KC&21?p}15Sfg>?(3inO_}Ic5_M&0jH6QSo!y2xN#7?Cl zIr?t-^J!kmSYI2lhdvh>kk@{SB$^!0^tn+44u$$(A=u&Z&B2Z0Jc~K`LG;j7oN8&q zfV$XOkM7D;hS6yvmMgD$to+^e;e`}L%=8H8m=h5y!%;g0-Rfduk9Sf4v6iu=QNWB* zcglW;ne|=4UqEP%!PFw~uVX?cAECa*dQl2}!rXVr!~qaKy6p6yW@?u^2P>lm=RqJe zZ~qN#)JfXFbTvm~F8yAbhio+%yjiaF`#|EmzFfRLrgjCGysph9D<8gv{j zXcgOQB9*GyTGy>?rz9#u?0BfL6_5>swcJeP#=b4x3PI_ht|DQ_>O%jmXPm=@YMv*@ zz568wfK7a*OTRCTV(WgTAMS?^t&&tu9z<1~VL zbw4e|A^zYyK>i;OS#G;1+U)e9vrHbpbMugQbG7h@>uRbp>TYU$Fu)w1)4dDB{}<3u zW*kD8WbeSPclZ`{VJSKArxjJhHXUBL5cd2B=Q-n@{!p$R-^>#BsT;O|Yi1 z{&5Pdn*f9C;`js8>Sx_Fp+>1@Of)<>dBaU6S|HkfMFqsohkO8w19+rrO=H0PRWbj< zg{i5cL%lrwj2vv$tbjED+QSmP50SCF=w2E2;WO-Z$O?MK2x_;Mkxr!QC~tW+#w91eh-E~=PMbjcG;mo z^Wk|O#6+!+822p8tJ8H7^i=pS0lFA4cA(SB(6P`zF1L^JkWHovn{=ip?GnjQA(-Gz zkJyf?_%qGjm)p)TO?+z43+DnCd6?F&=>mENKQaWY*g-NW0CK|N2CwMTI9t`lb_LH& z4FhK$38EuG+B>-ffhGEs#B2YG>?t^*{>HGL%ABoH3@Bh`iS{)~V*T&+uFR5l2&8gSm*IC0{PF`sK=X3E13cxVqcSiS~JnyJNGZ=CK~LD()_EP`pf+#rG)ev>;CZ3 z-ho1nO1vyWttL3pvhBQh7QjV7J?GROo}{91K`<5W$mSvcRdcKy|F%yw_h-=(sBsj~ zr4Jxw5A#1GPfe-!*8RQe0(*OW{ajjf@ zkY~Qc)e!=ddg9r?oanD{DKddZ;D4*VW@Wfe?dIl@7Bi8v|LsXV;_45s2)_F$#!=Qy zL8D7?7R3cVRpP<;N|wRyj0E|w`Bp1lA1Ili-$y}HBxJe=@s|T64w()Cg!_n%Kgm+u zb@?b61p;9L@9i0r4_2dZV9F@eBoUipQ{jcrB14$|UAiDwzO;jo76_aTY}-JLX=`-Gc@RLC z52B(2NDjE4qFPLBKrqsk30N~XEI0r0k19K*`YrnFUMfqbxRQQE_P$0X% zUN2EVzA^I-QP5b;+vo$0P>>deE}qu+n?tYkk#N_NQ6zEHs{Ut*kd8FdNPO0N5FFz{*dqf zLOEV!1}Y267C=JdEk|{NMYOLwN(>Sm@)~P+rgShp&NTj9V7-@Lw z;|%>@3WG5gm_3+LHAjK;4Y;&&ZS^Vz5hfdhddZ5up(Hyu+mWc%-(KB#e>H0v_Izik7N-|gLXhWY# zsI`KvTaN-ZAP*!!9)wN}{YcrJe#X>u9JE=sGsJ#r%tp;BIUH{8r?A33HttReKye@8 z`uX#t`+tdlXfs`JxeF`AXFa<=b!(V);~@H>?d#Vf&F@8fIl3!XXSl~aki?F&rB@mM z=NK>S^y3Ac!DQRxKV|$FDEJ9fK9hwTZ68-HGP;CTxTUrlH@xD;#&QQWpZ(mN5)_q7 z(8<_A*FkN~~f#DY8<4B6hm99dha9t0TMscTQ4-PS9Pi^JDe#^I(- zNhg(jQZ;^+O=qCFq-Dk8kmeSh89gYz?7#c{#yvwn9aA@U$!&5yWYbFl#R6v08U$K#_H^EpO z*a6^8yY}7&_r)N<1-Meq)RZ2Q68}dct(R%G~OwS-FH|03N^ITeCO+!5OHz zK%c*M`Ii&gqoQj8Ev8rX@F6MO^?vsBc(oii&7_zo?>&2!dvZ;&ej3e$y8Iqbg-x0O zx0BVM0vhxza+c9CXA*EToe51E_l^2$NZ&s8)gp{aYF;Ey;jvPAJ?NR!MAxG3>*406 z0PRJ$l9P#IB}xGx9*F~+X1RRiJUr50Umhg00GNpjcP`ad)f145 z@NDQ{BVYs9Y|l08`hRJmrCNN}8kVqgZ`^Kq%En+ej=_EtUf4)ki>wVY}kGtaA#zg;xTkmPyG2QA^-IZv%Qy(tmy} zyT?eq09Ymo>#K5u$D}7Si@7xk*x@W-sx?9P=foAd`4QHfZpS342ECVv^X!%YVvQj; z(aY0by0Sv6F!?Bvo!AYM?fbfZmDX~-7-t;}wb-BV-r_l<0vSv~*ujQ}Z<7;Xy~*zZ zVKxAE&7Iqu&fc6>80dR$*-yZI)8w(jSZDQ$0LU1aKwrqvp|}}li<*zVw*)eW#lSGg zZ?zIR(jw;6Y6idK@;LYfaKmJ`Gank@#1ChBTEgdY5wkvj5og!r`BQ@bM1J3G&@hzE zYZUrng9$d8wV|1)dVRv8die>@n}v>kYoJy7RY2DZeQXqw%d zxEmAq6r$|di4xU+m+MIwFgVG%)W;5CY3d^yr}67`Yp3-N6=H^c0` zq#g!we@9X$%y>PYvsQ9rs6jShp44SULEM}TJ_(G2PWCtFDJ=-|scZc)u2ZsOTDLo= zHr>bc6K zF59Gf)*y+_P7|S#J|fkm)ZtkIRSj{=-HcY7lr!xwelVH>|388lzdlrFd{QZl*vC53 z|MGC}ZHwc{E_tbXwKY9MXI39>$V>C?=UnFnI%@0XosOcI-gf~<9VETnaCE5;`I)Y- z4lADl_f~|$!Igkezw1`bb0Xzfs^Qlt)iJc2-7-Ef zC5o-%hIX_94;Hb#?%6P4HgmmT{NNH#w>>dB$DpO^!1Nx&@@g};ot#;_;m>pE@uYjX ziRE0#nI^!#&;Q=cXgxew_?61BnT*A4cE0U%CY3>z9KSINYrivplT!+miDCD0wpJ5d zv|=`%D;i~-B+^+2$|U+k8Aivr2DB}^1*jb^1z5~eHvV#J zmXyYGT2~Wdu&wj29cjc^v$Ip6bquf4!XnYo7 zh4-s-AK&#|h@FUd)^`H=tjW+Uj<4_$NmQYU@@v#Wqmwb$qB)7x`L;r!8LUq9L>NL5 z0RQOb^aXLao_SB^wQ27>ct)~?#~KqwTB3blK`Re$LIan%MLS>gz1m7e%&6*$@HPh$ zSwo3H8>-&|u!xr7_Ako%{pwKOTe=dythi>fX`?Y+o^gHqNK$C3Xq}LO8@KQXkgoli z*_o0c5Sn${`pzqa!M1=wrTT^Pm1`+oDizBFbV8ls3TloDW%R4mZp9vwBZ-2^MDxcZr2JP$bC8>I^FIcE&_$6@U8( z%kH9-^89N#iT$exyRAjZgNAeFDJ>ttZ0{z&;>DS!E_MH=JyDuF3tR(c*YWzF&ictf zOCJ;bw<8q6DK1)(TVjr^O&)FRE@#wsqdJ?ZCEsv-bpOs+3~ILc?f>DF_HWW@lRL+S zY3>%tOB-ULKwbm^-ej4y`v`$# ztn!RK!CTK;b}GuR`=W8G`ktpc`N=6o)$7!R+m;Py^HR9E$rTc7S7(F5R6dryzZy0c z>2N+-?K|a>Qh0CqP&=~GxRYPK+4z<`hq&Se+6Pwl;7yH7kblq47d;ET=jxJ~IQEo^ z%kV;RM>k2kF&4Ea^xb+ZoE4PDN|Z>7bW|Jc(Evi_dLOHa>je;}c#!TNf5K-6MfTJq;AYk63!X{)y#@Bg#+{XwG}2M_dY_nD4S8(NF-R&SJc1Sk zW)N?a^hS(3%lN4;hQpm~wbaV}FrZ!@Gl!`arN%>|fb^nLvmDL+<%b9j@z!86a z1}Yf3Ta?HK(6yYWGhjFJ{mJ&sEr#vcwD?1r-A^8m<9?kRj}JE{K8+Slg^-)_Kq8}l z3uXXy=d;E$d_omg7^mX)RmxRo_6e993lFC9*~fQzi=CuvjnN^JU@Alr1m7%dvrSrE z_#SX~2A?Y%^XJ&yiLzDYo-;RKl0KQ9Jc!eZfD<6a#np`Fmu=4R>R2xF%9e@fd4Jv^ znawfKzWg7`FZ_EbC1pt= zr6`24@B31U>|%_4iDa29VF+2GC_aRUFt%)iu@4%1(L#1JlPyKIv6Vdx&$;`2p6B@s zzF)u8%iPX=-{)NCT-Wu!-q(AsHhumxkbdc|fh9c9CV-jA4nKOgmLFtP|2;v?Z9-B| zmSf4zn(5-JpjmRN>rS&gC27d8e^H38Yil;6rfRxzd|9740{0aJpcN~vZ*Dp1+RpAT z^@sZ$VJ}))SxATn*e-j?gvGtbqndOp)4r|4?QEwE%VaHIg{=&vA|LX$&NeyY7N-!S zaIasI%{96dm2u#mNyJ?0iKbJ~Wc0yd#x%d>WL-xsBmLG_%gJu$Oat#f3ZPm7S{2VU zUYgu(zPCK-2^;Hsax5?H4Pb@?J7B#n>dbqmzeB(OU|;roK5d_Ki@;ilcQFRbQd2)=bG3G z%i?S=6dt94U4fEAcpKnUK;SXF?$LgCjo&iH$#0auwLd$ZfEQ#UAmZ=te(MQxA7ci1 zE%J8a#>z*#8ICj>Wx^nC&Qp}S)+b_-F-Lw;pqcDIjawF@AU^ z^ZePeW-F?1AgUU{TnbQt@LNzs$PiPok}@+vn6HvFU#JcC>X%hbpMP%^2;cZPYd<91 zZ57Nf?G=p;PhbD`(GF+jw7#H$42ZGZ=JR`iUAN2rFmB4_V__3iTcP=u*dV(G0-x-9 zKl3k(Mmx!-5GXE|L?I;-{D1OG0Hm1f0OorNrohk_(+QD#3#)VUt%6olfr`P0-|4e; z=hx1VbAm)Svg7Bvg$|VB(to!Gsu=_+OVWO^2pAPIv^_-CFr5OJE<}AysoY*c{Tyrf zfY_?s$+rud8@{w#cDtGsxc)`3++*Cb03+*|jqlKO^ED>pr)xv-;>(C9Cit zMNgH$S_Y73D0PBg9{thvF0^PqYcigsQ*U2lEk#*qE$_%W@D)b#Te9WSN_LmM#w}JEFXjYT%ad%5-_doJ_2WmG z_LZhk{4!4SNVWXwEehL@MI#+QdsPHr1B?#p=m9>TWeeJUlY+86<4ed*kEv*~2f1X9 zagNd}hdnB6R@-fz(=Mzo#m2%J`>HzJqs(o%KQ{{~Nr0l>C6)J}v_hl|O>*7*wlZx^ zNhuX0_6LW)IbDRw2`glGudn!&dDAQ;z@f3+_K@3@=0{Z_4b`dI+^#w$%@K#6Dtycc zGd4(LKMFIe^cqL6m0P=&{OY;n6ZLIjz>s@b%%nU!;68C?+23Vh?HFevEnGaf$R2ci zxf;cDYJ6!}mKVc(jcXMKU<4FtA+8-L9~vJ7AIg{!@1w@-RvA^yOs$3oOt_V)!^s!{ zyV9tYQ836{%SYASKxJ`^qrpqR=&W-_V<1T0g@Q-6hw>HVmc~$z5?yZv*^nLM=AnYP z!mBf%1rAQeM^ObPa+JVA>IU7-)4m|T?j^^Lk^PFbxBV#vLWo2ti!`e}Y`6aT+3Ie| zo3ZhN(r?R?)?TuPB=@iu&YLpS;dOWXtr92r_xUocMk#46NeCI&+=DaZWCCnFmOyp3VEV?jYowIJ#$|_4bQ(qe0%d{iDKiKKn1c1ck%uvEjVIf3oc&QqGae z<02gZ47Uu0LGZQz!oiY`bUOjcglVvwE^ocu4!!BpN=7e7sXeB!kd{ey^Grpd!S-v0 zs`)8j+ua$3Yv8*i?{ZpLZPmNHw|ue- zq48?&k_C^EO} zW-4Hhi=zS6Aku{kMz49%C8^x?Ydhi@x^+at)aWqN4bGQ-QJG3Oe0~LIrD^J=Qv4FW z388hvELjggo!ngJlku4VfE6u%@I26(4o!D~^D&_0bB+r0oYO)Y4 zE`c{FH`>7KHuWAPV;kgv@$3ELGZ~_JIh$V?$ z)IR|V^nzJv7!R$Xfd{Mogm9^p>_(QQJAQ2VguC;#_|Uhz($vkloA-|XzT#40U(vcu zROV(a>v&_oG0iUqO7*|L9D$woaaMUMd@;yv_hn=)_A&O%xNXK9r7*50Wo|v~bVv0n z$DfUjlXg9?KgMhPF19=q9XgPj+5ihrpZRq>%?YNF7FE7`Lwd_oE~VMh)O8my&JdRs z=a|U>MMY6c<_DKWA62LN3t3}UUh~?9RUwmmUogFmAO7`zo4EH~sWPtC(MCt%%)ZTQ z+{UJ5F!7KZ73q}mg?e#IVVALgi0F;c9(D85j-6gdc6T|J5cwrMvsr`S%-KU*qyZ<>aGF^ah8P7 zTIIX_cwr?ra%e&wlSiQnF)=Lcm6D4*X|xypMfDcr z+!wR;R}**{3HDRSx{X0{n2N11ZVy$XU8L4}{iZ;6PP357U?HPBby*2-xKh4QzjfkK zi`eMMJpBu&KVocX&z$@zjlvx@BSU24++k^u$Mt$qCghe~SXIkj3VKXzG@W3Jt1oaH z5@JMLRK0qEVSC|?>LO7JTTUpFk$Lls&Qh2fv@DvCy*ZEm=dt|6h&%PSp$9>2_<_mkMgsojtf(;lm|orBoa|uCHDvU2w1|gNDWd*X zbiCC-P*J*biWLu;A}D!L=<#}PvBn6teuK6*&fNkkTzagiS{tPVsvqa<0iv3 zl`Y-d>hf%Ct5$?nYiE>~e^)l^i|qV7S#hv0|AJJ;Ywwfn1aOC2*qNFiv`p zEnRBa>RJgYsnF`eefjcA>W)s=xU)Nvkm7GK6dJKjHXMn5G=d!+C`}x!17ux($NtxFbICQNQ-HiIznx|*!_im>E8RRtyzI1Z(bZ2 z6erPB@?-EIxxM{fngw>_D=|)~^tm!?290@<%*EniNBmWh&*Oz>XG$K-8qRD~7oIW` zKux@gm8E``N;R1f4<0(QT9^l&j-KNZdYZ^ku5kkARzj*c)RlY2{+Fu`yIwaxLn*4@ zwk84GWdLecIZe7EWY+3AJb>^|d83pveowJNPk843c>agdI_$^?tx;0v(F=?ew+a$G z#H{#~B+ZurCB6S%5UZ>oa&)ss&pR&z_&c;2z(&LLS_s-_LX|OY^oPFsqR@f5Z)v4#v!w?R#Grl)kw zE$iA2?j@upAro!JnldC5ci3!=vt|Y5j6A4T5s7#^~yhiC%6mfZBxJXvR>9CWRQ8P@sZL?TXM3ld!0wWzVUt-Hmr3 z>%O1<0xC>@`<00IoewTy>ZU@L*UqM$=8NzR!4Nm>TP27C==-bvZbeGOno{1KD9OZu zf`}Nx_f$hnfE)^})?bMU_cmT@j`?;`fSo@7Uig%w#PxGxBeHASUwODHMDYH?_(1MI zbcU~C)-OzuD#R=1*!*1P^=Ewt2(9Gu_U;i?_ zS+NaaMs7%Ct5X=p)o4ONr^#66vm+UyYp4Z=R%H1aUBJQTqN5tZDRp zgc)A4{}F&g+yH7BcqKb`;vg0&nooNCVv~~o@^*5zxX0uVbN}y-AvRT3R(0<9&Dc#+*rJB!U;pWkIpp$KBLybFFrua?%w6furWiico^o1zHF zk`jLptY?WP7Hfi;dU5qpRYdAOZ7T!A*`~AH){D7k+0(1u^`Em9d=@o1IfYD(7jZlZ ztK^2J_Rb{Nj%AT}*d(Hg|D6AqlU!Uj0tFUp%Z86IoQE@-{TGJ7vCz)p+2T~6TI53M7Y$3sQ8$C{YJ*bsLY=2l@Qd$gM*V8{Dih^m8`F4UiE@t5 zVnG<~fC96}Lbsf>xEOy`)qt(u32GFA1a?MQa^{K*ywe}1tlhMqSi~NkbvVn z8t|vepQCH|vc1PIwS0q#ct37ZZH^*vs;P3Lk0w&&VwKaOr+P#$ZcYQ+`UpzUEH^7w zZE^<|51rt9N(~9i*WzmPHnu+9qbAFk9!s&@*h<^J{VlHn7i{LaI4gK=Wi@A7fLV$y z{1zkwAl4jy^F9~|N>Oh64}BO3;t$4RSx}xfkFr$MWn{r+ZlsRf2LTO$5%%|Rd7-8U zdseM&otbw@C{F*Wg-@M2$TNzs@K@W zKZ{KTMH9|w<85Odhw=y2f|I?-s2KJ^Jnapu=_n?Qd}eAfEd1*`X%5)ejyIx)#Bf57 z0bQf=9UTGRqdZAv4xJ1ZU=)6^6b@%}m|P?r9z2(4^Ox7>Tod7=KXN5*K?A5Lbk=}B z{{*G@Uw?;yKX!tEb$KsLZ$%e~L}i^&T9S_|6ZI zg++Y-h0m|D&#d$(m}R>b2~7S2_5*iI#kcc03mkZsZetDCMu*$}xp?hY z%k1mCe+Wo#E|kGJo2Bdok@6OqYpC!N%?&igo#-mX0Y^LrynmTi7i*cNod{nw|} zoY{1`-HL z_K2?iVI5|T$u6LRq%xw{7$F}YpX**B=aqQ}yoCe0bUY*@wj6}W`c9zK{&m=3VM3DR0uKBP1jR(!iPEjR!Kg#qAHW%F^ULVn&5L`AeV$AAZ z9Mo03unp(8cv@b%uB;_%QB~XLh-2d!6jOyDsGKtW#R<;Pram_A(NLo!?$l8{bdHA{j*%)b#lLY5PBC#~u zlq0)a2^4vDAl8mtKw#vl2~vJEcB-u;g;HB}pR8LVXFH&`yR+`_aPZK{t&?pz*~Qkp zxwa}2pR>$GR1bUTtvg7b)5CnT3-%s0MqhA5;~tH@L%`ktA%}+)y@AocZPD~v*Ka$`$i;_ldZgfjI5wVk#M6u1h=&^bwdZ%4<#z1 zD2n;Vi~x-1K;f?_0C?`n7K?hX-E8cY9tJHn^P;#y5t3JUp}i}?0O{;LuTF}JXLiqL zn=ZqukgDD?Zw``MMVYko|Mk%_Ak!mD)+2zy1(TEdIPZ$ODr@5+J{G9kZ&neIqlV`l z;jkaBW23o~6H7?Uyyrfk@8hB9;hf)GVa4W`EpCIS6rbss(`#Q|MB_cf=XJ}S>4e45 zt{%6uhD4HN z=}WMm<9(wPWplX26~S!9xhMf;o5O{Nk12#C{inA$mlUpL1p@o{K?$zb7m@vbJD6 zh8D{77~9qqtT9_;rpHfA_cjatM~r+UQ3eD0USZFn6`uMucd^$j<7ZIeb!RlRw?y8E z`C_eIBEasQf@pLKH7$D;J*VMLIW@Atq|WtTSQ*YaXsQJ_xtc{o!^8B)sAYsJH&3a8 z;s{>l6q zJx6a5zrxXrT%%S12>`@d=mUP}Y8sYGE=%&?tJ$GnMniz^(Q9o!3Z zLMQ~w=?%TPTZgfo94*Y7PeqSbBSQCQ_>5mE%6SVAGQDL0sERTUvy%cJ%cz*rYS8Kp zhZpQAk*sLoQ@t4z6yK!xK=a}IE$ETk`K{W(CVuDwIw8D8ro&c|^}WzTB94OR;W<}X z3!t`=9g>GAaA+Ubb{^Inx*7mW)3^yDe^^8)B@o}MF4jW6tk@IM^r*%HMW>M7s`b6PAoBD3~qN)`GZs_#%#IHnhNYnmd0g6s=5qK5C(sif-T*C}{hxp>E z#=2R5u<2zN?r1rhzCbUr98E^=d5u#hQ&R!g;|6UX@U%`r&Q zWqrCFH-g`!t>@;_hj(~zAp@AQoa-NCm36!_B{~pQZ|0Qz>1kuo3-kT9tp+Aza?r%y zfQU9Z@3dqo#he%W%(Z;dIjibT=dEa%pwq~+xgDp)*aOmhu$7zegq)rQNwzxQzj!c9IHqO&cH0|qOGe4Kt?PC@GtDj zY{61NdjkL1OBb!Y>0MEmTSH?R47a!hvRw_1_>}56fd&Pb`(N|Qd-Zdf;h4zkswGOx z9qAPyjk!T)VD0amQ{3#%6$5Z?csfM4D`xNWv@bhe|EQG9E0+_?N%r6r`M7ZkqNxJ= zm}3qoF+Kij@Cb|t(sF(CvBoyKB;7}8&l5Kp-wOZnGe*Psu7nK@ZClA*HHbg`{X@oR!f1m z8714OIl!^8_bUa|MJP`QKfejedy%#xE%fTtemszIsRu^A1#ugTAJlAl3}n}d4s!&{ zzfS!1|38I<1fHdn{qHWkUXH~pcolJC(-*@o@r4YuBQ*9E{@jR;!Yr8Vo#DC%G_k&( zhW28KPskdi^3+DGAvmob%swG8F)F_=FbzIa0$k`xXcp=!2|U_i z2Z4!py>{+e@L59k@vh%DwE;sMXJ;GTtMop%rqBCxrw9*F$vOsxZ$sW&oh(s5%*4Lf zE|cfg_Rnj??tY0<*eF52fEXWT{ zDQjm!FL#J(0Pz4wtTG%&b>7Q!_*9J-B>(ed!@Fp4m<-w$K)74y@9Gd%bZmncSPl;f z+KTsA=kjb+K?lpZ+Ov)RdoV@y)w^&W|GTwl*ETo9%~ic(aPTw%Zwc%8hubG$9_yj* zy3oP}?(D1N{N#E{Xb3%6xo3aXwbIt>I~Qm6%TqvqzBF%m2zudXe_N;_W-!ATRN5Xw ztMkkfMcUg06|J5>Q3-TgPNE3qUou68lm!W1K%BROp2+drE053+)k%(q9sD882=%Po z)X;}gYl@+aq(I{U`5iFMg~sij&7J_He60CcK-#sOW8i!iD{g0NxxKJ2^X>evL;T z6!(Y)j!)r8G8pI9edwAe2{mK}3))ouY-HIimf6e+_r?)d6d zq9>*P>N`BvMG=r`E1ffD%}o8h+q53k+L>4Z4BxHDrGh z{#{X7ikhhX4Ef;5?9uxbmS?d4>Sz}0321vW07*rSeCTvBrc=wVRp>675iXc1Z5rKp zsYo;C8WzEpuMlYq$4JqG81ipV6(|T)2khcOCpdpM72pUJ@2+Rrp_0Z#@u+Fz#xt3Z zUzqIG85R)bfmkK1gcIxl7}22s=|STnt7E4+6x`n%I_K#y+|gEr$cRunvu zt@i%-5_xN>%{f}U!PWEH=WJ$&5DDxVlcJq z8`j}_QnTi6ptj(ns(9v~9}b56-D8IHt27rL$8J_V;4Q5qm}a*7f@P?JY%Kg-QmVl6 z=$VG4EtJdmYGv;x-&A!Aju+O-oHzAwRwfw4;uL+T$O$9ecge$T3ShESK0Rpm zjoS7UYSmZ^qOLupBR~vT}tR6GSnanNbfBO!5E|yK(0fTqEe+70g(DI5kgz4oX-!;d|OePKz`MO6}Rrn+zDdeGI^4}*`jsWFHSsZKlK&SJPPwoJHIH_ zEO&cCWz=*9i>a+p86d%ld`~AADD0HQ+_WE<5MrkH0q-L}p>c(|B{{F%_hlMYiUn2^?LwB(c1Jm&3s>y+ohAs-kdbZ}QQ` zXgX`Xfg`bC-`j4*)g<56fbVcRquLznEhZp3;CqA== z5uHCFg798!DI_DRLDr6sfK01KJ-N)cd8uHVyy$J)i1O$Ptw#GJ7!^pJ*QjS!8YN|wLzmMZ5XVFW&lMdr_ z%_K2tV)=Hl%E~B8pcP&$aIgz)B=ss-80n0Qm#>VcjdtG2J zYbVY`qEQ8>%O@Yz{g7G^S2K+#R_Wpf-D3{0UGklH;=5J2@A3NGmX~FYhw*XkILfIx zG9>T`yua!laI|Lm!(5PfpI=~P zJB9=8RM~cu$=-5YuZDyR!akcI;l0}Zng%MgZ{vm)E$!gV? zM?=r5OBg$p^%Kk9kPT%mR%F@7KQmznP?tmY$7qJ7(l{UFFs5t?u_g$qaPN?#W}Z7!lFDeBxhT8lj5Bv9a4cs+7?GSr`_6hDrsb4zd&U> zb#U>EfhIUv$ZO#nr-7d}PEA~r5|ra9 z#}V%Gan^hjdAG$y{;ugm5_jMVXqWEtJ(RRK34x@?n)^~t1)LGEQacA2Tv6$GWzHu6 zJCGY-2mt8^^yWW3)u&WZe6FcKBh)jd0%}s;TW|7*MQlpVwWCPqi;?#UXnJ5#^}V;| znDN8$+w+B5VhR_C+ELAVxB^MhOCG(P?d&8Gc`=sw9FqNbLu@~bY#g+MYpRxmS2Gwt zF&ny5kb5bMvW@pDo4E@wHqd8w+iES;K`z&bGN}r|X4##*JBdqC1h0JiMK5WaotEaE zxt+7b-lT%a23yXfX_#c)4p8UPb7hEVQeAVOWrthaItb$Of2N-UlE`hETNIJzzV~bi zU2&sluc~r2DbIY1Eg|^5JfDT`Au;$rt_(I7)}hmK{G#Ri`mGst@Fg=JxonwY#CYEY zFwR)>yv?2mW32g==JacLHM;qL#;hcQNMhg>+B&U{NMNiPJuG#?Ocf-p$Ldk9BcTL6 zgQlUEk7Fza(#j9Gu0_^QnH-Q`?zm$oB4zwTGzX24Z+Fdkskp+Rn+UEW``3)_aT7?3 zApsS%R%$7fN^vQ6)V#8p;+t`g^@o({Kw+DkWTHOQNo(YKHvCHDNLCStvxet1MjC%ByaLAJi>;lff;pL@ z=hk{B*+mpCa9c#Zk34Il4*EvJYV0Tr>%I%m^y}{-(Q+vlM(ZCq#wyEt@1*ao-QVcc z>Vlr*Hl^6cCh`ngG#3ujowUAxWdCJr&VKR|E@UZN(!V@G$+mnJruRK^*{4E?#`;>1 zxxjCCJX-FE;^|EDgs|0Yry1M?>E+l?L5<|1T@z<)>ceJ=#w%T`v114c&7QWD@7|51 za{HXi=BEeG0&a|m$bs=Cx91+FbR@mooe{w-qDl5fD2*AIoAJ#3t@7ES$XB~h{PG7+ z5hIEwu;^Vp`neson25K%>x;@+-3i+r_hL&+!<PGSPW0lyvlP9IyZFX`94 zr96h(YS2YAP3a)_QNZPjCXUpG+3g)e*ssXi^1iJ1 z0g)$Bm3_2!{jl)O7(A{|4ZZm^V-h5}H6!tZ+IR*=g<>ztfxkj`Z^MHU;u9k*&b{oX z5?)Ost>|VeX%INZS;A_Fk$O-)y_at)@3OsYEi-bVA&^oJBu&{E;{aN@i}Jqfx6|DW z+O+mya=JCuz@pb=a`Mn;Pq%h=09T6aPeJWp$7?W=&8|ayb|uA2{j`m($c>CQQ5wm7Em)jJ{_GSj8a};o77a{;fSp?D6C&o>;CM zqdtU**@2Q9y6?o{-u&`rJM*6?cis2CsnL08H5rM{0yj4l_1g!u!_e+> zROASs?UhKT_`n8&8XayS%7@vJN<$c6f1(wgiTH?r!xC94IsRO#g}vuJ5Ezi|nAoUW z%?@79t}|Yrh1st0i9bTqV5Oti9QfID%GW1;l#Myvtm#oqu9vb{d|iU4ymiWvv-lpV zotn!x+M7C9J|ovz%Tqoel~`E#3M=u7jR(@l=9mEa6vW2kRPH7Y3uBC%O}gvmCdJ48 z5hF$FIq`%(`lh(noz|%4nXk&XjLdoi0+()xw&^=2z?5CLM$^ha8J_%fcb9O0Klm=f zz@!1!vru41*_WQY?+wc~E4Y`KoHah-XKV%93|`UNdMyYi^xH4LgNFt5L#q^Hn!UJ! zLfgx5m@2Z?pT~N$v)TLx@S^62^J=xwAy(aJfBu+{3lUBj;rEE?(27hMuBM7ut}Da+ z+$ZOJ3@ckoEt;Q=BG3nJ8L!lsDle({aQN4tdk3Fy2s?FYH?xBTO^~u5AK_q0qn(`6>Vrt0PM5(0_m=gDP0U>OSdxuN8;`4z zcUr8~J%M8o=CrclSnV)ic5M=x4jCqYTaY{-Y$LJi8((3t*xz{ig4t=jCC>cO92?_? zk=cc@ql_>W%tW(TfH(~JdOof2h*!Pfd~fJiJ9$d${ofuJB~((hl5JPGn175n|z?6;FCufgwVg zUAz1^i>NMyU>SC^sNT1W7vBV*Y278PMjV7xOY>w`j*{#fUl4Yx`YXjRZMne&Wk1l0 zes|2|?@EteGYwp38^y7_iVh?dJG&?S@DYgZMde^4)g>6UeVt?GMGDuY6ZBai#*Lr8 zLJF;nXE5W{PXbLcqzl)Ha+FJ7YZCqi%Re!`7y%HwJ4#`mZ)v^w;4!w$`3%gFt{u!_ z;%!P%TY}3RM||>%K_O?^q))ubcW>Oq3EAtB}|bW(C$B z6Np$R;mwBUZikbXlaJ4TF`B{+g2JA>-_AlYY2=!}nH$3RuuuuM;7@^6{1W$Sw`le%9OckF} zVBQ|sDPm5iw;C>RyJ?~g2;ytszb5?f0vP2|gqGF;YD0dW7cW$PRm%BzTrx_ko3Sd^ zk}ddIrIpt@-(>Uz>b&<%CHQ&1FD00Ip3i+ykoo<4>A~z+F(HMoj?$AInWni)Xbd4w zBGh{RK!+W2h*-)s^F3QheDMe0175--kSivER;uCrD-@e63q)-P?C?auyiS?XM6E& zA!-#p81&dXpYFIULxNZ^5zofcE5>*|7s#b5_@{Z$?Ku+=BDXP4C!_mmn|E*80QAsY zDBnXT%;)~~jsBXJCE&J(r$-owGcU6e%dHR7g{GP%&2A3|Ncz-4i?p^|H#+#GUT%14 z`*R3JoY90>((X&ju`2A%TZ1gh{BUK>rZ>Ns2za!%!k(154<)enRQGk^c0F?$rr_f6 zmVcHyTDm-u&aBB7&B$3eh^+a3ml3|MCTbIH=w+r}Y~ z^_g^LvDn2%5hmVOM36U6=u=08pIj3M!wU#22YPXsOde99LLE>Z@QccHodD?-LD67iwo{NYP1@FcOTz zB%4f*C$9)_wtY8;U;nG}r=!GOUvPO#W!DpQ7AocsMsYq1SSF4q2jp2!Nwlv7Wl` z5=q`tC2ty_Gro1uJLzfHR6tzrZZ> zy1CyD{+_4_q7)k7DKAp8&xpgM@wVFVru{0<7$g{iW9o@In{Lxz?q2{Y`|k^^URU8Bo1q4utdjeo$lE}e~AuNS8EDE>MR`Gbnhiq*sBg!5xpB$n}0bTP&ifu|j zdsZcsQ)Jzp@a`EP2C<9CF*A^k{Wf!9=_06&ohKsMbU{W{GYq)7FRGFcD16@4nyqce zGaeTMxQnrDe4Rr&dCPp4KGsd__=01o83eA5T%e{aR2Rp`Z8muVgfh7f$J)rf*@8uz zXil-_2VKc+wZ1d0hvZS|pq{hHyZn(ebcT8}1C;$rEcfrbNP82q+TTcuOI42PX4NM1 za{>i45EWP^#1h9+G0j!zZkEin-sZx*XSn-Tt553>dZQf@sP$L~DR8;~s>5rg&)~Dz z5hX$D0E1%6y;LL!RN&J!oN{Pk_KlW+U7Qe=LD@q#1j!yJkhiTCirAeUVA@Iq4Q=e$ zJ6MMH)hf$?@@igagucbyFhYjQTB_x8Jk9IyMPJT+ORWI|r{&={IfLXGIFE{V2Xel{ zfsU&)412DHC^x>Z@DWiTUmJfE!;{n9hZ|@tjiP8BmD{gpbnLIne?Fm=h*5LDtH^t# z0#V_-ptJEfwU@ykHEyBm6`nfVMTOI!=GjM8ihaJpKmO#veNP<*qg>@me|L^+jL~2G z6BJqc&M!GNoZIiY2*~k@54Xvs#NkoW$o6(F_W{3f#?2Adgi9xb(7KQGJ-3vaFohhc z<#7$~S212JVx0X`!>qc4Mp|*ZRHy|VKKu74s%q^|%IlDfE-9Llm^wxL&BQJ)OR z4%Q}2{!^fg1dD3U_4q+QzMeTP;9uX`8`1P^R5@AvKA2*c*_KwVTxyF!cf#*=@8;Q+ zS(m_pBH`Kezyy!L8~W27IS_d{CS8!|!v{GnA~ymjWiP&j?hx5JYtG1{oYb9V1 zIQZ8TE${*VG#po>e<$C++bI7pI!8v<@-4wMfMZi?ftCeiS)xW*7$_K110<_$0bsv- z5jdER7~K|T1r$pU-dCMqt?L0MiJHW#Qu%;dPAoUSb)RwL)->p*pM(P1MZ25Y7E41i z-c*`=kMO1FgHP~X@iLApUb_giXm!Hp3qRs2CC0g1`Ie0ON5AaU!f(iXlON4t$U$XW zDN^P{WNTVe(@-xM`I4TN+Iz!&xY}m>zfwoRW>M|-4_YtUL^$&{5auu4Fq$gAtC2tp z!a#2y)f#*g7)HbH@>eb%dRuV~pt6|Z%M$S{m}vaBOnPTiJ};4afWm&>-~SWzDTZ2z z%KkM~XJ9l|qK`h6g7Wmo8jqxG@!vKx%^`z1rLX5NSh@=CKUw-Rw&9qNb9CpNDdK;L zT8zlJY~QdLf*nw!Yc)(>2G*px08H%;nvQ^Y|DVVa0~`Rhziwgued>SM>-*bK|6wTg z>tMlt)M^7HI50I@LeD4gi-2`Demxdw-@FsJE`qMVAqJ3`7iP+qZ$1Cjm$9J)0othr zS;h2F`YF)_xb?+0kFdJzF&7$(uiyh4be`v@dx#*FO)oq`3te~Wcg5t0j7pzXHSA4M z#_Mv~AwbMl_K|GiJChr{A|hMQfzq4xe?~tzitF~2aQ~RUkZ@x{M3_SK-_WG%L#*w$ z5=r6`x=aasoAn3qqe}k!A#K1Jpcfn(6re8Q)bnrl4pvMPacn%H$E>3{tJZ8|$`sa| zv6Fq2quoyhs9R6h_=*V2F{R8BqU7?bxM?8Ka322R77xBzeST$n_$&wqt z%K|Vgr$orsybapnO3(DS+PwE*6IeBv=ev*3i3W*>hn%s))$Ac}0_zbzaovYKKc`Fm z%oE|d*`gYqg{t`ci{{wlk=>Wv5Qrl6!oPahiuXpeDlcWtVfq8Dp4gyjs>>%%Rh1Q1 z%jPp{NGuKEmxNk(l-3BwLUE22vlC8i?%G(<&s|b?w_2IkFk^F7tMYMlq&!^b59$dA zgGKTLsJNzL{D}e|(8$a6Q5|Kh%<<@8fscpSt~j`F+D+o=^xHr4DBc5zZjg0)t;Dlz z3I4)*opnj-myKDVk(4i?Cs4dq{*B=^t*+~+x&Pclpv8CCh+hbdx-JiVv=KwI)C-kk z;;ol0eHQ5iw;$%L$IQCpKX7BLOgICpB@}ua@qAeLD0cek_tjL$G)r3kWp_zyM z(;n9+op2BgI8$;~bmPfw>z$Xlv3O*=Nj{si>x(QoT#ipW$eoUX1{&Ya^S3s11rM<#ZRec|X>u$oiT*-=5;6oY=*e ztv^&aLOnW06TBbpU)b#L-e8dv)f=rSN%TbH2r8Vn{$#tn~+P+X`U6BiL z+Ty}4N%535i4BtGvS`d5C)w#*gT%n2lB6KR<~0<)H_b{YBw*;S(3B_-6)K<3ZGwbFDy&RuHMs zd2n)$dvoLfY7@)FjpQ&~{;BTmGMi>lPgfIs^g7T&H=8KU;Szv+is~R6@1O5E<+R^3 z`9UM9efR1I2!i1!#`KI`)WmRxU>5V+vxgonY`uu1(z&Brbd=e$J8VI~M7S7TR6e@o z^tRxGd&CAloQ5D$ZOXhvvz_9}S6%+KEYRq}$EnP2c}O45aoVXJA!bmnl<&0Hqxtw? zAf2Tprk6S+8ssywf2!e*IfJ6+FR&NNs++!j+*7m|xsM7kE`|7RCB`kAY9ZMWU0$}W z`8NB>_WZq3a})Ej@n6EMTJS^7!_Vob4LctuEVBVf=wC{s?)Lemco#=sKRdUbC~;_5 zq`msrG+`=4F{u+f`n^84CEUeJpbG52_O&l>pm~KOX#Z5f;4g|5~$if2Rr+YVA)gtxP%k28IFB zclHmjI}%aPK@fl($;}q7Ip|fMc`TpSx`B9JmkRBu4pzZudC2_Gce~ZqK9KQ4gco0) z3h=^7LKjfddb}?)_U%U4`94~a78TKv6@)%J(v>0-Wo%HJUzKqmI#!AGO|5*%+z?A5 zkfj>pI$wqr9aKIB>E_6!flzCOFDPO$=w_Dq`(5iv<9c=LH=b8kYFE<@x800N-UhME zQCSjSkTXvEa8_pT~|rYT;;3&s^TA;^)6z{Ec$o zG;uY2hT$w#1`rAO>O>yzO12P5&X?7Zk^lP4MU@g13n*T*T==n2mRpBJT;s&A_V~d8 zL^f32tT=kv?}s_?9p{Q7AS0PL%0JcWQAw66MIgf`EgmSl)?MahR-M*cQ8+(!+~47= zQee&xg_TiRx!HiEfytIuhF^VFMRKc}V$FT<9(oeeXAX!sCAwfsXzq}I`(P{`v7@Ce zzX^8{Th))t&|qMMyqHn}-X=4=XZnrrkhuP(dtpTcXufxPmko_RIsq9g1fP(7tUGNL z6Wp;k-S$>+AwcfapLjD{Q!AqIVN_s5G{~8#Y~VF&Klr65MbUr z&xmq&$SmqnlhAySoxXJ3b~fEDDN#s@o&T!r%1~z^KvzQpsFHUMeXhyZ=sFvSpM6^9 z&9f-hsEV)4=t;Ok-=em$v+P&Yqo>cF2COe!q)-@wprs6b8T1k@w@sV@>4jH5xtb#0_P17<;9uHv*##ZNww^t{`a(x^Ju3K+7k_y2qA`Ug6C*YchOhds50s0PEdTL;0Os(g AlK=n! literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img7.png b/Term Deposit Prediction/Images/img7.png new file mode 100644 index 0000000000000000000000000000000000000000..7d4ef64ec0b09d8536671c89c5f177f978daa97a GIT binary patch literal 38371 zcmeFZcTiL97cLs4Stu$3(ybs}rFRsiNRuugARxU;2_-Z|M5RiVj`ZFkQbHG`*U&-; zNH0m~0RrS~@K?Tj=A1M4{&(-p&5Ywtvh&vUuJx?vS(`5})f6Z%GhPOPK$J>~&on_G z5>^oC0>wo#;1f-2rv%_XB3Dg?r=XI4=2hSgiPaO;Cm>LH#Fb-HQsDh1XGMKi5QwVn z>>p95Q{Gz;DArTy*%NI~V>I%Lk2V~JBVc{?`G2>r8Lw=T~-y=C2ECzNr^ zY$%nrT54=0Rr8b}-7OY;v`ct-RF%6}WdrXz%U;TI|gNXLY zRa47T2)dd>XDEys(J=NAD#Z~s5MNv>7fR(|f@UXo@GdgiWX*o$1z2-<$# zAl$`4mjgdI)c2IQ-|CT)z?e7n?C-IDuuNtB^0+7U!K=qGJrF2BP;T}|Inq!^8W&$T zpVnB|!v6A&<2bUA37eM9(OporXoqz#&N7R`rLLhmeDp+S#EhsVE1$w8VDv}b*TkER zgMXlkUSQwr(m`Y>9Z^G@{)t5p|GngH5wX_VP5n3xQgG68%IVP~<}r*0ssTZBwM^K1Us7jIp?AD${pn zeyUb0HbigbeVTN-)3k|y`v>(6WM;Pq_g;Ic>(7J(%TG(OlfS}cj_n*LVVBX|HCVzt*UP|$A30$d;#*nnH09NSl5hgn1VqX8%k@P!9Y+}4AH&&`%gzE>%QHhNt({D+BQMIJlspJ?bUZwz<3Yt zZq7~>l3!$5!$>>=UMUGua|HtW23Q_^(r)G zr9#k&NINV{NJs>tr&DV=?O*z-R%VBVvS~SekUlv%l(UKyFs>=e1^uC1c`m0#Q)vv6`$T=ObP4#WQ1i;h`IF-$$^Lc!(v+sHq18I}eU=jp|6cpik$abh zbw8w-;3r*;QotX1Yh{C-hOboSjKjB#S@h~^3 zYvxaFm`5QO-FRMwWfLyIJa>fCXH^XOXfEEsId66P-6$WPQT0@f+RCo*MYnzK=1-r- z*D|mjg*x*wMjgQe2-x;SIZ3;=b_V5`_j%eB)<8yddhwixt4-_Mf%4y8@#>c>3Si*QTCD3ZY>8_xpXWh* z-3hfjDj!VDH%Q5nMVj4H{R>j0`|}0An!8-H28esdU#Uz zVKx`mDC^H{7MKF#JMo2V9HBkVq^RT()(g{C_pa3qR@NsyI>;sEybP;*cl32CZBkDw zJ1R|bHpUBPUX$?0@3n)sh6i%iMl2H|ZW~98dhU6(M;^FS-l%|~_lkw9q>hMP`35_!k zkG!Gre#NyBo_)HpXukErt7(Qv^34O z)_>|S&B>F~Ht|Y1ZavtcQt;4Gc;^fhA*~cA20yjZw$u z0+>#C4WomYs~Zwm*PE~0Xw_(_b9ADtfMa7uLyBMPW=D67Ltr90w)j@fSbN9JLJUFQ z;bh(~oErI~>v;-%2JZy~duE3B zR2%yzjhkL`CpDO{a?Gq`fJLUW(@f%X)r@Ov)}>`p{%~MBHtyX(amxt;KH(xHUhLx;5RB1Zxvfc}W6*=U5n%R;&sTvd;>!!;) zPA|lgdT;)K2sSo(Y08J1Y5owB;1XLXV#noc3XKxaP<`8rgJ5k57@Y2()Z+@jlK#pyFbUq zg$ll#6fm%(T2i9X#|!0^IvA;x-KiQ4{Hx6R@=Y}zeu!GrA>0k;1l>u`Eo_GzdD`a* zKM7JXlFIwikDMe+nj^r1jZ*NTDvmt3OIribS&mFRYsMojI`ZT+a zX$vNNn0MN!^;i|M!}_HzC#MrN|?uCnWVZyuzje}K9YGrC&zLk^u6u(!8U`*TWgE5ThC%Cqc^if7p~X>|y=hrAndcaJ=hi%c)PBbGg1AFWOHFETT?V&RN;YoJHtNigfSeBNlLjrl@XBU2u~vAl6DL)8*?lwxB}$lW zR&ov6cI$y2z2Gj?E-^hi{oWRu{FyXQ+)Z+yK;6mil+1bvx28=#s5Sm>71ahH($^;} zB1+3GU-SW3=`2dZ%8cyq)#6`nbZKFttn6dcjeT+Ik-&u$XX&ZO3~IUh<hJP-Q> zkHositO_%PYNv>S5@w0CAkJWLm^`gpo#)REkIksh7+<+;^^JGYgU0UKO82S9Rx9j; zx(;U+{FeF>OqXV`X^b_8~(dnMe`5?HJ1UjPAo_fsJm zF#FlEi;_1d3|5c)xysw7-$3mSRZY!Zd~rte&F2Q`mYP zEpyxdX*%K(VL8T4QmqV4WWg=^k?Cft1mka?_WRvV_rrr%n^TKapspAn=#Vo-OD~Tm1oder0zJL^^Ax5NKcEe96R20x^z1nJo3t@y7U+>k^ zofL(d0w0!4An^qyhBOCW>mJD>=wvbHZW&3R0Jw{uzu-@sHw$m>NOhrQv~IuuE04~& zx9iRy#1rtbPBx3VGj@IJ(nX^*{@z3A_Isgtg6?XN0>P-wiQiq1;=y;9+@u7UE{+vU zg^%usgjC1l9N{mPtsIYoRs&eWgvGnubZ6d)+cB+6=lb?rX`imVj`ha7Cy&=_vBwp< zneJSWsMbsL7cipcDeU=DwvK$PdV=D&4G~}O|B$KD>zTZdo-XLFsI4=fZj!*-G));v zY7o{HdrHSdvAEo9?>S`g)Lu32yE$so?X)}zSWO{T1>Xp^^mNKQ)q4d zBImcUiB=JJZ+kq_#g=aOiPhXC*gPt?umk7ZZ69>HmphRE7`)+Ulo?A+(8MMA&^*u7 z9{dG4&SN<#PvGN9u6x&UEL2b;6ST3OQt-;Wk=!B1)%#8pIk0_QVa;$IQ1*`w^lu@AO91Eab?`_k@tufe)P0u$m93JYFB9ly`Ok3#&N}aYEE&8h1Dt!OvkRcl_&EEV@VuYOFopC5?YAGEsre4i=imL-6M`#BO=vuoLD` z32kNFeS+~4ni{WHr1sA>E%|V)VGP31&#b3l$DEf1{EayzB1Go$P_EQrY2q5BEXjm< z5o+u2IDx><6HV&kYGrvpLd5}irJF6a#3^)Zrf>)6JI`Us7^Fof(^R}_LoGD`Rn8S> zB(uGqIS!W@tO`L`qbf9!HzmNO--{$zky*Ye__bUVgJocP=Sp5gpIfy2p1Cni!!n4^Qsm4LLm0B+?L39lf<5a!l)U*0t6-ro!Ebe4O zruvW7b7O__uS?mw$c$~ZpNj?4X z6{)~zE3!~SR;st$&*;52N6gB8bN7HS{X-J8v98v9DPS_JQx+WAf~nd7#7D|Vi&v8%__zF&*p1ooUlciIYWV0~KHky2mmQ3;7I*3@ zZ&=1W@3%UTQ*FGnZ&V}!Hg>dpxI9rkbbu8(QZup-50tkU3UEC(u@C zegS$XHw*L)yxJ*&w$5HxMb6ks;3YeK_5Z)=|7%O|KCcZS&y6=5@N>H2=c3sujFDQL zmx&4U*APB^K6yZIF>mspH-<$%*Mph^BkYmoCXHsuc zsRQ4WmwA=Y-51v_;^2X+u`h_KfQ*u|hhn6((^aPiJztz@1U{zo`=4Fg6Plzw{^SgnyhH@0;x#XX1eS^D0)=`#a!D&JPR(GkKD z%NQ%I%MM=xi#D+5>Wz*s+@J*dJ!r{IBb~-aiz~?uK>L<{DWlCn0ZYIV3ywAB<#Vqu zf#O=xeNL2UX8+Kv!tBzl;!*w;ha|h z$Q-+Chcr^K-)+CT2#EliYnGYu=^=eb)lNu&JO#CcNa9d&*!NVf9Y zx&LOI-2OrD`P=5E=S}bTFcB@@-k2+(=5K$$T=OdJ7XGG=Wz`uNVIpIlst#HEu!GJE zzOQWaf>_q|rQz8T+AA`4z%r>Km3xBJ`3$l2M zqO0=ydv{!t7{l zo#4fm*Tj2UX|2*2;5NBavu&DZ-y1N+u6KW(yI`D*pR>=!UPWyhMBZ1!|Lxs2NCFju1#NXzCj9TW6o+FAj`WR%~8X za=l$CnQN#4LjzaNT2@dx=XtP<+@CSF3M7Mh%fnBqmdIH{uke+<4^~YgE||nPUI49~ zi(Ua$^oH^RBAqY^E?;kDt7Owa+K_lwOG-76qSn7#DcsJ{7c^(+%Xz)B=>3o=)Oi9) z0`fc;&u$f;n1`^S2N!Q}EpLYE$egFk;M zb}sj17~ut_OP`ByigtzL6YTHQ`pd(>pKCXLm^>$%OuX%QfsE|dU%hU4jNXLAZ8l)E z5jn)0IT=I6l6Bj7)AW+E-33|Rzik*g=}thR5py5I!FbQtqU~h-(x>-cB}rTW4YQo@ zMON|G%SjP)ucBWFkDdJ67P9jxL1fjpfrT6%%S}VzH#X*#dGt|1avLWSSh6ZRD3UC| zP5$rrZK|P(&vl(RE0gLc@AOM^XJ`qa_oFNXp+o_RSAiC6^8XZ12!_Nlp|85WkALfO zcsUUPl2rx7$bhP3 zVzjb$`YSUz>G;dvQ-Kr}{_dM@4K}j%TK@bcO|`VRG)oOs&`e%1wJ^DMB@#&zQ1usL z*;u$gx37}ZMo)E$Yz}g87YOv15jvx?!L*bh#lM& z=rm7`}#97ermFhFNH{21-HrXs^3^pUC z=5PzO{e4Sf?fmC|VPRH~$4n*5>4;iLfz<%u#m)?zu-wT;US)9w2$QRUe+T&VIr?!T z#;7%AMyjCUwbN+Z8Z*yS-Dbh6?kQNDUc%d-(}pE zp0boUxUO4T+N@0+wFJNDv)Q%OMoVPv zJ>Z(Mh%Zq0mHEP5Vnr@83Tgsip<7GM!wD6;O0~$1szM?W75Oi^F&gyWAJ*Ysz841A z9Zo=e0a-tC^49Zmak;bRqq)B5k>~XL&=lvlOiu*ENdudeAJ!}<@bd{V@A%0cFvZxm zAK#4iy@orAD}DsCzukWsUZ4%@Ljc%EHl)y#dtnAT_Bc^>b?W(=M+wVb*_qGG`gw*w z=C7&@D~kBH?Rsl*j`iy{L4<9l8t~dhe{o0xx~_`aaVB`~3criLW5^*(VuriN-d?H@ zmr$m2o!f6tW?-bE#soL4AMW&&&Emm21tFBrbNS@6-xdnI&_+z)mP4vrED-;NZ_~|f zPo4xa#;PS0kp>Cu&PEEUlCiE4UPm{z6}f0&muoN+>rzBAt3%a+5cR_Y>VM$e_RcAH zqCRfQe5;5&%rOU|OU7V}CkaJ(l*P+NCip<6V7*kT1{dEi>Uf5Bp|1|_U7oK?oSVo| z8MSVc&%f0Z{>^&Z!yZxKV!;VDE<1}yyt#jP5z~E``2jlzdT%9mJw1{e>=@9k=hr-~ zKRKFz6|z~hN6Iwu<+tr0QroO`-$AbO?hG-?_INjStC{@n+P9j$?f*ubBh?xjAGJ;-`_-)AdF7-J#r>I7 z?JTh?9KshFe~xf2c}sLx9|Kgj@)85qo%q+MCxqvJ`O)1><{@{1D5=)e{OzBh z&=r{5t^37>SgZ}*BjBLJ4+9;_Ot-G<)_@|t|3xLwZix@zTT8x&vq6~4{5vDe*hS3vpi&poB4Je&-IT8zm%dVAkww&mvI z-(;*{48_U`7vOH9*!~V76z&u>jh`5f>B=({S)F!8B8Aw>2Gc@`L*+1<6zs-n4cg4?ix#`9HXih^$GpTj@d z7q5&=C04v9HQZMsr|$x89hNPGdd2ecAOHwEN?-ntwROsUUwTqOqJ4q-^GZ97J;Q0dcAM(3NjfUW&))Y_eS;=M6;7B+=IBC#BHpjPvCK z5uoqBomk z_50ur>3mwxho2~FMtEy{nFr&j8G!vf{JWo;g+Alp4)wkmZ=4#eS*|oyW6|4-JB}yw zkm}aq%X7oaFW%plSa^&0MwGt-fLv5fpRd#3@EJ9X;ZH$0 z)~9^!u@<)2yoLAhYZOQ?pcGsrx<_uy4K#5td%~8kR&1Cv_h%9(wn{5g99qh<*L=2$ zq}6A#Q`B%G6zvwcu~7y|;{z5dleIwPg#`F#5@^=$Z;*|VKAj+Ab*V(wSAC0T(ivbC zJ}CQ0%LlqgWXpBdLyC|S!g6CZ7w+CV(nUHmoaofRpnVTU<^xiE`nLr)vmR?pt6Y=8 zmYWkY1vKhqh){3Ptj8!&*9KA)hr@+8BctbMvQu7ua%;KDAotr?Jf<J#0_AUg zVGxB_WTzjM^6x!RbM9Y9V^d^ozO4Iwnu^2SMPy_q$T+IYJ@$!jZSXA6(_g@zRqmLA zezj~_@8P^FA(FwDJAuBx0L)eH??T+Tb1mPp9%-5QTn+#qXt{pO*lPGV;dE zu5RVZH?lsRmr`cvj^kufvrYAIP0ZlKt&-@@~k^a1DHSxxMIk z%a0aFNe+TbFHqOaOB>S8_yvX^#XR=XIx^_XO1N(TEjvX^(^^d}1Bt9Gjj-Bi#)PXt zrJ%e0$*f$qWoSxq@)YWk+=#Fm#{n>dK?p88HYo@Bfk{xX=G95Y$w^{#(0z$Ggu+ zhu-=u;zjF1MtA_sa@qM2A+n#%o|qc0R`1Q{%Lc0AGa+T2ZlKa)w_AHrnUZT$9^QZ` zhaR%3ylka!z`c!nu7;U$n{A;~^KAKags5gD<@rBgCg!P9%TK$LRzyZZ>={4kC+^>+ z;biE^u{V7g(j91vk}gO)7IhDna{e#jlNKZ+pd%?&vnB^q^RfKK>c+aGI`|_le*8xl zCyjAMFOP(DW|s{;#x06x@d!Ntps39+z9yv8>4D#n99vI<-wIg=oD?;>NH;-I>`WX1 zV~d&1feGM;N*)6^)0|(`l}s@H`aklAgCT;`l#IJ@wAQxv_AA(Znej8)Xh+cYa~PK! zlU9)ux7GT$YD`JnAxr~*%a^3UN@)YoeJK#fXY-CKuzW6Nku&D@jI8~o zaF_M5P{Tv@#U!fQgL^>l!@rL_?6s-*Lk+Q0|bggn}0K#0@;uCA1 zBwp+>P{kW?1NvhM9OGJnlwi)h@@ZmGke>hk0CB+BTqZO1o6~5SM>2i?^D)1OSLBLG8V3Hq*x)Ga%Cw#tJ^R5{3$t2yq5L9fcq;}w;C892#738 ziv>D?RQc&6mo$t3f`KWHC;O24)|QXnj&`rD?bqiU9oj&+4RG6>!Pg{oKThPm>z{tY zEOYX@V5%A5wZ1GCHV0l3SNU!Tz+>gAk}kxvMMx=7L@jGO1(QfmkwAmh)Yf>3CKa++Myd{m??N1-L&zaNjZrb_c~#==hwBxvAw4JlghYEdcDZ z=6FH&=>gw#!U*>W0x)A)aRZapMUOWOeRS?X#+ovN^vh9>f3!v<`{y99V>KuFhvr@! zqZ1o2y;bXVg|q0WI{PD=QVivnQ#eCWSNIwvd*|T6W@P@feZJ2eqr=|}z&rnyc_3A; zr98Zl{(W$qaJv697KtebfD}`_VFDLE{6(Wv=2A=dXyq)F@WNpI!sT8Bc zf3#Fff~D z`kA6K)sgAs&rTnx@@)rYCAwSgZ67;xYw>~F>Ca)r!BaSyZlz+(hP1|BS4EnD5<5{l zQ}r1vHb7dXkyb&V$o{Sx+~?Akz>U0M=s0PW6*WL~wNsz}x~fiu%f55G$a1Jw;4bU+ z+y1iJxyfeG^F3qM0E+BE>2Mf6l~QtH>8hJz*6l!a9(mjt$yN39us>MPYPvcf;m|q0 zz$*KPVuMX%aP``EcZ@DfX&fZ$^RoWz_d3P{X;GX~i?0Tn z*tq;`^h6M#aWnz?&mb&k{eR}JtaL`@PL}*KVP_B z)xHk7xeLrKavPxGlPtf{z`t+qRzY&O8UPb2x1*Ac49}$ zPbNbn>rY@3ZQ^~(_A3gjy29E1msX3biT2j6!DR?q6OhrgypjJf1m<~X19d**)TAKt zzASEv3c$|2X^Sf+!jXYG3uB3?V-qz*f#@Zo#IgY%(c&=^$uR(all7t7!#-G8Bse_~ z^*vh^zgx3dVNW{FNyIFZV{mY>E%Nw_so6iIx@^Nqm6W)-8I+<4ZHuB(rMgd`GC_ zVUGZqtCz6jL_WGj;xXd!kD=XG0lK+2TDJ$TYU9lPje8R8CbZd*rzSS($Pd8ifca;< zfZGcA__a7LGO5j$&X1NtX_>lWu?8U1QN(i{#zr>)TuTx14P9K)JHU@WWBOIkL0ZPN zfw#}mznAjnbnkT_I@4CNMmls&#^0|Q*|@$R z`DuYB05m8meOb~|j8!F-BsX*B&0ASJTdusTxy@~3ED%`d9EVgL*cr>oM)>g`iCPn8 zpL2qxV7aI~?{v8kE7lb||9(EFUrU|5dI_EGy&t;P?<7Gw)%{o3=GB${@~7~jh2PdQ z+M?Gb&l{7xU!IA;#qy89HQnYBEbL-$qer;c>|DN*f$lXyxf7Zw)B8K9FE|eV@D0v$ zaZ%(+=p~~l!?F3@91J!@?=pZyuLB@zqky`a<>;tKZEVKCRIIP}j?}CAf=?c<(aK9U zQ<7GQ&^NyUb#vKQ&uPc6Lno7xDfiW6jxlmqF*W5ZqFXV2K3aFkMLH}YVr7Fgd?xT65Ua$_zEi@M^$eE{C(=G}6OvwMq zt0sTZEVM)e2Pms}%@$%I38l_t(R^|WG7Pu-cNk@6Fzu!rcIfp@jFvKNGtU&jOlH{t zXn6M=9Q&%UZ?Q=}tAp%7qN{~dwKFCx9@hWQTp11(N9Rx+Ock~ElWC?g9QW|9g z)t46#qPTfgcex*&1P}#+!KG2k2Eub@U!YdBLa;6DxmI*|bf#Efaohks9V+$-QXJga5<4IzX90dp`yOXycJ3q`Xy(#6pEDDYM zpcYGD!%fEW84#b7#OEO9m^MSOP!7OIdoc`@Ij?vUE0kz1v%Sp6MyXu@nf2=QjhjH9 z1Z8|k?_XgU%=%(V``WV9xx`l@-K5Vxvw#xA7a*un-74WCe?`= z)F7$>h3aQvFZ>@FF3#tyv^=7$V#Gt!m}aO5gRtjf18gH&%zUIK|aTHX&S)6Z=3 z)xP^l1X(Nk!(96pDs*Ly`z{awrW*8*_WZ3@D6gwu;9N)I9IOQ6ZRj}j)v-D(6QFKzMH!$adevl zfsxtqc?pEzHCdOXWMb!=<;PUDGh5-K0s!&$vif%3fb`u1P`VA^CEgYsDA4FU^r*w6 zq8^4U0F1kJ>$IdQUgKMxR|FC0c&=K+K{}W(SFw%Hen!(vN-e^6xShCe<2wEbI!3l< zA|PO^*9?k0p7G_MWoMP#BH^s3{`N~7-el6A^1_@)zyG2zNOeaK9jTv1PTxP67ZeRI zb=E{XoH=lP&$O>hOUWdls)}xp3kJ}BvMcg8SbaPHY-fD#K;6(C=NqOsQM_L%#|4S~ z#2tBgtQgwq;;8n~!cA*B9nfGseRX904D;9mWDd&Q5f_!Wq8=uw^ z`sU^YVZtEEci_t!f_*Csw-Z7~zSkK=;rrr`(ye@lyc(QW?LKRMA;IffwUgCfnSkbJ z5eZ0?o!0IHpd$!B43TF>-7le04=p%2Dl1`jC<%R$B&Lorm>-UZ!@cK~!eI}h2V zi~X392F_QC#wltsWRw+)4Q~2Kmu}G2k?!|^Aod`6VbQG&v6uUb*(a&^GCmL#p!@dI zaN_N1dB<=!OXD6l9+mLVPX63Q8$3+E57u38OP!3TQ!zVx5Z(Lo720rgTO=b|%|+zf zpKaK^XcLSE`i3Ov^QC7jGr|UwXKtPMKq;bxWg61m>Hi>UY-eiyiIfbgqom0dPn7cR zQ@wuS{qCh~(%ZcHmQ1B763Qa4>2<+uYWkfaKskhFzP%s*r6QX@^WX~iojT7~+Yz3# zKW$Pu(x_I^P~tVXK!N`$*zEdO&GR~_^U|k$I#597He8PgwiE^yEj3w4PnT1!HPe12 z52_mGJH4U({A@2HNyZD8cE|ENF}c(+|ugycvF(;?bNoZESuvQpc1c|1#0Vl zk+4YTms56s3)+H3O_n-od#GHtYxb(ysc_bK8F9>+#d0r|#Am$^x&c!XN1O;=pk7_r zsLWVHBH|7oN2y%M>r{A8o-}XTVc-P)hTdU&*~Dovg#nK7b*JTiSqI19EBz69hI$?X zC2HcF1x!vC?RIHRN#%w+REbWGngpuqKFIUVDgd0_k_BHT%dn<>P)7CohpEa=BuT&m z!`5K2UR;$+VT~sqpaBFjS-^gCz@+5ZIj+y924QCQ4{%`ag2~YQo7IMK*i0UE*1CCrBZ~_i&D`HzQhzn&DZWe-Z4uh2vzH z8<#!udsn&M?JHw!8b0R0RKF+X+Q@Keir|6zAQAyBo_$~5Y8#rt&!Wp<(d2a3B}QMb zS0c2*?f^yXyYF?LYUeO778{P97yr4@ra;fqb?*b(P_gd@rp1^iW&_5$?V$wM2g3Ug8Ml{~ZDE|c( zgR09=uY6OGGpPDr=pZYJp5}BwIRZ(+CCTQ;Uean(a6h&h_Zk^-;C-Y=dm;GK~M-D>RB z4w?`Q`gZqNX6i?|mfAN*R;Dr9cm&QE_9&fjYNY5?eE$GcRYeI0!;_|8d&gNn@DCU* zNh$V-f4oMdXecdyRL^N;jeHP%to&8GG2hXrZJ#%(ffpp(z;ZEZh-&}F5H9&lDs-~? zqshPZb|6(F=&t6f$y4v8!}P|}DF{)(yqPUfae{Ej(N8Z|OUYo2aiXE&2Oh`=G;Wp? zu=n%BRw1zXbHeRJL4XZ(WNuyZAN+ayUOY(viRZ~)dX3*g7+CScG?jwc1rCpCy0Nk= zXw-H`(vuU+k4Rz1x4Xp74P0FIt`$99n&9i?oY!QC2P#n^0ROxWgR6tG=uLuHcFqbc zSDzcZbTuYQ3MgxJCRzw`AmDtMwRLG?(C0LM97)x-JK`a844b=Nr6Q@rl%igEc;3O$ zXEn)31?n^0ySPTnD1JG3c(>n7%piaj#U$8ACH?5_bJ zrJDGDWF4tj_1GjDI>=rCT~#lI@jy)(*ElSyC6H46DhhS$U^rtaWRJFn zG*Ay~?}2V@sXXnHf?T*PZWWyIEnmj|s6zQp-APRuKs@Rk1nlmb$a(J{rX#*xaDKav zDlgPuSd<@al)B66>$TJUD**8bJC&Cm%5!_FkUv|oTjw%aQtY-DdkyJq^ok?(mILZ`Y;XU|!|Nr# ziGnM9>r+xK-r|%_u4#(;p%KaegYIFm<+7%CKEgLq$^gSy&=AX$Sl0*qc?Mgch~aRS zxV}B>QN=@FiL1cfE5Vfm6=^LW^qvC1b`brB$lAJ3T%zwzp@+6n{m-Q4Ym_Ta#E5Us zNH22PwJZM{ToAXjFmfAq0&Z5V^Tgt)JR?}^wI3vH|03e`goBG7Kh9b&p|YC|Sdg)B znLf~~i0#9&QPpzaxDoc*`oJQerEKA+jlQ}Jjpi>yA`5Ud<`A=$;`-l|@agw!py9Ln zL}YrPModR03!}h@s$-I~Y_3PdTEGY&--(^#0PO0h9=?GdWMhvS*AQ8Gv+&lH@`^$y zkDdLfeSCq)Q~BbB)uN16;oJ4@VQZnrB&^PEF0L7vzE?~4g~%eOeB82d@P(lJ2IHd+GtX!r zsE;J$eXwv)z&vhjDt!imB4d@Ok~!t1%m2-D%@Ym3=DU+vCJwIBTRGkRt|X~s&ai6N zCXYWE=()cVU@p*XXfTo-D1DNwK`mRL9ImUi1PWs`$j;A>ogoGV#9d`VJL?*MT-*$Q zvzeafn09ka-)bs+?1SEi#1qfol+Qq`Io*E?8HvLayAsS@ByaYdm1t=iMZGTR8r^J_ zw3*i(Y9tPb+d3*p7j~)%gI&A(({_?MH-!#fJm1DBHf@{_JeQrW@BiC5I*VxaPl`vN z<4iOaOGbCUr8ix;>fmY+#mzTOGNoe6cl)2p+A1f$%K-E~C2pu~2sG`L>SCIxDC*g- zqN4$s^kGKqm+xnFVFZs}GZONEv2v$0t?Wiei5_CS0({3U(MKWE*|VKe_PcER>4~r$ ze#ifcElO|ZO2CbM45SA0yXV_f%{!6z=8rcU6ww~mliOLVaUfALCD)Hms0yX?B<18| z!DPYOJ1xeAlAAmEfso;?&vQl$AGgkph3pjx^B5o&KN2)n6}Ilx9Z;elmuRZvCPk-j1y~ zV)K6T%t-B>$U6%0)LSB33)SP#MjPcuDVM&tM~5g%ez~zXR1*O9GnM$vlldj?Az&=7 zxOk%C!YmAlW^6<_rj0jO%;^4kE}Jl8XJ{Dqf{k0NC1wa5ODS;YDNtIEkzVaOCxE-c zzx)+rhaNf)!-6kYDKRmscLkJ6p7^}-_YW!*S7c#_wqcOq`n3u;X7#e0-sIeN;m00k_KoF*gRFO5?a0yHFNc+0}>yFCb$~TkBv-11F7#@JCxvyLu>?K6cNqvp0 zu{0VjR;Y2T%$;ae4y>D7OBWYUlZY&8oS=nMVSGk~(HmE7dMc`w zw5DH&mlTCaSi^Nr-UKF6Nq*PiGyAXb>+IcNtz)Uw5Kl*f^!oIv_JbGxK=_Do+9O;= zmQ1g+wP#9dZFl(eJRJ*9S$d=w37

V?Zl3*A1@q(39~xNhzdc_z1$8nu zQaXQ@;QV<3e+y@uhUvF7%DP9I(OT?hPdjTzT2zV)ilNOAy0P5K|AVcwj*GJW);*yh zA|Rk3ErOsRA>9npQX(ZS(%m49ASEd&B_kl+-AD-1T{CnubPmnA$M^m1efBwWIqJN^Wpq#;$yi z%GC2{^LAC@*R;nI_$9D^Ya@B$vvZ#s=#Ck^E=y&F$ljiPK-{O#X0rVqFBJXy3I4%_ zwDV%fNqr^o!T825#f(QLygMKrR-#yTd6b^ew{#p|XoY9e-40?V5&2R-o4*wv*#Dlr z6Vz1a_4@m3>U^Zg|2Bh$%^4D_T1?+hh7uKa&~qf6y$@uXD-9CYD{|UxrX1Xp+ay;v z`R3H@xIKznKCLo_r5G&3YNA&~He^`hY4SnW&RZhJ26rOD>D`{io5%rBxaUeo>3}K6 zp^;@IOw0l?_%iPj-Nj?W!J`G7mwPR$xXEk=Vhds743-6H%sfPlf);uf^I@<$jy-KVj zz0Wr9ZBG%~QRx1jkak+c;cC(%7C%k0-HD+s^kIaK)Jr=fMLR|JAX8k{E%_$x{&;*9 zmW;Y*;U!orj8)V?o9!7eE_cy=bNJdH;go)4i==+T-gh2A$s1xI6?k<*d$CftgYbtN zDf}bjqP&-{^RcO?p{*!wg>Ro-RT{4JWHF~f9= ziFVJ{^SG?8x3=+rI9Y3-rQ7OwFB3mm3?kM#{N_A#BQ&6w+u-aeVVX*Iv&&-aXtvux zF)C*)W{nK|gU2tL&ip04@B4sf1E>HF9H+kJ2Ahnk0&BI+smXcj1)mL3_7NLxVTmR-;y^W&oJH&1Sl9-Zm-87P7~UqSr#gIEM)rG%U9Gy3Rf+}0 zC`Q|mk=jeMaXoZ0+uGvH09`SBUaRWK`u9iZ%^qHHg$T#8xF{$l{%%S+U7gp5cVLPn zU^+%2CVZLwSfys(lA>YP)W#-XulN=D`YubMxnKDh#f$>lb10ZF0Z&XBEBewxO&6Jl z%@~O-4IjCQdppXPxnJw7LB>W-G8B1z?Ay=3xi0X5f!Ql^B!j~+Af6Q$v81&A;#ae} z#w`m98@iwvcnh0=^OwBSWCLApfr2XQOrQuIt*1nhfD=lj!rT#3@6w|?^qd#&aX&bw zygw{YDIU*`h3*G$6o;oh*V>W5!BL1!V_5^s{CY#F0QAPY#70(-nCrBE+aSDlakBVQ z&!_N8b3~IJ7*#~?25lc0b=0m&jn(sNFkP9f2Pn_{9d21o#Ws?UrqtfzT40OYo!m9l zv&nQBLx23eHgdE7CsF**TPvZTq(W`4ffp-4t_`A$S&Mxrff@-E>DNcA8W6>TaZ6eRi)0 zx1E^@HG+m3e`BQ#XlcQD*2%t2ZVK>*uExf4hllUwiXdY_e$l;rUG3dZhEAD3eaAJh zxLm*MesDbfN%$~4GbZ8Li;+<-P8yeSaqFY8rX0cUP90e#uI|;-L_%gZ!DAS@ZM?j) zfkYc_MDq*OAz?Tb+uLtPJX)o$yGTmOTevhu>bKJ^nyMIPaX^s#okQlo4~Nzu8TYKE zo4N8=sE?GOG`E4yJ6_MjQ-AzEdz-nOK)v@AhH~*i6*j^_549#Xi?L^*;!-l?U1mX< z##xREb=$sWjaxg$xc=^2AyAQ%0~fS?k_ZV)jo)283jz;`*m%w@Cw6?t`L~6EWtEyJ zI$jgDxncTh$IO2lzTLIHXh3+iH(LVID5ZFr`5h8Y7AC3-cB*pm*cFCB$XikG84{P@ z+MbnurF(LBs)bMHZR0>x6ZgvkIo2}tOyn#90yMU+mDG=C#|uiGW!GZTyBV4>wZznc zJ}xrijeMs?EMr62BJ&!!K@cr-L8|-l)}F{MFm?73EEwu6l~~=cyB4_c@j3l5vQLM} zsnum!3^z!;{^5Z*&qm&;ec$|zlF8aX}Y-g|$!k^Z{`D zNdBXFmcp}07IfMS~;RiiPv%P;xC&0!$Wv~E9#z`6$g5Rs>NYq`@#*4?FC%0=|xIowv zZXcg1YMbh@^QEVMU44DrGItvsg_m!67}ADqO{eD1kj);DnY!9!^YEptW9zGDpuH=Z z>)9;A*}N31^3M1>r~MnQP+^&8u6MbudY%w7PC zuMN~JB%j=>1xK9RJ0EiU_v$?Cay8_1((HK*sm>cuW;_iib=^l^wA6wKLNanejYw(n znVK5>P)(2Zll-aNHJXQQ7P|GNZylZt!_ntK#E0;uwHp#AX`x39lY0ZMpJ$#j#c1ww zrZXJ~_!l=)k5bIO4T8v(WSDQcb}x%=c$25zl1Tua7jc`--uOpniFr}dsf@5aUUU8>;4n#b>k{&D27w|NUQZQ(m} z!LJPa%Q;^ObsgOVUDL|;X+$Y`Q8%NhHGdnMr<{F+B+f}b-@bYeG`%12S`~z`MV9R| zNBk2&jnWyG9^QZ!6ydLr9lYOGivw*uxuaxzqs1mKi?X@*wHu^4i7c8Q)-TAGS2__i zllzEIWW)0nyi)FbH|Q0to)H=vn7GubuM%x$bsCh|WJ09my&q8Mbe9z$5tuK2zR29& zVS8yeed(qrv&n>6_g+R~LZ|Df@DYORW)kVFO3>dun5_u6Sieo^wWjWu>;2pQ-w5(E z+8-yo33}gXRJ#m+z@Tl=%N*~cVgr3FDy{A=Mrr4($|}Rt6F54HUiXinB}0ewZ%}`n z_u-WNYO<8DU)MbQMxfJVEc4WqxItE9S1hTxlA1v+{DpbfR_%1}UK_=$(y$NO6nmzg zJcxSX=~6Kc%n|g*%tE8qRZI;UPtLxr%zEG0<($wPWKm7K%e8MuRhut~#16~9e@deB zGGC`b|92ENB}I&CzGsMV1PJ%$>k2l>@d>HSMKnK8?+LZqTcDwl;x6XOWOJ#l_qDtd zMBl#9ve+Gc&cE#H8;K{xRuFd2W5;7dO==ab>zBr-ATTx>R#g~H4*;f=94-*{9%pg- zC-I)NI-PCd9i(a!|JC!nn6}SDATzRY*(5=aatPV%3Nc;zInlM4#M~$3X}+sh-~D@s zZG(Mry|IaDT@k+V(NFaqWDTv)b?PbM)nWA(hm(ndC$Z;gcWxw_q4>60Pzek^wCT&{ zylo-nIK{I(rw{z|^q9a7VNqdb5O?=3_B!-w#{Z@DL(1NrX}$4zfs^|o+`9Lh8ub=Y z;)Yu^JDs4-UY3s4v{{zU;C$!MOF7dby9j1OBlK_<%0^slY;N-gJdtnDZIwi*-th5j zut?$N1D9T%t8X!o4w;Km^(Bs1$^G_x=gyw(mFSK!|4h+K?03m>DF2CI;XZjTU0fiP zon1BN_AvTWZ8VRm%^S9cM^1`&&=a$I!PM|P8y@2m(z_IwN;S6EV-;k7_60h7;Ku=R zEYLB|-!9Tk!C$@&v^gtQDw0vP4C{m2Hf`LD@&6v>;7n%)u+vP1e z5Q^{|&`@E)&(kb6_XoRrt4g}elf7u9k+Q9fchfk!G|wW64OI8 zfr$=;$$l7=ipL$kOtWQkafAUn=^guI?gpwFIyRfeoYl=oY`18Jr|Ng%jxJz^;mn`- z3p2XS_xhyC!camNeU`p~O>W`ad`Zx@Xk+jaje0a-yRu-;fX5dZfgUmUlT>p0*3Upq zm&3%hm{s>%pzFc%NK25L@mn@H5V|Kk2h1t6`0J&NcSO*>l0Itl5r$r(bG^s^36f4p`P*Y1 zU^HK8bsNu{Qfo!91*R-P7v!k(V&*|fZI5(z;+NVcQUq|sF@@%4&v!kMK1Ol`be_V zAX)M=J6S2~vU(NHjHHip?J(AFG~aHi0wvlZp=)||h4EPpSGrHF;Fi-DvkJ=a{NgZ>v`XK3 zm~G7b3RXSf{T&k4wfSD1hW*Q3{-*mhU~*yx0zy|>4O}^rE8v2V1S*vckC*~|v9hE= zIJtRt#P%r{G?5@M#lw}*R+$X|4(i(_w`Z(14N zT;=(8C*1!Cq2kmTrGLyVuZJBohaOBCU?8uhX>g-Kh7vgcdF`E z%j6I0nv3$8c%bk$E-Ri|fbY|(yE7QZ_v7RpP{Gj=t~RQoAVwVe?n(J?otI1ndcx^< zrPFPif~bH2Dyr&ar;q~Oko+xbI02asXThH+ve~+vz1@$y(gN$$Xzbrq)TGIhHOXg9KI%Nxm}T^E^=O#@BT9uWm6Ze z0Nr_JoOb1JxU{ENB`@@h?e_8Mbd<=X5yex|6q+G|W}jc-Pv}HY3aFZ))zWU?*eBT7 zt0-?kywa+f#7YY!m6$OYggi;S2#oc$k5SgkU`ga9gVcRJpqc3HI zfxj||opr0I&g2`R&PpgwI!56ql3Vx(<4I6z&@UW36q8JKKj+Hk^n`!LtXs_sex>s{ zvi=9Dgp-ZFho4SegAF%kX2OKVZD)WYC@SP~;H#w?6i^iCQmp^8MdCbwtrU+1j9(r^ zvIF#7JiT0@lWGQ!$G(LM5O)Lt1)$2ha$YUD_#Wg#<$>~qMnYuF>v(E@SMlG&9NE(2 zD92HSP>jm2d)X{kmTzdR%fr96`sFmaW+!fL?mQ7Iq9#_pzz5C`bQWD30qBWQ$kE<@ zCpxg4sTbU{I9VdA#A$aZ z`?)(yHZD`PUi}4_br6A;+om`D_2^(I+VwKEz;lK=h*1#lXDHi;S#GVg+7D(9A}K%w zoY7A*Cl#~4_%<)jadE^srf0-X2c+?dCUMp3X-efA?~@M^iNgX&S(pYSz2cfL;~I?j zzi>HkfiddM{5mS4oHI8$H5^NpG(G2WpT*?R#C)eA>iPr;h2JrcAsmdGyJHC)Q#Rtn zg=;D08Fgkk+fJ;yB%^h&$QLKL z1eg@vl&!SD=- zBMLknLr-UeU&R<5w}^h8ZbzUkGTwLo2!WYzMe)zKqX|O~6Zm(RlcC?QFyW zm-Va{QxOeY?(>luL(}|exb>wVDobVkdjdr^v66&Ph?YFG0*!v%2UUryfu;PxSZZCt z8e|AlT1S=DS5OoN)?2HSyp$C&sC1dCs6giVxo_E1e5_enEfGXK)%>Y7l^GrXEZKR} z|NKzpq~4;u1KeDM*P@o) zw=j<#G*m4*Ca1a+$u6is32E3iM`)|RgR{QN7If4e(*lF~YlKohPH(;!p^Z| zG;Sx1u^8G&#a+9o2PV&xL3%QCQyj`@)1 z=ArwBf*0mMrTHg^v} z(jHpk^IE*LDc5y@-J7 z22-&G-!|6WDdzm^oZ$aPIM^C6>*FH!MNMmZZj-HccOZAda!Pyyr8opu9&EVVhV(ga zVgf%+8?Rb{7FB`nxQzs@7&bj=`Lg9#-q)smaCG5AA?KJhHS0TOU;^lxiP>X@;SAtN z={QR#`6`Sa)I4(59k4;P2%4^^kx2<=W!@iTc+Hm`!YyLuhnKw`HSIlNNz%(?0j@=I z#>|RlIZin(r`$ngKAl#{vpkT&5iijd+~}|rC%1nd-lEEW(N#ji5}qUOu_0I;zy+mQ zN$Tw_>A$#XzS=4KoS^$)w7SFo_oJ?jjkUIOc+W|L3YSpMKJT9HNd{wD$ofx>R>T}H z)MK|SBouvgs^Mv#s1W(MG!2|}SYhto#uvhhO5Y{P`Gp*C17gPqd~%K2JwLqTYD@0( z+NHiz3kTkBw5L7lSQVy`;e%klFviPDP>+*oXLT9>6}fq(415(lJ8xa4G?iz#c+x=% ze9a)`?o@O_;T^>91S@}&0|NXU6-HOijjvs>=0#1O)q1O@5vi7^%Hd2;mX?QP+U*Tj zi<6h#42y!-(+$FWtyn<=`$c-{n|Yzq)zeHCZ7UBL{SQiRzw<3Kz)bk-P~6jXOnfY+ zB8Hs-LX_OFlA+w3vMr-9hHTw`aTM3l$(`$spq_A2l)=@*s}sZKd~vf%LC4he9V(t@ z4rhQ`7L_qJhbLobsrIw~GODz!uCV)B7})2&m`mgYIp<*ByGLdvSiT~M*^f*_mxSihO0oO|dVPLb}p`_-@%zERUq@i?QyEmPJ+8kk#R`j{_Gw{y+7E%tBJ+(5(?K_}jLU=`)zGi&lZ(sl z^eB+C&Rrngb#p8AI0;6K%3~1xT5#GjBT@`>))Vz8_~v-h@D{;2|L)~jI@z=i-pFR* z2jziG_cOBTjR%g~Rk7LT;aPg^7>`zFi^#*j^T7;c7(ymMUE)SdW78G)|QF_lhCw{~?wqy4GxOw)^iG`G2@l#-4_rB5=Y(57@U)Fm1N(_Q~#Ye@! zFqpO$P*F7eJ*}vTBON#BzK&otz-s^-X~n+3Z=gPj8ev;UM}PO??(g|U&8!7t znEXmqib6fB`NbILQv=qm1A;b!P!XL>J|=LA#O0LbrnO~(F-a3QEnsNnj^GC^{R06B zBYn*Q3iI_4MotTVeA89QqsIC>0-5=}Hp9-dM9Cllji}soG=+D#ZvQC$xx9T?WM30;g>RnC|O7ug)(WT}dIFgL1M& zHpmNCEyb8`h>JNM>i`}Hfl1!4!DwP5Yq7+`dGH%DA!^nuQXr2Tq>GLfsb!yjGURD^oX#u_KdjQk@))P#JPJuD zdH8FA@Z(-BCU!cLK9N&Uep6$=y44wG#`!f8!4ZTx_voR$2FIC$5+pPs5D-a_w>&$0 zi}f~jkEvd!7(U9~1^roF*D{o!n~AgbFgKfXdI>EAGzGhd4gfIFX*d}GY*eYjKD%dc z&$oBQVHJr2czi_Q4{H+thiin1q=CpuFjlu-W~n1EwVQQ|XW91~kk0B>UwaU7buo~} zJDOdnSqaGR&MK>a7lW~X8Y<<9-qgD& z^FB}R(mi^9tU9gc_6hqy5RHYoUP-k&EEG7Q>u*MZ6YNA_h8g;tl1$_P3^Mv0$qlqc zD)4TVSKYYo++pt7l)>n;UwL%lHFaVS2_=F592q=E5%^wAcKjiv9FftV(sY4IK5Jve zvGOCRcO}+}Bvsk9nllico3_ewMQ14l%pe;o{R9c**_l}Ol_V*ySy)D^w0fg?=u%2~ z`uVkM8we7R-{EtgQ3_p$S#G&zFBU?!@7^^NHo0C)cc8e%(PiM_#JJ~s%m{sE8@+Y5l=CPc(j)7TR|M6`M-}cgup*6OQP(7ib#IP09~}B_M`y z_7=^POc8T?`EoR(HhS-7<7xD4oAR}@6=uKl9?meK+aK--o&GtV_{=@I!H&VQ@I_hK z8Swx>fY4oK)nhnsg&DKZcT7oBX@x( z%Y4xxl^yJwE@sXCm5d-vw%mf)h*Vn}#(bHP}N??`Q3j|y% ziw3B(g<`{mzs~e~w%affFi~7IP)ey_gz&6>sWa{uounMRiM=)Bf*w`GSC0AIM#A7- zqr2oxE=gztKVu`?9TEC3vRmeX8ZPVioylo#QTet#2Xf6q!j#lGg)P=`HK}i8$j z`@@gV%p;UhQjsF4BZs@twPIv>%%c?pUk!t#*-h-{BfW>t6vMc4A0I1x>$e5ol(_b% zJ$^f|v*5_Sn<$`2rtJnV=$PM%h?fmZ79AYdU{HGfA}VMVUee-i0mmKWu2o2Mm; zd@bYFk;2rYFz1TjQ6hXXnC8m|$_CC`kH$>XWJA08r+)VU^qrpb0JXAfEd)(^H*m96 zpg2v~`}*49O>tp**RYNWPM?x!HN18ztOn!q3BY0EEImQMz>W@PJoB;SQEM3j&yi1D z!z)G`h?iBg`e!z8aC>qww6w+op|frSSk6);sB@-M;kQAmSC(+Z_Z#gu`OJ5|@kpyx zUZs?krwjbfMWUZd7k_6sz3;-N_-H_c#z{IIBR9g9Kgy&Z^q0R$r0EZZ^hQ^0aLtM#rte z?A)S-*{LTAb{dFjZf0a4f%1`V7XLhWN()Fcfu3^jszuiE?RlggM8VO`aL8!QrzeB^ z`Pz5}(_TD%4qwME5dW#Bcf48xrrVSLZLR|h($PF<_}=kcsWTR0U+m-v6h{CLI8+skNiEjr+ zaD>pj$EymtuCs!%R^WzX1p+6_BRonEqAb7(W}c^{t~ysUjYXs9A)GTd%XE*Ahk<{T zk^6*`Qu&V=HuPtzQ?zbGkz7Jf(=40tnW~I-1M@`=ak7a){Lrl^%A#hTg3v&i;R%S} zpn_~C+m5cEV#VgsWegK^9t`oDP7%*6g16xkC;ZgVe%==hc=Jba10_Za^XqY-0nXb* z&e^&tPSHmz)PmcKOOd(NAMihKVi16}7QGg?|4b{0^Nn|TX^0FqSi zsR{s#ui>sTxQ*?>d;&chSe2FuGbT@Qfl1#fG&!_w=O}bQ6zq2*AI(lvaV6VT#d?6> zqszn3m|S;9hKDXFi2MAmhuC^sBnC>O^Li`pikJJzmLqDFqh8W^EY8K^SDmvMi{5L@ zYctQYpGSyS+Hv^JTjO&Qck?=Hj7e#euB^z=W`$tN zZU8TVu16)Fi06qW1k69yX>Oq2;s?N}4*~5Rx%-c8_T;BLvaoSaxdiN)g+2x`RRdbb zyiXEceIbafQXaE&V9xyR$&^z(?5TJZXrb-8w(^z~z02y)d~os`-bc}(99Z{x{mMOU z%rk2F6bsWX{8{k&s7l5Tj?K_w)QIm|_Z1ib<>HM#G6@;J&&?F|W-aC6*yINaPjiueD(2-ZShj;{b5&NXyk(a68zA@-D!E;Z%?NEj7H zj7|s>A7Jok+u-N-Ja?I+AJwf)+M$Rhp3_0A?C%ZDGyA*^Vbez4JX8sT%8oN2+g(2G zcHkyyNiOs(FJB72RC18&yBe3JKT~OdYL83B9--y_K$0oXaIgZj58QXLeBkzs`FBX! zf;KMn(?WveG}>qIv6)w7{MAC@kwGON=ryu|K3Es1_h{&0hE+EFmcq@s&UqM&Lyp#V zhNNeAeimJZ7SK1GdTL6}jiydI=JfFqaRFiSk`7?DHUBt6N@_Z6-NfrsgVg?m<(9t! zdZD&0#aTd@3!3NBaA-y)UDT`&)!>|-e58q@RfRv!=OhZ>(UCKH^VU8CfNLmRB8eAt zo}Sz2rghu1zHN7(6Kr&NdD4C|4)cvK&ddX=`Xo;d*)^#9g@dF-<{26G?7AeYuC?~H z-moS7^uDU3tqLqqsn72g6(?_+Bn021=+*?M`i<001P_C#FYvqkdBDGKKiU390^F#IaiL#Mab2OGXzL?&GU4 za>DV4vv1c?)aUgSsL0vpdCW_Itn+Q-kPW-bdKmbE4cF{SaKqzOC`h{byiv{m`U_9y zE+7*s3Y$butX-2h1wGA<&Vw0qSqlSBtd6@qm@FGd-Y8jMoR6eLU6%%c2MhuaNJq{u zlnz)Uk|~E;XN&K(@K>~(p5zR;!kRtW?Z&&Xqq}NK4YCbw{0SHc;pfM>Lzgc{Uby&> zy%{`n{NO|5d*s-1M#%fe0^z4y4{lhTN8S%xuupNpYnL`sG|G^gG&={1zx(g{gEZDA zm16*|nw-C4hS1q&Dc)F>p@EcO%HR-i!)5hWl%YOH z;@IXlpK`!RZ5Y0JN9332a6S@k{#)t-*JLrJwLby4P}OWRm5xiD61zxP0$vTvu%Tf- z2B1Y#e*zGQt?PPpBgB?T!1L5KLx|+#pC0F3w9Hyy^h3la6Ra=CSVtXq4MzdOi7UbN zFJ3}OIbJ<``X%~_QI(nOAk|eAqUp5tOq&#*S61@4fQM{{!Iyq?Lt-PV)WCU@!K+a; zulCUIe6MY}pi@2_9w{1eoBB>LMoF2w9I;JAPJKcs%4zVtK93+8cdj)<^`&L>IbgY- zkUOL?hs{vGF%L&d$fHOOUbD4Si%2wY^>>ekx>A3p3iciOj}i#I(6h+zB325vsHwJk z=({`yDuPvtHi47i)5;3C&>LTMav; zwt%9v(BVw&P*sniAODLU3YhcwYp#GG`VVtH`nTJfq;r?#Y>1WYo888=Bs!XI(xB;! zUisvgOo^6CC`|HK?sd`sc zY>Z#)IJ{ZU0(fWO@rz4c z0idOr-aL`t6G4ELs9g=HzF`M<&F3a|SfkkgLR~n&3E>lSNp6COneZZeEyZ7+8Zwt} z#G}_BOaGq!$FC#`Y{T(c-u?2;&r(?XUJNb6zTSr%e5_{5BjY5ffzz?#TC|4e5=-6` zYhoX{7^}KXpEi=h{Pnnt+awv+bwv)P% z=}Binn6SEV%R!lYQbLqJGsyPe+*J0R)uPb+O27Vt<_|hq%l6Z%7Rh1N&D6HJyE&>t ztWwyXZ{>Z{8CB)^Xb|+*PMaSc1SxSNP^%sA`wCobX?$K5F%(u;OOE`c_w@Q5;_^_b-Fq?s@Uk|KbL_j{O78 zHE{+|3r6c{rsVyWa_ju=xS!MREq5Q2g+HRUPe{HzQrQ@z*I#K}c4imD_K$nvd&FU6 zCt+Ar(juioDztQ)_A(PCeD{Qd50IUFpx%AwLty+cPV;6JKL7Y;*Q3_Z_ap7z;FEL2 z$#XZbb)|r{q~t_WK{qj5S=>tX2mIRy1ucH<$O30qDsCocy<&Uu*j-@^`h1nt;xlmI z8+y&0`^LYJn~j-Zo)wq?wHLxoAl&`&j1Jd}bY(g#uM<@Gaa+=dI}Y48kTD73SGVRT z6XRHW9g??UlE+z){Hwbm#%(^G*>*a z!sCrhh6^Wi6}F6qf^4L1dfx8-cea#*+^O&w1&l6c0QePWD+zZlZ(r>oh-N$81Ic%< z^IWgFfHuu84AitllI!xVc3R;_mYjs1%OM?(jMA#z5_m2D$rT{-2&@(4FicYdfCf*L zc~*atFY|qZ<&S%WtDYm{$3eLw%2lEEcyl%3zBqC$h|c^Hv{P6`dSZs^)w$1lbK2!r^0a} z7>GJiOGP?&Gpy0$M2JTjY2Z9?kYcU_Yr=|m|GhHq4`U2|05PL*N&~}08Y^HClk6(* zg#$$h#OA_YJf_Bl*fe3sAX}b!aOW8JXje~F{D6(;x`8Tc&`)ufdhBy@D_FyT)c54i z(I6R8kmy;YxDAy|O(Y%q^UC9?&D0m@c+ufaY^bnDZ=3`i${WG~cLiGse$|~If(1!o z?BV+pb7rYoBPb}CdHGC#PbCs<@U0@hB)RJddN!5mW_>`YpZosPx-Vw@p2=txHDDMl zXgm0B*=b$$qIc$qB_`$x(N_vPc5qhb3>f){A}O_bg^;h_JhUX5^Mt*z_OAgFo@u+m zlpq@4j|``tK7(UWtq3}zZ?Fw846LjD<(}Frn@QnUL?U9y&)mBMG^Ln$f;^V($Pdwy zcy_Xa1=D*zo)?Q1=F3|V=XK)>Ew2z!-o7tNo884z#g|UI2Cp-5mW23xCk6B7`ubll zL9_6f6-BQD*Rgcd2L%YT`gwWXOL3fVVE^UbdPRPOhHrhTK*(!fw7;w()`;}}kQI$O zgqdu^uXM6B(PVrri@&T7hg#R0=^8_ngvf@Abg$Dya8Z2K$2RhBs}396tpH`>D3aw` zz`(15CFe`E75BS$GK1*97L1K1zY;XMOBj#ex;Rv!wVqxUCX-fE6GK`UUYyX!--_Y` zM&g`5J#gbJ58-R0H{9?U-T53454^8oa^7m5EqS~`UEVGEhLENZ4T*R~ac5)0>B#{$ zdmqNHuPAw-k5>}quf9O`Q2ANK-;c-!t z7e;^jOo`bj8q7)D_;;uPD{By!u5LlVW5w(Oe`8-1+cMh+y-#u;9Ws3^%$NtN)?hyn zFjZ?BIcLm&*V;3k0*u=+L-=SBiq%EKHKl~k0?M%3kuc9cgQjU7N>xy>_`!xq$G<%q zO-t??LSbh;p$@AQgz`IzYc+o_qECvn#r6ICNb|l6d0&;kZI(`jiQf~)^svGp8j5gq zH0jNw9c5rVeYXwoN<~^_>26&Qdz1yJx{bUzHpy^OQrQ?*$5Ooo6PM z!5+9b7CP93oYVmV!dpX30@TNqs5iFI-f;WUl#{y^jC}L;DA_m@+(Q%ELFa(hyzb_% zx@0Tx#$(?E+*@3^n88DegEzk9$5+@xdJ+M~=Z*pFUwd!NbwKPXab{WpFlW|MsKCKA zIqxr9XCfs+S^Vyx3dqrUK_i3M-~kb`^NLkH{=x6gJyKRnHUUYBZ>+2s>2w>uu*->=B$IG#8rQ# zb>0dy#`&h>Et)}q=RhOc0id0)0Vnjv@fAAnsBe@B^nI-TC{K*u+2!_05TLPaUy3Q~ z^24xbX0<2=%Lk~mRW|b*KfwqIYNr75=2S&0(CILoFjaK2Y7^BArlna->F~B;ZP{G5hN@ZEmAL|9`J{nt*1iW1f=QoEp-bcsUYL$KD zKCe2Tol&8k&N^!dZr6ocU08r)?E9&sOxkYd&MPVur7t|uVJO>m)LN%mi+Xfcc%SU- zef*A2!|3(StF@bZFYn%mr0BZHj^-{|Wq6!*L%a3(>%K68UQ(}U@d^9m zo>d^NZ^KCkf09ZA+91-P;>q7r=<;cOoU zYE2Y_7ZiT5n&(g-D;xw}cKAsbWB;aT3|QX*E9Zq4r`B;Ua!p~NXSa3V&Zr5d5)2^% zbYAc(P*oFn6@MKWu}YUOG)V^KaJMvno+cCGQ4TiDLqHv5xF&G|*F16c0YPdkg7j{= zTYsMu(Qd$*7{FQKYd><7lpu8*=_L=1>l;?{IR3MB&(-6gIbdw#7NT&x<1Zdl6c9UD z;>^l)wR0O)dbi<{K+2s0=)()&dRsrr?UW1r{w6m7k*c@dZM0sqC;kNyFEwOT2BQ3( zhgqWbujKB<1pn#9;R<173=@Q^a5ggHXYd}iRgu|LzS8B(dW``4G=Z|hq9QGNgq@W;q8=h7L(vNtxsj#-X_~k(2 z`+)kn@oD&kN#=Y`=w#_XYXa_$r1AZD8c6m5IXMj#xe@<$-!2;ABjnY zB(~!mpUeUl>(uGCAFW4>ie@1y`|1!SQA5nz8ew-g zheHYUg{g9_UYnTaxM#!yx8(MmfWu=<7BCEL24o^`QyZDxCR2)zaLn{9E0N1*c|JFy zC((1roqL-VBW79ud9q{V#)j@yJHcOyRVf-KH@D#L1IP>(tm-qEd!L2oxY{C{4^9+@ z597zj!}82X)v(v-UZUTnXb-;4-djbbJM_bA)T@x9BnSEN!i6y46$^!G2w1^(A5?Zs z@;-~7To%sxMX$PPfrBTxoUTp2#rpQ=|9u{vxWCh!xbwLD?sSOqBwoke2G!i~Ep%0{}$Pp!P zv#M8lZ3WF}`k!xerKu7mQkZZwo&eKk5G)SEPI+Ciac6g-dllrKreAb<4Mdn-_AR@} zaQ$;lrJA@W44i{~vy={)P^Z{%%5( z!?l$ltQG6|$;VIkTpt8dOqQ(q!+Zm~To=N-*~Jj?t5~cs>=YO0c7+bNn`Z7W677KT z|DVeMIeWoy`aWAn$3az;^C@D zOvL2NJUD}dle)U#)t-o8-v^LRaVX2Jzx?;DOt*@N#F3x${mi@gq-r-JFGuuATT_;c zPg-A`J^jt0W&DV|Hf8L!#Lp=Kk~nO&szJrLnvKAce!<=OJj5I0!~8j;_40wAVrPW9 zJ}esdv@!qrAnb3L4sY?(qD;PEmB*K2{Ef)S0Oz-i8`7fhxp77RS>J)WSRabqca~PK z8G$r$(6J)2K7Ugt;nj!tdl-M1R2N1&?cMVW?icC7!qa0R*ccg@>7&zXda{m174{XR zz0mfG0XA*P=1ZPRc8-WEqOck4-Y#g+DZ)WVi%@z-2L){3I+r-WR;)Yw+#Aq9yC&^4 z^)$qmj`$i=;BHr#3BYD(ix+ehOR5@2YE6g2$7&@+K?8S?yP?w&!Au8Pf%M3T4fQW^?#Qw*}Y(; zq;&E}ZAe194E-hE`mcRZGu;`t&pI&6IzVh!p|Ir|Mw0lvHwRzNJr-VoQ;I7WQKQOF^1OLHi141cS!^ds> zAE?9M^^A{y-vVS(3VW1l$YA!@s_D@VM7q|E;a(zzqEtWBYeIt{-nWZe0*Z&l%Jb~{ z>c3AI^2MNC+|LRSUIW=0WJ0q@$5!0Ha>lD2fPhWO@icV>kn9ut)7SsSr2C%>G5_6; z`8U!ADAJk#B{>{Zzdo?czFN+qdtC)dWX&xo{zZL(sbp$<-E&i z4iI&u;5(m3g3sLiWMOKdcK~Wr1zbAc(cdYcTx|hR>*m?GnNm3b|2TU;N)h!mBf!dN zt?E6nfWrO4%o&jN*J8T>=ae5IeVehc~1@5 z(MfGQ5^XhOEDFfaKf9j4RG?A{_IE$lvL@r=uKc+Wmj&Z+?0K%9752fLuyog(IL*54 zP`YhtX>U95UE;VPR$`!wQ$(%~{)7!*`xu-7hG$m9(6ojp;;7`$QJ{~dFyQP(PpM z()=h_se!5!f!+L27}<%N&b>3sIF#+ZwMB5FezayejZL|kA?kXvd!CFGx1@GXE50D3 z6kX%A*>mGLP822AwMG^wkx1;4>uJPu`&^i3OiY#)Tv744?3n7_eA^S*bvIt6mL@1d zo>1B(j>RdpE%n-U*IaK7agb9nhxc@i&2yi;%h#_m)5Pn6<_^>w=o)X91$K_KbP`0! zZe7ltmRloAu`Yrvc_%pv_2(9zQK{7OrFkqlg0>~FQ@PDWyv?C)$b8Xbw#IsJy$<=}Xkhw3(%j(9l-^uiQQDENfMdGjEh` zB%jNip)GOg2P);!sgUa`&-GR%D`-`qvmGqZz^1&CwuB8bvAk1T5>5jUL5p`CF`LcQ zkklW<<`If%lusFUmSPV(M5!ti2DIDT)OQd-wiHq8uL%a=0b z%Ck-A85EE9IHo$(#Z|%g&Gv)`D51*YAWwFJum+g|a~=D}C8)v0RJ^`VvV5gXh^@{w%x!*4dMNt;c4GojAo6nmF){&<1SiwyyPDM99XVt62 z0kLg#+ks7Wo++va-%?Nh-hNdx zdk7vvI_=A>17s7p?mcm$a8TBbD!RUn6Qs>hfv2SyW6k10S<^yWUD*3F>Rlqa-Zu^2 zfS)Z~LLR-N3by+;$XK@lnpgkXi*mIDnWvqdj)@(i?fwq#{c>9Rrz6!@Cv5!>24vf>^&3DuGDmBumV_eaxa9bVL&KTsnux425roxlH|ecmabDIx!8 z#q6Rsvz$5k^ZyH!PQ5RiyPJ`-@J3nl>A1vl(-XE06&YIX%_lW400*4YCccw-zJ>i= zVV~luC8?$t#qunUo|s+tq~=>`uIX~S*`e3XvS*ybA_(355uX@%+5lh)6H)3YBFNx-tGrF0uuh)Fa`ycC$Judk4e%8Xw zPi^uuZ|g6ye$79##1FV#SEoqJ`~A=6Q)gew_?OomKlZZp>9#HH%Pe_owlI9(aWiE4 z;e~}icg(NveAbga<2mS@^!F*xr~3aj(wnpH)#0bT4yP?voQqz1+INfW+9NXD!6qj& zGmi94{vGNQ`!xM5FfKRt-N^f}BmBnP-^X^c3$UNtxG66!Y;W>W%k%y-3olIZ-oE+i z0-vZ`2XhlI^UV&N%R6Zg8mIN3@4 zH!Qw5HFv!RqsJ1^&B<;-o(vgGjqDFBuJ|4;$cuUCaLb^WH)>Ef?q#lr1)( z#*4zboac3uz^#h+8-HcZ?@wk}0KDbue?9R2`FLP^mBArt&78IF*Q#!B1#cnV4!k-# z2z-<21P0exCVs#fpNlJ+x9VrT^7;)t5Z}WWtj8%P&L)smdwO>E%g?X>>wo7uaI!ZCXxYP!*JVuJE($V!^|uB% zeRJs6Chu8Gu^JW7N z|1Vx{&JhP}DjbZS6*HYpK>nj=Z+*`bIJeuW>AwEc;RFDRc@~@ z^H;b6?>;K>U#v1kZ9#zjgbTnewm_NaS<)5-|K_&>FD`g{lc6(YUuVb^U~mJMMFE4m z5Oz%5Dj)sxQ`KTGUCChAfB0mFV(CE!|Lt*+=k^0{0gyCoeat75bLW&6@Ls{uJHPpY&+ToiVnFA>0b79# z_kpt&!22ZDtXI77s{ z^iF6&2qlCvCqD1{&3xC)kNG!$CfB7#a&pRj@4eRAYi~kSm1W6DX-GjJ5ShH3v>FIR zs0adGBffb9_{kULULN2d0*IRI8&KI09SZmlp@pQ9Bnb39>ejgl5%7N!M>$;x2t?k2 z|3lF2P+$rIef}UXEvfOzXm{?Gm&RH%`U+jLv`nNCs6p7rU-0#*LVOs_2kaqW$^FAr$KShg0gXtmG5;KAnxQ*+*eZVY&-_8zoc`}?j<>ixfO z?tEz@{QHxCNd4uDpN^e7S!P5R(>Hd1qeVxxBO%Ls=@Mjys;j$}W>n?*UAqhs7k>;ccB1+d zS{uuZojZrI(ay??1{F?h7^8ot+LwC18$-66SQmtrPSm#xPE+q$0`~wHef+#oO84g* zrPNECLEQ>@qE2Gh-!tVGI86-lhA3tx*k#b6DC*9i5Gi6!jATs4<;pds`acX8w$o)r zQ<1FB(q^5xdd-}&kiFAnnTz4X>Xqn|J0tI#GV$vp4xGGmsWiC(V$>2!?m8a5tzPp4 z_rk8X|9RbPclA;s?kH27G4~huyg+r)C()$c=Gwj~0TqfojQUhh$nPz2u^ius+~ST7 zwZY*Ro?q)a81HQimY>nf+B@*z(lb&L3u5xY#0QmpyLI(Q%7cuZP<7{q!&zJc-Nvr< z3n{)S@AN{Ny(iPba$B|R60z;F`t@3IV4s|W;W7)0A#a0M(A&s@~%CO56+F4`& z%Sjq+v89DcA>)Ekuj;982pi)&pEJfIj1k%?Sbz&&TS!@>Qe2<~VW~DI()Aq~pdB2x z4BATE{IYP-m^b%s*TOyT#)bJequ(AQ=ak$V3(3XAq-nVN6x}}t8(J@jHXibmk>B62 zxpeT!d$)HooBjRdLh=!<4M{-J6>V~bVOkg9Q#Cb)))if~wmwJG9-dpPFSJbOQa{Mi z_I}`*`Bo?u?E0IS={^u)ABg?st9#@|^I`mKf@$ zjhjv{lq_G{)^@+75JeJRZFj^_=Fa#usXi*-og#1_zMEh-pMz~ZugT-$EOJGTMy6ej z7odDcGK;-cmN;leWN~37c9&Q)pecF{Wi=IzdHBtk#{(VJw0*j3NFG}3{`P$*;i8%)zwR{GV*Nl zPI%J^T|(VM&Gx1^merNNi2UOt+?20VEdI3gTvTYlbAuw~w2>?UoezUHD`DL&H(NE& zkZ+X2yvl^psiB!Ot_5<3zRQ7fZ#6SJ=PgFBpNJMwaXm7+4g&qNem6;)eMW01!}Rte z@i*54%#E9Wv7lnCrFQ0K`W8?zh553=JE`$iWy=Q^{WPDp+#qhQT#+3xH`To z?Run>bK01XfU(0y3VM3qvM3hE@NSgyR{T5g)2jSaj&$ECTQ1}E3vt+7dHv8;<3F-O zN_UnuwnP-v(|z5IV`>?;hv}Y;A$++fmk!xbg}IuDrg@_?M!ikNZo$sicBebHOOvV5 z^D3UdJ$LuGtcCw>k5Iu-K>m+~l}iQ)Bci{RHrGF~+LwQ=F$W{6< zVZtgf)pIB5{o;z>AYtdGHqxYR?_}Z`yV3A0wBsyfdnuSXn1=MOJ8Q22h z%xM+obksw4I%d8iC8gnO=64zY7+C*P=_kz2g$_JhqYoPD>URMN_M`r!g8#fRh5 zXT!8B6BD>bw>^(rb8zW-JkEb|T;HI!xUw zuVcR=C%dSVxjYxQ7F+lz)+%DHnrW1fNxA2FJ}aGju`XsfMaZ}fEVHHfO~ouaF#|h2 zc`0w>qV@!#6!iFE62G>38qHkED;7-{#l?rWxA06?zu726Fb<-5`{(3L{?u~7Q zNSdRuS>LIl>%@&r7C$qr(FOC_t}{P+aJHzeB9yD=)Hb6>%!Uem`5&_05}Kv`md9(R zT;t_FkE}jcDK>P*twp+07US}$U-_1!jBM=R`?aA= zGwfyO(Pj0Q42CZ+zUh(D0yqfjmU(|Kw|nu^QHU3p-UZBU9M|Xj{pF>0St$8i<*ybC zxhyIdnzS$v{%4iybHx*-xwb1%_dswa;UR>-IY941Cr=BFE?7dS*X)O2V=^zwjV}B= z6b>^cp6*SoUYyOB`@cc4mbz(OqJ*S3PWT$PT%5&OuFl<&i(D!fJx%frdtQZ(x_Nn` zTHa^U{b$^(fok+N&0`C;O;=M(0b;ZScd&+nzQIHDeCecy-Qg4Aam^n}g6GwS5X5uK zBUAiuzfWyhdx}$umwTwhZ#gb7rQlL=N6tABb~;wpE*j&JA(J1~I)iQ}zI__v!GIOhA&dm6l`cZFI;{{FFf!#Z4uAbUkmOR6O^I zwH#V~{0KAIYVGrB!}(%;c*ybM)11hk&A6g0L)j~@^9MkX13g;+c`JLT&z9gtvh8PxlKV7^AlS=i9;L5)-8AWx}7Z(GcG^E zXcbs4pUNMVy;9u37YX%I$57jPeLB zMKpob&B_zAP#Ae4CuIzY@@M^}-(Zgzl^nf%ye9JPXOhw2eauAZPI`p%<0E?6LM33I z6`#oEpM7m|7f96jq8Zcbd1-v9e#LRXy8GI-q-(4y) z5`Jv!Bkwy@*f{uVYWt|Ty~pDBc|vM+_E~%z`lQ$~?(ookysc{Hc$fm%xxBaU)xw54 z)Q)@rL*jAHK{`1m9?>OJm z#s{zhmGe=yknRWNtBuPOSk+b6S=}Sgh9?IiDRJukU!%V=kz|hx9W;6`)j^7lPCjRA z*B6dk1+HJ_Q-0W;LbSSB`y`&bXHRXEaHS+^ z4Uyo{*o7yBDx!H+@$1}E<>nW9*{oW)y1fCl%WsGTH{52C@Z_-okwwsKdyO-28%7j*6@0>9Mqi- zi}1a)R){P}X^ErG}#1V$NxCsx%Q1djjD6oy70^)0N!k9Kj=r_(0iF#QHRfVZ6ODNP`*Kr5lMe_afPhDgD10jDm*+Xd~NR$b+^&Z+c zpCx9&v;V>O@blJ{6~43wZ z2VD2hY-sB?N7THgr(p)A$DnB3>#ap17T#6u>J15H>mAU;%!X}ckSl360*+{teQ0tG zbmVfHJ^^(x-np+5Q8RT5`1vV`KM82O->1~*yJRqs_%kW>wF-!@|M~D1{=@G1qchoz zaf_}~W)}XHbtmcHH_}Yc0YwA6zP|Z?aD+(y zek5`K8s*1p9FaWt1F_&@1$qeVW3t(KX7zCyc{H6Ino|KDsbpW4!AJ~H}~ zXlI3H`ZBe(0m!lT+@g|xe(a_h2jkcPr$cruC2U~g z`t@}yuu)LGS-t`aQv8MWZHl<4`gO)*hT+t5V)s1Cl)qnGq$Ffz>mdPm<((kZrwbJ@ z$B)dA@BYa(6#F$3`4v1?a-ZE-JGoJ}_NDA2W_8z%=kC0Zm3!;h@03*NS{v_||}jOyj%T&SCA} z3rZCK-2y=dHqPW0qm?SOwzI(;F6~VPFTaYuxd^jDD4(xE!^_7fV@)GD>nl_Phmo`; zf3N3fF8hA$j=f-Pp_jwqQ})B^wSx#6Xl7(e*-Fq85%n5YQF%}6TZ&nq6Jv)dfTi7! zGn!M$^S&nb7Dsp<2JCPmLhPML-YTE8K`cX|4mJ--Di{(v6)+ux#(ooG3 zr8;qk^~C!f?QpznIkQsj?4kO5^%3iviYdqn!d!N3UK`H4203q0oeF6Jz4WeQADt`5 zNMF`iR(WU)sr^z}S70Y`9e?}p@^Xc+3q@$^8&a}?k_EIW?teK zcFH@{p#9b!{kARhq1x?#V-N^9W5wP=TK^CgCkcY{5OT&vvF^e-k! z3~=xyKHwxp$*ppLKoaWz;8E$t?xG|rc?bUL0Wzi>Mov%qDGK;XnjjvH?o_p0>Osxr zRT*u0nR+fhdrlCyns^mFnN`oKovG4(hlgZ*y^g|HuMOWdwWyNl%Sw5DW zcZtarIqd~8CUcI>)7o0B0({f;VI#mj^4$i|8}yZg(H_zs3qSUykETNXR7|BAW1$Xi zmbFp%@k{GKiHYdin6|NeSQVEY2P^&>M}M#3<*=KxHd6J}QCrHo z)v*VZI(5nv zsCe~u;q&I%5mSU`Ab|3Vr}#DUbFlO39~;~FOd6bPKbNDQHxtUJQDxry=XNB;_M{b4 zx{scY+p2ydC)rl1`%NW)#lGLgGmEia-OsT@o}{uqisb>mv`g=8fyyUHze{JSxIK#$ zv~lh0g3kh|8w4P~hEa9k_?Eb7jyAO7O8qqnwgDhvsD;Tlc-u~hM7!3Q^nZW z_Vy+za6EDpj6XgWrvffE<~NM@@mA6~2>8+Ug@p>5v8FiueIh>!dt#(($L>Ie02(oE zqyIjKV79_!lX(N%p8!SwDc;8VRHZymchux+^bL%_x87o#&w2^q#GAlUNuz=DpSFim zbJf|0eC+Ws5g6Y@=32?Xq(v@VC{u1n3Lqdx`ZiW;{VriZ5K%#aN)bLGdg7((V9Pfb zYeJn=k#i`&XI>?=roq1UKwm02X~fjqKX*fWgdd2F8_mF9Bi3)2telip9jH@;A14~n zO=1d}bS2%Zrd@a5lm0Z~8wg~jT`1G*dI-Ri1D+C@Bs^vCQK&cTe|?M>{26*BMF}%_ft+-WQ+z+F zXP@-JX54I@-*(Qrz8t+M=?-L5wbb8>y!FQBl7MT`&u6qF$ZVDaC&|Fi3`BY-6Fv^u zU>#FQlv*y4b3i!l{*7D97nwfh^$15dUt1ZNqFklx#P7-EAoWC&m0}~rP}DVh%L6R+ z9&q!PvVYSp?02I8yc5isu)}N8TQe2tvbJ{lQ1{*-{n5+$KvqWdiyAGli}5CVV0pyw z^2E=)4wA^8qo-$H>(DemSrBu{T?Fk+ssK{(O`Lb8FtZZp?ljmE|Gbj;=S`WY{Q#Z@ ze?HqP_A8MaX2z~Z%NQ&V$FPjb7(Q_8pqHKAVCBPZGXH&Gr@s$8ZOiqNsY75vAzg&n zWt&f*nk=kz4Vv!QP2!POVR7ZNu|cxcVHXZ$9lVqo4@rZ|bAtq2LnK=`bgsGz$u?{? zIw*~rmKmHS#1wUSCgK{~B5LWw&2}5OA3JJ%(pfq?G~2OnOv7#Ux7>nU`Z3Wry1UJR zOg(2}<#TFhWFvHbL&~;iVa0+EyUaU=iK#k6w8z>7_ zFOkUrTst!PcU@Wk4D(Bt_VF8r`FM9Um^GAE`Ha-I$C7$OMVOUrk6!nmd-1f~AK%`_ zC$uH_@8)GUH}#E)PbIazACaJBP4keMxeb1n=Bl;2k;X7aflJCfOqlrDw*V~BSMR?| z`_4$m%4!#i$Q48zsIO#$6Km;V8k;_Od@C?~%88eY^qKR|0bq~37P$$)O(2&(gT~L) zJdqc+1tef);odo0fd-ct^P!t4ItMEF)TA!-4@-j%0PGDCg6)k_l&U}eQR1yyK6-zA zp%59i^K@_`4VBy{KrzMlQqyKEZoH$O@uDf-1Njo@wlO7m`Sdgrx2Zr~#gmUoq<=H9 zZwP@?>yq9tE-%&Ew|sL=Bs-SE4d{Ka+SWQ0smI*YS1*g&&5ifZYya~fJ!Nod8CaP> zVPy`hd&k5rAGK;`2_D}qjPLn)9hzJr{U2#l_Q|V-VK%w!+pW-9Spv|0RY!2H1x(`$ z3p0=1Ma3^3wY+H>pKn;hCTwkP?l4hjE;~RMl>WUW&h4?^Q5P5ux1xK^-mcFEC$fj0 z#+&kf&apL%d?}N+HDt19E}a(Zpb}g83g40i`7zR;%IGycDafKwq+UK4tu0Gc)KQxo zPqk$+_~66#CH0zK8s&HlGd=^qG64$f10;_Ge4xfZJEK{rwstP2j%DvP?^FJjVc0n# zlllpItd<2hMul}`AirU+zd&Fo!0|JjmUfb#@+R0C(s5KP6UEn>%B6oD%6i}_@+q3i z1voVeAuHM1I77WdBEvwLiq5_7SQb%LRsMz?Wv6C7)lTI1;h7siaU;f&AfonR${sQ% z&eS_O@lk5ed))qjzqYJt7D#@3US<(~%sV3Ua(vQ#N%Pdac}bw^*Yn%>#1O z=9fZbIQQmzQT=eK%}Z`WsGt;tBYz7B>N7DU{bajupvFN6>Sc~%4WEzgNORPR{-v5+ zzgEhk=?DnyK6rbpB>U_(KnD&t6=@zr%~CDjam)#-y9YI7zq1Zvuerhc?&mGdUj)8c zed0)33+di5Gg!;{Sa|pklTZL*FNDathj$N;TnU;hk%5X9nN)7uX=zkg(rRitae}K4 z326;4Sn`>y^$EJU&bBx?=<1C>{*o(n&KO82n&2)R0Yq7Km9*J>t&MTW!Gub{k7Yv8 ze#r7JL7jOBC5-Tz+QA^xLJ*6OJ09OsO?})my{xTMcINsqbRf`qcw0{Wj~Z|+MkC@* z=jIC`T`Qtwz3S+3|NLzHDp0Ar6E=7H7hNE%-@)eEQ0`mYBP;7k{Dhk zbUm$b*hUFXu5$Xd6sY=FRZ=^eZlEkF zFi{iWwgQ-Uiq=6d!9+faL9LHZ#JoLL2Xg5#)RP`9@_7S??$B%cHP)Dlf)Rig+31o1 zIbdXLVb!UC;M#O`)2U+(9&Z!~P)$WFo>tf=GmJgT4>p@o8>)iMLsQEh0Z;z(-6N2n z8@EG5uC`Vxx8y>L$((Qmi-UfjpO3Tef+#d;;iQrZ_Nqzp1PB%J#jm$P5+b$20tMPr zNqcQ={zEU$KH%4Hfj+=|W{IGh+zj*cC%rEk|q#LeSNx6Aq2R`=N~j?%)o`4Es-Eq3+H z0qyZg03&wd$z-I<`zQf35DOQZH7Ccd-0Mi;i>Y|>;K{;$wRVa1kH?N$@@f zSQj2~W@@~;D$G{U?5Q*u+dK7Jq3N>_{dda)=?w>qH*t2IF|FHxenz|h{R-aEfRiDc zMc^ena6nN6vg|$m5(8YrY^A)GLzZ~=yeH5k(|6DQ8Xz$w0OcS-Tjd=rlze#rX1^1i zr&S!_|9gErv)=qOi4q|DnU#(`z5znaQV-8-)l7_DmT#4_xabA{aou@}&kRS0T&ila z#3=IZhF(?>r2QTn!0Ujh8mY!JrzP{e=dfZ2cCXP-Sx8d>h{_SBa89c*86)fMJa+S( z5MHkCNAFe@@r@;=;J@p$nBMO9fQRhaebQ|VqP>B?-XLJ*k?t7G(Ah}`kr!l2wD!Qy zRpx;mN1hEaP%AAJkb)$_Jt5h-7MW3L{IZx$?m6MPNx#cIR^*RcJdW+(qlMjJ%L7pQO7{7ogX={Z7!p=a{$mpyLzRzg~9dS@Fn4PL-4-IrAXZplwQ@dK(7 z{;I`{e2$ueVjE_vPp?Qq2@e`d?`XgcMc*Lf`xZi()Kr;b&j?g@KVyJB%@lE#hO&06 zEj60c4CRsl(t&Apo_K4yN#DoCQ*I;UW8+MDc@<_E>~aCvuso5#vYr0^89*Rf^=oXh zbUj+sytH2vfR5os1F!v}Aohxd@^Os66KI;kEy5Slm5tiLmBl{`kLOc@OM)oRq>6$A+ZwB2l~P;PvLPY)S9qmsbDiQ*er8GxD^R%uSv|6czwePy(gl7ZqkgF|t9*HOgk3ssQVffw zP$J9k2J8)9(e7k&EpJyKppm@zTi5IDs^jD`eBgr4^f1?9N4%jK$*dscLN70wD5;RM zKlBjsxp0*TgM2=7q~!-5VVBllo|%eU4l&|H!Ja=p^De@pWEocY#-X*CPaE=#F>Ln1 zUtbIva74=~di7c8_Q`9Gok&g;BDjLE)Z+I@g?%G`4iIU3Y8}IzB-YznZzw?$IDne} z$3Y8vJjj@smyEZBc%<}a^#NZisv$~cc)Tr`gWy6mJj4VmF1kbU1rFX z{3c%sij~Y*1di8$bz~!Z$dpJ0?gD{`WV;qexf;mw5rIP$?r5+;anJ5^%V~G@Xq3vU z07GHMu4WvN*={u5`mXAKgytmOmunzPi1Q)mT8nkw((Q-u^Oju1<0=R*N6X7yx)lL7 zlphj-pdgZVUa8#7Ao#`7ru*Yp7AX}uT?H|uZ}k#ba_5XZb(Viu6$_4m_cRax{Oi6M z^^Y@vBxd#xir|y0sZ!|rfb@!AZnv7R`9LOhO>%Q#+r&=hI4l)xl6u6B5LC?r%rLq$ z9xaVC{KsvpM1&N4)MpM$FkbWtj(G`qZWK;v;Tk3LBI_B)ygxZ$3JXj7wH{zi_5YZ< z$$6BguIW<-={Mkx;lgeJwJZpKk~kz~CAsua z{{7?7vnS(E3H*-jN5zZUV_zidrg*cNkbLN1X9Hgyhmq5~9vOe3+b}y>nP5)x0a#&S znIyhI+9cCw3p1}nc|)Jn=Nzk=LGps;+1zQOtZ7Z|QFX-wm53+EFB7xn^KzH+NXv+O zjkBuSEUaG433U^wI(UDQq%iDOd5B(`s?NA4Ew18~eR7-Uqa#_s|LeEPETCrw6f97H zXhhQdv9}+c0;Ub=>(PY&{8w({GW0MgYMx!rcgc0TNbM}IBLw_oqyYiwS16i1*-V!M zc#`anK$fpo;tirXheI#WOEueE%@wisPe5?H6}hR^pv@tVKYc%Vs*s@qZ&Q4Y%kFI` zIfwl^PD(4O{;bG_v}H(8NH{bti;q7zL=JjTd!Zu$uI#AQooR|A8(7V!mp(XfjOk_w7)L3V9S3frL?=Sqg&$Vl zJf)Nhb$V^=#RO#I_+FHf&dbZ9Xxbz=c2rD%sA`z_Nco#bl<_D3(n5jh${)9bKf=AQ zU3SK&HQY@)y-$3>ibBGe!a`ATmgZUc+(z_ z+E|CmiNd%>61p#V+uUD%?#BZFRVjZrPK|RG-UO#XSpr!s`|}KJYz8b38F-)zp-op@ z-ku|Xl7TDXp%fk?b|%-?SF3ScKb-;n*kgE?*m9dysUqQ1u1C28M=b_GP25Q%;7R^^ zjmH?8r4Bn-CCp{yviv&fja>cwFMQ{Z%^R~W9{MKi&eJjOI+HRGb96`n-1G=9_Sh_K zVv>U#_u(#My(YP{_r^vJNx&nQg4v2`qpai>&=lU~q7P6SVE8x`uNx@$_ssLnLvopA za}dgL=8AQ$d+*!tRU0ddQs%owtyB$jnsL=){xINyX6LW2@_*Ix5pPYTxvmfGm;?E} zsiJdDu*Ne_iLCyl^>i$pZyI|SC>j2F^%qb+O;X`(~CL#$zTioM*_k--tx5%5p_cc>QA{)L$u@HY3iXu!pgfV~TXi$T7$y}3ChP|fCoKuM#IX)!pl zqOU&}h%-`w(IY~TICh;DO>W)!?iR>z<&#-WZWI4{w2 z>WB0PKv$F?1#~{&O7-KUwtkP!5srZJ)1D31v*pY;D_T|_n1Rbn0gKrWrf~;_I6rC? z-dxiJDpWP$qx)92S-Rv5HHWB}B1I9>9DncS0dru!rmS`@TSc7R=HtXB5PT`o^s$u? z&gP5A`mNaK?UR5{K=kA0^|Xrj#8#70Qd?6~fvm;OT+IzZ-xfh5v-8lIF=IxutuG0% zzCM7bayYtvH*D-VvqUgI7lQr%dVG@b)L1^{`2bMd!;|SQxqbuVKN#t|*q;GfZKl%1X7$_)xdMJg$p?XrE2k%MM|YNi@5r3_eb#tdpm-jd(QJ z6RRVI3s)KzV;mRxlDBIJWSF`GX>VwR{E8*O<0D>xM=RNjW7P2eB%GPgEc2UY1bv#1 zBV=_wL@fdHt=+j+Lkhes#2~-*%DN|T3m73sM=bl)Js5}!wNCq{f%9i|y%HJ_dSeW& zSMva%(FO26a{~O>>LZG>%X z0{Z|u{~KV9=^PB!jmfk1Hq$_Us+M(uO1Z4kN=fANI$9x#vzo=vWc&yuJddy&fP<=g zw(Uz)^M{Kv9+^Tks(j|AYy=&N?NV9_TEwTT57aCw zfn_6;yqi70xB{G?XfW%N8FJsdG*#s~B^#%_c2J#W;}g+@#G<8nE&YyvgXH^esrxm( z+Si-&=t(7o7WSML@zp0KrEu?BF0?)Q(+ypO(eP_T;R|Wc2s0q~F4Jg~mF3j-gIqSF zAH7=+>`sih$zc*$DnU7{_2hXWZ9ggQKU~?#oxk#@T>%|>M3H7vVsi94tiHvLWVdS9 z<4OvA)$?-qxVmg?JhhMC(XTP&p%jiV620#pbJ-^Yc91^fG-iB`gSsS&WIbW}sntzx zZmiA>oc(`Ve#W+Xjq_vu#RKx%=y?-&(+~uKuu{}!#WFC*b#dwVO4XRyWIqK8bLyZK2;oU--&Fwm=QzzRQSH;B$l)}8Nq zmlS&)zBalPCVFK+`E_=n;_~uBQOEfV1(d!Ikrp$Wl|1lpMeqVW=?`t4^bymiZ^=KB z?ot+{t5=~SA_%;XlannFYvUE%uAgHGA+0QTlEw$?{6k2eR5eXX?{ zM@T&cfsjQ7AUc9v``FV=Yc#8eYX|GM&Q8L~g%`=x-K|q@w|+gQP;zMfxE1eJ zIgC+P-l7{ZOAK;BeXURyZ#EO3xv99djxhTYR{abNv|S4ggIGX*T@ctp@l9|LInYnA zdSya#r(7W_eK2yv zxT4zrI>7B$GiNQiZ<8gtbgfYzIpc`Gq|!e#TH3l}%JX3ylfutcNp@mIpY`F+nE z^(B(8Za%a5o|`VBy<1+i-4rUynjd~bOHHClK#PJc7q9SWSaal!V3KcoT=JJc z?B)!um^vw5+KKXrtJZr7f~sM2jKuNHdx;nlL$!^hjG&Y_SH5=B|S z@@eQL%=3}LN$YDLgy5Z?;)KE1w6X*ZFdNrdU@@|&O4 z;cvHdY$^=|x6?Qq*``@j0v-3ZU-^P?(4}1Ys&ML(&-zt3nQI(eTT9IHj!-)9KgS6Iv4zQF!YiJ9Y z`H=f^YmASV<6jPSpjyRuNo=9trwh2vGHM4HKI|o~TMuCr*HTMUqTV|Godw7g7d#Ar zWZc^7=NUX66bN$p^OkN1DS~99KwNn?RbH_c&ZD=-t&tgQ-v z2^!yO<{~iTBHwE4P@Cdb>%&CrdozHn<37Eeuohz6eFct6OsG!}lNQ!Un#p_z>)iQprc`CDG_|oVN0K|<=inn0#AVE&BYlVOBw!Gq9=fXIthdBD-OE`AV9}=>Gh?vQ0aapTs$C~611emQpIJx> z=2og;&ZJa~H)Es1SFV*@VX0P z&D-yR2J=74qKvQf>xT}?o{G1&kDZZuZG!B2*>FHt%tJMb>$X-9i_|d1wrpMStj`UA zy1VoJL-<|`X@(GO*90YeB7iGF$_~Wh?A{8$T$eT*m(v$88rC!dajoQ6z1f*XD!i(yi%y1)WA$L##SGhW7s>8qOLpu-sV&(23W`YVqG z7NtkUMs)xIV6FchtLO}S;HuRxfdBwk2X3v1%;Z2RYM#)QN(f!)OEbV39D!@iw zA>_s@yEwovvbcVR;pHXUIP0zDZj7hA$H%ZssbtnW27lEIbeZra+#%UKi%r^dBwI?X z`c(-a#-r+ zpFXoS+dC(H9lr&%3*W0v0&<6&G&NMjgi1Jg>JpwmE{PLP^%i{bzt8=G(H4@oq;m$e ztUN1U9IXQ*F8xcyN@2$#>(PmfBgG!;m9FRTioE&zz#!S25+7)nlC5Ze&To=h=gc%S z8H)HG;Ic-=WSH_#I+WBqBu@gsq-+1PBtbKk6N()qUsf|r1v`+$WUC_qd9pZZh_3OS zk-kJF%dzru5~YUpCHt%lU^fd+Y6+{Cl)#PdsqkMhpK?q4Wdi4{1TBUC*Dc#T+$b6u zGh2U>J@aTtK4>??7BuJ&+%Cq=L}FOfL2MYBNsoQqD3tSqVUKkS_~Z;2iprOfmk@E& zB4SZ~G1Y&seQPp8Od9gf|0-WDnz69lHJ+sUEAg+q%;2HDUMAu}AoA90kG#RUVH{#p ziZ^GsZN;Xx0**sg*ykA>17az{iiruP{#A;OICYDq^$q;2>2)UN;;$IZA)ZrMQ#tFE<+=(kb?ck*CD3~-(8axfmSY7EobV(H49b+k3?b(=x`_BgyQ0-EV z9!n$N0Sq-iXFwHyyLCjDK`@8$a%9H;fh4d$#>A|DRb2m!ph9d$A9%vip}2JE-yr^| ze^HcsKBc6yT*A7<`BR?A6Yx^m^we~9C8AzG07guJ`da8)NGW7^>9CBuT1DgciIs#y z)1#5Dy5hX~+w>o7RAPEOq5ZvoZxe=D%G>k`U!^jd$q_yna{$lymBuXBAl4uQEX zN=W#6@D&6Q=e}3nlZ(3*bT4H*=s2WuI9Fi4dKM)>b)!3YPMBp#yP5$g3pJbdy>sP? zD|3E%#39Xeu7SRtnZTw&dpo8UzoF*3z)z)oxO1c6$eVPs_wwM3SeEArT8D!sg2 z2>kL8g>jgEUoPzv-oe_#%xYUSEVL}8hFpctu zuEf;>3*OX@+sUHmQ}Ba>>(6)+XI`aI9pXt3u!I%vhrdi-0$bCHmFdy*KlZ_HVDvxzdz zW!s!PPta~9%Y=~St7yx`ea4KmqFrhT3OX~hMbvvpo`{XWggOlveR2Yf^r*)D9j6eIclBIyPFn3ggLT0lLN(Q6%6r_^(HX*G>tF9otkgyc(YAFz^Zk zJq6^+)7L;zkC_x9DAi}wC=}po)BS)e`c-jHCUE>aGg0(MqT*E`zWPb)-0`)$^)P)4 z;2Bx=LSVQFr#Vx7W*!z!e_zKpH(H&v20a|Yumeq;Ki$fI)M*37{My{0a(afJg4heR zgN5#HarZPZe>>Tm=GjdLMAv_t3rL$_2cS9WoI$pA$TLvO%b3hmyHBg!vnboIr33BP zm)`+8hI3w0I65o9=b){%C9?!(Kj#>=BN&|W)>*?VCTha!uD`%joEU|ob!rNtHh)=T z5lA$3&z*hmY7Y2LE(~aiKD~otR006Yg!&Gw%~y~qz__`(Z>-^nmG99jzLM3{Hzsux6-(uH^pG2y9rktX z3RykGqgM#}I6cYbZuuqN=J(={S+G9s-U9#yLNaA0Q&z#YKo!PzxCGW=B=N*t5j?#o#v zGSb5YgN!qtP{mtD0i$e|dcYtYlyxSMWk_`>}fD$Z62F;aZp@D zsRpmvz4-MAut3m{e)d(YW|^4a{RROe2TB-x?vE8PBx1=$yHHz=5#qINl8pkI8NuV_ z<-jbt<&*sP$E65G%VmR3_cw8&EV}-a%O!pr_n-P;zQbSHy~_W(kx4xng?NKEO6Hqy zDvXE$9yjWnKXYz)&D(i5r7t#++?eL^Zoo+Ai*TjA1{E7KamH*}wZ|G+Amp$4nHzAdYymA{LUiZyRe^2n}FD!9M*AV zd7t$I-Kl4vI)HiWqR$PN-nkrQ6|TxnyStK}l4OAS=A~;=ern@ihx(vv0xHcfbvt#w zva%YqVdb=P_;Pd9&GAi;4rbbd;AE=>!R#*fe>C^qfmFWl|3{=KBvE!MghckpN|7yl zgfz^KJu;I*Qe>869od_#?4mLcI!0wS?7hkSUC+_`^Z9(gzwh_=_wW4cIgj()&wbz5 zb-%9H>vg#&6nfqoaekMV?6cWWeu%j52MN0^F?p<<`kYJLN1g@-r;Bn*ULZRZO*+Ie zdlISN_1zAdPt(7U*MF-%V!55dc1mqjB1=%df!a%qO+L4;&dhV8fO%zydNMUKo_zqF z;HBO#;gRN3mOoD!R71@kL&+-AxWW1{K=|UNT!X6@EMQL@B^8=Ye;HVoOk>z*IqjejUcH!3rcCL5XU%n* z!$hjL_u9$hQSTvFfOIkvDbwdO+ucpByKe!a4y#ijX^`QQkz zE7?bG^`=g`?Iamj2gP_XppT@61eL$AjVtMh8NYeV(LaK(PN2U%svxI;lIQ1b|Kr_P zVQ8SLjL2|sZO;m-4(I7ti^vdwm0z>ZGr!HFxu+Zn|1N+s$+;Bawa%k2$tzu~>h4{Q zoV?7o=6EHr?3c#FNo0UIO@A}(P3U|3{n0esh-Gq?hlXF38~hos|^c|F?Ee>tu;W(xEu%rilIaUMwn zdLWr|s6ybCUM^0G$r(2s!=wwkIt_YGDgWFMsXN(uc8}IY@uh^h62DVs(#yNHb9^nr zQv&tJe_TEGI{tKVwWEwwbVBx3dowj%?dOTgi*6n*dSmDB+|8c*4@v@o`>Hk@XP*kl z-{uebu0@xk;g5j4BebtZCfMR zMdrAjYuEKn?Q*m^-B0?_{OEfBk&F>9^su;`{u3EbV0)`>Z290X0*9fUfxF$QiFVZ> zG%=&tQol$D`^xh{fBs(z!xWlWmS*!8PsLdkw;3U3uJLD)+6xq@A7<-Av|8Jzogc2s zJPv34DskhUv7;<~Eb~AJ8<5-^*P)Vz*;;;?&%lW1%Fy&6vbvDe%YP|Fa9?RupJ_n= z270+Rr+Qfo3l?dGRo;}J9jN5U&Q@}&M*kL*5k$pfBYe!I)~;S>ofl?Z7fd%&W@vqP z6ZMof3?wvpS7@9xfUV6dx=25iShHttz_%xuiZjkp|D9in#|!Hp>`AFACzg$T+WflG z0i7@O_SNQte%|yLhjT`==7&)wp$SzDo72NN^%1OTB!B{({@hj}n8~9MYq!O-SF(Cn zq>HORWmYobj%S7M-m9gS!jB$imsh4kG2#GiSy9$9nBSiAKjCHE==5CI8l%0^BJxFR zY?3RDHRV{Y$KYcp8#3KD^{29*67QZ+(cP8lW7cffQrW7bJb&zEgngOo&x5KBa{ZsU znXINwJwM?qDLBL&V;J3Hm_unxI%vkb*$vBwfCQQ|_3bDlLocoVH;H~8%A-Q05c_#W zGDbF<$(~C%K2EOwVicLEquY4S21AW(E4R}c#@lS$4e7c+*r$aur;cO+g@`4Ay96Eo zGFj?@>x;DNCY+<(NUHds&rSy=brP;`(askCl;)wZ+96f3uhCvzmzrlX4%QFs$q;RH z5n@J45iZK@$8b2?s?y7zs_J@1a_Mxsbfvty?U5B)%2!&y-X-cB6YE(@I8dN&@au$k zoMVm}tPk`P?Lsg7RY9W#0PLiSQy)`49JhP(V&j(zQf=Ow4@WQgRrRJgL{Sk$LP@sv*}W&(j%A{Y0p5nwqpR@q>c7 zQIkmg?lp0cGbr!ixBOP+CfNm)tlaLwt4B9>pGHBbli97qg3zZv;$2g7M_%}yjTtWp z`hHX!Li}7^p$DvQv05HhiYKLb={A$Kxia6yXWD0Y+=CAFqqH=})cd=4{N6&4y20(~ zLo(RNgQ(dL;^C1~tQoPLsUwj<%AEY+8}KmTenrmE_OQ&M(oNmgJUM3|IlBv2ZTV{D zC(DZk68rw_dOz~bb7hkAZw@jWU2IgJeRKK7T${aHeT3cMgcZ~r@#XdgG70yt&{#eR z7Q}y~cRaA?aVI5BMvAFhCFg?AGFmnx@eC-&^7eL%UtVPRjNkJchKE2hha83Iqji^+ z{#0duj*Oc9J~~M3w>FLFFCc@KYSe2fadMr#0uycai=kz}YRE&bSG3|6fYM*`KnXZS z$1oe8Bm;=xFhOaw_$IAj?NE1Cijei~>vfy+qss4|U`ZBupppvYW#1tV!C4CffBajg zsNZ9p>9u4k3kR$^;zvo%%q%79+nLtryU?!E%}_ut(YB0d!-d5Axlf(wd}N;rY=D|Q zwqzySzHL+4hdx4?mPu6E-Br7iyEevq!vjt)=xO!*WT@bXWvVCEGNwvV!}oQ7H8xv# zQc3aT6SREh8On`F*6eMW^2?d!!JJW>iD3j>~)$MR~^h)A{D z!llli#M@cIlHTg!@6zDt;Sn#_S-X%5XyjgD6n%y66ZTgeVxMld3R@q5;$M#UW|m>`1P`jj za+u}lc{s(*KfEPz>kbWC4Rak{s+hE8Y~N4~a0EvAjOLumtR&i_;(+N)C(Y6w^l8jp za{Eo;?rN=*T19W~WJXmL>f`w&-`k(9XWnfv@cag`)XJ#7Q$xhFXiAQA-<25@;g*?o zhVDTFY2(c8PGx@pRTS#2)gU%{E0hUHLU->O=jU!yAGgcJ+0<$-rGj)0ZYehGYXo$# zo9KH?D65Cctp_|U95t)l;%0%IUAg20AgFA^&cvEig3QO~LWVmUJWfX{*T3-JyO+LE zS-gZxUsu(1ngd$EFe9F~nQiBEd(bEwQ9QrdNgv!ona!)zj3ur98GQYTJa|EA&w8W1 zk9S5`=3Q@WbNLMVHOP!0YcM#!NzRm{-8zzR#rZxx;e=>pkydJ8pM(_R`c{c(s|{Ui zJY@F@tFA6kZ5@j^U3O!o)UK#F*FjP~h-x7tW@2F$2|msru8+6f=Nx9jUu)RNBn<@? zc4pE^v$B%p_wgH&0ZIu*j5uDs{&CUaCKHwigMr!Dksz6)w%cOH#H0@Q75e|;TW=Z; zZD>2YZ#*kM6t$c?O6NJ-DF>v0yyYPNw;+AW~4!basvmIL|aKa^|)t#O-d-9GUHkbzAP6CUTF;_+8SKx~Ly8aL@ly z8HiTwbR!pUUmFNuka=rBHFCm35_P%^K!|CLnfF@356u6P65EyG15J4;(va~ zt7upnODwz~JK7f_Dq^(RkR&;grr#Fz4LHBHEv0NbOJ=PQ58W=V9iaIHGx~wGWpGQi z6zW(`yvw zKJY@Fj;VgzhbZ>$9ga^UODIfLISIl?KfO^^s+~VRqjNiW0YqEvHXAzIInsb8;`P3q z2^n=?apU%dI||=7R|j53|vNwc>g zER57O<0l{zxUwf_JBJFDDLY*#S)#`Fk{@3w>mKcHTAZ>leoUIUVJ&Z4(viU03~R{P zu}ApV6P5cWuDS*$XJu$mk9D1<=)3^9p>f#&;6^p5gKKUo_vvqk>^Y5^FGsydJB47b zr{7bg)ZW`#XLj9iFyM5Ju>&3q+j!!)EP0hO4a*b3G*S0`>TK?|Av}OhZez>%_AIJn zFZL1BYsiYHnOqQ0dJE!&!86XGDm3@iDq`L^$pUAE2-Em*Hwjz&N8~imdH1^`g~=2$ zK32hNlilnd=)5%C&|>c;m!~vQPfj%6^u?o38ZjY2BtpXz`rTu3pJqp}QY#S2|w<<0dYw%fX8n``XniKapj*y*Th zwSU1`#AqO^Pg%@$);TKBU46-LCT)%l(zLfWu%lp42}q$K%f}9eE=wr1)=taF0b|Ilr6En zz%dSv$}}jNlQj&1!wh5o*$YId65jGb8{3V5v2QVPCw1m>a9+yPQD6_OH9O=>5njzL+8NRz87mvR&sC@YDnCq%GeUY;2pM{C8FA3|;4 zTDRlkk<9E+29ok>`pe@Aox#MY5-Dx_x57&Tf^YBQrepMK@s~4bZNDB`*^(h0yfwD4 zuJ!7odHKXl$2^Zra*rnp%jSLJb(FQ@qo{B58#HLxcwUh!mjD{%*IVYJ_?|)qIG$6T za+R(|*Bkg!&mKZqRprN>z<=Yx71_bLq}9x-Qac3j@Rf(V-Ew>d;8 zEm-!}S0d=u{)`#N#9V~9tuO5>eQccj!>$}uXWsC@4XVRp^8hP+C`|a{1tGTZhZc5};{t933qK7Immkz&vS*80SPUv-MN8c_7=R z$bsg!dps%5M?b7|b$(ATpXaj!^#R#wNWJ`MR@{;&PxOUL|B4-~SFT`B-QAh!CPMWk z!Lnr^zONP05<)gy5!YB!dLFyC>7}U>W7M~vl|?j0!oRmW?ev1N_26MtUaMj&`AO^D zcP{rH7&j8qiZJcdB5p+&&iv4zZ9P+4^acOyq}tfb1#7V#3uBoLB8YVu1HDsLJ|Od& z%(~$0%_O9$T$^>%q>^b+x}5gVN}rJm>#P7<@STx+WuMK^InJE+hy3V1ysdX#zH#e# z9QnyqYYV+|4?BT&b7xCC}#7$x{1jVM@$pZ-1`s?8q_VmqfDA_^}WaG zlATv3&#HyEkOGwt2*A%k-~(v&%Yd-B-*-W)=-%`02x;tE#c~QFd#re*6hIC9tI8I= zSK2kqC?jO?y^iQQtj;eW*xH|I(Q$F|!^}~1^RnIdEUnF(xZxS85Aiq1)LX%erO=(Ezi$PW@Nn8j-Hs!;rDjyv7*sOqP|vNQAYRR1>@M1 z=iynE&abQJsWV3UBU5ulVO#QffwG$>j?DmCAPJ{3f5CBNr6)1Fc~O?l?0% z@j)fbs9N*);v55pP8F#EUX2b@dTF1?vl-j(=8)(Y=rTzBduph_sVj(9ILqXuR1JiMKfVTIC zoUSVXDs-LG_D}CTIa^9E-Jf&A>5l>h^DDi)Kr&PvHy_n>+Q3WS^+u<>c0qHca=}z% zJMyWoGV`*KsLK+&PMn71`cg182L*M_TeXtR@N+%7th!p$ha)rj1G)EPTfN+i(_E+1 zG}dA@fh0)p8k-07kOVhORfw(_iZunq5(Fa|2)JXB??0+4HZPP-ac1obU&UxkDJJMp zDGm4+d88oGAv?4gIhbig%g`J;fgPRsM&G$f5hMLg&vkXW{>c3o477Slrou93CLw(M zV@`wUC{CH<4HOR|WPJsx}VANueZ! z%0EY;!YBgO>cT&VpHH*BV7bTh^LYPY{t;&BeYc}8(nK&#{$ZtJ8sqE@=T_q0cHq{O zI0J+|?;6}u2aw{Sp46PreXHbzP5u&dmcVaYH%W6P`ojpp_@LmE8+`xa}Blbb$|X!$I6{PJzxjeFPDz zU>(;U&XTaJ-_Tbn(~n7YFDNw57^y#^zI`X`f3V8wJHg3h2wd7b52Fe^EFdoLcnJ>C`|G71C?322XTt#%9MVXp~3qKQ9vB*vcI5WDyMI3QYC^@WY%v& z?Y;SD5>UgDb@p)N+vu<BK@B+fI2B5Mh5@Bs6%D1k@oH!PMNEhSp3=$C2CgJI(B87TqQ){ zF~GIUjv}{Y4Ft7e4`Mg1W8^VYxbPdFFMiwg5WCa(|IIW`8aE-0xir?e2lGjHuTZF7^ za>Bn5eYiD0xn^tA)_Rasg>k6lZctn8P)!26e*=R^$!hvgAq230xhWOpItqfhf#_ih2MwoCnpZCg{JLfBhc{>Q3D6#s2a7^~9x9PAVU9{Xg`HRjbN zZg3R(*)*Dh9`tg*e&>vtu_OcokW%_?@bGhi!3H!3sKhq)JC@WR3~y|d8tD-v>ZJ3A zqGd)B8MkC3eyGM`_*z4~ou(6x#5luMcnf(%Y}y7lKUZ6`PHn_W_YB)mVhTl)l!i4o z%n#QfZq#l0@8d+g4?p1R8y|CTzCX%J-zk$D%f&{RAf|1nKq-pqlt7Xsn=N%N$D!2U zxxRu|-P=Q6xy8H&2a1pJV6jn+%nYkZTzOmL%i=y9g?4@Aa_Gx;sUR%!b=m2q8@II5 znGfRMOFIs^4gMROJMDJgyOB&;VxmVFF__A99xu#ineOJ|(y#wCBqv&2tg?xGYqyAY{q;Pp}l*#L0JpQH>2DFoj zsVqYmQM=ASg(%2%OCKg#owLyHEOnnROxK{8EHjp$8V-|SCw#xvOxr0i%?5XQ^3kL< zrg&+hI~6JRN=RvAM9rLoJS2%Wl*JH*G$Y6ZUV$YH`l+%P-M z^mA}M9DLs5z`DO0r>x}3&9^F+Gf_gpp2WH|M^toYImQq8$lq-hqDan|f%;b1Gj%qQ z11(oD$Jr%Kl=RQuf+!UeK+xbID|g|01rL^j@dB;SE&t<9v4L$_XpMxqSBv1xc(U4~D4oyf`2cA`5 z<#Z^(ZS8ttb8{C7x70>%IR!N;gjnLGaER7UfR(n!D@a)CdoQ}YZ)$jW5a|_yLLYxb z=9iM&f2?zu&b4!T8VsC{_kvtGl2f9~{tAOg)c(8elLq-g#_GBg3 zKD{EUDa2=K9|vqtyVLat%6jZMR9+~vzJ4bm%q36?(_oo55kMVGJb901|4>`L)S04a z045E(;_~r~QDKYC2mHuVR ze>`}q8y}^wn-`_EJtSEjSc1BWlePbBFBg5B6%AoB$qN71>{SrV|4f~Q2n<`P`O2K~USOLout&?1S$ckHC?5&HTrp9gqzU(&5vv~LXyei)l2nW?wCQ{A< z8Errw{?n2$G^^yQWOY@jRMoRIqMGi8ez(<`w5zlDwU!&_Wq*4E-k;-?aL@lSxA#{P zc8~@M!x^;SuC%9)RSvYEkf8=JfYHw1lAzL?a$EDM_;b3X7v{=rdM`L;Og>k6^*0lJ zAKYwmhi6^bI4K%4=JOd61^q+9zPV{AK|;{_@eV9--jq3vh&>99t^D0Bl;v41{fO*Z zk;9p?`@#oJ+-F6yp3;Oqr@vQKo^LW}Vs-9W?|&qC*UY9rN5zx!^b&V<3Ax0(JL^|2 zu3e)==kZ?1ij+iini6|?_RA8B5h?XXU=xD}xa%WA0>5Kcf4|I+MRHj9P<%QZ`8oT} z6D4#jg}%e%sDDazclRmL){^HIGQ;@lqI%JVE1wlqXn7G3_aZAzulQow_eUI`Xa)YA z+1-Xx6(pQTvu$F!rQd!u5zaWR9U|f-39dn$&S_CkHfh7JRk@EmEdiN4i*dKyL30b9WbPY zEmHI525XqD+yLVGcM1lGjA}EHx7~0Ck<=DKYDP|2;|Ywt2{Po?Eu~QJf=?$CY$!>a zW5(92IWcq=B*1_S9jd9vBr@UA<$*$2*2fLVW!MThO-h&ieBrm7_(kqdfiWb-E`8Sc zkzkA1ALjD=$riQ(#JtjP)0&>2_gG8=d}?5(>b9yu@k1v3#Eo2ULRP{HU4a%Jg~?D_ zfhMryt}#ejVtt*z6cPaYkBe-sll7T|^vOyIb`+k?rB*+vo#BUBsX&7O`x3uwrH{h( zW+*}CaPH6E5>nVwXrqEszxEn!8V9CP9E<@&v@cS*j0NScmNpgb^s1VKxsezAp2W%= zpn{e105B;lb%D?ajiJ%b1V8$fdgalC7!T@ob4_$wHvJa{LACdlBSSiv|3(+ntE z-fl)(os`{Vo_pIw_>g6gtBTY0@<9fzz1nUrWZOg4fqEMAfzcl0pZ}-85aG#Ix>4BT zuNoK6kxlw1?{A_%fOaBF(`R&|6A~MvBD|JiEWNH1FnY%ZXz;IZoNz%R0JvQNQ1~cp zog^yZ4uU0xxy52f>dn>VzP<#EB?~}XP(?#)5(RkN7Yn2M_!j*OJ3EV55&KIxYgiR_ zN!0j~IP|JS+$6}AVbckL$E7(&u2hgmVP&qMIW21N_H4gYrHZH;*<`!q6$wlJ{TK34 z0A9!=@?nYz`w;LxWQ25)cnW-kDqCWGwewXj?(gt^Wqwc$$(WT)&3KF0V{{K4*UmTx zLc;IsF#tlBNw_+>6NaP@b%5rFnDovC?D#8V&+TSPgqm@;U9zzkv{i!+33+ptm4qmY zLLYuarWpjJ&VkDao?!D^GCgZ$j<%OqTfUO_lipsfY8`S%zcLWDXMSR2BsSW(s%g8# zD=IeGr;8D~lxheEHUGZ}3&EBzn``sEmV(8hya$&uJER3&m4Q3k%|&M2c78v{x8j2_ zd0OK|jHF;0NkxPd3?}o~03)2C?z>7w@9zSAGzVx(Y`4}At$;1X?(PH4c{`D_%A_k) zJgXwcFqvK4H2&T&?67L*#qVt3Z>MsEl}e$ORLAtetvoM}>&(*+ndv=1jI0q^c*R<}?NfA=C67aOjZBVC+iHO1hD*to*_n=iKdJ5!@NW zQtB18YYUalEJ%Z0C_rrtVdAh}aS znw-yeQLJyILvUVF8#xH;^FTSdzdZ;sfa6P4p7(XZ;_4Suzz;fh7s+c(glVmPM~WVS z--t@0^Iuz*?&K0xq_%!7mbs*~iG&@Dfu`q5UfR7I>Wv*drAyf85I?E^>Uylp5M$&2 zvX3R?{J#*ha(PGPS}CQLzRWB3RH^f|k-a05uFC$NcTzlZ)+8izjU&)F)uNsPzWqgw z^#CRnK_u3UFu3*QXTIxRpqNNw87j-!7m9rq@yTHB+Xx-)6DPRA1nusZqk zC@zo51HW6nWol4RONWnH&l!sOdJ}E^OE*Sc2B+Fcm_wS2(`hLYGr~h4m zNsZ47u0A8^vGVNe`@|tPNk<41IZkQ`5zh*d>10=j>n+J*+eb!Zb58SHKYe#j>Q}yv z_Uss)+lzm>CFg0>?bi^|Uu%z#<|L6`3)8YriFZ_+21Lm#Fb#=TyIxt~6pQ2w2#Gs5 zL!FS0VONj6F7aoHjEvTMnRP9$hM9Yx^;1tq8~#E#uAF4RKcBDW_GAbj@l^MXO3(Y( zo#%MJK2_O2Xrc1L7&yRCIUxcU%iw92Uw-2QeZX;(t&g$ozm>8KyHa`E7q_kSAwfQB zHQk#Xe-XA^9)*61WmRArIJbQu{Wm~nv#;#z!xN>=I9D7rIWm+>uG}ugnalI}32;=) ziJwyc-wB6YG1P@2yNA7=I%Wl#Na=w>f&u&c;14qr4l6qQ8X5=vTEm?VsETo5^D_d4 zJqSC4%ZGzU!DJRb8;p<0Fx_x)@?2t#iQ%Q1iu8dzqgAmVBiP?N@i)SuK0@Rd3Wfu) z=h`1^qPIjQRS2$ssveB$fvlGg)Zx~w=iG!j@{tm*Yys2SDSckvmZMV%SN^p(SOeng znfQ0Fc`8N1A;#9;rwmT19ih$|O*?Ss#&2&87@OJ>(9U@^;qDUq59&ol#6U+h>ICpY2ga;91r9 z*C)VpI~ZGb|B`*IGiiS%m|QUC7x&~b{@qp4V97t_0tL!H1&2z`7e5xMHs`vlQsWs& zNFzE5|GikzXZYpv;%VSG9ibL4z>O1n!#gb1S?=<-2xKi0_h!~V-4JwVr~t#N2| zW?62Q_mZ&E=jQ?kO%xUPyE%5U9DDtKwYk`o zD?7{_QJKUw_`t`&efNCohsFI6jVghOGTR9}?vTU@M1&R{qm&>)>eBP=rLREF&9fKD zJUR#y1-o;G-&)b_AyX%8uu_p|=y+mbR?lAMD^Yb5oQ8AmDDLNKeruucQ<*n@9kCwe zk>m9|lc_cz>z_YPN%?p4)GN39n}J~^4n&H~Y@G#`@&(?O8SEJm4 zUIDEh;baVc(XdQ!%-fN_JF5()(AImtS>S7@hPh?CCdEd-WS1Dmp=6qZz}3( zigz3=buWnZ6$Jakr1m0V3n8BU*rmxz!h!ynkwl8XnHraAySG>|kgOf4$2i+xkL2hB zD;9-lWMQB*VPGzS_LZonk|Xn4Yz){Y?#2^uDuGo6GL!!mR0-)>Zb1|zBcB0yFD zj7kw)*3{@lz?zU^eo95oiVy}+LevLnSizaSH{U&d*Z@4ewLGrdQGcCmW*hX4%iHw1v&(G7b zJcJ*``v~;uo(asog~=9ILFad6$|-xD@E4R7(#*hhRV+g*6h^VzVWKD&nXel|wI^{qKDXxT9mNf_@1XW|Yr9>%tOg?dA)(+jivNww5i(mi_dl z_|@@JmHw2BIl>S3qdWP3N9jBLzeBG#Gv)!2uCEw`7f3q-sznyp{|wfImxeMTexxMd zO&2JneM<`(McB*yZ;c|yI$)2AIo=$tj-5csNwEj-H)F&hATgONCeMtWlx ze7?mJ?Q5MrsWVK4wZ1n{euJi(%h8xcU4Uq8w}QHf&>sN}djPi}dVsV_u6fHzMGtHPo2GiFJe59`vIyAhgVOyOFF|Z-rPm=u`0% zZD^URrwiHZmG0WbN1ScczlT1zLc)-|pQKi3>Q^e|L}wq;&fd&MR6|5H19!$3`;wO* z__kD6PTwyh27^{jvo!WTYH_(Z&EHt+jH2Jaa@hYsY3v&;K+96=N!s$QGn`H+hEFvQ ze!Mu()&I_v!96*GPeTj1zR@0NzFDX7`XRWd$K@ikt;A`>9v5(>PrB+V1&%o)Ei|$X zpH}g*w6=}XmJ*>t(roR|U%M$vzOq)7t0rArNn~`ab`vYq*h*YOzPUQe;>VpnuEXyv z-|w|aDU`wDv+1#p+Q0>uc8F0hXx6lYyy?!=>luTs2)&alU8hCoCxG63*5}(n#^@V2 z>QWPD9U2qYq&lMClc1(>Onw51xq9zimsNo4GnBfH!f34eyRMETHuY@Op21l*$#kx~ z>9>T6f3D-BWF7Ik4xQTaQHN=-dud;9uC`dGeBm)Bvf|GORr1x#U(!Ba9e&1w+(Y56 z*|nYHjYa**S(Xt=yIQ&?$@rT)fx57YUFoGIu^guXT2EDtsO*R82&XDoKPV!ZxC7)Z*@d<1_$ti109hjOY!`b}yk8$YEgL@3`9i^ibJ03_G4Fzc~ zAG%fb|!6DyslAW*0wb>#)3RiTmv?>&(JEX>Z1^ua5VAilftB z-OFU@6YF}4kEX78@AWc?j86_pZsC5)?=OcwU4SM^}K?afI23u))9 z-jz3+r?2V^+9c#Vw|%`C)H1(le;y1Jy$EgELkr3Z+0M-VwCQq>4?o}1{q5Q5yWh?M z4J#28gmcb3(RTPL|EBe!M3)(BA@v^u!0^f0kx5j}lE&YAIyQ#WHX1Pn2bUpdEn5;M z;ZN3`eoe1(UqmNg{r-8ih4s6NPayl%-GrNY*+<=5O3p4Z&}`{eU!hrQ8!*)6NxNOC z^`dj+T|ot%y20^3iQeuK-9@G{5VHXJg<;)wi_r-spS<+P7sot?e)mhr?WT8WIKz;e zUZ_*{J@NqY*cSZ=j_!>itF#smfv&aCUGDl zcZK2SOD|}GEUZ5S%!sa(L_xcJmh(>&+rj$#(yD$aWdOh~2&fHamLV*Q&_zL%#GyU{ z)8!N@a{2p-=O(2UXP#cyTM8a$x1hh3G5555kbg*s&GN~!;`<9tUl@!Rjku>@U;WCr zc$Kf>rbks>Uk42oId5QnDB(@eUT}nmwVfQMlIc;l=d!+`&v{ zVTBJm-M6#2>5O?q9fD2E-d$9}2#dGpH2-?8%m!UkkZudmbK#Ph%DRM{qRxk|zWPVF zSW}8fD}c2Ixyl%B_*`wgZFSN*{uTWeJu)qLqVtM1uPId>wWbGBPH*#oma zMdZXP@&+*d+0mI}d?T4~rf||Z%t-mWq5q$W(P-xIB*B_9(E7_9%IHrBTZVYHx?-i< zJC!vBK6lBh&NcU3d6KF`l4BS+SjxX;ht@?oxHf1Frg^y!=&yQOSg=oKDe%?UDnxXP zT=~rG^GhuIz3s?2uC-H}SU|Y!*SM>F_;6TNOX$yBrV~4ug#K?UzKsU7O=N0q$`XQS zJMyFq0Knko{kv}q9kF~8K*Jy;Jp-}RivBrR#X^II>mm4%u(~LI82vE9=v(xhP$7d1 wx0p(-wCr?(SOLi@Oz<7I$}wyK74+7QATR(CeK0I?w0* zgCu)pXWOhbYu3#7N0ge1EE+NqG87aPn!KEp1{4%P0SXF+3=tmEQXTb65b_4?sv#=@ zRXas;1la&siYtplL48d?c`|{6Y$G|z>9|5cp%1+NL610=n?phU`7AFb{?5zrqzfS^ zN6Y=izj?~;+`p-6%eTQ|tP9@`wKm203-ntoiJ)Et`4=$>6k|F1LYg4xeR!6Y;Z2vM z>Mh^(E#K`-`)%*3&N?pL2^kB^rUsvY+p64_sc*S@Q~qadhcc)P5{MLGz<*w-=k68% zZ_8y$vhcrOAW{qlOCbH?U)guyq;mXR&l8OrX zr+^;Ue~uC>O`ife525Sz-JPPUYJ!`aTZUS2&k8vKfm1Dku%Xv3+3*Xi|q9(hlz0%AU6`r4^nvA7kw$t34FQdu$&@k`@I)qA2^Z5Op6$6VHo)Ae*a6W zhw;y2&!1xwB&TivyRi|`7w1eilMq*Pa|R}+Pt$=fSC^aT0n1@D=}SwRf*$8xckvlB zjgH$Q_cIY9)EFYa3!>Qm-rzpc-{&xllOX!i>VC4nzyDqI&z0!+qq6+8{HFuDdb?E) zoi3jnYxi4<+8jCKz6O~!Dwydo-Z3x(k71pbshJrK2M3ojYj^(f7{^92ARlgvmg?hi z*WB{5Y{K8?9V6Gb{A}Y8bZSdlP>4rPOv`!1J-u`ckW$CX#E61l4s#CY6`_hUKNT6QKXthY>K7*I>WSbLAIg9D3LH z$YRj`ZtKs>U3NyuISwiSD^en|C*-h~7`7iqNPWj-SHQQltSsAdDA#j~p=HA*1_{`D zep)&!CKg;C6|dw!-I=jzEXuAkzQ-<|Wek7Tl&)t8cwbX#nJf+lD>= z_y}qS^x&VZcKde-V}PDP4t?_g>*#H4?;%`|zkXZ>>mQ$l3Z$L!CS!SnijZp+i3zR` zI)nva*k!EkhGc+#rW8w(laks?AOkQF0j+rFq3D7DbfrV>7KdD+>lsN}M&r+rlc zNU|g3rf8*~dShTHVFm8!I_gnN%XT{UuEe#25TQ(9as#~*Tb;GpXyE4)KpVZq@Y`^2 zBetfB0n=f?y=d$e@S4FI!QsW`4q-?SxYW69aHos?8O}PP(b~?AYj^B9J~cJdYkPaL$|H?5@&zLaWgGka<2Ky1|K%9n_H7qfPa-84A7u`POg2O2 zTby1)rWg46&iMDB0QBX@j7ihD72!#KgoSNT%KU zxHHK1L+*MPFc4WY#-UB13~_-%JE!dWU;1uaOR)lE*LNIACu@UU~ z{xGTd$TqG52)=d18Lf8Y9^1Pe3K2OY>oWJ;Pxj@w=VgM&E46nYen+GPQ-rP*&*T9^ zM6^>aQ3V{{=NaY%Q-^&gXo?IhMcM88lcvV;#A!xujV=yo4NQXfVnx*GJBP!_-#!0$ zCL_6v;vHS{k$z8t7Ir+J?*jjL`qnx6 z?GxkW!?#Kx%^|WYgJi^|B!UbPMdX+e>Hp56R7ihA3o{tEZgy_?BDk<*(U*&aA4kDc zTpcWPkHF#sYTp`b930XEWV@07HV@LXkxO4#@O zp3Xdb8qVVwc!1J7(lE}*dw_0~P98APHkv8C=Dl;@T|{r#He9f)0rdVm=WUc}*KHI^ zv^h}%uRNhYPgl3ZW?2jQf1WHAsg#b8ZV4z~?}`w~%HZ|wt?}3vtN)QAt*&vKz8C(6 z&v6Y84eZ3NM3~r&YPET&g&9SBFDw9B8WVW^?jACa+Mfp>kpq>#q?~H?JiPb)vui9( z+{xOh_eFQ|X4%M*)O~QoqF2lc zh1|gI-tZXIG+qg;Y3I(JB*>sT8vDr*YQ7vC@aKa3k4X=P6f~kJ?wYhh_ME>lJz5<_2J+l zQiH$szN7HU-{BUa6Jb5WxaI3>;N;{~X6v&I@%+ft4<&@sr+7i;H4L^E|9#@6N)pi$ zacmv@2=;c~!UZJ;@P$uD?YH6`h4t3|CgFphCQ@?j|HwyQ68uhKLOg~UOeKP7mwZ;fFTuP-piP3fW~XE zmr))?F$8_qe7)J;QHLQRhm@e$Jf+;;?$dA@i)BI%V^oDa7B=zz zNzyztE+@Z#qMuUVJObL}&Q9VpO&R*7;X7*Aog>rx_{{TIf_JXYViRoq!fF9jtLXWd zO5L1P!YneT#RGw{omC@rG^xr{Tce+{2&j@I{hRBFowQm8csA08-7?dS0(1giuJR}5 zRYgxpgohOjA6Ve&(z6a_q^>)<>bOQuC}w3_ z&wR+$tGK-jqaJZy8#@Z|8xeWQoIN^DU#jiBTs>Hjk4s3EVx0hI0!axeba9jC56li# z6QhoTzh4eya_gaw;d=g=Sta&9Yi-o#pgcB*ENGfBcK4R_9GlQ4))1~*!mtKOR@>dH z;GA+HGbs{H%ce)R--#JHXJJWuyRK%nHbuI=OB9^{M>QDnAI0R)^dFPip~|*i`@pN^ z_z!iO?J{4(ZLVEd;!X)5oo%a}3x~0SvXWA)auYOIH3(l`K_ME>Q(A2K_SQr25I$U5 zzjjp4V|E1Q3HP6aKq58&oh{-*gB74XkO8O)P`oz{wH!Hu$I6E+PP|L1bsB~>8&=y~ z%Y-o$q0MM`2U+=@c7md4A}#AZ&keJq2YSDo!A@fS?MjdrIRax-dBm1a#;0pdmvw(0 z>Mpy^{ijQpjis|k$OHBBe10*kkB^VP@jCAGzOv)a_C0Hpg-m)PZO648-)sSjFp@Y7 z%*?62=UrN_Yst1BS++mbIl?0!D)%~RDGr8s@5UZTX{N~d-!^fP5qc2K_py z3~-?YQteT%t6cJ2-#WK-%tO{`5<=`;Ia7dedVbC)*ihZ@Hmrf8y|^eM{9vwW+Q_Ei zjHR;a+uhw>tot{S_OMAB+M!w2il&&@%uo$2u4@Nj*cHwK?I?R}NzDmw>{G260wNT2>R zD!i+(E5Wy$Z;%E~SZ1`)wmcEkA3h&I+w2*~nSI8!mhg}!{@141Y~xxzj0s%w=cESS z%cq_EZKk^|kHQAoDGPdg?Ejb^3AP~ZqYqWs|E%^$)&CvSNEmGR0_NFQWCuAB|F=ux zSB$V&>^H}Pro^dOdqEpw|Lp)k37o(2=ilvqD9>o6a-Ku`QGSg7fBN8`T|%*aLSkoR z(y{i${_#k!cF)*BCMsM(MEbYs|4BzAf_J1Q9^zMI>aeiHTw(uqV8{!{Fd^An^AcW_ z9tw0Eg((x$qGD=>KBkJXi`zSWz8xxc_ z)MqFn2u{;q_eYuu4uxI-d4vpxo2Eq@bm8Q;2BC8Z)(;-r@JHX>YlrSU=TQLp14btu zBe2#-C0a9W#^7!_MSbEa)ZhMd%kviNV);hl;o&))Bb;1(^v~Uf9ko3zdhm~rIoOg@ zoC2YF`whpZ*S$g4M>j8LDo1yB-KSRrmpPL$wR=y`P4Xjv1zXQC&v?E?iTOtReEY>| zZ@FFDE%8XG-&2T=`oXEd==>Zh2cr^S-KhP}cz|1W-3c-if+SFW|Nfdd!e-Qd&VFCF z-F0vhhgQoMSnBr_A7im}pug%{qUrEFk}qgEOs2Kv+=ZjU&Q+16N zRw~zDj+9FHsr1P8{@N`wEeZ5&qtxkCAb-p2rl`6dWg z*gDEpZsOR|Qod58uBl8lZ)+X&-d?1OPBRUsbhNSBi&J6E=aD)0Sm23c=bg!K2Swyh z7DI#Y80?RddQKd^>{G#^_RX@@n!Gy=d@-@+`?45YiloSz8X}D!&C9>pwnsqfp6c>5 zRaDV-h$2dLA}wSHf3*oH7vFiC^3KuMfYMAD3zLw>+cizGum3$(dKwM0#iPZx5qV;K zIOAA;V7F4wAhfLj4$BbP2qJy(F74PDbq020k02#Lo2ZKZ= zY>log%ZP)|q003QrIJ^6y#yXtzbsi8)0Pvsj+Ypjv*_q72Pf`_7;al8wpocM)GZq$ zMJP+8Y@d@z@J~IVNfUcC8wE?W>R?R10YmLH?inutJ?0^NwfJzH&=UW&2}VRRW7Nhk&kczW4q?& zsNu13>-btPPkH|73rJKR?|??9)Zz3fUDU4Pt7~Dw{4#5e!N_3UEEMIB&Q2-s^Cx|# zPkL1X2dR?E8Z}1;A?@Cp9w8gm%LT&zrdnN{g%-^^$HX~$8ToIPZ6D)Y5-dAw?ZHGf z*fa65v=tX$lgm%Htk_t2XV)ZG2)R!Kyw#6ed?tAZy}X@^m%w+7&oj^ z$8b4L&UdC(-lKX~N?cLTbe^D8qmRyUv-VhCx7Y^*_XsH&xPapa z*!7zYra4`IsZM$8WM1D)B}4bz>qegOETiX+?#v$(8QM{*lPMDRJt$4N=(yy9fgwst z39h&O>D=pz-=kGu<{*Jb09f@r*>~Hw`*rdt>aOIglSlNvnDnm?kd12K^(Zg5PYV6) z&f%(2`*e{RH#PfpB&BVhhM#J2m6#tnxod5vYy!LE*uucO>WyY-<-Djde2T4IX}Jlf zY#h2`IT zm*0)c$uFjK|7?xrXnq?We$7zXQcIh0sZsh6H{7|-!{dTDmilLTxGsI4+}o=pVcKNK zP~#cP>Q-B;RIs}irU^`TU1Yx%{Zl}Fs4_G4^9JiQ>eEy>;{|o8LM)x3?)aUesYkF< z&l6temlF;7d_F}XdEIbIN@c!aHmv+4v-3=L>v$<&Nk^ewPbBW21RGquBLa%HjRX8t zbmEE9iGdrPFiGYn;>kaH2)s2WM8@?CJ-&dCh#+CgU{BSD4>l1LiFb^RX5pBNLu>az zd=Zc1dOq%=(u~)Rbsj;msu*ZVYvN$5Ei!vhB{#_mEq0nd<^7dbrE?uA&7>varw{yE zB*o^ZMl_59GPE`AhRIy#O)2CvPZ^Y3DX7*gtHptwHyiF8&O`5$`Q7sdkDL#NW+_v8 zRN3Tp6I7=nKQ;a)u;sLA$}=j@of>B8S+X3787YUYo8>X%ghQ?zjOcPZWRH- zajZK_+;q>SZI(o|TJpiY$D%|!3)B&O(PI=;iaeU}V0c$>wIQhVgwEYIMusg$wxMel zih9+wzg3nG8%pTlEz^ZcQC;$RWZWvZly{D#h%U=HW!rwuqngP!b#m=iUyw<0zDY}$ z+dub1z&o(bW5hPkf>>*B0Sth91wS;44=8lI(AA`zlbTC^pEW${3lx}v_p~OH5V1Kv zN|#jrVj@su5YeLIkt{pj*exkw#4Y?5o!4`M$UkB8;iS?de=)QW04t)48=ljgrBQR& ztf)K7mFd>kl+^?O*Z^}wo+<`bu+7P49~s|X|#B{7HrM)G&dCLPS>TE zY*1!;57i{|T4pv)usb6`VhQ`{9QVajj+=gBYR_8^`7x$6xf)4HIQSekAnw__g{JXm zRY&JrnLJy~Z;789wi%<7ToW!1%e;|a6BCz^bibj2&kg6R{mPFS}~yg z&Rs|fO;A-ZpNB_oPvu9zAdY~PTZqc-VB*)_%O^%>Q%3|7XW(yR=cY@?DBYse#Y4fv zhOE7O^hv=V9f0Qsp8XpB6@_ZD?i{n`8QM#}w>MNBVZWrXVOpl$`A^Um0yOQ0SQ$tw zu53Vg^I`MpK`Ua~UBt0bf+s4>_aQG|Dbxr@r6QD%UGFY|)+->fu~#HGwAJ z-4?M3=wj2~acqp?+bCPY1f&4qSGM+#25yD}xUDBVWNQo+HaRpO@D+S6P&u=F*0R3c z@Md(Mshl?Q$Vq(Yj-qFP`=oplx(q3oCX#@FTe{mdYW}#?lGZBoj4KHcxZg-pya5yG`SFJ}NBRAfXO300 zP&h}NU*rRng^!F!hzH5AssNcZQ)THu2Mq<)GV1dJ(pwrH_Ei~)T?sNJBgb^oJL)n8 zn_V1vjZkt!I%Qc8L9NK|st5cBvToE8s}y|MpnOnID$kv^frr!|i5y9TC`@O3rF{v* zft$~hYw+&(H7^Qc!WH)fr!uyV`AAb>yjeScw+FOe`gJ^vqdiUS6skqS;_DoSK@n(S zR3(y8&8*yOI;``JQnIWA3{_Cyu`Mo){nL?-f$;iZqCCEvEE!;>n&Is22x_(rN8YHG z@8>|{QK@EKTi(ZSOn66xPr2%rG`_`3Vp83b51?rkg#_%nQq}ZQNZ#ZgV-IO9ns3r| zwEr#V9q79{O8>rbmAQ=zD7yYeQX-DJyiJxA1)DL*>!U-HiXF7==xg%cgi&zRIkKOfM!K{ zUWpV}UHaErp1#W%jmrQU?k=&bl8u zzhFxw7?fTVv;+2;A zxYmtGz;reXj2qE81X34U&d_nr`0SRLCZ_h#Fcg>&93kg3?G#o|X4Xaz0{gCYyaZki zu1VwhUSFgw$FAqKfO6&-4<5ci5NXnKqJx}hMhGy7Jt#~7OFlDyFDZt$Y&Cq_G*B`< z^-90ysy8P`s?AR~{0)N~&-B^_3_RUT9z0<4XYpxuUGd`F5ZvkIPH#|C+3cF3tn`S@ zV=i589JfbjL-+Vu#d^>C+iq~8^7MuE`YFur_tCYU@vTGhlq`eeQ(YGhE17@^1#YTV z%snTSL-=>Mq@<)8y1Iq2w&0j7woP*k&gc;*vXCc)}rfjx%!zqe!A zHyn#Kd_-1u`Z=At1T_)@*|T8x_X~&!Su$+nyif3P%Eqg60L1SXMn00tA@~{jIpW8D z*nQm3L7{!o77!rSHa;p%@713FbIOV;6x8#ZG$cP*!O%PM z*y?aju+_jj0ynPB;kDdDJIV-H4a8+>nW3L>XYMwDV_P?oVpFaj-08#|9Ytz(rtR3e z;ZVUhrDI<3-iYws?v*)aqcNkBqk1f(F+abw=dvoQ`UeYTrvlA#8Dry3QxDgUyEv{Q=gUT`;i1LK&1uuj}>@NAR zdpn~fBm4-mSF3A-Me>UC0p8$rH^pR!^C74$7y5@Io*2S)AcTtYkm}3>?{Rw@kl0-k zjVLz6_4D#@9Y;oBgCCS!Bb%$BZpeR$^8%|T3f5je9P^!Wap12x>POs?^vzMUgX)Hc z>EyLsbKlwdPqKWBFqoZFoP@cwwtlcMdnK|YZpQ5Abddi|pl`h3UUbij=RD?PMlF}*c8jziS_TXpEC#gk zZg`v*CujZsXFlO6nR~hj`Cbkq%WSUHlhjIk+me87Jnnj-V90zuP8kXtjLsmWq@O53 z&_%SMQf^@iH;h|!NtK~rB0^<0PLk=>*QC+8M>LkxE!M90>vPwKlOcH``9!TmxjP>17>+oh>^z_u)g3rMf=vqG%d8ORTIwO4v7)oKVCIc~N5R@o z#;^~qRAJ2^YIXnB=8;G+TtyNbEf03$U}ue#+Z=IT9`!V$5~WI-k1kcbxMZ>@`XLJl z8$!mI{QP*bb^+B1J*zHd{C+`t)YZWNenwt;eQ(LK_p++Aimvr+!SAD@zCF}D@$Isw z4r)|xQ!ZX4rUdB}m8zNU(2sGCm@xn=gVK9`TuhTUu3Y|Xj*HM1#P7|VykGPHb7QQm zq;@GiC$$YO`Jokx?E3?N;q$oOdBmOQr--B8@@0K>*c-e{@=`XP(Bqv_ia`tGTyOt4 zaSXc0Oau(m13P-hmSxTc>=V8kk;uW#+|GyttPjk8WT=onhRT6I8Gkg_>AwZ#kAs%Fbf2)L-}o}YOM=lfweZ)Wx( zfg-j_Wfgc4cg;Ae9`7j0D zr=Rjl&FBa+dLt;Kl0Z2%gk5f!sD44D0?Bxvx)xCoUPpn7l<)phR2J6{@5s)ucGeyB z;JIpssvG_6A6+=Au}xZ|hqdWQYoG&XA(V4mtI2-yh3DUSM{CfY6P)8kO}IW!=1%iK zYZPc?=#|H7PqAzg@E63uM3zxr0&1}rNwUzL@CqKF`V8$p>o2jAU=%yx0e8!!j0=c` zpfpz8Nv56R8R`;$j+89NO9n(MZ>)fmw=05jG1i|{_yT=oQ~61z=87ocgdGE;v8*fC z{)e#TX?1gpm8W_{+e!*a&AQroVV6ut+~NTi=hdl~pKcnQa>B)Mrd8~5QUEPIMx}l6 zh#KqOvl9!U&3Eko%vP=UV}0X60tPRnsltG<*?VlQ%yy-1glrdA6?XUL#BExA?Q4OpvD&o6qw7l z9g#>D0@6WF3K8QMM=&=P(&d%h`#%{!LTJ1$a)I~&sv<>857AVN4TQ9Ly&*KXOe7 zn3IxiYH5-;ZTu9C`Mh))$}f4fPd>964#qVyHK@Npk(F)tLYU~hM*ahnV(O+h-kC2>pAWg7MIrF zMe?>4IBi~(rjzpLQZwH>)>wYGSAohPZ5n9j?P?JL$D_2^8K>?$NXIzS8ISpr&Rqwm zih&4M-1G|#^)}@xDvkWB_>5RJF~RkyQE+OihTS5OS30N^{gQafb0IBT7I}`~zFG3h zcq`|Mi?z%)V8K;57jGT#*1?B+n*zLR#f*U}v07P(CjQ)@dW9hbr+!{IzqYZ-imlN} zyJdP!S|oUh1M{^=MJi7!H_8VkcP^7Z%0t0%~Uiw8l4_spRL$*DlQn@ zsx=w`76{hb#F-pfw-Km*L6ydi_wnS?>Js;sA$mhEmrQGKiz#S#6o!McfO@W!BUudZ z3-{F!h)QB%*^3LE%swM4C}O2!g43K?|OFAY3zbPy@5^B^RUJf5+T2by{B!ccaHIZ>x2KM#+MzK zDp+5^tf4x0%DiO_XEoDKq-0_HzONNRRNsE<+>|Px1%Akel-=|jOtaqPzTY`Xa?Nzr zqz~qUsl$q-nihGihO=RQ^MBbhBEafc|j1(BNOGbE`g@`4ZgxF%= zHXbd1`<4RdJ%&e*!DQS!8Z;qXI%B+mUVGE95G35gw>X%noO-$x9FYV?g_irMNL#kf zh2u6e%P`Q0O<>LD!0yu2R=F9AnZCLjg%{@NtsdQmJzcJtnUKTe;pX8nRbAcZ`Qmz3#22sU}$O1>Y&fwrP@CiUf1&K=0T9 z`udg=+q_u>fl1yNuBew2yIPX?&_dPm2?tCsP zFe5C@RWi%qO&S~DlO@?FJPn57MY21=g|or-ng33SPBQ08Ly$Q{hFN!SXfRh7k6y6a z>aS1#Ng|dg)h0y;MW!Fjk!#Adak79;E7TDpr~)?6D!3;suKM{znLxR1$W1k`W5}m# zxUp@Xn^I6jiZ!)#**l6a%#5bdVI&i{<-#~|Hch2$F~Zfi+ZHh3uy+Z}Mm^eBM5RInx!T3k z!D0zh^uLOWxaz8BJdo^XZnIRdA0)YF*w-YG#E4N7hVH&i&w5b2XVmqzt1v=o&8hjW zGcC!MUu5xU#zd=aNfz>;WKX{416$Q>40SNv#^0QB_w;1GT7HWB3xKFlJO=SAvFC8k zW*;;|hSWnyFLmW7X3rm4YKYg9c)Ffx>rE2jCr*n4s_ky9AK>AszTiA~ui=@=|B#p* z0D`v`o+6&&+JUFcmzNUCZ@C7v0|=PnJ|?Rn(F_C=pqjLLoYPjUbuYoQl~%WJb?){; za_JlJY`~vHBVR5jlX&yeO6UA}CcjvX4bheimYFM9nl-&U^?FgGzZ$9)A(H!Y(%n5;GT7;KtxkH58m!-E(fBe%<8g4JwY&%t^CIKUbD$Xb@D-H?a z>Y&f)8B1r}JUrI8h^Z$bv83-Ski6k{HRO{O zV#CQg)x0dRb`#`nSw^=tl0RBez|CITQ+8uz)E2ZU zZj;=gn~IW<+Rr_UZ+c?W0IfI^v0=lPm#05&5ueZ&VhnJ-6?qrcrspvlpbQ*9KtW&>qpbiLR+R z!Jlh8t}7d^4|BJ$WMU)DyE~)cI}}-C^FCaHYI0XO_09m#?;)?LU9-kL0`N zVUyZ!QJvxWiEQ*uCv=8PPMWQROmHDiz2)SpZPbW`s$J@#xPsk-s0O@tU%_Yd$2G4b|v_ecN@;S0){BU^~_h- zb~HiK+X7`FUCY8v_hVtWJ+QjC{CB z!`tuRDcHHKjb9LoZ#VgvHTk6T%`4j%I%VYIQ&4zxLW+2j_?A}Vlt&eHghvHmTi`jA z%X12l5d&L|sG7a<6ER9goVH9krIh?F`1*bjPMU*3cxn~JXz8Rjjp^lH-O};kzK@P2 z$=5OC95VU{Us1e#&!w>#gzOw)m?&b)?qqQrcr)3NY*QosDiSIFyOWlVr7(Py(8 z`cYAZ^t#Tph(0BUCDi5@q(5*{Qc>Dbl_89?xhHeN-Y4ilPJ7^mrO^GG?(ey}@ZZu? zz}K++*Ni4GI1Os{VSxX!n-X7AFS`WsX4?N6-z13YLzoTK|JnlrFTsq++5gayK>Qzr zBo_bMA2@E=%P>y+!|jS?k&p`hec}{h5a#f|a9n@ruCug^i=aHDjPbpt=eefy&+~cu zD*{L62Ns9q@TOLwUX>%SeD-Bhf}fNKgxj8Y+`1EKdwDqiTv9SP1<8+Wr)N8MuTE`4 z7&#Y+7;4p-gXiB{3d;dVN=nuTJo~IR+h^;$FTSt0S!DFSo|XMvU9I%+@Q_m_g^Y}R z5Y1GZsOQioUE6UcAg`$SDL5FqgItVFUP-C(3aG@=36>C48HWF#ehN(oh9Mj~rM7Z# zNP{R)q7o9)U;QL)8Z`|~CW5@DXNzm9oS|V}wSL>26jmfCpl7>QSw*G!3R02d@PBX< z41`EtCh9FFPWT9k|9x&)v|=-elbUb!n5wku(jv%wMw=n3BqfNRz$_2Mf`*3ngFiVt z+m?(1sD#I?OYM7imYSDGc35e)vsGG3yIOA%gG38_-@CI@aI)5^NAA!L945)Lj*dMkbM0J z5+h4)Zm!EtFZ6{^7l-{C*M*mmhu?54p~neCYLs%AA8458cPa1NEXW;^WALwg;Xlme zcZCpA`{d~meT#3iKSV3l!bb(sG)&=A&d$!>F5^mr?0N?P%Ti)agzylSfBpah_6sv6 z2X&maD+WBw=a2JtU!b*})K4hUi*FRAAy-qqzL2O?6G;j! zk~)JYw1TfM1UV=YrVx%G&fk^hUKg@4$JBk}tRaV;h zOrK+lPJ8Q9UHRDD|FxmQUvMy9DN=^0&#P5U)DJKD{kG?dX6dcZc@KW(Y}Y0KNUdIB8z#d zQzDp>v3Q(}Pu`ZfonBwYR;kLyQ7}Z9QxPU0enVixXWF;KNdp2%s-$*{Yo=PlXwRogx_~}BCE^Y zWwA$i|0GW6ZqvWp?to1Ysm&-@Y~ayWA4aOCW7zK-f`>3BFg9cXC(Y?HBX;cv3+- zGJ+pT_kJR)Espujk8X##o&s8NLWNigMU9J-iqWakaAR0iGH%Kps_0xc!6(05YY~Hv zr8I8%TFACCMTDYU0|RpNZ6%(`=*c>rR%-7QJaO%;CR~fSo&dj;viN`%90Cw z!LD9k)jYpNrHk=x=JE2AaESi9_1#bQi=-6nG9#60^#AYOG^!8aaEIkR;nANtdw>w-#{bT zVw@F!lD4)@o5@8lq|AlXv)DAQuGloZvt~!Z=Ml|A zqE1igQe`yEEV^kbYG!N#<8uV|iUtuzbNi;|G9I1gG{ZI`ct^j86Hnih&aJJ}Ij_Yl zjYWPcS_tZk_pnm+PhV)fKY5nuvqGl1SSwXgx*Gp>A~k_eGr3u>+LNCh0cFz~8%Cg$ zm``1?MQ~xg23eM;mY#_SMl^eV@Cf;QQ8?`Ih^C*0Lu*TRBNzK2I`0LV!SSf+FydkT zBc#OsdAmh!ezMAvlFM(XJ}cp5 zXb~PZds30S4DSVqDob8=JPuDT7RWa!PTf;I45Z9cHX|OzwOqRvPS-2%oz#*SK#&qZ ziX6AX!?TEWjnJDoSr5fdvQX$b{ea%)V3GVy;#ySnYsIos*-#>Nb|iT$;(Y3whb~ITsRCGw9b0prmKXSNT|_AU9Bo_F zbOooDUKF2QFfvnkI`@G2xTErgy>EetRD)o`331_0Y$rBMX)eJR=;j- zJ21_TK5q9mJrZ9NT4i%w2e`dpH|>Y3Sd}#s@@WeBUNNN7jNmNX?;A*S*JGn)x*gX1oQ5FGEZEv&n z*{qM|`OpqfNX}U^pOft9_$Z~hl4`E>lxAu1=1 zP)#Qsivy;!)1?@b;V&h<43NKoUUQY+slAb}|31Jj0DllWk`}0D=yOD~z73It3*9Wd z-g{j-gfA04JmPwn_ZW9K5rwdqi9SmmnIR z%)P$pB20FEx_R8@aI^<;Q-35`tbgp6UMjd@Fi{uzbWq_BB2o)x;d+(2?RTrRvRUoQ zzzRE**f;&v>J_)_x`xF4|@KqToR)+G8$NNria=H&ia73@JXw zuwps7WaVO58gG;h4QY?K`0Hd>Ggu?JwKs|=B2{8jz#Ct;S8kTwXjLsm*=wd3%?GLY zz17OMt8!>b`ngk!C1W&8@zJtZpoXbM(_LHEB+G+kXN-d^h!;s9eKHH)G0l4IU8Bwj z_Nl@bg0S?Tk(1-{jp{$#v$nu6Vgmg!08(`?{vE!&VAtOUprV2<2K%$GZjguVV2>g& z1Uwrcjdc3`^1DNG-Z9sKz)dX6hx<<}NH}Rbp6kY{W1TX)(LS#<*U!xb;W~VL$uJmS zUfMRnb%dSGrAK`pr$;q2Z^SVz3AiPJ6vn?|)xkYoa6Ue#DNxpxW8i^#x_ z2N_Y+ky@WMH-?pMME#=oJI|5&|M)t~pg6XLUE>ZJ+}+(>f;$8WF2UWM-~$9maCe7< z;O_439^3+i-~{J3`}^+Qd!MRve^H^jdWOte)7@)5@AJm&Y4{#6r?VJ5`zx>#mCoOz zXVdXD0#}bcoNcwj;wvg8g{7d@@$y!E0DoufeX`+b|pjg&mp#;pY7QVdJHv?f$5=;Yv+i zJ%M?;&Ur^#ua;oelPuSW3tKg8b!BCDvpcxP=Z^!X#hFOw-MAyu5nCS~0+ZLmab+h< zz}@JFUqab;+h15mfVpY9TxXq7X3)9-{=JFcbZQ5Is~)K)mMcmL`wqQHDW6%=vKuxF z9uLQSMLR!Ff)>I$9gonyVvl|u&($EbI%qn0Vcp-gJ~Bo)S$OKUo4TQW;KTrXYFgUxt$)WY|E>aPm#Q+=dRZm#9@ z=8fgDfTc5v?j7iWho^QLJ0hvkoXXPiBQAZ+0yr&wo8%&D{b1v^?xtXscz*K=d~+61 z;wAx6N<94uchQWO*J2YW4I=X4effh5ZT@U9e_-!x1wUn%d}JO>+q)g9m4nUY4G$I@!RelSl~kx9vT|g@_@1impGW zCwx2oX~V_O%mTH7k^4}+7Da!Getcj5M|Y(l_=}ln23ibaCL!7kdJjVJJ{FY^^Ba#4 zuMvrFL9rq9y;=9dWMH>DcqObLW(*XVH%nY==^|BHK>D1BQTBR?jZ+c|ftnAkl66Ta zErNaFyxXq>(u>%Z;OMQFW(}{rkaCCg6XYbvq6F+>7$xZFBR49$6C6429l{4#Z_L9@ z@adNpkTuvgHYQe!+^PrqjW=FrXa=k*>B=0RAKVdCXTw_u;)nyvm;7HbypLJ-7M+Dy z%JuXd=R6uTy7xxCFsKm5Yy|)W*kKH0fsG| zo8ckO;t-5*yfdtBf|-q{-=2FwmX9Y0D(l`8DhpQsPj!r+;$M*RcK;Xi;dttcyf=Qb zfO~@FHM#g#gxiZMoI%KTfvNc*+h-T~!!4NUL&pzqd86-dB;%KswC{c#h|s>q;7{5= zc<&|cBs=!_y}j*zGlmH(j#hk`iOQyh35SmY#T#LiX~IPsm4p1*2ke2h`4l9LmU3k7 zLG)+v=R&!31aiff1f`L!R7ZL^M){=j z1bxjxvV)f@TIch7GS;tVspyy!q6pygP%o+q^iZzuKf#UR$nsfB znl#OwtXWlbp5r&~YivVRCapJE96D4aeO9WJU2Zujbh%`lnN@S#R_6;wS5t)VPQ+`R z7q!IBy4buWVLO_(4ow9|(;ZFvmoKV#b|h>D9SRBSYUTF^O$ZB^htiXjlNOYVki3z! z#uukWB&JFsv1iM_T5<*w{kp5zZdPk`4L33`f+FRVV+tnn(%?A{8yT?x!ayD*!zjkj z>P#dfzgs4%vW`F~GYA{_C*SfuAl{*5sV%xf=3=6eLlFB13Wd|l@{#;%zVtA%=^u%( zrs3Mc2R-zp@iD8PsRVAq-Pf~-e}wVbf~ef*KUpM=!iSwkI5*IL2bU=mzs+}n>B4@& z34|POb2U~X&XCBe!^tR?z0L*1jFY890XfmZ{#2qIFkhn|1n9g`Qfuh$d%tuV6u-bMB0E6i$G)E@4HrdQa z(mL`#*m5!mWpA=k`_7aTYvL%N3&}dX1eta0{~_kKWyM~i0Wt9%Eo;+5F9E4-##KkTVzWbGC(8F1#=olVM zM?V*4-!K&D4V(Mn^Z5M5qF)q_8Kz-m_aw5+4_~LbrG>X%{6YcR_lF+(hV%Bf?vC)q z>yIBzi`rbi4NJm#MSa2?`tb9;gd2(%4eZRJwo7iW%eGrBSA9E#*U3W2nUhma&|7q6 z@zy(3nvr@=PV?%0-Z@B`Vex5KDioP0{J)2LUSBO=#il@@j?dlAE_&l*m?(I<=zyPh;Rp|LB0AaF{Q zl~H$Bffenh$S0hxZi9CO*us4gn};kzb0AH9F<5m|(7WB5QI=Xhs<#izlT^aOYeMqt zGb))-UZmk1EM9LBSRH9Qgr0AA_NQH5w_+wcA4q4M%wk+E%)02rv^H{;vYexIn@Y9? z@9$%pr*{||AK(;EWD3FrAPNjEsD3)@XOs<;DTv$EA(H$?f=|s3-ZXS7{iM1@L%#pq z>C&X*-`t@_vaCw`Kv)O8>iWxXxLFJc!4c^{g|wa52GpX?icFn*8mJkYp_WtP#qj;}%$@DB51j*;=J zI@MPz%P5un^7$QevCsOPW9PFwh*7#hSPCgN1R;x=sG(TtEan`eq?q)aT~Tl-w0X?E zgSIZz&V0@DvHqNQBc9j)QL1FMRu!%N;#*?HQz;@RBEEOLE|)>RFv*hv26d594I(|r zrU&0Ev@4iO=a^}6PHYgeU=~l+qdS~S=saGSU6(fBK}Lp>4AiCZlogoqq5z+doz(K9_yFGV`$7{N)mwV;zNtI;FIXD%+ z+pTmhXs2S4$qru;xi^tGP$;5=s|oHf!cEFwQrDPac&GJv5BHd1kDR$R^(eUR_q5O1 zV!h)gzeiQ|sy|_$E8+2`PY?8d?kge_j~$U}6Y>*Uix076 zD-~;7U$l}Slj8XZfZdnA-Jr9sHibBhz!U1+&}Z&kRb%!!Zuyn1Qu&cnckXn9VU_fW z)HY>w;Vo<2boByDtC0%b2&U&8C63V%>vnV(;R1Iec}UkR<~q&UO4)pa*U99IM$UuA zp|yRi{hQ~hVw_%SijYX*fkY_|K$vzpA?l>*Wol$#%)e3*-XEX8dGrCW+Q(l0bcdHfp5Z$47+D$l zS5?-oeZ&OmJCO>>!olBx#6CF^YZ@JC>7WFDTQCVl5=!7nY!t&k@q&C>~4r@^UVsb64UxGV;z} zy~dIyjvjZzF6d`fp|QAThud6YhLuUT^Y!{S?Mh+ROtG+UC8MWv5z`Ag;;}N}v>;A> zGBi`~E7-e;m6Feia=MQB1?wNd(T`3llO|U<#71rKnoz51MR%OCk_Z49zZYR}eNlR? zanbZF6$xLq0yT9A9*&tXJ)6Trpax}3El(;%*SmFJDTc$KrZ4<7qxdv{vPQCEXv+@D z>7lb~clce%}TSgFKP5Lvum8`P<`bw`g5{)4l z;}e3X+sMRfpiq=DD-6`GSmbWOlW+ z@fr`vsXz9AW=XZcMcX52AcLCg5j+myeXpb9U*-ngipoPef>XQ>^TrMGM_3E`1~I#i z3huQ+ws8Fj=J1HZNyG^#F%J$|(jBgaGkvtmMe8oL!Wc`PX~3vTwZ$T0 z(hN!A8klu!RAZnO|1=Uno-hDz(rWp$Bvy(9`py#K zW;FQqT@DL9eUR#z(b?Tu7O+)USm>uBuP5V=#!ldcK&e1WWgCoxSN(Qs%3K=KB+Lj0 zx=qMPa(qm_F8pkk1GBJr&9NfEp{nVJWK5=3qK#|+v@FT{0_Z4)?BM1p;E|h}c>+Na zqRGT0nrr{Ehb_oCGKoU}U1HqsP(|>}y079mDWiU!Te|O&U&@eAg*H_!&B1Vdb3f08 zuE7SwbEolHG>3KR8zXid+Gr~OG5A$k2wwbwRL8mkKnk}NACk2Cr+l& z#_Q>qIK`8(UP72zOW;Af2-qRvd7>1dltIF+s5<~2oR{M}z2Kl4dV(1pCtNN`A|e#3 zib8Gw*vA1mBRl$zUx%0W8ks8n^oSZSs5!WYfnJoUlfUE?lNLTp+_&?}2K&G5!vj{t zWr6%SjTMpZQ>vNL2P=1#xkuL$d&~z9*$a>7a)(AQs0)_ zj7cC!!{ac5y9=Ny{=gHomhS}4^EjmCFmhfA?Qax3+YSor(kf5evZiOUjM5Y?eKv)! z?^ydvC}5BWvoY*mLTVk`c)ptJ8WK$}y+~``Hyqz%mX=NISa6JR5q?if>{F%^oWwPC z*mJFbtj0FQlykD4?yus3iQ1R}bT}JoP258*u2LLFDzcGlFg-82|C+X1U~d=$xhs8m;9F zVH+k9B&`+}#d}JH)E8vi;4Q|o^hBBiTc0RpCUEYjniEtDDnZa~;ca=`K~b_kfJT=$hLP}Pn_`<&rfcuc`~p_fe! zx|ei9F_r1r*6RB-wkzFwmNCV+Gt7xF7rC{V;-Cj)p3n88=RuHoOr0OvPu#8FuTpB+ z$JLp5nGeW~N7pY{e8p0ndB`6tt@Z6iw#g{NRdgNC?vP#GmkYAww|5CK)auxh(sM^U zIkkfIkZQ$lTasu}n_i+0@Vc&g1#0WRi6$!!yWI>mEA~yLjY%Owo^A8F?1lpwCT$`R z0x5`ma~hHz8VoNabymFvS!2`J7I47gre{wsp!qr;{^*5D2~xe?R=hAW%7;~ z!E{J-C-%qGG;+%o78m7=jP4Fc^iX6no*uB4bw6e8U)tv@u&xd?My;WNPQCp`P*Ri80n-Mj`_uezS#{QDJfY zQ57t6C^oV)4LRkYrXM0U-J1f)qlTL!wTE@t;M*&rwHhVGAWtP3`(`u6Y|}*wL*yHD zYf=*OCbY#jv{fjs@maxa!P?ZR>A@Sa8ITzZFk*0@jK7HD@Ip%?jo8cVuHa}67X2rXg~GyP(?F> z-M|nghX;wo;VSM~K{tr@NNrF~a0gpTL4Ud&(UH!C#i@Hx;O!aOqN?r@0vDk=NM~R+ zh!2C&m{&~0Wrk8fa11LS?T!#cXp+sOElEldf<)Rk!#$49dEfF^)xDh{yFtDnO@4WE z-57kJ;G~!oM`IKQ)8@397T6Zz)*}K#>6yf^`_4<0ES1iGc41wlRu5u?X+%UQJvJrw zrYb^Zax2w)?#TIaXx>NQ@#!Y(Y*n-m>h@D|@y89>&#kxgSvj1$UD*;kQo7v=h!h!u zQ?Qe)dib)J&jvU-4(>I%VZ8<82Wa7q0+%xD8bYDSV&Y9+<_(%zfjlFSsC}#xb z%uzZu5NbD9!D1vR?~O)K;V{)MXjgLKU}7dd*<>($DGFqVUD{YD9Frr}sB zru+aSKpae94}4d_P>w8C;UK|h&NFKR&k>@&{yLZse_o5p%Q4o7}Kuz)@>QVZCV z_PK@Hz7YVYzl|c9h2?hFxo@!``c9(_pivC}K z;N=oZ8fG63fYAy3^JIVr_3w8ltL;SbE;eoj;h(Se*Pj7!e1ZQ@t_2eRCqcFqB;|%W z{V$^M-}D|Bvmg7F-oyQy$Qcm9;vAwwXD@uUwA@`z2zVbFCA>l{YmN>{`zvq&i-(3u zgDdYV-Uj>@(LTYI7FW*feWGh%CK^!*zaJcYSYe}M7eL1#p%4=YT1vmFv!rX$gbd)| z;N4AGgfOQ~iDnp7X40E*|6%LiaaM_wV`gAo=r!Hl2f0oRFO5zZ^sUAMeC!WNgTOA|uu{`&%W$ z#Ib8U5cIXSwvGd6Ejd|Pr|4)Q;O?xjuz7Hq(0gXvgi4rPTCI&;v+Dsq%*<+tA72sx zW6b&n3kLT_J0H+$&X*%{e2)vk5qvgxK}mR$2GDXEq*nep!*%^d5pza$5V z#XTp^|w1R_s2ACMrrVZ7h&#(IY7QS}q57|A>K&$rz`auGx$C z>vYyOy{NQV+1J3HgNu)heckJztk~95W|O}>YWwsM>yd1lq|#t<{{7d%jKaoto%^Tu z`$wyY$Y|%^D5yRSzmjei&@3J8ViV$+Fp)V5*=RL{s@Z22&|5fMXmYnQ>wP==ep;eX z4{g)E<(DI24x7dx#J1kEg9v3uV2;<+RE<`p5z9$7{gIPv-bmJOyT>Ip>0PhCO_aTZ zQ94+YRkMCbh&Nqx@3C1+ePl@xWg^7I_szW0uqA`AOb9x$GJL2p8ujYIPm@Gd^WkI5 zuVCrHk9AFG@|~430)*e|GaF<9;7Nq;s%o79*uQ zT)Q1HBfy*^o5ZTcuH1ecb!{ID3hJ2PRy1+-UAa&bOv=aIN11A{Ch`;u+KLZ3^SMcP zo;Nv!3Hq%3cBdcN2y)lOpWs&E+zDn(owS7!jBv^PRCBtYBch_>>73pB1M+VgVPO zsLB`Z^ln4B#;eE%fjQI8(Q02pBws)1d*L}R0;w_oS-0WY$KX?fBJaV<9CE&6Nq!!~ z?BtCy$(W+3e8g*+6%_bXF0|^5In!@e%y__#s==nT$h1cVU^6k@O)Q8I-pA6 z)tc~XLKsWq9OM_c0AfaBJFt{jHP(kN>mgWa87WquZ1moBy4gzbWFnRrHe0!*GXb2O z+@Z6D&_ct*m0}116|lTn#-yViOEp`IQ6}c7*-Mm_0edIsv7sm|LMbTr_!K;|u<95E z891bth(p`RG?Wx!ZMbZ(=$%RKRUDbD0%criw==5N@|(Y8rCRx89VS*vJo);r+rej3 zw>hojde-5%`hcW?-qya2Wtzi&PQ~~5zfM!q*9eOwbJUytqUtn~Qt{$51;u?BZ$2s0KEmsiszwjGQ}T^#=Tz(Cq|E;KBwl!&|W<2Vyv4|oUQ ziEbdl)9hhUoWzgEMQ2&w()>->!u-NuC6;y3MTnPoS^)N^WI>N;x*Yuq+^&#K{&c9U02pYJhW0ko`_O%eRTRev7Plzx>X)x9(Q#$$Si2pM{uDgf_UiCgt<3D^9&3oCSZ(JWbR)q#V% zr!ve5Ce7QLLR)@Xgx?*?m`wAEPk%ctIj`c(6N2&h{tJ@&F5I{+uA+RBc=?V`y+O(G z8R?>2`ZxRGsPvq5Vb;Yy{yO@hMhN0?3VTe48COP{;={}M`d$ILdg6|PlR+z|h7b(5 z?>N>v9sbeDjrs2}g;a0|TcP%_a}|~6>e`(h8rp0fqWk)#Z3!L-`qOra%RZf?x0E5A?$uuS z{SaSsL(J~`>^&Os9aH&3va)P4W4$Y%%yB>9IZ7`M`pEW{Uy~&@l|g|kVDfzioH&jh z&5}^wwjBaBemWfEyoUt7^m@>e=KOxb`m^Z`x#TtM%I_a7Z0{;EvdT|FCui82e8siX zGcpS874oP`%bOZ27z^`fv?=s12foW$yR;Xh0@KI1*<(&MrdgCqY|Ue|N59!dI(gpl zx~18k@n}#GcQ0)%stsYwMn-AS*<{p;%|9gG(A!O-X#O~F380rLkw2?vdHVR=&o7+* z`t|D4IsE;b=Yf)kXCZqF=&GPSIXRJm->VM#X|*JQzWwK+sJvWBS5MFWOoW3&&BR39 z);2!jpbUX}NVc1-0EQHK!l<_r*3t86)!^7A-$zYN&1|7eXE1{5^eS`f0G#up49v_R zbZ%iz!$ufy6VLWvbDuq3q}x1X^9vOjjPMeISWS@9JE zS~)`PjnmR;?4QFO;d}EG2yeNm%WIScHP`|t7m*6(P}?oqNz7>bb>Wpx=s52^=0d)z z%)D=TM}YP_HoqukWH)J1&QY({BisYPP^l-d2l+1cYwu5E$6D@{wS22Wthl? zWpo+dq=D3$jFQHhZ=heDdVQ9=Lm-$$VM2SVkJHRKu@Q_F@xUbR-$v!=H$$XQuZOLii^6Srd)wj)E1CcRe${@AU_dTigzQ3tE|4wk!zjDka87Ai_Hg z@bbxeZ{?j`NQ~%aG8NQM$0QB7yRJEOv=(SuZ3SaKQ$ZY%hip6Q+ayWZ`_a@Lir3^@Za%_WeSSn9&Z$)d?0~H&jf=@&c-i~=lG<5? znA9~58EY%rG}JCW7aAVJ?S^78m!6R*49|BuBVrWo@%Z)3InyTQioDEykGPooE#Pfu zndMG1&GNqfTK8cKym94Z+UQ<3<^2XnJ{I@XK!>UH4bO)v%w$>D-r`GRGn^s+nffB~~kK3lWR9P?yt*y?Mx7AO-6D8}9#z+2GYOh-4Dk8Or*QpASE^M%NrEXyPC0hv z(F(1IBC^ke*~9Qy-tKvSx4gpPeJ7gG=Hnkd*Kk*;Vb9BZn)}|(nlOmtS44Cyf$#@T z#UV-ffc`?RT2#M#Vh`)|EM#C;+(}ieW^AV67T0!k9L@g}tWUq_feVf2K(N^oy$(rl ze>BY_$OaL?@w=G)x8u*N(U>{|e~HnHhVM73l6CC|(aIjiawX{s!PSV^ZI~2Wn!(p7%aH_hSh=jWRb5 z{guD!f)_EGlpg5iJSzhlI>a4X4rv7akINfJY9~c(k2bo4;rCKHAB!F*Umjynz8ULl zYSNHCpM~uml~y+V>960o9pF`DmV_HTxCKPp4mmFX1(H0T!Mo~{!)!u9X)f)N|I6_g z2YW$v>xMKE#$0L;IS2&>(yfNF(b)f0JSpySnM3F$_U=et^67 z?D@uBhUHe3pWoYgE}(&y!YeDMk#Kb@-3ZNxBjz2txm37^v2B)<%o`afP8A~9fvi8e zwG69TCo^hOLV)rUBLDKbvFj&~blsNyg@sP3tD7%mUSYLcCDxeWH7vf&EPrite>)xwW3BbwoIqW6bAAu(fgOzYQyaFJi%5YmQ$n|yxWa1OL3N>? zxHFd${sFoNu1(8!?pYLGgk5u0P53wXN@>b8SGN+<=SYAWb2da+RYus8j1To|b?HW% zi^^nALg5;3u6608j0G{R5rbO316?Ow0f@Fyvq2$mU)W2uiR?o@<{RhVlKmKlCLmeW zHzYPfnqk?_{Ka(bORRWV1rT0XK*DjK&ieRO3F6NOfk;o8VY@ESM6HFOEOFtlXE=64cQaOnyV6b`tyu1d)_7Z-LAq&C6ZRi*&HC?KJ zgN@|C!}~d9DpGIzEpMntIw%(m*PFGXp81>G6t6(|_czZbuooP=^Er+J3>3VO5SdHY z4rOXbw(>EVl+X4r$M=ykg4*;ro-j#zTI%I)+zUf_i_a8#B+u1EhL?5y4Bf7rw3F4* ztI0C{6t)4^q$`k@Y2PrgeSRZSKc#=DsumN4rxOPdblc;T+U5&c^hlLFQ;>dgbqpUY zh+lP|{U~gL7R48n?V1&33)pEPBh`*~bl3}LhWtDWWqvIxv8a7a4|yUWizye9mXu7F!7CoR6IcaeCk&V=A1ciM=y+c?Zp5uk zK8pccr1fRW^`Al4!4XtDUq84LSz(fObW0RgzMZmgyRY|~!j)U!S;eUnw4%HU;9Dk! z%_rH8&vkX)X|ucQ8!>4%H_mRr*L4(FjI>mt*(%;BHpk9}k(F3ffKitQJI}Jw-9>{r zVyvl1Kd4gWbh_0D7nBvz{#spagkC2F1+3l5{oFL|qA@%kG$Mxcx@N+X6e<-Mzuh z47AokTyQ93?d2LjPdivg+oj%ZMk|M36PjJxYt*J3EXt!<6YOv5E;{qL-~CQ;Nsv`> zQiEgb(n5A3-u{FNYJq%O`SC;l5+aSyIscjveFAdU8Qjg4QCLVdJTZ}6R>t%tA_C}2 z(U@9H7x8OROylTpQ@psi_=R7A3BlhQ`CUa#N5|R(j-%&dZ`Azx@s7juxBe(oW#@AX zkU$JzlRA0Ly+OmHEeQ|lb6QT+9dD|FQ9=(nfGAuCA^|==zRT^Iad{zB5~gHIkwVId zd5VF>L4*CO#Q|AJm+Svz9f7*CWW>1P;BF!I%-)C1%W~a%`OjazWYwBfyjOuuVbU?_ zQBYNlEAa=pP7vs(sz&Gyj+Eq-6VEP+-Go4zj@mN?JrFGB^?Wi03y^$uMr(xE+V#qL zq>34LU8^K!=4w(|WrxT4N?l2<1%MO)z6&z9KWY``5l=5 ziNlI=P+3g8xnW0a55!tNcI@up?FtZ-DfKra1*^8^2G$uw)7Eluh7{E ze&a|{KTJ{pk&H%hJd&3+aXjfnCgAJ2C>b$$mVGlVr0rnAI{?{BqCCq)Brq2!g7qZ5;pS89isE#Ct-P?nov zVd?u58{z}v`(hSB1n`hh_;5XNf#GT@Dn^U6G&H)OzzivwnRbKQJ3A-MEJH>^Rv>k@ zKclEMmw*g+7zVSCqT6S4Jv)2H^iz`|rOM-(2uSzLkfjMehj_C8pvSUH7^DqUuIvHt zsFRH~Nh{l1eC4<_lhYDT=Ns_Hj7!L6suvMM&Cf$}_b3cYbUvkrQlF6zfq^KaJl>-j6w(x|^6tIw?~Omz-x z@!VrB^1|*F8#$Y#p0!-W zt2uEYp!X&LAU>H5NgOubJZT5|lUuMESx8i+aNXCvCO$)5QrS&EMbO~Yg-wAiH$@uX z0p2$ANr@M(Tm0Q$?BB%^`;g7TKO>#6eRuw>7>IHW#DV32y~?(SwbNv5M$J?{^s++o zou)M0Kc>hux4J@vKvR@{P+)v^wu8Fmy4Mb>&keEX4`UX!q3~W#@@!;WhHpVbg({C^ znN6Ed=Q{dTFUt7KPi;4MC!8_*q2Yh};Upm0B`y-$dBSj`$bS4{2V)b>6LmE~g?}&^ z-RDo8;Rh=F=U{VGTx_akcfHaT<|d*JfggVub$#sp1y&4r zx!1{c2Jn>ozjeOhDf0-T4j{K8X%Ne26F+3eL9V3>K?V? zfrV~$UU#3i5H{JmkBexRybp)t9ox7b-B&trMOQxmkKz@vT}c`2FlXk87Cr6Y@7N#o zN3n`W$vtEh`pNNs{>f+xszHgP^15>40VMl~dko}C;1=m#vWKADn|l7}z{b@8fbp2UE7u>=Z68*ZD-W=W0v zv8Jmn*b1CVgRmmtxGsb#&E^jOM^v_(^W58M?fL29M0X6g_kkS5yj?0f)%_r90OM2- z#vO5TA{F5+M!W{L!s;E(qyyN}!$ivv+%$m_i6p+{Us6S1;?VKT!nM%=zatBbt&|Y- zw~aHT?#K6$Kf6&$v2WM!S!}t^v#KH~BRPHqADD!|Vhd1wWzC4S8Gu=bM`aZ-L=ey^ z$>M>@>YF3P8%RBV_z^@y2uVn9gbS@UT8A1Sl>Ql7~s(_)kCKmAJwK4*mx(|U43yH3p zeVz%eJD{p1Iwz?z9>3qkk)~d|y_Z+ct@|voA=YL2X8t=bfX2sXa*A=#j>p&a(DP)K zdu&+vRmxhI($|w!gfoL}$-pMfzi;c9zPyEbgPxPDp17lFiGP}Th+M|x!K0}+W#N^= zWt#?s;58e?vVu}2v<<$NxOI9LLjtKh%u}=7PAZt1Y5i+BZ*(a5;$aw=X6+NQKD{xF zUDCdF(Lv-B2&hoXZ?}(+RG7b~Dst5WZy--5u-YAE6JS^#hcLqt*;AmBXXm%ev_{YW+AP;e z-JZW7{%WqX8epFjH&Gx(2Wam)zS~_dV=?a%dQJ3XkZUqZgyZ`^W&0epFbT8gVumYm z73qFJwt50W_NY|4e<5uW+>w>ObgFR{(T8CKyjf$;)&zU8pxVtuC~ zKGASgvFx*L4Z49K2?rf+s)k#W4P~5HL&iu!pkrl^(4AJ*Lscu?Gk38S+w@4FpTK_x zUHtfBvy=BL#xwR)xQtpXhGjNCU9go8dnlYa78KSI-}^glX}oM+x}H; zIZ(sRIipHqj2U)~!CtYFgCW9Ay^33j*zPkrflJOR^_2$eBMo}w>46I>E7EWeLE+M+K1Q!*dAcqf!na0wE#_l~cg* zVRo**=?7k-Ib-PNM_{Id36}!@X#;wFnQA2fz13);T*5ET4$M4V61*tlNTsGtKwh81 z#En#iGyrM8WQ5ga)j#9y6%e>Lwz+`Ri@gB}1>XmX#LDIT6rENMF2H^e^Mjk{zBF^O zXyeYb!cv*;b?Q|sWaHC^ijq#mCkZ3;QC_LPG($*I;UEI;!8T28=Z&ow(Qq{D=raR? zfM-~GzA!^S@tH4{vXQ(KA#XnTd|{@IG^)g3ksD2`mYwBRt1?jr8249i0-&J;V%o7l z$~0UnW`|o6E7P`=KB2EnXgIr}Yn?GMQYvpZes6Z~D5=(5+%VnCWS(t8K53=cgTCCx zr2>yIw=8ntqKmC*DneH!)^0Ss$JH#rudz9|;D^ckj(XZEUFeam#4$e3ZL*MDrX7Jq z<0hG%dqwVWHdOdMKCc#-5eyVdyg_XOSE|vY)u3%bf>G$+OK8T$C9X!w)}q!D<o=OO9W^0`9(OYtO-z!t8VzR!2j;E5W};1&->yVcj+T`m_PxF*O5)Zujy%N5&tiv8 zcX9Sm$SjvKv@nXWIO|03x=~q9H^ULG3p@-$VV zxExzh3(`6-yG3bk!JV$$mvY76s}M4HA82RJSm`EzL&JPT25oY9YiLI#1l8Ia%rRFO zL%t;$zXkHgWXKzWd|C@_-RC|!z6(GdnSV{5(4G#M-H#Nzrw6| zWp1uCe_6GptUzn7C9=#PUOQ1ViAK#vC|#z;pm54J!dJ1VR}v^< zj|yempS`G4*{iK*X#_g~y^$--?I!$NxdPoSs{}l(*Ks&#n!?X7lyb{ z_L=J=QlH%i(heV5xcq>RgLP01SBpF#pF#^h{9ggr&@#M1yNZ27JPA1xHpKrGQ~jGe z0dJOYP7gzqwk zFo82X4SM6cRABxOCFO177~J-;X?dB_?8@5a5F@8^1Hhl4z7K1W`0M%#w@;wEe5dO3 z-hC#0ZtwFJ2L8$LzV2%1rA>7kV3Mf237PSS4PUt`xplf>*>HCNZgQzAmSD(e%>u+i zS9kD*0Y+1=x*=APCRrS1S!bYLi`l&VV(Vq~7XU52Y+Q5hM(@3P%Kn0;MCrUw5JKZ; zLz}P04u76#K?fsx3v^L#SLZw$er&PY&1Q)>H}u|q>7Y7y28LJ|$BEIC(Y5hk1**>M z@k!!&yNa@(mJ&g)#FTk}dut+Z4Jtq8BS`+99*~~BJmmG)R9X2VP?O%d1Fv&zF?50@ zAKvp%Tnh7lq;UVh%Kr6HMS6?>z7qTTuii#&h-#|$|H6&{*&gFR$5IF^EmDtw+P{wZ z7rumuym^cMJ<8QF9QkkI7Jz0Ik3}v?|7#p$z^M$86+r)elxa4C+Sgoe>uHOc-8%ceS}Jts zBU8JM=pU5i8P~bc&s16r>H^h)N{?$N$uyx~SdyFO6al2@ z7%%Sy$uHzJyXCxhFl4Sq9Ok&5`LpCM5ga^YXux1jn2j4?*;?#aw#%wb&0m`$;2HWU zdfoq!6v0m%r^wrUua8SECMNEv!Ejk~jU4FU11xi@>C(8$$_eyo&KTJEqBo5{)R*9kS38XgHePNYo*Zv6V6 zvE7nIX&Sa#p+lino=I6E=X}w#B7AWf_Q7)^k{M&C{i5&1Pi}ihXd-SJ(){D1=?p#(A7^`|^&8fkAhBdwcKZO@Mg3np#n5t;D+i zQybArqh1a_9p=}G*e{hWVi*Z(nXM8EIp{${A&xP;NZf{G#&Ew-}2HrRmT(HQtC12?j=Dh zX}*obiMa33p*OT-t)ueJH}_BmGiAh51h;gS7OV4UG{`jukU0f`Eht!rDRGtL62?Nb zl^Vso9X=Gy)jbq`m_@bbXQWld!KRW^G%LKldL(Ulzq+w~#iyem%d{+4J@eK5W7ePVqXa zBZA6ocgWlGx!raDS5;?=!3g1`KOqM-qhUpQ5_4#Yv)b|sr7aroX!LiF1G_+KsS=l< zhUvp}-iP`p!Cdp_y{D*|xp`n1dz{(gAH8uFAyxiV-0hPm1HpRko%D6jXA@1uwogxrw&z zA_N|3qc8qe)l5tTSv-u1cBNJc?}Vz>fQ!9|=id8f^K(6W7?){iq1Oz~|DjI!+2 z$9>z69ZLJmh7|{_Nkc<)%XRx22NUOVg*ZbQ`v|IT}p~oChrH*sfl#G*4Aj%p;$)4+`M#L?M=tq~&Ghqwd+) zNFR6K-9^NgUK1bj;Ld$W;M_jBK9U$$TiZ_nBy}`wI}ATQWbP-~YY^Ay3R)1>iTql; zfu>EdUC~XqeezNfGy&yU?868c?_@>)AHLo)D6TYYwx^ zv?j)qDNEGO1pJzg#geb(dpT1ccJi{J;f!OtK8kg5S&)MRB&%6>Bt|;dOppzQ<^bgK z?e**}CHL)l?;Wx^~H19}2@MK=$6@N)M;5 zU6yk4>ycz}4wXE^WTcAE}M(RgBhmasX)Dqgdi z|3bi%Jwt_A>q(%*iG-0%IvEf?j3LBhWJ^6sEY^t4FSCdEFqD}+X4t(> zn{DAH>bXT>3b+Y#`IbdWe)aLnB7Zn%6M~`zG;Pr>f&-wWDwYoF7rj_SxGx*Ws8$7d)8Y z`#+oWh`;~*vRTw$FPJ!tM>O4rM8FnFYH<&*{Tv$-}Md+9_9KLsm{Q*_?H6I157B=+_DaYT3<)Vf&#T z?}W4@I!8=~4;b|2kNTPIDOF`Zt!DT(0Yf;FvA*-u zQCS>a+wK~{gp>jN3Mj=}Vizkq%lKb%xiZRllvBXFJ-s$}pRHd}S^B6wvRt2YlD5tN=onf2x%OeayP!_Bdrbqe{~V(fJ?XLD7f$7KdzD4d;pT^NX{ou zD zACZnclwZu7V6Hsxqdfqy%b&M^a_vPwuqbZa0#SB7ytPgl2JkC>po$P8hj+K+g$qv_ z!7MTRrB#jQVmU$R;kW&gGCBb-jcJAGQC&sKR}+5G8b95(P8bV0g;b{Su3d{$Z!=iJ zl|R!nw<(-K=c7$G0&Oa{1f_z5K^xiSIgU?I6L79fkMLlGd19%!7yIPwu6LQ1_jaz< zPTd)8kNG2j5EoKRe5xnxcj$%y_RC0w()RPF3XRfNFgMMqam%m!{_8lS zd7CX<4G&=T8x448Tib!vCZc5kNQ&%d` z0L-8UC5}T!M}OBz<`)-Bv|EVuC4vhNzh~h9pzH1@P)4*cYBWljxTq+2G+976wbKj7 zn8bV5u8hf`<93~His#f%26%nRKcK`vYDL4ig@e1o0j&uE8-m7d6c=aQuUwZ3TRk7TRUg z`Q5El((ei88h;*?oyDz-tjQnbv{dpe&PT^)tVjtrRbAxHbIFu(-DJRJwsNDb9@R2u z2Mq>=|6{dn7A(bn5>>yLbXAJDdhB&3Hj7dA16n*L(N|{4NqeN2ub>J(%-P^J`_AV9 z*hK~&2qIr+0~v~EkW-1xcBAKf=I&Kb8FEmg;9q&1{@#*{ux)q!es*ir8D!{ zar)DN78Tp5xsGDX35ds8F@Ljz#txK6+}rVRKB>VA17uQuj%jedZFau{doyX0Q3R+p zWHU#{#Eum82^X(~x(|i(`|3?B@CHSK8kfZtfwkB&^_X`3PC_z(SPWU6n7HlRTE7au zPTh~Z6RylGWEKt_bzw;@tqhqAHpzs<#DeB#jp>=00zk=FTUTcti0ubb36#tQ#eiM3 zT8|qG_YHq28HL4~uc7X72K9F1S=?&jJ#|J$zbjmx0kjJ6`He7k=^)~B84yx7cl|}! zUR&}LG+S(OEV5dx6^%aZ!@T>N-@_KW)<|hy#$$NF1gb0&QeH>cEXbP|_+p|0?&;e- z3346*Qd|Y~bi;EZ@{L=TK8sYDp;K{p#V!>+*EboLY)YxY_<3v~G*w0(*jrX3tffa5 z7vVHT$8iU#x_Ak!adH^{paZ1{a{#MYYIA17dwOOyw>Pi7F<<%10;l&36{n<2xe1-V zOSn+iC-YNT1**Nw8V@O^O?O{kyKq*y2?5w@NF?sUfC>Sp{8ASHdpUHy)12%TI4e&~ zMdV12d?aV*JLeS8jD|m<>o4y4fCBN00KUZ_)y2UEEH<_FlEMlmn z-hPevhcLJsNJqC9JLh-#N?`8BR+(2bn5nmE;}*0$$61@zg|d0aG@uP!0qlb3QF&*J??M`|2r0%DB58BT!2Fez1* zGM{?KK8U2xLylxqoCF-t(o-woz!Uf?h>mzX3WSb&nhLqNG0wGvtQ^+@heg^c+Yz z*s_Z-TnMikxVC34$Q2UYP7*Qg?nn z2{b4O5tr|BDSaG^la7w$xYIAcK3{v_c33^88cHD+|)at4Z?JG-}wHYRAK5>M6uuSd(-5@V;dbJF0;yw6%u#pg`vch_I4?T zrZ-i%i?hob#I?%#xgyru%BfYQGTX-Hh>Shk1Mb20ok;x}mSM)CVjE~e!aBAC;!S29 zk^O{pWb$DYeNF}&EwV%X7Bnv4=5O}Z3J6qzJXJ8hjHrlixZ{ad6Y1K_`9bs+1U#S0 z$s!$Z?nB_Q+wR@c@6u02C$;+4SeAh=9Tt1n5uD7=>X*>$)Gp^@y-AF2zNEIB?CoTe zlu%$usPjfvlkH(8PCpL@2AH|As?9@RJ|~p!pqmG;{SHou4~*LN>A>J^QNwV;sDPG;At`J?(6}Pep&}v1LDWlQyD4~0r#M*iGd{w2aZ2t`(*?5S0Fc-sX7}IZ2 zM93`4L;*#Jz!9+n(@)vs6bs;UkMieF7m3Y(vX+Cb7d^QlilFy@JSe6~?T`9OTPKL$ z9l^w;GWpg8 zgHkFBaSzNb>kn8pXRxGzP>bg4pQ^!9d0%Zc??Y`C^PQW;h;m_qmT ziinvaNFwl$&y-=2sN)7f5Wo1~8AoeEpWOU$(bG(n=XO~?_p-Mma<~iu{Uz2%xLG?t zafu2&u+Lz3LR>x2i2dKJ|!ZZcTy$KUe>`X^^e=~yobjtEmA5f z`Tb_NTa434RiSO*xzgn16eGs-YvlU(k9Ru&#|O-Fb!nPB*_dK_Wq}%@VGc71Lr6QG zWT7#j7@wOO& z4Fa{i9dv(D6lLfO|3af*k>XdHl3(xacUrjU^=x#r7~4vD>GsQxn0Eu_M^`Sf zTr=hLSn!8+Bvm>ahvAxwYPCMfOoBH<+RL6t(eKc^L}lTeOCZh_zHyxik2~jemU30~VY2xFy{pU1 z5ynhYAezmjyW4&>UWZKz7$SD(E&!k0ay_0KuwFb~tfOBWl=rzrgL{rB;em#H0&F1t zg=c_kV{sM-nuK%Rs}3C#Q|lSE+$}KKxf&J`98+dUv&Qfz?=KqeZz0B-()+xQ=U##v zQyHsA1y-w9w;sbkIW^l+s<$Qtn&kL-j;9{y*XKS$>A%*^9_thlJcFiJAG2Jg6fayy z0JNB9{w;2EzUICd+0Jv1C%DGvi%_N8UB_viMtxkQlcdT*Eo~(%A=y40w+ScCdFi>| z^92r9Wteo8ZVwonQ(GDbCNnSV@c^=)4uOQfL6s<;tm+fV7=@>G@V9`USWtyK;8S_# zv+K+B>B_s30Fy=-eKRSk+*=Ir!qG8bgeS0imbjm2KoF2JJ=(8O+d_A5@xHv&Iw-a3 zu(0<$LQercBrS;V=tmc$V#Su#eL>uMXdO|C_gv5tX2lD@yik8$l>0bVb`BI&b5yR z>Ha(8zK^;3$yx27k}`71^LlPtge`A-x2}6B2ue&}@^sw$JjWdKw%~;`!a*SLTHklrU>rd5af`22U35t(cyGn3 zqpH0@eQmb>>>5eq6F(!TBtv!z1AtN*y+V{Ofg1P>4MDkNMs;qrDJzwH+GtX;@EC%x z`IZ1fG&9Q)E-%@1W$F8*D>IB+`(ecU4hrvRrGB8CV1F6lG03+|Uxc1trgYsGbjly8}Tg_gA{uU3hZ(!sv14`j@k_-efO zOnjspuJ09&VL_t2o3Aasg2Wmtc%|;WKhmWGyLhL;1E34ZNE$zYR{tt8Ugj4oigRhk zG)G6nvJDuvJLl{71u|)xOPeG2$NXcTEw)?MKBb+aOYzKd;YO<(ZeYexFfgMAw_G91 zG4;Z$>o@20?F&lwuykQti`EFSxi=SX%?N??ynsA$g<9X^TexL)ueKLx`-T#y-YWR5 zANI# z?uYJUgIxbGCyhByhMxa~zd=RGK|1QuMH-f5(eI~0cj_7YCCUx_Ll?KijrR4uI=^a| zaLI(EJm*c`*(Wl|e}+MV1K2`ZU-L*CjuADe;C65ZrkKSSN2PBUhLO#X6i^ja+Pq$N zU;Ji;bp57O!pOg$j&>1*19Mn*DFX1TsF`btYYWd3^AGX~w`(8Dmg5MKW2W4D(M8?H zNW3S1eXomXg|D(lBztRyI#?{ru4&BiDT%+OalhyrzUsgbrBc#Ec2 zZKlqA53=0fV9$eFA1xO=wl&4ksO{0Vl)oNIeDj$j>;ux2A3f_M;@nf&azXpWaTCd) z0QC%Vrvf2!G9nm_nEJ=zxE{t`xE%4=3l)YwfuPeN@ffhW@?q~&Dh zv3UJOmdH=Aiu%eXgEW|UmpF~~P$o%wHkVqU8But4ano0zUIP;|_>HaMMD^tI4(Y@R zz<>C*Th+Fke#xm5A229#8^M+ot)v3gB_qxX^6L2z(8YbyDj45Ro~5y zF3~^+|3e(mLrQiuUj=j-cNkp|FbT~89h8vBm6{!5WZb(G;c~v~b?$a(!T%rLh(m(G z&Me@ik^uUS0)s$Vllq<1Zsm`x4*mfH1LG3dH2Q0kKVa|;000jyHCPt3@gi42(-!+Y zEw85x5c#h3qi2zQ{kOagl*{LR-M5u}{`697v&wUY_yFu?k-u}Ujr&3nYAxp(4o*&- zD^cNK?3b;ZhN^sSXdi$c4)uGaJe*9!8AC)|d<1YM8SVMLJEMT5q2_;eT~XdLlUx_| z>G2EKM0?R|gyoH}RqvAZp`oGp*;y5B5)49;w1h37Q9(RYB%cb9wgJTzi|4J?70f~u-BE?abm+kZeifL;u^fVss2g$av@VCey8mLzt|3IiH&?#DF)Mh}-e z32A9&1H@_1uXkNd5F-3HCGzi6lP?293;)1!;+T=1Kj{p_Dp)NyStr_hA8B6#4_|Kt zDEC{KpTYHr7%KNd-M?}9l97?E|0V-hwgzf;+;FdtfNxA5*sVFa2WlSXk@lC_XI=x~ zNknh=14^o@q7ws1AN!onlyIc#CQP1i^L`NqU*)1GICKs6Sa3G<% zrGf`;Rdqg=^1VG@y&u%YfS@8Ba5d&)vs7QE} z-ST&ug2Tg3sy37Q3X~UrE<6GPfj2|p@%uf0@!y{}Ih|h=axKE!GXk(#Wega| zI7D~%1m0SnftoMd2k;y!K#0}=6uT4vz1G(m7Y>^hYQULx*$sxYpwz>)CpXX&!MUL4 zzJu{DBL;k0H}rZm+sFUL8-XyBsVonH#3IS0Yc^OUL)ZoH4Zb%D%2vADz@JV(a&Wn< zx$j8=im>;NP6W42x4O&-4J~bAL7d^4wUtfp|gUbvSn^zx#WJgD!vO}{e*k2SjV6&SmUwP%fPu%Ab3+s z{_CfNTEsjMy!l+qsl|c{dUZHdQuo)Wdod&n#^=rN`i^yQ=isu7NQ(|GQYi}{38khK z_`bGbj_JoXs(mIwU z1+Dl`QV9l5j?LKQzv(658C3qAS;4sy9Q4}~e-E-W^PN*)+*f-1FTV+66vybq*~ILN zt6uy}kL!k?gl`uBaDs{rm5$6|h}WxfgNuCkAHs_oe#LX31m{7K>6@X*(_h{YYV0%Z zjVmPLaPaVY-VA49W?chxiZ1g`g8~9A^Y26Tnow)l1*zP|-o{80M$clV#f8{l!Ah((imcWW|G z{EIvGU%=NFp&&GQa=VTZy-gxa(UaDHWrjZ3_46MgJ{(X2oev zCL`_Q@Yy@U=ylp5G~;zo;nMkOV}%*;^-tJd@cG(+H)-3#qhCy1Dz=b00ja9U_}7St z?6OG5Iwupg50$s!4^qIDq(*tFTWS@bR z*AMVE00GvLH!$h;^qGap5m4IT%uR_Wp8ApG)5A8aHWCl!S#TUyC@NjoPemzdRX)J& z8P%F0#a(UMrjn8@A*pAhI-P*^L&!@ER5!>u|)x75OW zegE{h(?hiu*ZI12^rLPpPZP~(u|1r{QYr`D%-!1N$N`8eu}mlK3`=A2dYZ=Grclxd zwCk6$32<=En)}G4q%ABoRpdTB^K-X*W~!tT#Ba|!wcT3zwKgkXZ7k-M)QaFrAxTL) zrz@NO%&s1{D62|&On6b!_vk(x@2{8Hi)w7(&z&V$q#a8xnAXz%?o56t5-TzgC6|#$ ze>BBm$tL&|>C&vwbbXKQxsKM5Y&J99&dl=DTzzX6vbO=u!`ecpel@r1R?0-Uym3fz z`g*54ks1lY4j458u5T=Twu;d2wlK1_Kop z$1!XRYPaK3ZoIV^5hawQN*z@k^C%6n8=0S6tx_~%)!Q#%ei-KZOL!Am{g8Dv4NbCG zN+uL}Opa8aVNe?(oW3~WYPT&?!RI!c|M`pIstJIJ)LK21|6}BBjd7 zrUEF{>7^OdWTgmPR4jS9R6v@JL#`Q4`0m+jT=QY&6CMJd8V)YO*v2LRSKU70$GYOW z>LKq7s#R{!y%s--DD9LRYp;yi^!3s8O{RkLpM19Ts)Nk$Vv2!l%S$u1kQye!QFJp; zl!ZSfU6jhhRk=dzi4ZD`>Vr^yQ*qJp^iu$2jO_Nlxh;o38Of*RmQ8Hg9jJVhc@J}y zEh0k+ThGY+ZP}!Kjo4X&1qQ(IC9N%6V*RNinlj8SaVEd6L`~}VC&py$^*AAH`$dRN zNeP!6p399pUOZt*SM?$*&9_#o)$!docyj}Rju0z!cZ~rXySF45lANj6C zf+M{|9Jo~TP}(tW-qtMk?;>~udKGAQoww!T_{cIIOWHqw5EOkS9b_)OJBz!_&fMO3 zRF|P+$Z1-MK|(~#m<-rL*3NLYv@K7@uAoh7oUazX4zhQFqpz9l^2 zvLeosj*3nhZd{9N7%-KlwjcR(SVR<`5rK*(sF0#O%~DSQ4KD*$s4NkJd9tQWhSC2wH-4I0(NI z6>1+9>VT`0cWCC<(t5!L8!M}%%S(rn^716WrVDV+YG7do&T$6-L2Us*$=1@+$}cY; ztptRt37wt%2L}i7At8_l`}#ikgF+gK#J678=zq~*kR{0Z01_nGl3)^fN66c7rCvLv_%$F~E3E`q{ zFJh9B?LPTG!6{SI1|`r^i491`e7jo20C)mN2E=z`zA25`dGOdFAl3(Q_8R7fnpog5 z?}0O2iw1vd>0+If)(oy`HzRH|JZyQ=N!dY^Wb31<1V=fva>P$v$Izvk_mywj&MZ{K zY%yATC=MsJQ=F2nMZ*v+;rQ_aI;yVqP%6D^+w0-H=vC8XOrN|g*K_)?0Zoz3ymaN! zl_)j#bt`p;Ecew^a%7Z6$Su)D>EbR#TY%WrXM4tDmCgMmxG1}A+*(hsNxt){%+&Y@ z8$;q3D#9FwlD6VU2(+SM>pLHz6kV@|_Q%=2>E%`9fbI);Np^M8NAXyfcEkORj-qa5kAv`G%X0s{?)Yd=A>_K;Po zy)r(CCW_nPTsO|62}-_zgv20@nRU6}i9czm)w9Nc7wjJ(%nhB?4Y>!&+-(8ka(<1= z=XL=7CF2fSB%X6bYv+siuevAPu}mZLFAB8~jMsgnHa{Y{@4ADVWVvvR6_<{IYm_9JimdXD3X zrvNq4egB@(S^`F`cOR~~rHw-+aSbmRaS za)*IsyD{%8uvFCVyiBedTn851Bfw@H)jP9g#rN&yFS`^!V2Ao^L5#)#6xkTo-(K%_ zg0b|fO*uF@N8Tl$6aGB`rd7IaYQWmdYN1-_^<@2ZtUvKD3%A?G2Q*3IoDKK)jMJyD z6FHwQNAzEn2;H|)&i>LP&CEjrL&+^u^G zT%G`&>lelLzw-{F4>&*$kWk$Tpu@dAlL zZ9Wfv2KLWYV@b2ULxAd~DLZyn4g^SJcpz5J1t#|{Rouak$DnC~92uK6oW z|DGnV+ht^*;LacUwwoAp%Yh~u;NLu3dGn`LJvS9%L_J;Nc=PCh<2wu?W&E3f=iUe6 zdDZN^DGP*;ygydw?hDNE)>2%2dS%Gk<_Nvl6Ll!Qi znz4z1>V;e}{3|X1fXEzS=6a^jeC~MbkbxO3bIrD6?o-zF%}shRjE*_L^5WNQaVX%s z-v|V(3xRix#3v|EeIc}&It_$rz17U!Tp{M2Mt}#5}pNN;)QKBAQqC=4PFBSe_$)7Myl@> zKK1f_ig`poKWLrpQBBd8f+*zrjH!4&UnEr0OQqQCHhqY3)StPHJrn!zWLl2jFu@H< zjN}grr5XH*e^?vn|0P}Ivh?c$S^it8Rn_xxn||usL({|{8q$koNN9U@bJDES zfthuDNGq;m8_jx?^wALi$+sH?Iufd}Z!Xu0dU;tr+~rAzXo=R{>>Mub+S1A=Bz2UU z?iZ?<;#)e|-#`1LmqqWU<0X>g*Q8v(OoCtBSNT8MPwj9@j(mr8Kcv!69Pquzz`?n+&hr7=O;5B=7)`%C>Z#@r_^li!3S{4ZSf+10;A+D-z(;qICl%?6}r4D)NPyO-_{ zZ$BJN@{fr+qV6bTVGS;|gD*}^Itt6wE_SCOj!&iZQx%#4T|J1J%3n9>KUq)Uz$b2E zR~di8rDRAWl;`R^It%)qciV(ZOQl4ufTHP+LxhmXSZE*O6+tir*$MUL2QjAgyB(B> zZwJt>k=w(B546C1UxSB%sav2xmT|H1Q3Xb6$Dg=G*|fi>KU(raT?;rQ$h4tk3~a^c z<&kPO+kFqmey<^0t+g+%=mXTruX`JyV6?H~MBXYkfH`ED*ae@Tf;B;9Yj0_Lw z18FW`zm73g*JaUOSP}@Kiin8~=ZQuF3M}2rt1IK55g50czOvLkQF1mmm4L8Kpk^X; zS@vENR*n=v0pUABQTA}+=OQkbDjBzI%Il&uhZ3pq$f)kks<7*t?Sp=c5BIyc3;($F@u)8 z(Q;u{NOu>ybxNbOz+~AhN3(u%LirPy8qC^T#?@36^244NT{5@Do zLk&!V5whpZQ6t|!wW^o?vA$ybx9Pk)znZ$_hi{ML=<)Pf;F8#}biWvme7$?qJAE0G zF95zUaIAHn__(g{EBL1ry!IxC!z;JXT;`R$Rw+mnktpgA!3&LkQDzPitU`79lUUHE^y8>-K&>-BKf~;94T3 z?`Q}OfrbbF3p5cSaM92N9negeI#h>kyXbg1(Q}DJ<;8;13v-DiREbrk zVfjJd`>MFu>HFx+<9W-#X`;UOnI-1Hc7GQrH%>WKzAud#@?1&~iO3Jtn#v!+RQM>$Qcq3z?XmO+S)C&sw*Bb2P7A9uH(e zC1qtlRi5|VK;8|!FwsJeU}%&R+rUgexbRI1Zuo$#L*+IATlRHY?^%CZU{aD*kPglN zHqLvN1kCFbFS~7h8M2*K$8p|3ra%L2`_VqQAvvlx$KD4RSRsotS%Mj?f}s8WK4q^> zZ)&er-tKOnp~KFpskYm{$U#N3bXs?zP{gObMmeEgpZP67u(Dbv9pM@wHq$xEaw$@i zW;^=m<5s})XF{@xIMjzIX#?jgu?_f33u)_Ez9RQKVb#!CSER)#Or3NSmM~fevn!89 zkM*}D4j&^Ku~4Xr8HitEq1L+}=?>knn7~a4=Gnf+FdcXcQ2&`?Zp9);XyZ)xlvR4w zL6b2sj8SzmVcj>g_PK$07?bZL>$>mpm2~_H*m5?wx}RQO_26DPYM8|hI@<$Chen5* zG$;l9oSh{+ z`P^D_t8}WznrZ(T75V8vdq^7LHpbf3Q30$^kHW;a)QPU^%l+xvG{)_v$laes~X+=+Gd*4A@- z{@|G0*Zmxp=o>~0{(Wqo0@2&DpT0yuha&dn0?Xlz(U;h>(I)N$PrtUiGE7>@*`O)= z=>(~(GFOpiLcpWyc)9Zcd?X@WZpY^(+xM~I`P8?I0`Pv={?4i%w)bbJyhJ=Hh6|`7 z;@7Y#+j{6z^G%Myb4J_vG;b#%E5m)| z6Ew+8q&ZcRAi94WJVzL&U1mC~X-ts0D5wxvwg)t2O-;=$VG0$Nj-CIzW>^F@KU2WB zbM@$9FPC!!MI%oT{Q_bWh98cBtD5-W@G!yq={Ef*>}l-RYD|A)*m5OgCd>_9Vgx$f z%JxesIDBnIMSB&A3y89#_p~Uz zH8L+$?t1>dU7L#t-XuaO&(2(6cI}VKfq-;U`o_v0l%wYE{)W;DeW-`P&G2&u+Ndj5 z0;hXzk5D!NVR}qBlZ=EPeRM4RoALLcBgo*HpZWWuAqncnd#2FxF66;q(E3A!UWJT= zU;Cn*4fMlX4MAMxHx&p$dh%F9;9D_qBgNik9JL7|`%5G0*o8c{ zvU{gqv&~By%Ef0B5#ZD=kZa6Aj+m3CeTj29HerPxPs>RryTW4Rgo~dJmM*`Vn^m9! z(<16s=OJek;nfLOdu#dj+{?LyVRZrfW?mlVkMYBffretvq`umSNhW*`ePYJL{&p-U zp@f226{@lzvcPBxHl5Ws96<{Yk%(>mIVMGnHkA1SW}u;FLBHCeLdT(Rxxne*BhB=Y zflCf+kqRGAbM8rZFcUMae64h<)bDl*%-sBnN-aodJN9ok_&PS{R$?;6Xm32?bQ7|6 zICu?@$Ty^7FJZ1sGeXam7AKA>^|vEEw;w9%`qlD!L`3q?2H+CeJ5S0hdRZgFBfpwg zv-!?_<-TGAh_1O1Ti_L#Z#QkVUwK z&ttgKEhP%L(2@0gSzf1#Yrz(aSthCX4RKk3*xqhD!x4>3(_G)$zfe0vdS-J_zse3_#3ozk2XtaLqOLl zR^tn;eMxUv0k`c`YrM%c2$EY34i0DGWM8W6i4eTUGk7o%`J&BN{KNV|t9R)DPe_wWM@UyYg&Ksik zQx!M}|kd$pJq)V%( zZ+lk5qHy#FRvTsS{FHurW-ZT^*RawhC&QtA|6a*X!Yr#kmy z@3K2ge0qtKRF;F8)#8L=NnJ+D0Oxf#2c=}v1@i@8Blp{7e89W~q$&+L8s-K6Hd!D9fh(p~diXCc4m4V1qQAvWzax#dev z$pn26V%RxwhK{d{QR8m*ZK^O~HC;25l#=CC&;0l)q&}?UgCer(ZAUSW`I~Rf0+CW`-zqCLeE45*iD|Xx7{M zQhtYuLhEQCrJS%g{|e7Io++KgF`LEmtav?a5SAzRVzEh zyPiE`6O$!}pJ87DCITb^(zP}6h~wz^u^70*tOG2^In0*s*lwkik?6>TM~#ity{nv& zk--tbJh&p+?hqHF5O^r7`FaEi=4HXlb_L11WstfXszrJ}(ys~mRL$-`Ty%YrWLEC3 zT2NZHR%6-EC(-iJwCsYBMh-VH4%o#JMhzl!s=tn_pacI7{_REVRZzy?E}(XQs=fCf zH`>#P`jT<9+Lx(gyGX)%b3TX$MIC9Q>9&CJg&L92aXoaA*-PkD*R* z1|efIjl;D>?~I^*uc93|4=5SAOeuu!M1*t1}A)s&6ilHKz6G0DSsLQ7&gvhP| zPI(lHy!v5LxoKIXWsL1B+_ckki>J}8RmPS^ZWEy}6c0e_9LO>TE~Ze4&?uftaq}zc)RhvyQm_aHrl&(fDn3wLId3FUc|$AU?!?cf z>e7B0hoz_f(HE1spr~+m@Xfj>;>!8_LsP3GT>S_863v76@R zog)_S7+qKWZGC{*(0^EmbOF962KhK+Gq>XyYJOeET#OL0l!Q#<9duL-MH&?mMkuk|md zdB#c#EE9*~EFFUSxyZ=*(O302T7pUU@630EwbagQioN~gjWq(GF70CrAuUIs;rLA_ zZU(ASm`Rbc2r**qhQfT{p*K5S_RnS%x0cz80`fUGs8-yJ%1D~IBs32T1CVz53mK$hv?}w8J4goT3J9qP+}6Ybhw#5M z8qg&EAuij0-!lQX8@QV0f%_7{eL9`USKlFL5|RE*l7Me_WutFB^{;vyw5iC z3Mc4a@94xojyZi~RK;3F>feA8R!}tQ=l_V#2DvAOA}9z52>uF{A^DtxJsimUetgd- zMa9JMn07?P#=ci-SAf<}$|45)!g4 zt^b(tJR|Uus2O;?Q1clQ5;9AL^y%&_wYHX}<$g1AXC2sd-?p~(%+!pjZ)iv_fB}Dp zoervZUShOtM$m4DQ{}_~6RZe|nIPhq&*zLNAg9ZVHt#W|FOG@9j1*BsL z#A3jQCQ-(#vKhGJg%SwIIksh>VPN77ZokT9mZh3XTX-eaaXOZmour<%I}I*ode~5h zCmRouh(p9~Y#4;c#-;`ZfuA6Gj1cLV5CSs;7zBi5-qYs36}!{UCmS4m{3PG|P~W)g zYbR+aTC^~#rd5~Bq@<)YjG^IV+MUj)Q`SiIFj_2Kr+6K^9tg^IulJ;2tk*VKt;rZ} z8z*<00yPYB?5SluR@u^fA}Y#)$~BAPCd%v(H|cx)*ImEu+5KaJ-z_Od3?& z-QzgrokgP6k4Gunyq>J7!@qqVDv5#zET zOs>#w%7BvvPK7HTM-@OE?`!W6K>FTh&3%Y6GBwra>1SAMvdw)y>Uu59FD%TsclZ;G zH4LE0$QJ9(6QiP{29wqGXrxmak~=)_0Gae9TFdk0$j;+YRqFY@!T0*o5vx3aPky_zKi(3alb{&{1_`7N#H-R^KOe?62zi~(gOrO`a_Cj&RP1;F@y z34Y4Iecaat`gf?wF()xRATd3i1_cGBF#!RzuJ;C#c7ga6S_C<@y`67)V3^actp~L? zOf}$ZBqlw}7w{fEl9bu``Q;8wIt_yhx534K#er~y;xv=*O?hz)jBBkHSt7|U=c;^E zfnejAB(N3v6L+!tOCUWM{M6UAcK3G(JDOtk;aJDrnxzdNV8LQB9ml6(U}$usa$R#T z`pMU_n_(FPhbuk)uN;z$Cozcu$Whga5gRNt4qzQ={8k3ci77+cffq>zj3U}3P{Od~ z!W(*Z0LS8eM@&|N8;C#dl$KQ{06|b-0uT=@Y5G$T$0sJ57N~))39D#=Ik$cAl*RpCJ|JgBMv=?yG8@^{!CP41v z;wDio5*#dHl*TDQwK*nki)%%~?+#HNdSv%$oNU6x(nq$Ro_6ZbTKfgPI0IKmyZy}l zF486HfE{AyfFvt(>;%QH27Ww3+@v0V{?+=*CtByck-^D0_!jda7!lDR$#SacMkadw zZ8zZtpUCi8z6jXF{V;`9fs2R8SyMD~LpFrzpQ54CDsIJ1KC`B{1FK`7u)GlY2JVB4 zw-ju@eD-9yF#S5;RGC@6iZ}&kgXh37=Wq78w@)~hKQ~^jFy`%Kp@9XLfTX7N55|*3 zFbihM1ZT{myL?dpfXLye&vMNZEde{KD$P3>hn>i)xzLxNa3|{c%OpG*_ENh9T^=pT z`YHCI(LXqV{(qFcWl&t*+IEY(G!QI78g~uB9fEs;ySux)B)EIv4!gml(?>D z-q%uJiG@Ed(h_R*30n7Pk~A9R`iewU!MF&-%cwJzw-c-VcDl*k#@G@s3zp=+?OLzc zX8Lnfvto8Ctv$4h3z#@x-%IM2OOYCESg)=|L=ncGLnKbu+@DvHe^fE3=~AAUWnv;e zN~nFo*gayw%oR3vwrQpxjEL=swV$6`q8n3n`r8n`OFkIj6fJ7G`Im#2((}Ei@fX?T zHL9&%@xklMFEy8@lE(61vaHHZW0O|&Pay>+raw`OkojZ3ux^rWZRC=xXJ&!Yqa7^!6{oeUquTTLA^t%?p^M!$E91@!};%$3|sE8HEo2nGRY(iNq-@yB2fwv>)RIm zQubtS8R%s8GCX$H&!cK0T}ibx+50(UFy{vHzGY{1rI&~YhZ?-*^^_}&=!*QJo?Ee# z-F)`fTS>cCT)0NgYiiY74QZDlDXgEGs^{C1@2zY8jb5(nb(F`!$ANnd-=nuE-%F`U(JlC1NXY*JIPUd7btkREnNEkgxA|y)G;Td|Qd7bTB%L&nlo+r+k7NBKAd za_9Y7I)4&$`C4>o51KOaUZ~2zvN((bjyF)y3*$ZN6&JMysoY@fd6h+qvBVnb%vw`M zkRVQeU%w`sY;A3s@5&4{lWHxobsb6Ry8_Vx1`mG4MeDDdw^qO7pBHX&M^WBA>de#6 z@Z9ov`je1R$gMb?3pX5>99q5lo4WKfy*3MJaC=x2i;9N~rS;rj4BYBaBHAlXF7r^o zo=;I3nW|?R6;k!{lxfqbmSmcmlLVO*^bVM|J)62;%sfv{xgMQ@K%JzY>1<4?&VqtN z`Wt)P0V$w1x%oGiO8q(g`(>=f?dz5rIi#}sghT>5-G{SnrG$9;u7%Ua(|K)&*GtcQ z>B}3di=$|pL}%%X%$C%loG8c!&&>+nEDM`){)hL+b(okJw%;#(W+71#7L8~bO|Vz@ z2=)L?+*?{=f!UI*1%UW(JJDDk*TM6|pj^91YR(Yto0rB?*xvu@HrbNgJc-0iOrcan zq>-a#>hfN$+>OG=@shZp1%ZU7zwRtgc4!KiS0=|gEJpHbXGFRIAB0@bSQGJLpP>bW0|H#TSO^= zfT2aiaFUPBg0PB@TW>iR`lWTpa`w{WZ*2Uge`kT^3o1 zA5<>*J&WO^$kRHOTr+UetFuppa%2k`*kuSw6Uf-#R>w3JSKF%J;OiN9Wj3#ohQ*Xv z;!WAwAjliQc`^K=LNn)(zK56`#}<9`>$uiy;rBLPU`Ql94~5i}MF}-<{~8-x(Y`}$ z60EvQ^ zYCnI+p--$XZby5ky}<3Um3lp;;5Q!d-Q}w0I595u&-SHV_)+OES2;Pd&b%xAZ;mcd z;!dI|Uc1DMF}i$Jx<2<;{HgKyOp+C`N;7{co;6M(5y~IYTnFPdEw|QD;R{Mj=? zX^M{7^b1t7?hCJ$L_ALBfq+pi=S)zN>MgrQqaa4sT5R=IyG#_s^gDcejEh<0)QeDS z=gQV*?Ifd~f%4hsU%1QM!;6u~tQbH`EU%W>Oyr>^6VkCd^7CSq;^INuk#+3ICv6uW zvv)Q6Yi1?ClShB5n2x=Ibw_nIsONO66mBJ^OhB_9t6MRI(6jew&m=K{MZr_R~Z< zEG{f;b-)uR$a`&I{X?dC0d9Y#0p2zF>hp=~_S?O&*RiE;{69vj5nG=xE=PY!-r!=} zfy7VQOTgZ3a&nUNtxuG``Xu&pt^2C{0=TKvZJLhR@2|^z8Tk16#;o2VOquo>(gJ~- zp2L4!UBe-1AoRQ2cuUe?Ma!{f-}>CeEl^mPoR?BAH-5@G@Uzsox>fPhXCbA0RK~*^ zEZB9ZQ>;7@3X4v9PLn=;MOJ2R#?ViMFfltT`ZSWkZtuuHX>)qo~B=NJbfm4bbsc^obo+w)FZ90X7_goD9U>M&hY@sgv zbH63RH)t$+9n9QLatg{N(S(a6pTi|~a~*VeJ3G7Dc8HGSE7jT?>6#t=!kule5dk2{ z1$WGAqQ;_NHtP_ouIx8IX);m<#~11l^7Q%r)_sG7sb-Z^Et{nNJ}DNj6i!*f%8A_m z$x+Ni>?T73I3NA$y8q|3Z)`&vBm0XeNwC}H{`GRGk*a#;)fFKY=eIefeDWbW`XjDs z#zzZoBUk5i!mM;}tMY&f6X`iW0-KZAgP%l_nGEgMtI8Br@U?AzaTHvk$Z$ z;LK~!P%C11@ZSF2BGYnA8XHPlPJ`=2D3&GtG_sNFLQ55Q%`)F z@ncTx1m@4hy)(Zau)Y7{NI4pUFxgczBDe!HGbT5)j>WMHk__5=vi{b2{5h-Sm z0jY4qNB3~}h1t2=$2FV#{Lx0&H>tgz-?(xO{LxX7=RUo}L!Nq$vBPu{;MLhM&>c-a zB5(HfUQ*GaWM>97>ce0I1ov$}uG(TY{fz~`i#dKEPdpPyAmkI_puCmQFLKKtpUmCU zBor;Gw>>{guNKo;QVj`aaWG0snbf+31dy{XkO9mXoHC>CLOB@d7QRZ;AhqI2kS)BJ-o8WF2ppzG@;Xv(vfV)3AIBQJ&vX@aK|9 zQ=9p^i{X`xSj!fS>KPO>k$evI1#>4K)BSrW57-d4yYh5yHLFR?Ei@Fc+FxXE(1ii%P<&UsIyph%X7Q&DcDlSsGwU? zL^Jvd73J`fm+`uUZ+2H&nwOGyz2WGHC}wy|Eu11Dcg&-8$K1joq9=?bXqZ4wgWBBM z`V*wl)K6I@O-(ugIb|XX35?pqw{~}jlvTAUfB;i!ety10mWu=lb@OHBDVu+8Ma9Gk z77>w6z+fcD3N^>FQ+#)KcZ$M>rSitPn@m0eD(WXiSSW;UoG@IF;2IjVKJ4oH*?QMo zr64+#`_&M2?AtLq(w)6OX z=Dy2#**tcU=dgr& z#FTSNT;EL?n(+W;^Khrmc!QfK2sUwjHfHod;y_73sj`$3EgTUK!Eh;%edg{{c- z`55I!z!s(Gd<$AF>@2JuHw!;nG6RG7df$O)b7=TTy?iDoH!HpM2&%&`uQGad#|lK+ z41LlJ`B(Ux{=yCt z+f_W$$@aA{(V$Q@d`GUYtCWj3bN$$sQrok2rSZ~ZbQPD>jyCOj2$cKWXH28giMt$$ z=51a#vI)-&&HmORBRxBNm&MPRY-k`wEfDg_%dU$wu-=;=7mOXcU@yr(a)~XboJ&Ht z#Z5tPPyKUDopFVQOadJsXk?VHt{^C*R<7qioX#;O8U&Ptt5(9o!v3M-$$`xT+5G8{ z*&%YEpkPh{tLuqwFKVbez(}_mKs>LZSun+KQ5rbE(uVJV>y-TRCElAUjLGe^adm5Z zI};pJFDTk^+vDoklQpN~IkM9A9X1z*Uh3=sIfxj6zuX0Q?Dnl{j!4VNjt^4O>wt1C zAS|()U@%?d&jUY(c%>_ngOn$iZGxrPp<+o$IqaN+rHgUABD=s@K_bl}2T(yJX{lfBU zzZE_;(OK5DMx414pNZJR7xU_zDT0#+Ag<*IgomNc|dQYI-b9gj#=68VA*7B|5i=X?z9rI$lI zU|2&Uw|%GP>1>|nbcH7AuDv@^3$u2w8sG2-kt)K30{4)GB5c{0ZmwfNkmB3GO`lI2OJ?2QnB$$aS+qR$0&RYi>fmAT{nQXjQ5Yi8KJV( z!o*TyLxrj{xFk1Ci7}8y9kbKRfgs-7NHAMmtBX)pS+fX)q#brv)ba{6h2oGP7!^Sf z5=ZlyI*S*h5zY4*KH2=M-yLHY(6ON-amwJoGWy}<9np7AimD=ykRBAj`KomB{R#}F zRW7$_%w1c5G;7b*@{$zjDa(4{4s41C0%qOM<-%L|CL)SBii}vfT~WwR$T22DViCjg z(KQ#L%Jy1yOt{^j{CU)6;fG%`19uUY39TLKy~+|!S7=)@k1_GF8A?!VW_3`mt`{oX z%JC2{E1J8w5U9=vXq0Ll!@r))lkjC)PpW-k$Sg7Cz#~rO5`-zUJg%CtDKBOU8XYE& zu7wtwWRtXW?dDcX$)Yb=4s<9#zY`2jS#L8j{$W*SRpUmv+X;Ng{{28jKfEAO0%x7b zRwlhMfXeykJihSfn$#e{SAj$lPtl;z>F+tK*zMAF+E)E98z4_!;eN=sf zg}|+zcKXxSO7eD_?|p>TvMO2VhXq-Bd)UN`E0`8`Wt{~j^MHAI^FY1E{r zU}pp^d%>zPT46JRhfuLCbotY`*M?mRcL$M%ud}t%ma4Dz0Z3flXIr^M*Slf}ocpo( zLC6TCcJ@Mo%H5FuL&)85^`#l~YO-)AYzUR#QCS4^5-~n}uv8%|pY~Jm_g3>2w5or7 zd1RmjoJU^;%W3`n?9bMO<^e6ZH?AuAIqbQt-gAJb99;K11h7QtYB0D0WN&x+>lZZ- z{2|7Z7=nP~?r2R4{fTL#4QJ~tb1N7PDPYhCkP*k%wY+x4WoT|?oD(B9^e8#ZYZ?t` z@{>}iw#phzRu;5)v^5M>C!HpgOGJxyQ%KpF)kmQ0fpZGGilsaG>?!@KiI=FfQA6`L z?SPo~H_3rXr{`KxW~e5EF7I5dDRO$+-uvlPQc|(|imm$%{yIbhtkCr{3CQBlFw0g0~l2bIiiPH81-6&VneHH_7}( zJzHx;VAx`t>hlox=%C=^wN~5@5eO~Ztxc^KBB-f`7+WkFYHf1Wmh0z>+QpNYA)6N- zNg3JXgUV$}kA&l;HzE~gatwKnzW(Ig6h(`6W-ZjHd$JbU>El-N_VVi;Y{Pb7R!nmo zY~{|yVS(F(!|rG|1>Gkdq{=T=v-otY;9h^KgF7|uT~fSv`u930^tia>=?In70t3a8 z78;%upR=ro<(l3Z8z5dOI2QSdTV!%$_R*5P@JStC7LF@bnGI(o* zAk1zCcXP{NLLOWp0?J~eK>n4DI4AY|`-WfC%c8N3Nj8#E(X+c;OEAA9w(yXjG~&`p zRZAJ!C*BpUf`m7{_u$gsnv=ITSz)BTt)yEJ$yyE|Wa}eLkVMph`ELzw{`R&pC1jEqD2uA0AW@RyUM8K+mvF zeD8%bDfHx5FaYpB#2>8?7{WLL1S`W>pboLD%2oV7!3Uvw@fVBRF+dGdQc|WNqZt%} z&**)Smn;<^SG+DqZamj4E{8vk{pCAr2=feBy%l)96u5cRbz6shlmj`PdB46lHFRGa zKa)U2jE*Z^koxU$uD{RumGa)QtlHQ|q_eX?e+~{Phu9RY!-R%tjL-c^CW>veW;$@j zh-+Qr{WeA$bJ8oKbl=&fRJE^ezEGto778~4OU2H2%ZW?m8-N%gIIORy5H(|!WYRMb zH>`%G#7=m^ij1k|)okki^J}fXbCSJgDRyQlGBOs0CQtJWH^Q>cs^RKowh1o(-)KS-TlKlsc(+L|htSJlyplq%)3!BpU1$)83g8 zS#eL(@O+A9WRR@&5+f3`5Wl^Md)MG@-)JQCZk$&=4U4Lb_@p|DwODe;w7dUPTA|t> z{ILn-#JyrpVoWd;@Q(5$cW5SWcMr*ie=NRywNMUyemTVbnNERNELWPAOp9DoY|<^> z?;zXM2=2JRxQ7S-DV|{cUJ!W8PLO_$#D;g2alGxXFN=x!o-%asW>DIt z%4J}Xjy1>V5?Ow5eek)KHi}6k5Zb|Rm2qI0sdBBm$|!<$!m+d;o2JaK#=}R z(#TNaQ!#mZO$g0v^*TKRdIWb}ZHcN)lZ}7#;f8_vA$|f?Ey3(ASglk$(KPTW4d>L+ z{n`CqV>fbO=ljkky*I)n0wp)kQ=Nygg(39>D7y_ z;SbuZYnB&k#U#ud#V=KdHPEd0fw6mxmbEQXb!5+hh1pmv5f(;DzT4sjN>Sh%8m#K5 ziMSx*JAWM_y!Koe;eJzow*m&pr{NIji>nX-`!i3FS_u8z`l25W+?^MMZ%Y$5sMypS z#j3|WJ>;N1Jh^D_yu%`-8QR@V0Y3~0*j}yNS=lEg!}nflO-<9(wKqA1xuIT$< zNGEqrpv@PPu?Vv-;yEeL5GPE19=Qt1fjg%Rd#WF~-iu_vY_4Yy8IGcsEg0jsI9yV< zVsRU&3_sa1jM#~wV~MV@pg%t!U{IIV4y z`)umcuIT*dX9d+K_N^k0D8$J|A^lh!wI7SN{N{oAAK@|!1S8KUavZ*gzL?l{?fI~2 zNt|hyN4IgBpe@-Gw`S3a>M87LlG_nC;a+^$o}oIl`*yF$^Z1hc+wu(cdE*)OqCGw9 zq4)l|pX>wurYqT(cSnzC+4fGNJauk-9_Y=AT5Z>YQ}aAtSC4Q=Mu>12+erTpE@%k$38|q@+Z5=om1!er0=cxJ)ob16hh$}i5v##B;tdmFEU!% z{U3<8k-@qO=o;ozB5v%l%KgOEV~qVITXgIMpFadWx{bLn#t52jwyLsAUynYI>gWlk ziZpb>DcqDdScfd$p2-Fp+I{4j-JNRl{~@9YQ}n$`Dg{laW|Ti2OdQ2GrglGWE`7$! zV~lnWd&?-DcOS;yh0s_f2>i0RaS60WIMLS{gcTU9lOj)y)jyD{{-7FbmuG?hVh4|8re;K zLPTar!sAZ99l}$$&?UPr)KQH8$50ouFCrL>31ik%*@1v0{jWS<20ioL8Mo)dE-?vX z)tqm@zbtpfP$w)tiy33!pnr34@FBZV{$Ei&nYEO`NYKA=RQ=UJALBWz?Z16s|7pTw zeMUr@e0^%*$`ToM|9AcjNbkYl+mihUAt=U?$b#ZOe>O)CLaFb&v;6;x_>tM63OrRb zyi)z=g$vm!#H_LplKMXUSl0hfUR_3vx=Z;sG&YB!V-?SCan{`(1Jg8j;`&t%=w z;}|{e@=yI_o|;?1e_Y-;Ok{bRti5p_V!#f5;OuWbkjlhQYWqmaMlQj~Bw4HKaPW1m z8ZgqFVgaEp<6f~E5_|`j{(Xh!UlJ->&7E(?y3rDBCHL&vH-=Uam4+}`=Ua@7_o{4e z@SwqbbY-}p)l-3JX=d+8mJfGKGOj1p9(XChVuuL^Clr_ED>yWwq$_mhdQdvuM)$u- z?I>w^6IzQ*1tsia==;NJ3vT;=f0-Jm5NI{c11>MM6)lz>O=&D>G7;H$qz0D<$lJ}= z7Re3LX##93Znq6yObqOGKx?-houx)sgoFi5rICZ;1Ws?V6dV*uf-yIOOF90P{QSw6 zVsm~N@`~{vszO#WJJnz3egC`R%>*XQb*C)yaOHpX6v}u8P#IO{}~1-WmnrG|6>iD=QgHOw6qSWX70un?^~MG93ojW#{DS z>FK`>y}e@i`1rBgL&-xU9IN!I+RlmOz%A}Ck*EI<@O^|bgLzr_`5lPs4Fa8;f7F_G z#Q>r1r0w+uD+n{Xj|_;bRkHoHsb7cVay!eeuC7iIgnAQUu3D3?*Py*)t4}v#l*y<09{8ncheTnpSzzH8AhA`d0YCroMyA z;{Zm9dLS$^CgTp_JSbFRY&<2Q=0>utRgRpLO>HVf+Q%Rv`(5=7sX(OmnlABXYlEVlOFqEQk9@~OXtBh*~Vwsa}w%sqq)B2q|B=qqJlGE_V? zHNuH)+3jYl^mmP_GjXrPW6H*t-V@{+7buRY)?8bzL`diF>{k|Zev3v*tZl^@ibrcf zmk2|OhutSaL`STJRqJ<0ccp5drm4YDF>`vBME_~MsLAE&1Rn@MivYbrEKGJ zW-g7PI2X#p#)4MM@lg^1T$5g@KU7N>#ja*w(GK`5u1_(|phyw~WhACn8^L5^omYH6 z=$=;O3Q-z@4jKy7D^zr1O{slr(oD%7yfz4;n5I3~_)sKWr(LDPSLjr-7Mp`4JZtTj z+xt_j$_``w6-AA1R~B_MWOMSb?SgHTS*KU&SR`rUlp95J4X`q*`t~gT#QzL5o}8K` zk7cQ-Jd5MtG8GkrgU_#UD0AZA=)b#5`4OEQv2l-?eiSKnYCD>wpp-&Hh08FS(4B(t z+xj@M1iQqceB#3Z@!FXCe4G`{a9I4=I0z^s#YtFm3?4RZ4KRcn%ZW8>RdNnVmRO5B z)gN&!F#YtVFFEA1SU_|vo#}JKZy@GQiq6+0g2o{;CYcDlM`lYS80*98MTMV7n02wY@aofkAIz3%)ylGBE{#H5Q%?buX3Ju}m^ z-j`Bh$XfIa+3IPDOnQ|@j>}hD)CXY_(A#^A_0`QvrPk7kq^Myzojv!60bQDtXm`P_L%kr_c8Go9v!e$BT=yCr zdfDrquk&I+`Dyxim8RsAGVAyh&B)BQQk7{q;MWA_UjZ`Ap&V8k&tvu7U&%>biIWNy zbD{|yD>lna$p^{;#u3{whbEnXibOVn%OL9S= z*~k26^KrA)fOJ$X@9=mvhziH-m6DQG#-V0Or-d_fHZf=zLik12euY@v&@k_4xoM7` zVNDYj0}_XT$K{CG675d9V~!TM1F`^M?*Ih&sR$GU_lUr}dG2=92*j}Z{h{Hv);a=B zPy-4g>@t}o0uSvO__1&Z>II(ampnH-^8I_@Pf(F#^7F~@-@mUs1fVALs5k4IutEj3 zwJI*BD-3{5lJ%AG&SU*Ys|p!Ns(k&@uC=hRZ??DhIV~;C2++S%rf9j$8{hDt6Z3mr zImU{+MTUp-oczF|vD~l2NA?Xw6Ee}NpLRkUJgiw(vCoUID9V{ju*3a2UZ8Prc=jM{ z96F+5sDO---{LE}054WhYuRt2pY3C~7E+yP{Tx>eUB0ccPCUL^T~n(0XA%C>bHDv< zmPPN?&da-%^JJ02gYO$g^E#_!AJARXKA{$iHNuJKFZLZkLpyIx)ix4UAxKU%4@5>M zJdb!od7`StprAxc*SqlRVff9{GY6%zJU1ome@blBkNM7OxG(->yU&uJ1$mey2x$-P z9z5*rBwxjLjdJJ{P<mON_7I(?#Fm2eKyq$t(sADYpDGWdUC($&cOsaS$EZbJq%Mm_uVJSm?p& z_5Qny`FJz!Y?Q5;M9j8kt4n8+ao?cfqlQ&T4N$SZob_Y~qE=()YcBkZX09HD04?;h z*0G;H_X+VJV>+e0O+)@6Fyvx+azc%4{xV5wAWeFNHQ%ETjz+CfC4lPg7A`bIQdq21 zRMa#7eho6!cm2~Se(c}~(?IMw3yoH*oC9tNTSdOhDLW1SDJE60@BRs4+??wSm*)#S zDPni5e4BIX)5gBH!>M#)T;f*j(lp+0+tYZJz60d1)2;(Qp+_zbTE(iUJF?vRI@srx zmnmfzPS!bV7i#%wMkHgb6H6-feZT0Lei6TVL?fsQN@a|&T%28)FY;X!ap?F?>h3Nb zJk9RRXv{ zef@KBk^1qlkzTuO$NjTNv=#N#O@3onsk(9ky?}>7+tuDG`FN0ckhGcFnkYl{2%|a# z#P1VHQK7F_T(dY-0~ytL_Z?H%mDhTqOZB{8G-_<;^1ZQEeGn+Ua4fhqld{Z?mwE@; zf6uwNsOvNjPk1;s-O!ybe=WLar#;n4r(+^AtMO3>7j@K?jmFX+s}4Jjzxq=!cwoK! zt*nvHDmEk%rp%o5r#=G+@&DLdG{^2a+U_HH@3-P>Z7zZ4o%TJD+0^~VBU{#d@g0$v zGpfHu;CWx3fp1jb+Y|vCgza-4uG@dx_Uhe)b{l-hj8P2xd~EBx$d6@iUxxaDJq6($ zprK2?Jhr_qo;-&NJar_gdfcst{-Xf<#sSi|L;JwLId7U(Gv;UZ1_tlfc3n2U6`9r# zBdRZC0z4I~Z!~<9ii?AyvIXz6bUOkA1i`I!Tpc$dVCHT+|0$irw)Qmg^xG;op~Rd& z4(&?P3Pw@;M1`NZc?5gPgF`~tIGE56c7E;Gm#OSLh~zLUYvu_>p+e}Yn}LOIev8n> z;9+m^Q^jJ!cl8@!R5N?vXv zwFw#kc&se#q!rLzU?L^z6ag^mjK40TswK;KN#q%9Qm}K$c9O~;NpxbHS{bP|rX3cP z++?d~0S-TC|f=2U-GY15G zy^Z(ylf}0@)6*a6veu{cB`z-omE)amQPa#EO5=Y8%7*=+M6>h`KGySWn{jVdkuYvtcMRi=JprLnu~1EJ2KhjD^9W+FM+^H2E-~@!B<0QraTF z;1R+m(7Rpp%s?4N?h$ouSs9;uof?%~qHG;ka2ig)(fDo6hb~+RxXY8(Aii7GcI1x9 zeg332#pZ-66^mUQFOxG@L8@6$(1R;Uftu?~xCP5GfMZQ)0%&AJhdDr@V zfDhpfgNHl|i0Tz(fi^(6VHt-4Vwkh|fwWHi5O7~q$7GX=q~onYwN({;Cm>>2$5}n~ zbbuGbBojXr9&c^3K%0yot|}uu3|9wzip{cyX73f+frVogNyM!$@huAP0^j|iu6-Ei z;z*>Z$~s0PFVZ&JWzU4H+)Ge}R37r8Mim}5#o2!7?*ORe-g_cL^uGW8-r+}5!}0Yp zrP&C(Qv{9TgH}htP|5AtQ7$yj`jq+Sl@9OUre@t6H(;7U(#m%`J9d2?H?&16*bi{X9V^Z zGe~f{MVC&j#ckC)YqAjvnXbK(a-KThMX>Kc;oteY%#FB>O3L%V+xkBu$go~a^L|4VO$A-l8q=$LV~*FzjFEGR>G>7 zfnuUH(pc@xRAk<0kOjqNj^>z}V8aDi5R=kWiKC_)rs}Sc!lysPA5}@Sp zIk1f5^G&t#z3|~;4KJ~mOH`&nkl?0-w}>L9_A?@M!Zz+5SWnV%TqfyW&DPNbzNWkF zHFWon;~xSZKq@%b+VQuDW7y0pp=tp_kMO={ab6Fq>03W9FX+SQw8Df$)xwM@#Uwq1 z6Pi_Kt?tE|1w}Og!=Md^?_Y&Y0zNpXwiC`Jid}Qf$75HfM2@oIIPdG_m2YTNs9c}M z=lm58-dI7vp{XC5oL#wUNfts>Q<=oBONgHHx}`GY1mrH5)eAU?N;oWQTUk=k!?*wr zF}Z-i@~x8qZn~{F@65Pl!hqh$o(qO;yw??zT?XZ#_JF3FO;`D zdY3I6{K)o7cEv!hP0KgNgmsPR3NXL?Emk;rxZ%iem^|$Km_fU z`NMMAF9f{`sa)giI*4r!^c)J9ayG;>eja}4Jz#Z_xP+`?6Q_TXFdQrIVV=liw+l|C z({f?1T3tB(6dOEnG~841Yhu*zLpHK|n3dDBo3=;h9hsf1uvC6ucjv(HAekkLNXV0T zGj6xHf6b^Bj4_lt;t;-HrCAZ;HSy&~0d>9epvMkf!V2z-cm*6&Tx$M1>sqD2FNK0v zg6{YPd@69Uu5LdzN!J#FxRI{?W|KY8#wfLV^`fFun8LiFiM`d*I(BiAD5*UOA2{0S zk577u9HG0et6=N9k39Dg?}yOaNTYpU<@U{OlPY2{@bNEt!`>4T#;(8ce~XB$+r2gV zz1Su~%2yE=6HE4{{+1s}Snq(uf1i>W=u_{{X3mH1Pc~d(_C1g%lfO^fJ06{0H6dT} zbS>O1$Zt!wjx~ibKR{H(oV~GqFE54cS1hM@iCABT6*AuQU%95iPJ?|K5!OD*v z@1)x-bi%gd+VXOfLG3wQnQ)TJ&Wi`F&H%<*{E6kt*o4e3IdB^usv2tAwH#9@0%di^ zLho9Ad5JE4P}4~8GOxBq{@{wM=YXB15ps^gluQ(pO=TCsjz!ozc&!HF*!ufU;VEr^ z9hYeK93Ae@f!md)uRbs9iIwCWI{dC8zqMGIdIC_}G*&2ez0KOZ4t@|`RPCatZGY8% z1Rn|u|KwUp>W2@*0CBjSEScMLuJJ=7qo~QZYZz_zM!FomvD|Rq&wcO0#-@Y{2jvG+ z3}UNl=?kf0WH_^e1Ym?z^_>I8dUr|q-0~hp1XBS3T*Gwx0W7#z%D^BuQ$#^St$mFL z=tx*lsl%JwGD9PrLuY+MUCjfGW>7<iwxsOMgUAsg&#O$ z{|DdPaFXOIA#C!)(d0nT3KE9Gvo=@z2lqH7&wCFm1sKOK&BD!s#!(%7LFl+ntZOdN zQ$pR|epyE58r2Le-yQLm8b2bc{f0GX-s|K8L5yhc_ri6$m6>Z}{Y^z!_|yA?2&Pi6jP1)=`v>egw2 z58yT$m)G?LG=+Q~erk7%_wN{A={k;!1u>*@OLRtj+=v$4KYUq`qncrv{G_dtE3VN5 zKVs31%iE^PFczyFx{y!e*Firp3|%1%j>!8V{uqwxuSr)v{6~JZM0pXny20-8vo1W{ zcD;0do)3?JKu6F$UnHMWVc+uFI-}Y#vH{D%EKo*AE?FqtpN8~CTjHhnkuKM&25Zx% zHx`I2A|~&Q3jH?QOKMKQ!&=Jg6t-RyVBx-GU~ zn@)1k1cBgihf>=8%c-Jk1`C7Z*r|2W>+NIaMNR1KkZV?POd!KEPQA0LY;w&pNR<0A z)L75$Yh2AKd~%t{Lev!N?v;@3g6`tLElR)DZjiDqSWFKV7Xd}H&gK(cjP+t|YR_9q z{A~nef)OD2^Ph&!5cnseC{q0@7_}Rwo9VvK_emT}3z&uZgxdyW|ElL$GF$V3R>cd$ z1ZkE(G19Y@r=d-fMj@P_W58s=L&DoI+j#^0edcqhSptx5xzY$A{-#f7w`PTeza8lB z=X~I?L%H=jY1ln-tg5U$@?7`abZwx!6io1^Lv3#XvEk4?tr6Wt(W#bJpQ7C611tt_ z7h(kQ{*U!Y4HYt4b^>ZOVEOmrWcfdD@9-mkL!jaWMG_IhkhtN)iQw&Z-QwVYK~jSn z4^e10bLPAHYCIosQj~?np^D1hk$+woMpap8Z@4!nQjf!+bNrHbt(D-+dt=r${xg!% z#0m`B+Bbbi8 z&k=%Q6#hEbaQBE63?e*c(p4M9Rf~Dh_mRM1uMb?3AxcFh42hAuOS4u^Cc5STm|Y2} z8Vfo6!xQSPS*mtovfj{w0XAuhq@i)3AhOJ!(T~phhlGx@jx2a%&^Ed;H7WhyAcd=f zC5m6?#Ue}X?!226G(?WRbe1QMCSol@DHUGKKdhaOZp`mRTXVdGvqkWO%wRFLuhVR> zRG;{&j2S&4)vhV2In_Gzcy}lR+e>0A5GR)>sb!TP3v#TIQEr?hM+30qG7f9#m(Hi3 zF$t5&F@E5g7yXX=E_+yDF*G!(<16vNvuNy=t!ofJMM2J{#eImLjw~l~4=i1aTJ>OUv6>NY1I^4W^XF((=xdh|TsFpC?85%w%c<>+;Qh&5@80BFcF8YPl)b`6 zi9a-B(!p)oy7mEy)?mb|KOFsCAnV7f>gN_Woj(kh;jPnCP3iP_bTIF(IyBkPKh!XG zOL2k(+D?qV8LVKwh01~b}zwCm)U^T&%6du=7^>09ZDrE?DBMvB{sCz6y zcPNu^3kLaR`)_ih>%#`X7jx)U_#fJ#(d~lS5e)*@oF{TW-_M!>zE$_zZj8E|!1%;A6v<*z}6H?*POgERam`=S@(SF?5djS$eH>*;NW za5lS2krY^x)60!65Sxf?M?s}M6S5X%k&YBJ3*~7RMi})R(QK(&v>O6KR%U@5zW!q< zqMno1J1r}`-M0MG{ASp!S{Z8(kVW_@zYoUhR-^m{d^}|fITQ%s0)cU?SpeFHB#n?n zKY%1Gaj|EV9UuC{o3EKoZx6+g08#I-e!JnQuU}bMF*itFY^M+sgDxIrmWdUTnAA*% zm(8ocog?zlytWt;3O9d*4AUHPB1Cv~t6rQexM`aMvzFRPD+FSQhC=$!wVZ?{I-fesc(ZSA+d@$! z$iU!Gs`bE?0V|cJNw9Kkqbw+^~?j!v7NFi0zRY zZBsM2AEb@*z*~&2a}w%^AvLLu~|pO*Ad}(Msnd{UuIM3j55to4r8{SCuItNj9?wt3qH(52L}RH52XC&ivBT%424 z(UW)t2OGYbxm;tZTtpip%7{;({&|%HulR^090QOhgFT@OeE^H3?_tmkkUbbo8mR;# z4t<+PU!`Qz3a#z!0jJbZW_2qO=^_NW?cofw{b1zT!al(En`qZxdqY#5Kg(VO zdJ^riTK6VnYWLzP`?gGmvj2xZ8PlL&*&Kg2wvxuZi>Ll-4;&%SkPXCA^*>B z58$HZzCos8`#S(CIK6+W;6%MaOWyf1WrF`uZ2!aHCVj}r^!?uoH^G1B>GFA^7y$HZ z^KWku4DtV(ievK4Bzm*-2l=}~X9&@Wwq5_PTHU{bchYX!R}4wbBXJh1k;H$4Xn-u~ zpLCBe5#Q^-csCsWiEUb@um3j6UH6acLiM6;qS*`EtfKQ>c9c=Le`8dA9BvI?mLtZ^uA5&j&YaBkH-moTr*`ksHO6JStd|o2O2FTY zK_?@pS^;iD^6Pk_{dFZGFS_nlHW?%1U+9?zp)&2T?G`|INx8iRn{)r!03b7XMm=)A z&qE8OdyF3>!FsIN<_B}!lHZ{;GUqOG66T%-QnGV0k)TEGj8p<+lO|}f0K~Ba24+TD z#58c=PQR0M3z4yY83FFJ+lR(Ye+!+C6JX3ft2awBV#NX9+KY#VpvdVLz8ehb)K$pr zzVf_dZr%PdvVeUmDFa6+%OBgm^*_r6uuyR@{Nn)}2nW$@d0m9D`G+)6ls>70;rqWD zfB$2tKs?+K5^Mf%1mKBJZxA2b+1o!?Um(2-%G~GwiAMTZ2}c*biWU7IRxA3V;gJvj zG9CU8?bSN&SN%gEz8LT~a%qAbfPnVt@54)az3)K>AUg8Ee+m=9&zt)1?MNa1VJswN z$CUf)#{OD1#w@Hx@4@ZbB$fY6BAMP z_Vxe;(E!ZGbBM{Mtyz}Eirq24n{oiINw-UgjQGpQty`dIo}2YI(f-Jn!RWrNTv&M6 z7(j+}fd4VpX0%*;G^JqxCFCaz%U5Rgz$2Rs{)A)*xdvhXKz6sU@RvlqjNeFvTAPSH z_1*>=b~=T-SR&C_$^~zdbw;B!N5ep6!b~w960q?N?{KH>G{AEhnK><|?BhJ|{sg1I z&e=6siMDOzF9LO90ZJH3chBJ+{bfaZIfP-f1&QV zgnWp2hE_MIJm*HFb%Pc%bA6veyk;}c%d^JE$a-KTjUh3ab-Q4ca#6{E zvv2-uqtmmvon#A*ocoKYuMh<{;lOyABhKkrv`y(%cB~>fBgHBQj`KPDhSgDf`vil$ z7P)Ys3C9KRw6m;2oxCT7?;fk>^yY%-!vX$WRW5G2UYyM>KkFY(KA;25Y8o%Q;H^pq=NyPf<|wPor2xtfOn0l5heW}XFX`s|nw zs?|yXk(J=h;)l}iZszgxdV!VTDtZthAJ6$D z7GXv;+1Gbe?ZX(BQ`kL$1;|&iwZT6yP}0${&Vg6`UHNji;*tuw>-YAHs;k??fD1PO z&yOlW+R!K*D(t@A_kp zd>{ogf3WJ9T_yKm!g$6W0jRBT;_Pn+9uX9UZXXfg!p5 z{=*Ls7q&V&*&oQoQnc+G>?VMd#mBwT)G`Kf>Z5BQbvr3D;+Te7G6_7h7FMpC`NSg2 zK8DmYBor&}_imMqfoL0?ebWRUxfhAwth`hXZklX9WSk5lT_iba-!zF%m0BMCkG)=X zIL@DiHYb@S8b!tys=IrPh6vZ?{5xMT9;M62Zh#ZUak5hIAxXT9w?6@cd`MCzrTna) zS)v+Ab@HKAe0WEdCgZ9mbyOmhbrRVDd|e9O4^gTF&rfb?b z(uaXz0}dP8X~0#eEgQ3gkzTo*zOe=M3OT4?d$ozsXdn@YNc*ulC}J1=5M149cnU$K z;Gt3S%0-!}Q6a;qhRKKI+fgtK4c03KDXZYHw6A*E4)P7}5b7bb7AWG)!t#em^&E#k zlA~*A_zldC$ZGf@M+$`5NE*2(B91M)jRZl?5w554y(U$HOLlP_?qlvR;W{+)EE;}e zD=%VdLSZxC@oaDNp|AGz2i~66zuP{oX^^mKwS6OSwG0BnuN=TeeF%pNT1xWfF=XJk z6FK$#n;EVj`oqc3!V=*~zq;|k`)|M%`pVK1zOWtIwMjk+4By}cSkD(ZR^m%>t1TyW_*Uph4 zuDQMJ7%v>^kx%P*6wjn2BowX4NvdNwSrCxNfEl#%9eBA6pmP_9r`7mEJceKnNJ>jo zYlljtDKI&eW8W)5a68iI0DVLWFW9e9J~uE8t-6yRU@}#L@51cahKOgVN~QKxLyQm& zT-+ROXWR66gCZVML33^A{YH{uB08HM@(5y$@^Jmx{>w`1nLI8No$Ci~PfO3Ihu)(b z#nN`CMkIIoOhL^D-@b>mVaDxRA&pCWl@wOT)g+~nOx^P~Zc3#qEAi8{1#>^Y;|B5J zf|^8YbmcEgP}>(TrOAeWdZMf1J)iIpx{#a@hWwgS402Z8D8k6Jfoa$gnV<1LesdXg zZ_r9iLQ!g6VYNGvBv4BUqu5XB+f-AR63Kr$)fCBpL9zlz~BYMU|l`YuRHLe5J% zFR_!k#zMv{4L9EWjq~vL@pB_lT&7T@ENva%iE)jqQyH&bA)kC7h3#-QGvGg@9FMC% z(2PR-#!w9%ZKupdIsU7D_=rVg@iWppXqvJihC@B+LrV?%YUSos6)_^ef6w^>g)aCQsf*I81YGg0LkHytX>& zCG*cO)vJ1~yOjRmH4HxHLI4Mv>8hOPM`&O5R=A_<^|d{Oc=p6kDSz1zt4kp|eq7W- z514o`KVk5H9J&R?4aT3kE;oH?EG_HzcSNXSHD2Wth7elY*4)6p@W@rzUqA0Ss+t9Hvp^Fz zEi+@CF&?m((MOhbra!VdqFjtT$=l*yu>v)>-+gR(TpN-$nk?oVamR9_+U##+UtEX5 zfSN@SwcK8;kUrD)FbtfFYYZq09L4@Wuk?UDDxTEPD~hg-(_+{LVpITTMv^q)E9)5 z8cTTG&hl+fD`!J2^XjDUfc0O3=i}wZukVJ21;SgvYF6zI(AV{RhC)Jq?vK+M@myyu zU*B!L3xrqi!?k(Y*m7`=6Lu{iH|>xUymn{FgYI+FYG#{ zzZE;q(WkIXB7A%@CR*-8vG^Ly(pn7-L#|@8F*n(BW`2C}}T1Cn5Hs;r!$}C)8@aGTbL<3jh&hc184RpXh6h%;0 zpvyG%uZ2mU4wknf79xZOhdbWj5N!p`($?kS{Mu@rFf5dxh_uD4)NlZAg;5{EkBHef?knpA*zR z$~L(^TPZM2^Sk(q7{%V6sn!w*t1P$|P7kU2-lA$u$O?U^*i(f6@he`cp}q?dq2rL1 ztMe#OKL6&>9NL2eX44tdtyb0#uxPGTd?+B$I>RvL&CUP^CGfz=?aobsPycGpo?l ze&0(sG7PGn8g8@4)^>r2>!&;7_V#j@5&(BW*B`0A3Zne|-Dy_kbf)>RiPdhr+4*kw zOOb;6R=H%=z5)RcgNDp~?yaI#Q&*Qv4@`5o_XwjmRG2R}C;-&yF)y&u0Mv1>QtD_l zTa-yiBkv&nF#6vICeT&RT~HV?X;jI6{rdF|eW|uYm3!V4Q)Kc#8(UhkqC%N!0P{2+ zyMWuwoJ1S|T-99<@~U)u;avK;R*4B;_QecNmm9|@P4*m}|9F!2;Isr0)c{P+!(~D{ zwNyNHWulu})J<&zy$_j#REazO<*hK_C;SvPnD^PFM zkI6KU245anNGu40ck6uZ1aC$!xlK)r0R(>9t)mBH2b`7#+r6U;Oc%qy zL_Q9;6~_>3wT(=}Qa#F4uv;2PM7?g<9PQ^EZ(!`eKWxF@Mz0Cwh*9Hn+5lux7Uekbq>4`Ss#$njsu9g+3ol3V>gtGcdbX8qIo8 zczAjOs0*2yM-X?LjZU)rwlBBK(G&u1;b;@Je!VZj!&!t{h1Cpdh7C1k9A8*fx z?c&*A$#XOr19JMLi!conx*e>QqXE6ytY0ZkN8=ftIEl0ZY1+qExSdJYeX+~NwG-xk z%*C5xc4~k!?X)qhMLAKx9Jz7dN!e|(tVCTOTp{h6y+On~mVc{N!)IR-AcP>{qE?PJ zy44&`JR>9J*MfE+eI#&(x*(8qiId|3*H#GQF1rX}2=Kg5*)14?u6=1}V(z7m94ykA z>-AjB|B`uhy3$-)4jSq2a{wf6_v?c}Pw7biv>~qpyj1Y8pbQpouP?WrD@_iH zs;Z`X#@NX6pDy_N`9`fkX6Rv1QHY3$sMYF5dJuyl@4ItA_$R#K;dNa=62XZPh5Z4! zxo}@!-+Ltzm{0>u!rq`%7>OS?IPsi1U2=Kc?k~0J@L47EfL5C65y=2lyI(jz~nr9PQ>Mt~G{G1JZj( z*6ShoUnho!KNq?U7Aj+Y|J<#V%TUP-R}otq{Gv~@`h@fW@#{nAn&qN)AM)dMhT$s=KcU?B!`N?^+Lh`gg5p@Ey3ufUUO75*KKc)tUjp zmTr(4ti-R~>NuE2=cGYVp$ke4d*{l??2@o65&$ROMvX-;;aj+4e*tX1dX2l}ijk#5*n|Dkh#}OX= zc5=7z(x^Ds;(=||3_8K9?WMaC;fhk5lY+F)bGZU}0_Ja^+|gtyjgpb^+3eTN;+fD= zG#b7k?H`o7G-2k$|S>o;Iw(i-$*KyZzCLpj@Z4{Z-f7W-T-_Z))j+{Lt zCCBr{qx1#{Q2LG0aMo5(+jJgx6(w_%(nurK&p95>3dZ&LW>vw5sV)CW`CAzAE64?1c*P^54 zBSms>j*pvOJg$j$L}NkG__71ifi_s$jyb;Y$Oi^EOcvwq=!`$-FATx_j}5_PR}j9Trga7qPHXLYD62qswKK~UI2S)b;D(wfCMqx8zkcUwcw!f9-j^@4UFJqUpgBUx<&HJfH3#tS;LVeAKB6=O&^6ubv*OPWMp3b*u0 zK0fid#~7g9(OSlQ?gD9H-y7sT8NA8$8RgfqkbT=S;D^R0_Ct#8vZzTiAAjY2u9A6j z+o5TFJdTjC)QuaF35(8CEhqVNbm$8a_TWDsqLf_?$^F9_YNf$BI2LLW+o7GV5PIbm zslzVZ6XB7S7A1LtKtS8+2)bd3I09C^cHkpXY~*9jt1>uM+KHOF>3B?TIvO4ALM(R1cylb79b| zo2D~y9v@i`k2~oJDalp#w;1#Ws25SgXoHvbvk&k@SAxQ??rjS7_E|ZoVLdq{v!Y{a z3orxM124|$uu3^T6C1vQAeCVAITf2%M828cef|AQM%|JSPxsR9&@lAkXP9K`ZRsVO zf#U(6d<9`Up)tSE0RBaI&Ngt}3L=W3_u|&Ux*`Oz38Qqt+<2b@wlg%^{Ze;8&q;$G zQB=mhh6SXdFD3X#IP(EfceiHs-9Kh{;xZ zL1R?z-)n=#r6ItEU1f$Q#k<N2;(lh#=k1W{SKF5Gb?~!!kgQ*KnRWUnZr2KtaIfgbF;tk)Ace!<0hdLN?~` z8%E^E_qqJ(rtL@M{R76gjGbw^(@IcYsi)a@DQn(>ez`~5{!tEUru=-V-y7Z!Vg~#a zWYi+V2pyA6!V4(Y5OwGXaR~Ef1DEscEb1*Nc=Mw_tfHi?GPMzuQH`K2;QSjxx;`vo zZ4)fJQXs7YFmBbp^KDFxy8v~kbK9q0y>Yt7VA@Xwz}f$+bba?mS0rVgMtYn$P(ws2 zqxPtfO5wC+>DbLvBMRCWdSYIv8AJz5Eta>xO&bmM1Y{AhhN+P90xy!?0q>LSt@!wQ z;_g}{Cpt%vE7&@Q18BtN0_8OLb^UT>L9+~Ny#4h0vVICzbVMc7)CLCnb8M{_JQi(@ zG6jr*4|dAA^(Q*I`bt{feve)cZG+8^#3*mJiU1G+>Zc5%MfDuL9_okK1r{O1&EN60 zC1@B<{X0sB;aDoi?k?C4yn;Ki;QQ>dblAEQI58L)Y#h@Elpgj@USYHkFdxuhKBEX_ z{@!rwm;&E~V1=Owb^^>)R*>+UP`YvJnlOoe%ne8slFD%RgOnLHKinx{Xsjzco%{y; zjzU92kDo|`OK|HUK-CoFb!5P6&ytMN86Z*f749vAy?oD*tAB?;654!Q2ZP9{D%+PX zI_3JTVJca%9juHN&LPlN3ne@(YwqT~I%%5{W%QK8QqR&fHHGBuh@SL8@y3lR{?68v( zL#nN@9SdJgnUSatbZRkFz~Y557aWYaWZ%4_1cS=5#*7l{lqhks^Z4^6a+wrlG8D!0 zy}LUrXKQe3dbSsIix?#?CQTXsp1RR9VP{=(Vk#}gJ?bd`V?iEU;ln!%mdV`K{4W2PIA6sOnZcSoKR4Aw zvM;=Yhli*6AK_nB+udS&zrcotSGl@vDt7s7>eHagVjy4wo0`Q+okQR+vfR_yaa#*r zM4+_R){}z$tW>m9&742e`_X1CDY0(wIm>oRU*=4B=;&5UB#`#`LAzi#aT<3}b}(;1 ze=D3_;Tv>vC|Ip0Wtg68fHxi@dV+3J(F_FF?qQA_W+AOlvJ#z>LVSQZzfU2N+dH&t zVyBYLFd0d8fusss$ae9;U^-_L@bJFF?)YAd_@@<2gh;8il2gWubP-|3%R0*+rhUV@ z;Fmy6(c-s1YiKqkL?t;Mv~%vgF*Crf|E~JCME&6gL4Cp1oD$-FmLURmI=0ot;xDCE zldO=T2MvcZy6QD0%2AZXn7e}_#gg0BLMgkW4G0KG!@+eT(;@uju6~!;IR?<a>|u{Dd12!|t4-FbK!8G7 zuXH~rJ}FpV=(CIDg*cSz@#xgYee}1B;Zgm8q~-;MF8->|TIxEzNy;n360lHI<=Tse z+pZ(@2`Zd?((4jZ6WMIOtajFf!V(*tREe?&HJk@k4?<5STxty%6j{8VhTMeii^AU9 zWSa2mc19KaQ*(}asoH4aAVhq|``GRtJp9TB&OaTT=P;rH zNatpY!P#BN*T=2x@z8x|{JfcVoO~;!5|6k}Y_~36?deyvTi6C*Af5~mK8mBUUAf}8 zsXF|SlaNdW6^R`&k%_RvdN8q)B@I4ES9m;i++1T&-x^MT3E>-FfZIS0kB!P*Da%g* z)9Sc!GR(E<68zizVjvU+*2Jch+LGPKXjI%?rjM@9~Lvl{jO?z@PYI zS^}<-9~A;4(eHh7*88q-GeI&aeSx~)P@Ig39Nk2-S|V5Gu;gtWtrXmxqEJnoxi)XC z2NqWG#{tFU9A0Jq{sB@(8o!u-oy62+2P{rRNUfB~?3RHuKuW>ugS8npb3w<3)gu3}KOpE-{6gRSHvaHlwTo!S$5$phr+D z;vSK}KSYGpehpY)c-gQ1T)F}AOTTYD+Yt%gu_$iI3PJTa95Wjc?Tw0@wk1zDfDyhL zrV8vJ*$kcfFc=YO>@$RQU7FC)x;3>}gOFmf|~0p|aw_}HmyevAJHM~ z(|wVQ=Xe~kK>&=zfn^k_C%92b(1oHTNZi2pugu@Bui><%6bX<6Z*{O3Uk zfyLk|9M~VDHaMGRWrGp;&c)rPfC<>GA95@LrpaxtJTtkEUqi_GntAj5K z!+S(QQL5Nxdz`Jf7HtiE%`Tq}X;1tv2z&Vfqll0dW)%fz{6lz(jf{n}n?2Xz92zbmZ z=@~BGfGNzu&3tV|g89GFcQU)^Z-QB5{D9|!=~G-(HR8YhAG`nc^Hh%i(t}X;e}g5b zZ4){f+>C8_F14q0BV=^AU-SI=-%2eQj<3E%AMUMEOo>bzmbA94@}AW824?`M@zVTpEkTX1UFk3-8Oz*x4Vjfxg2@F6+2nl*M~{>_AzuEsLSZ7zi)sryu*n zNQ58)_tl61*p)5@Rxwqy7ES?DE}-{%#N?15E(;Zoyg*87&pSM_8ZVtTI;+#RAA=k% zt9*NgLtcf_Y576wuVcR$M2lAexVvd$79Lq!ctt?8^&4-wLgnKvf%SXf@naS;6Cm!| zS;$zWJ&MN!jsgpgoJ{`jxT3zOwK>CD(VN&mxiWuU*nd4Xl>d5cU@AKN*8WFZRTPAw zTkHRzq;RAS;TQpo>K~8s{|BSG00eUXeE3F$MBnxR*zX_9;5tYU>RqPuzfgM}g+2d2 z4`KwyJ>e?t(aYcYZ{`bFS}5N?GvfR@5E!;Ol>)q89o6!lgFuiF!~H4p6m5u0nkzaM{;a&_$xh&0SMCpn3cXI z5aZaWFcg&8^WGIGPg9FSC2fR_MnnB*?h^P67$9O5Mu*R%h*Xl$={~2^!y>`O4AprS zSrSIAZlLq&efh6-2>c7=Gu^32!e`wt2LMOTvDxu23x^fJ`E#L=r5dlRADu6xqNX)T z`#qVm%^w1KFs4LVrSPGty-|*p@YHq;A_DW}DdOmkD@E8OiAv^bAkXeAnfUM+ug5Mc z{$bp0n+|2bAG>zx;rXdl_Re{H9NdKY--~&I!)yHBZ?A2_ht<}=%DGP%h`^i&maPR6uh^2g$(^OsHy3#Vlca7^8Ua5L-uG zb47th&WfF=mDlA%k%9F_DuTT0tCc+vj}ELQkl9*_VCNy8Xd4r#mI>EN7VjH@Vo#T)akxD z^DTl@qT^J&Q7?y4BqbHCARHQLo}IODvYS{g895*j0>{h;fAGYgVKo!Wt+Nvc)FY*S zpb8-Vhdc?UL1fZYFTk)$-zo6{KBq!(QV2iD7wHH_fgF)52*3LW&ftu2j={+oOmtd{ z#f8IZN!+KRrbwhD!{{1QvHE;FdC~p|aanhNSjvrLBNQE5bdp?=akg6oi8{y7%28JB zCgo&Iy`9Q3Gx?@kywcC&6;=L7E+Wxkh= zE+(NfCXHXr4u9owTqtRJ^g_q2+`j58l9j4PT{8n4jwbEz$;;{#C@T7r(5l8JZsE}Am~150dMBzK z_11>_!wjF5wwdaXoQp>Dy}5S5&_9H>IFUlDL47c2qo}b)>oA(8n3zUgjJ31mV1e&Z zW#RSH!mapYo-(wai9{tMGk5dV7`b}J=$)1l^^1^R6(EKBV4UWxX%pIG!n5ytNdK8a z&{8w4!0)%sLXn?4%;&U4(aaa)Syo3khh_^v*P*ZJ*h1DDNQePy$b_;~o}6L&f)Lz# z#iUzW8gPE-`#fzK_O0$#Ld7lvwnwUJi)_ANENs^27+{zNC4xCO9_`X>PT=p5k)(c% zd#l^7s>8w~mY^`C2`s28#}Ox#P{)TRD{)vCs;s&%kbEAHj5)8+19P>J4bA^t#c5@v z(h4gBlozRrLVz@=xTj&Z`frn6Q~U;P*}&N}{p2n_L>rg~wqBRBABRUr2Ef?ldvkQ4 z&Ex4E3jh)nJHQ*gqLDPNA0(utd6kt4?>+66mDQy9_p3n&c=aGV6jp#>A_H<$oSdA} zpMZqWFQ9w9(Be}4ZYVT2FY)*H|H}XrfTbBFlfo(iB)vnZ*nenh(w4WsHkmKg$-ED5 z&eN&Zh-1=env+NK zD_U#0zqO01NVR{1*4~AVC)!um_HF})I-qigYr89&EBiT-X%n;PBtqr{OcGnvSBlc2 zbOxscjBAvhu{)d)!xzk29c8sqqd%fkTtw>_zC>YQeeQL&P%&#iHaldhgz#Gjf#34f z@p07UK_xbd}>)nOYjNj9aU#3!HSh*5P^}_NboA?UhpaD7R#Wz40dA z;c`h#Goe6p#Yh*XCuXip)5QFyZu*l~#%sr~%f$%4%lj}leJcY$Bx=UI8X}qWwQm&o zD=$?A*`2HiB%yY|Ohwzrg{nJi{)~e40b|&ZG)}6?SWu<`jzNNlj-6iHyXl?Fu2a#$ zxtE!SPbSl@WsSp6+$1Z#@J#w;yakaKMZfl(*u-6g>hmvDLF?|223M11m*fMmjQR#e zOTRkdpTZauxayLS@pf|QpurF^VvvapLk5Ig9?7WgvD`>XB=;{4JC<&_row*Q79jL5 z3?wMxS1V1b;a^gb*2bIj#G2YO=4!K)jhS&oP)%AX@F1xNs;OzUH&aVfyT>wwfnuV0 zS+!ECi*7riwO8ABk(M!?8z!6z*d-2**6YG$>~j9VOUI{$gNw_TH#dn}C6>WoX1kJS z9Z@r^PQx9UY#C!}ag=*BBfp+97Cw(#QpdWM5?Z+pKU8^mr7_pth)aKKC{azM9G0ri z%^x&Fed>yrL@xpxTw8Na-!>$Bep}CSW~cI*+1aGvzd$5EjNU;LqYq z6BF9meE_Xwb=Sp$qOMI2rT}r^^?H>t%rwreryKgTP+D4g31rOGnnp&XC4jD0CuIM- zX%t=QycGbEw1xp4sVNB}@6|>SVci;ohWH%lLj@AqWJm`QK|BF=y!ON)m8KpPCpWYB zbhw(4&NpZn>o@WF&QF{e*gd*XP+joL&hk1PT@ZKP7;x0Gx(*;*lpI6UU%@P7&*&Jh z>+Sco@yb~J76p3G5GDx`K?kuKXmmQ}BbgU*gqrfxb*i2DS@kkQp8?%A7lO79kB{tP zFqQKDpnR)W>Z^w~FL#Rf4$KhzCHf}J<-Yt==7>ZHYcV-i+z%LXYo6qiVfkDGgdOBf z*i(lxw9*|?Vor6{n$#O(Pl4+$1hbZ1JHhM91(WOM3LRF5QY3mzgI>vkUEDgm==`Q` zG;}PwkfMY4xJ>0m2qP~m1&;={K7rOIQ6cjj0brJ+Px{(4z;T#Y-#iTwXDnB;oj`pq z%QB{`&7d5UKrwp4Gqt#2hDii{v}g~)Vv0%Hrful(?aKanpdo}fMz%8ryul5HBr2}-6)IWsf?9t>@pBqoLX2g!Pir+R`{R^pmPb8wt z6ZJd;7*fVFAdv;K9%vF$QqyC$g}v0BPw$GJ%OW|Cp%N9MId|Ypi3hSBVN1$LPvX7;pdIj+XyC4E7wDHf zRJ>h11x;ndM-#J7$jR^`bp%0Du$(sg_gPKeX6>6T$dPMw_pOE~4 z@Mniwv@|6Vt;qiF(JmAfF9M*C7AQN@sTuvW+H@dbrtd{o8 zKNU|QT8F~-`r55jJ*(8o5m{W?-k&Fu7DX|6v3X|`!;Tth(4aV!M&_GvVlJ7p{zHp7 z?4<3}@)5=uhJRENKfkD91xQh0VN?)-tN1$+Iymlm%M?ZfR*#`YF?QOSw*zQ}Svz$Z zfi2__5vV;oTU#vy;9wY)O5Fg! z!rdMX2%pB==+r&WU$npbJ_&OBOng;WryfqAtAE-gXdt9EqyX+ zoy~*~=;VQl+b7Btbc$>)-!GA2KI^89XaJwnJ7{?V!K8>hGy4^ESC@#3v`iRvIS@@$ z%_^`yA9Tl@vcR{Qz|Ws#vd*SA2j>!m$eUBgu@^1yn6W$C^L%yM%$wi8lM(v?TzOjx z@X;DJ6ESyM=zD$5V7@~bZh970iA~VP1fun0bqfM_d+aLu6MSBI z4@|9U5p~(p=W|ZrSIs`or}gFK)Gn0Bp*WEZq3dCi=>f6rl?7VAmlw5I@Kf>t%P z8h1pd?@`q?hpb$1%wfEy$q9#>rM(Z>39T)xQX1_5^as8S5@RCBp4eK*5X}BVpgP~U zvTf>#k?&012RoK?=F5LFFuy?GDD)iml-lHB_JMgOr0~vTc>Q!p)Wz~^BQ@<{+_=}d zZFSSp!8GsML~!GF2P0&e%w)7q3`)+4__qeK9@kQt0TbVnDnXXh z3OEhXFZcM~RNj5^Pjf^(xrjL->A@4Kc>Gmi^vNfU?RE6!csTcuSC>SzzV%p(nswZ7`J#p(aB7 z?7R@~6fe%Qpe1L9%MI1?vo=Dt5sR4E|HZ=@uo2D%aCCE}xg= z>Q$rGpi%pak&6qiZ&sv4`&N78E%1Iaud4mG#K-G&^rhVeIBIk?*FZ8B-l@$f?|b7j zyFVvea6!k$Q>-_&;53*GwL(kb$x3ITG|HgR{LbyR67k2JGqf}sevYH&&;o6xRvTaU zh_!jBnG~=d!KgS(Ttbu;eiDaK&&v&<7_c zECLWD5X)BTQpn0$>)c@F>C_c-{LiStR6)pub%=M}aI6h)0Q7&{X59~fjL`t?h+gv5 zn&3jBVws-P3W#1glT{doge1Aw#>PT|!K%9uxE(V*>>IUxGU%Kvo2(-K>wB zKUH1F6j<>_M;yjop)r0G1W#Z`9_xMW9q}#!!*qv}r^?lF8DednMd?XAvz$NK0mw{= zG>KrEGI@XGu?+$Vs<5~4NpP>J=MJSXKH_62h9!|UzWEszb;_}-LgwL3lcaO8?sHnj z2tB7C4|)$UOs@2TgGq37&e8a{p>|$J{2~zlr^O8Ws^Dhv^|uA!C}nvG;vuwjTgI$;PB*F%845-!|p~428ksZ@EtU}U1pXs zkzNO0+k|f?OSYY}Y!XIp#k~Xq>M?ckq9K>gWUREHq|SR^qO%{QwpZ%Clz87tGlucs zE`(h6EHYwBo=F;S-aJHhN3^I3o3^MNPpjV?64c+ukcYCr?+rKeJ(^V0C;ilx7}nT9 z}$ zf!9UaLD|rl)NSKxU1h~6<1S96avPt_%dT{&q*wydi$%k38cLxhbmhrfdoEC|o5nU* zl{)j;$MV{KuVGzTN_qjG_0@w#+5BGDtpZ|tmPHFZCxNsegK0i@&-CZl8&3FJ#CnyA zoHDVt3;TfQt=8t9Y2?#iZr9I`Rje-BVty*AD3|lb=4a7mZ31eQP{3NUDQneEpZ$p< zrB2c%R2m_yfmL({T%)PFSQypT*k2Ewy;Xf*y?Iz0ASZmS4EeP7@)Cx5edFbM{5HCb&8@JKa8lmn4sZsIz9nM_F-9`+cK-Ez{ zId=L&*3HmQb$0Evzdg0@bV3u>oIz#nG#!=2hKD1lw0pKDS(4_%>ZX{lG|d7AJ!0?# zeC57%Hb81M_fXsKU5h}ii!z_ve^gt;J0#;5E0ae$wVS`)Ky`!h1RDvkWW+qlz zJI>|iU|~{KI^g?Vm7WTmX{Po8mQjui$3tkVDz9#-gdD|9-$K)udOU(<7$*EmYyL?& zYI@QJ9TgLpn%u!s&ihu2ocJpw2YLki+yMY8ugb-sW0kWVbwtCd=LC2Vyqxws+Vnbb z;WsU$7$ce{I^ZDi8)jWD6r->W1gBU};)vys9Ig~2`v?VIG4h1fjF6;|y5ZL2MNE>N zY<9VR&e{yAJ<_Zf@xA+6?mvwx4$iqZ0E3~!`r&vpwwJCl2}xq4*cnHPb~Xwz%Ps6H zN?*UoUJS&Hu&dR=`nd(WCaMI0B%+}k-YpmJfsHNz79c`IHt3PmHUpP-y!r6BZF&b zC}=yEO>ZriJ}qgwt?I^?v~8P8jE+=ZSKvuVOC;R)=&N-?ow5Y$O)agEW4JjD^v<^} zG-ll4)%7(AO|34H4bN%nW}w2n3wij>V^A&LEZfXOTCS2YIK^QS66%#Cf1G)%w_3I# zB2}pN9ri-n_CL`j+^yB9?qcQ+j)6N|&J;h5W!UE^yL`F*$;kz5TO zQ(Xz%YFgMYGfR~eIx7`5?VY!sRvD!Njo;&+)8_*tJk>yrbTqTo+ZlgYs-_u@KUQ<$ z=C-sgQING1@5K$!rBfwvLfG=aJ179oolZIb{D_ZRhNHz{p|Pb%OYRNBiwe{j2t=7J zcHiTxg}wYshGe1)I4_Z z$|{wG%;GUsrHQ$hly@CfQP;m)$^XbAkd_OLRFsT28qv}nLT-n|LIkRDZzqLE!o>tWjM<9$2WVXk@u zwS_w3aIfb_&ik0}4}lLGg-ER%)UnyEVF0xW8V^YTIQbKa?mw1gf)%4scf#KR0h@2= z)DsT@kg(Ju)&x(=!)rrwxE87Xj(}3KQ)c)Vb5^bw=DqHV^bsl_+!e`2a+#t^XlnQSf-tgr-g@~~e42&WHQbM7w=gTdFw#X_m&Bta-3k1|OLLz*BRCg>F zhXsO5_$BnDsh3@OYZHHzkY>(2g4Y%Q|0C=zpsM`3wQtG|ND4}KBi)G8) z6C&N+B??F*T}n4d$3|+?-Syo(=e+0tJZFse{TxFXDy+Tsz3+Rix#qm)@0tRjf?6QY z_BK(ASAo}J82XYkUrjqVE5jhg?35M-a>nG47eZHuXFj}vp$nuRlC*EIxE;R- zp^YBLZM|12FS4|LAUn`^+kgfwC*)*1^y#Z@_Y{M)7=ELreDqmIJDgptIFR!{K~+S* zi$qLzbMDLTaJ@v3RWONqVJY3$URY{~$>-XCeEhYDw(lbe&Tv}E-d(|xX2chi`k+5+ zy_jhBpKr0e!gc2UM4p=OwG-_e3JX^ANc>HtWv(5cMNOd!lgcY_Q-pP#u%LMG)%rkXMdPTng@N z7B0vQe&2SAQ^?HrE>@@Ym0iFD9Ys6-X$|;KivT&GoO32vGAZVsj%V%fdu?Z9gu0M- zKzYj=wDC{rOHSojPToJ`SD(zH7#S-qvW;$WL)kj)v~enI9K|mUQDeKAg2G1YW7cak zI-RGY_9jKlnMU2V@Ra7(tk5k>VF;dTdb;^Nz3@R3B~7uh_nn`@m3XPtzhoM%jZrnJ>~M( zkp$V=gzkWGlRIW)y3rr4Fxq3$f6D4gKCNNok9U0UjZU!3V{QS%Rs)f{`LV%(huMI6 z1S%AQBQz}|zw-&%O+~}o1YdwnUUxpL=Mqi2x4T=DZ0xlE%ui++dA92=M9aViBryM@ zP)VmU0K8SLt*qh#?)w6ga-Z(E8zgq0Y2?keW##stjT_r-6VAX{R*7aoz82|wsT+&06j@> zY;648ZzuopV}_pRTIeZY^_nI)LOij!Xk$H7u0svboB@u>-z-W?#D8b=U~}EqQ)6-)R$4jl_?Z$7aUAYB?HCM3`R?henXjBc}ny=XRUg&gl)#wMUr zM9a!L%KsKGcVkrWC@I!=gWBTV>Fh5&PPczPH|NpB%uJ?PeUI#Cj!{D!fC5Z5A4-w8 zvih3XJrv2-&hYF;PW5!I`ULn-0Txyn3He!c7oX#c7+J0?P z%h|0K>4YPl!gOlXG(n=H}+kfGaTh_7)-&F7vCXHxAgai}8F(iyh91 zH=mV+{~2x=CHVf{;jNfnVkjEE0$>!@G)Mv7dscBt$ji!x199Gapzg;~LF@pa<9?+) zUepUPva#{yZ>;znB}WtUDFD5ZORiJO0LDmc{MBqu_;s@EWkdh%;J=*vm`f~GG_LZ{ zqsKLmT&;IV;!d1WdZuVOxwQ{}7D!Q@Cua#Dzunu25e(P?BtNt?B0AliXaELD;Qy5V z0elgJm{+l9<(YcK@?4zXf*!kiU6wWuH5b1CkVfWecQwk(k7#BY8>q>1a;!s&R`34D zSPo>w@!=xie{+oBg#VucoyX@Y#ZuP)Vof1_XhX%0J+O(#|G7J24f!n-0~2+=<#xju zfcB?7QcN?W0rWDGf1pnP%TzLL7~AaI|3i}Z zfC{*0{`_}kV1FI*N13?Xr~kW^CD(CA^0g)Pe<04PL%>L+@3O9HgM)(L=j&}!X=rJm zZTMWK1D=@x5|Wa%qN0XEWU(&iQjawq?+w0vdKN%SpHgwW*ld zn$1mKa?i@Esl`e4(kb}5=K~_1g`2J%l^q+qxcqijR8)-Auh(V~L&K>PYvR^rbF{L( zGPDd}DT!_>8UaRS6Lro5fdKYzzt3%xr{jY}cB}=MC582GeIPusTXIsi-4njf{G1}J zJ$}oRI=YnWg@rhW5y^9PdZ@7xF6y7j$m3U11a>Naq)bn~NdbA0qYw!on>(5f&!eGF z7*i&Y;Zp({DMC_FDrMmw^;I5N)&&kB9`g>zs}#&X@62sF>aJqJmeO0LeR95LU!!0b z>&J6w3#|8=82Jzb6>wvO)h-zTX--oz(?!uIPa-Eu%k6+<0 zHF5-X>@;`%U`dU)wX0utGB&NGdI7D8nyix0q~8aghQWouA6b6zy*lt*I~?k>A@wHS zES5ghU>;G925R06O_G2L=#t#6KvrKld4I0v-DQ2_&^6r1J{A7=$uA zCRv+crmgY?{UtF_k!7iI^^51`Z6xC(#Wb0mq-E^bwhJB=Yb)h{;H9Hq*=c4kE4N8G zQ0aR=Q;$>$eqHADij$XKd^dB^Oj5prTYx`01|_i?f~!d$Sh0E0C!K3)`D^eqrF@W~ zaJUs8of$ZznA0Adt!uDKMawf1R7+|!trUZr%3S(1&NyOs=c)%K7BCkOC~y&*>x7>? zO#3mu^BW{vJF!!(pb@%0pwL(NyYk-swH21hydb&!+9^hmVH*V2?>OLc3ih@NyQ?>B zcyr{&smrPy(;);3#Yj5e023O<6`wBtwW=$qlDpL86Uf+~vH=OmjLJnPmaU%_eQlM| z!ozE6-vQ5lw{r1?+K#D77--c*5v4GmRKHW#c~5_qYWp$^Re0EMgEd{GnBw^RQNf>` zPyl^B72p()_#TT8-B{Ea<$jsE^JIrb7F$zGYw)@0-x^R@0Zyg-j&<9|KtwSJ1W3=% zCk`$yqU_VF%q-)&9)5n|Xn;hXRCy<-FvFbi?Qezphj#^-e!epHKo`~5?+os!;(KZ%%0S4lg+TX8l>=0 z)$>-#+c@lVB8Yi&U{|4#N*cK`ezaRKQnN~^F)^^Suw{guw$OG-&1ldhwo797Nx?%- zN-0Z&w41TOtv!*+AQzcD6-GBWR}LPK zk4mVUL%|3^A}*32{hA#|%2xYQ-AqEOmFQQO%t>_VR{!g58f=vQs93ea#zsWiyk35A z+W}0OIEUFXRwWU&@}WoFlxAikkV20AK?YnHu;3^w=%E~RC&i^2hMdmSrMrhaYAI@b;5A8W+i?UxxgTOw(N zsMI-KP7ywke3?nHnE&`wWvlfV5IH=?XE}|AaylBN+3Gc_r?7deHrQ$x!s7-rGFlVj z5C^bhFC>1Q)1?mx@Nk39o^(w+H95}@S9AJJViWRk>w`+^`x7ptcZa<_6ed@S|3g$*^<@@GtaCFrC7s@&O=j_1hP)-> z&mOmezjtDDdXJ~A_-Xmx$?*H7WQ%puNHiSqCmB?~GUf!T%)4%J(wiNb6cKZ1%4K36T4)I=e5kJ!1*fi64n@Vfs?3To(yC4N?CUhQX}?uu zLhSHHzEOFs6tGMf&JmD+&{BsNDXv|fc6!cCK%29Bb^f-KiUvHEQ{EF8BV!^lO zKD*qVs0n`yH?yp%H#7ONS%AX%=}Jw-1UH%pOV^Q2~-Vw^u+IDf;y~1Hmy-i z{VCfk+IV1G@9U*aOF0AgqrI*}(6_v%k(<=Rqnv9gbRwuLUjU(st1G|S$_1_vj_P-nF?HLdi2#(1lNHl0|7 zg!G0sby_@*W;m}$ybkkyclVD9+o!`_+}zwwAMcJ70UuYTGWL#57+0 z41`{nn}_}W^9`Pr8_GG9h#(Tz{`{-MdU63v|I#S_BccI9QROcm0w|0j-L!Q48lSQX zRr6>#EYqU+pFR$dxYYbAF;md?45{Pgk=rc!Q+dy1_G@^E#&mjv3?m_MorjtCpd#)I z%Xf1_-AJX@Ti%E<5~@Y~b~;oYNr2%tVm%#5<#ujc{x%iEB`4|Kwjq7b=ub5WEel3H z4q@tsNW|pI62qV0y2Z|CpGMRPg>K6INg0ge(&KXrVos(M6-l1>2FhPC*3^EJ|D>mn zsrftJ@dwv6)2{APJ)(J|3tTWFEkQTa7n{v8bK08nuUkKn~@Q`26jm0;Sl=_-5W@sg>is97G*Zl3AL zzI+-E&Eeg5;>8VpkIF`;Rs>pI-tv@+P#g25jWW)?g6~E1I}fyID=CR%XD+lgFw7|L6U_Q$l7AgX*vjrRu1YtF3(^n*sm( z7416tjE^y^nb7rD491>vQDii$ZNB9~>>iOq7hNih{ZYy2+pR~=F#*wuzl|L4gXMJ+ z(y?hni`{D4i?mFrkOxY8Eq~U4`U5)Z3|2g9?ya|BeBh7vOdhUB(%I9*K{)3<){=>u zhC&^m8e{Oe!sr#>DJM?zHj-O8h<}PgSB{B4h>3B@I+S#`#48%yO%RyZpQR!m+%xB2 z4;923llghN<*@wyN@YYb39I45K&x_cji+qANFiUs3m-u>oWtHYLXFeSec-olhp%)_ zfKBm|_olVFrWSSan|kDplO!iE=ZSRF&88-%%~{nB`WE*OLw~kaCifE)z7SbHVI~a} zf?8~P<(j4>S?mr@M-xWy7*O-(C!8J{)EQZRq{K^dF{@3YiDA`&^QHSPf6;f(|1gsx zLf1bXNBR63AAbla0ejut&UUaGUU%bfgb~}vg_HYhKZ9@@SG>R9U-ya5n40M&rKIfo zp_|#vl*i{j>{~iNT+9x+&Fa%XLmfe+gF{21X(KF+OH_@k{w+C$QG6?&lCk=L^8Z&MdFagxa&q>$kB!sUCY58$g5``DhF7$qv z{1IRQmIXP1rR8eF?m{dTmW89o0~?P~d)@CPrQc~Mu_iP%7?s~AC-9!qxTWCKhLfh5 zNX|qf*IAW)f9LIp0biW7W?Ed)Bv15~^hxkGu1llYB7S46RSD#p(J)0Weu*+qjwJRe zt5$Pyn$9NsM3hm`AX*EHlXx)8c*r%A+G#@U17;9@lohBN7hY1`BujiSb2O$CM;t4d zCNVpn99?~cgD4NHY%3npjY*76oK9HkP|mk6qN#f6VY^sokf1(A%jA*vi=IyYlXnR> z@3f+wTXKwimz5i5o9UiR*_=MJhNbUY$2vqFpDWly#6a0$A{B?zNsZUTx6b*;*!=kc zl^o>3(V9zd719q#>OX&e{Bb6L zs6#_+)|jYYGMKkFgZF3mb^9w7GDwg?%kH!uBXdPE#^E}mYQL+x($Dgh_Z3sJQ4B z5T8@g@C)d@)FSj9M#fB! z?J5@!dMLFR6UB7UanY)9Y4o@1G~~<05@HtoELY&QV@tg4?NKe|B0%@U*MFJhxxY}a zI4ZEmj1h*-OgVQlAxmC%Lipwl?U?9OE9eafi>!Rs0Z<=5(-S4b&?f?aKbzYV^Vuf> zw)bkalKuAtJfD*OMTk4{JMyXVzWC&I)ONLT(np^940s|cpR39@^{4NO0`!euTj`eE zU%SGM!p9`w_hx^j0uPzuknhEx51Y>xhz5NpQ!0W7VicjwuNNdJ%=YK1Pk-U6!ieav zR(yUm7~fx?oC5eaML_y2bhYHN!0W#XsM0c&C0Zn3R73;UlAK}f9mlPYk#-tLD2)tv z|8*S?-?y_v2zjfHd33@SAd5e;N!)6Ft1oLhCCD}q93JqN>FKsgrT)a|cI4X!GPmu+ z_~^5oS)O;d)PPQ*xUF8NRzir%6c>}^ib8C1L6a>$CTt}!_H)Fnn;uFEx7G)kX4cnV znh`?;<>!Y-6g(N4)=}D>0$c>`5u-5C3>qTz`7_zlfkx5y6uFrhOw>~`t$1ny2&1nw ztnLMnkfeZf$%Ut-5=j=tD%hdu{_6d@xru$SP?P5e=&*Ry;O9R{lNYpZq{u4R)3bjD z^Nt-Oz8t2#AN?k)X@r)UU;W#Al^2zA-Ouo{^W<+&jBjy3Af$p8(wjuODXi(O83!y$e{nJ8ms-TXMr*z*Tf(fR7k z;#La5)%c~dw0>>f3j(dPKTb2}^^J@(D zTDpnPQQ!f^=#;ts6&>U>y}=h%l;B*qW-L-Gxdt58)PP+ETLB? z1$x2yeUGTPGGE?8Y4k%*w%absfKqhouQ`S``&;=Qb8VFxp^Hy23k3odA#_+*00`2@ zp~C_MV4U_#;DMo`DX6TkZ>x%71kh#TGRiLt!9c=E8$>`!VrL1XK%6J=SawUbaKwfh zz0xYF1dJVE;S?yVxb!O1&S?u0?7uCe%`7d4k{C5yzl&oPLo4-Job9B%m8xbtRVww+E@_#z49 z1ayskL;G#ud-D5siNmzl3VUn4Wa*q&Aed66AB*56sl;l$vNOBdUkF_|0}|lW`jjoM z#7^rrM?mN?fzjMMaLbo7Glc|KqUV>X)V9V-=yJ$2xv)edDB`^rhaTzwf{4`2(>jh? zOcd*3GlsN=EEXgw!0GTUvQge{2Xi2sbBgpZp!Z-6%IFjb9N0S`(aWmA_*#c4hHWj% zWV-4!(tnhlS74g*?qLoA;Wg@k7JI!HvE%LSbovd09T)UB;QCE=6# zh^_cvyvXjBESZWxSe=Fj3I=$TbS)}2Sm6yQ<15Geba>~3l-_>R{;;j)or@C4d7MEP z?#b`In!O3;^vzrHoniO#(NEw1Dg=&3O`2`!Z`m7iBTaj1w&-6ei)g!dGgcV=uI*yD|h%~o18xoUdca0 z4i_=*({=xA^|LKI&#e72iwmB899l_iimbnDcI5}al#+F%!j9AY+(=$ECb?eMT~Xd# z8Hx$%G6HirDg`CLU{()R{^5qpK2FmDPWyP|NRXXaF}o->}|Xe%>-P@Th1 zIlO)O0Y*gkJtts%;#2JF_LDlzqXp*uxGD09xdv4XPWO8F*0L`VC{v9ParZ^h7hUlc z$9zdWjwZVV0^M89up*Jnk2ALKBvQyIkfBMG;0(!5;HrT zlnm+?{pmutgcr0)`n2yuN0I!^ zY3lD5?)8xRu-)t!n1h(A_}dOaym{X7()QwmxNB5G_mG%*d6a7(?Z(bCYP2pHjF*Yo z@56W73U)0RE3GH1%>^TOoA+w}3SKvh=9e|SukFNH7YG(ZQcl1%DXOfN=IR#uW<$LB z@MdwtBS41&OZX|M73@&2sWqzzA+`xKqaR48$4Dh+6Os1!?vr+Ykfyhx*bIv-`B`&o z=r}OW7lc?lg|>5zf+Yb44`XST^A|GuIWfYn z&Ev)~nH@b5w2lPvZcXAErL=BIek4ty{&OhbUV%~GjkNZF?+IGfDevE-fTtFa%3M>} z_O)H;4IQ!h?sQoOhops~y?vz$+utU$bavA4&cU^~#6;@S9Pe*gKpdjZ{;6EbjdQpK zkr|07GmDb3r&sRdBUqkP;3I_GEt&Rqq>@{&Fft4@!7jupdIf zr1-0MIH@Aq5IQBswGk$rSGSk!ws9)_`OIIaHHzCReor(W#C3`rf~IWe5WsHN;9@3# z=5es})y`aS^P#fBwsBa1h77R>aJlHc_)+-2C#MF8DUph_>FNGlC_fG>()vxCJ!G;Z zP#{?MYHUJO{qYG$4OTDb70TZs8~p@!%Dp31P6v}v~dCL1Bor7 zl2Hi%UAczXOVM;nVh?hGSrJy}arn|;qnCo~uIj0rl=R|=Y>OlZcY+{(;iQ~oYU)1a zg!pyUgkTO_*DvT(<|qYKGjariL9}GwaObeH-{F?X89XvX#6sGo3IF>|y?y7a0forK>omD+Ev{+`4Uvx@Xez`{<;3z@ zzZu~DST06uudx_FwsDv5aatj}_JnJ$dc&@pOWo1Ga~!3OK~$Ue9eGNYEUQs^t9*e4 zjaTcF7OMEj!J7*rFa?^CjTglCr}>ZlG6$!gVgGrJ*#b2FD?UvgccjU5)}G6(C{oG9 z0v>HLA^SK|WYOw%4A&7SZVO^#chu7ln>12oDoaFCHc~lIw1lyTEK9weSa`D;oNr|g z30;J!Z+}2YvP+cv6Ax&8iofxu(IFO9m%UFZU!+C*U_Wckx7U~~U!1tUN&IDVXEt@H z)}b;EYpE$(aIpAixlD)7uW2K8f?KZUx;+d`t|=n}{~Pmk9-9;pR$6;EZxa#*5fPDD zZxmt1dkJ=9pl6&2Oqm&Smv-1)4+z$08QDm-g(B;mvAS?eMjUgXzx(5<>-F&5&2P~O z>B|izppa91HiPo{x6D-vMj>v>X+)B7!FSq-p*(Whp2_HOKp^}fS5oHXUUIp1wM4D_ zPqH}1Zl@BYcOPar0EC++F#;b@AD^=1viqEeda%7Rs^OS+D7l=Dr-`5ZmR32tHPt>4 zICPn90g=L6N}XLMMK@vehWm;i%<;d<^Ail%#aTlBz9;_*8Ed9BD+D561-A*U<;}1= zXZl>)33==0pEf-!FUuI6HXSPqw1Mgijp?~r8Pg(d3m{3UzX@I)&jyj z6-9i@CJ0j1WjZ)VFv7$v%6-pT%SCT}OS7>VH-+`-`xBxK3TmWgabjjRJg*AIPZ{4vNm6C zd@c94n^p-r3F?{0`$(MJ1^QK^C+q?>OsI=~Hp?Gb?m;=yoz&y-s3Ex2#Vh=8h9W;* ztgJ{m9C`N;Yj9dRXC=lR!MK=tv@-NF@$HtG3OU#R@KYq3*}7*b5hl>AyZklRQwcsy z>pIWm`As_YT4&gC2Ie}iZotOm@#nrLrKl}*W#J;MI^@L%moW5M09^IUjB&nRU%|tE z*3R!rb3bLt_ywoQK26(W&y9;)D@Mo$207z=lO#`CO@(8&-bK?QAS_V-(%=w} z@jYd*q@Kxadq#p3jZRru1Cg~YXuWMuxz=TFD$&%nBDlI|a+zMTfU0Mc&7m^E=_VbA z95-KZ37df5?=Lq0b`k==mr~4zIo+V*+3dhpfpA~+Rp-gvMc5Wq-wk1P!ut8DRq0Te z0BJb$;ld(A&!j*w9g-+7I9=NQW>hg^Lae`q_-)a*eC3*K%%83b4N=5d6p5!eJSc6h zx_>Bb($7KOrnAJoU$5mX*#z38^GqFabSM$sQZqKRP-IYq& z^J+7Bizs)Ty_UasR`)ZuyvE)Xn~pfnVj&$Ow_H|bVn%jxHk{J{A8lsCrF(=s=f}9r zw}oLA{lDVp6Efo&0$ffB$cc*=5gMB~XgPi3lnA-BS<^&hRLBIi>0-&4&rkM*Jfa}5xCNMLs>SUVI_!+aqZWh39 z9@+_?PBT@aJk|N43kT?BtD^0JtRvyU%@Zd{V+T8fRh#ZXNn>2|^wmjL#6U^G z?Q?1Sp!^^KKM_%uAmD4;*In-R9)~cKp^1J3CF>2wr#NYZIYN5jfMAQyP^e`zzYZcR zlKS5)uG|fhyP&l-Z&gpFEc9#v!DBp&4l-(&f~LxkIJIGNTWK1%$};loC>b61D1j-&X~6ELw{LfBo{5kl*b#fE7RL_TN9P?!aW4VVc;xtpnFVMjCy<4W-RCJ=;+x1s13qg}ye zhR+X4mo~l=%v-(7WGenTxT7-bzaqdkS0{^TAaAx4*L`Hww>V)YOPs|B>%VZQWZGl+ z6~sc7dQ_eeZGN#^mu)2{KbG`vU3Jn3C7l*Ysw7K<%TWtxmrbt&u^?c^O%x?*raKPq z#I%!gE*zS5lzfV{C<&33`qZG{zM>}VK?T>=VYG><^G=&;N1hb(QSqqq&;Bbs@95ZQ zS5q(96l-<8I`k2h1SAjJVwb8Fo#yu*OW;@Hmy5NLk*=l0!D+-EvjfhhJ>b#qnRhBN zf)Jazn_f1}FI}S&Kbjax-FsX1m~QRd3A|%DAm}*fgzLSsf;O((Y`y3;`viRb490t_ zZ#}Y3ic6aGQ})XNYZ}Y%UL`ZO-}cL|Kym=Uya>Ed_~HBVLzG5~&D|=I4bmmw;nz5R zG+sGCnuk6rmz0`4Y|r>@`k+02@$+#E`meOFD9iJoxKk@<)x9Pbk1iP)4`Dr#&GFbR3V?{U^mU2S>Km9=LHg+So-aHld=V*u%$K`K!K z+RJu*!F)RCnhh}i^=El*y0HB7KnAL7?=9zsS8M2xhaBsS`jXoF%JN?{l%5NIC5XYS zS{Y3sa&t%5M^qVIPK_01SMGOo)$SC zHwErvaH{kl!`|}REflrP#~nED6sKNV#r*;{V{{O32z&k_xhj^6p2YsJdAaED+%eDQ zxB=_Rpn3+bZ?xYXPT7TF{GV@ybYU+T$#3P{%I<&=t6Hi4dxZb`5(dYtX7bOtVIuHa zO0a5GC?N>)Lg9a24H)8-B5op)9MaW;K>N?Y&r^Zd&ijv6gAe?`jaRs@GS^4_2r~K`Tw3P<@rQUSJdI#_M##w1D^w)=OgUqvrez3 zrlvDJKng$+Faw}@|GUN2!6W}GK`$U*UYwsVK6df|i0b=+u-(TCmLI-xF>9E5dFd`} z3Dfz{_e>cZ^D8#zZdN}(;oG;j&$NWro2|@e)gB3lT1~){|9qWw;{C;sfMmc^b4OTJ z=p+Ql8A>iJES%4^dYzfg*O=D;5PB~l!B|{XH6Bdc_MaEKYh0O;Ha$JvdEPvA0E2Id z0^oKB6+V65+Op93@63(=F@(JTnU{<44RDQ706M?9TS9D}59|+sy2V;8l;TUirSbpz z1kee_U2+d46coOIpE3&f$pTx_PX|^E%_lB{IJoGPr#DI)#;_ z#V4;}V^y*PfQVGB3Gndnz&PG>??3L{f?dzOzkkPF^ofAA@N>g+oW`%M)8dmHv{~{CjI-S=p15m0W0mFhmVKZ|>z+~XpT$ZELjWzjU?%VhKXvTtZC+o$j z1_?m>Yb_3N;sq0#pctoyHa-H8f2tx|8@D6PIW|5qEkr^O%U}JRhMxHriui{XiAD@a zRt`#A&OCes(bVg8?Iui?0@wCl3Q2-7k}q>P?#|y8p_#12gG-*F*n8 z97n5g%M|R5U8LLQT|YX)?TVo)a#Qr2?FVGI4liN|VnCu#H)DVDnhu-y5MZVU=qonf3`szT1MF{`c3NuYgxz^KA!QTE3H} zr4cNoOXj1v(|Q3CV7ERT$yHFxa259VRktu^9)qG|)KRVVjKM*L5!eBGrF0Ax71g74 zUWl|VU?gL{ObdMUhw(ErT3*Lp$o0O#T=&YySE7&WqUXPPr|joQw|7c&Q|9L8#2CYJ z0xRB`s8MYAT<-IiR}nw*t9=?~1KyWZ|GUSq%0d9U0*EvbJJ4m(fF3k%S5jLCEAD*( z0!aczbbVy*4ZHF+SkObG$I(iU3N`z^OB(5105&deVY(l+Ow{-okj}lJb>3$5Ly`oD zo@N{U@lVI{s;aXT1N88-IGU79Wd#KieG@>5Pgf?IsMsbUPPw}p(0=ZEaVnRn=8^#v zsynp**d0KUd_kRk&&D1=sif+8B?Qc59#sMVja9302tL|#g~dXnR*gwRtG2fGUkDk0 zlXQlG0T>a4EsE$WIW+ABO-oyt&I0_kHjQ0ZlpV< zd(JhfOS8LnOhor45qQ#@0w9 zI}CL#I|HxTE|L#hQ!#{GbdJ9qxwU~ds*=STm56*B?OKcI_7}uLo{rCV-7x^V_(XIi zx~MSeXjY|ygc(v%?R0K*OSe~HjJ%*&TZnA){uzg(!oQi+`3llCKKq}mF9G_$HfgZ2 zI35NXIKg62cl;0lJ8~VxxeBQNy?6LE?2aqoUL{AagFAj9RZQQy@xjb81JZW0XOM^M zS(}lO@vW>nY+T&(VZpGgAdYz${mHFQGYi-fHm!S`N2k>D7|}ct@GyiX;3_7HkKgPe zRmlVzR>iNMi@Um>Q+nf(q6_CQPB71Twu+H+S=80l!G6kbA+~nf6ZWZl^sWQTetmHs zs=2Y^{B$WKP-Z-H=gqRYr9X*w3&NwcLzHqgCeyCsUh+L%3cP$ZOrb zo8&R4=0~7dy&J3?W{NB`Pwdc28E`XXh#;#XWR%3J_fzd^$}*o_@+#Qwip&!lgt&-6 zB!Rf!AGAK`{uxa6Kxq4F;OEKh-Vfv$65?l89b5Z#0RX!eb=;tEyqvd47>oD}>?M1D zKR>JY?NwFP1`snQkc*3pgQ!U~iCSxvElt19F)ypDW{ z8L6`3xgPzm;`npp+}^eAks%fWQT4Ko!#s18eyq^x=Ur?_m*f6(bm90Kde9jk1&8j1 z?um{~&OrGs7XE|{5V_wjI@%glD{I|8E^Uk8gH6~;$dFiDf>r%?HBKuW{1jIkh?>b^ z1JpZexBKhoOezl=s=~!K5*HuD5NAA%m&9h>khN*zLgB}Rua;kl%Y zo@Yn!BQQvN>lWteFK?Dypl5KiVbOl7JpB;PSHbmZp6OOEGltan|hwkeBt|wUbL?*_H6~I{uh*uu(h2h3}^DG zYN(%`o^EVqIvkz}wmj3Ao^erfIy&hkQ#kz;e^Nr(JAkEg&!nK}?`iLgb*ru6^jo?x z;UW3@P>WVKDl~H-a8Xdji!tS~DG^`tyIQ{8G6Hg%%~eccJqz_VJe|Su>YAEG4u>z% z(0GJT7i@kc&(~VotX5eH%qBQ1cbWrfCTC#vCYxoXYn6vsuyx$m%%rw$j0v47+1&x_ z0=HjkLpSm9C~ytv8Ch9p8VR43MAB=}@5xLb21}GP&;8Mv4)1#T+Vii(KIHU#x_j0~ za0@3#q2{Jbis}P}i|0Oyog&TrZ1J@^ulil>yhiejk-k>jE|iT; zVe{Kj9E^S5`1OE46m$;ZW@yY9{toq*~MIMjCMW-)o;+X2p`_Ko2o;*SK z^65X?E;B5`#dDb|e@c8P-aZg=Pz?ZjSge+Torynr{kcqNPVkY^-9*Idm6-utXx()HC3dC$Sg`-7?q^*W5;T1lzX&|u1KZt?7%rIEprx(lzU*qD;Q*$X11H{O z?D55#E8;qJYixVCML+(z)D;yn%+OW1i^vRtG(1O!E*>Li0IVpQH^i^n3tFeQvvgWC zI?kfc^;P!*>4f5sdyMY_Mbx%ajJ_RJ&$t&E`B)blUgx-O;xY`81&*6~E(JI$7gf=>E$=kV=uNmEihT+tteV^OAt;%b+^>M7o``!;U9^ z42rI?b79wCfX8|imw}cSuQTe=JLHz`}d<+LzT*WzIHc!x*p)L1TQo*Gch}5B}8JcBYPCSiAainkp@9w#~>b*?W2P@pu z5KL+R36Ep8Rz=4zBGf2-ZN~zw-4D!nFk@G^TjFIoL*N+6a{ZbJmm*Ac0&T9W zF390WK-G^pQL_}@$=n9^CSVmtarv?-8`OdE@ETo?Km}YuKu&-|VhSf_oya>NrjWt- zB{K-F2jNB3yCFXk`p(Y4`42&qkh5s`A-FL3AgAb)evz%Z%sf;?8i+6iPlgEdRm>k! zkEMJ>qFx3}0z`6M!1F{MGX~DJd!U=$4DNSc*a|@ySP|TUZiQZz6dkXqL-3M7fM6WG z1Z-QR%4t=r)qRo{tD4Pm$&TqHWQApCbX$Txtk z4oYVA2)KKm1fKi~j17WUHL*qTOz7A_j-s#%e1%kT6TSBM-S9!dI$S&?9*X#pfS90~ zz;-;t=rsuJr}!Z0gvoRN`6T3(q9cU23#-lzX!-tRYvA_h{jSm4`L+As&)7&ALS8ij z$pp>ET+Wg3$g4eP{X$(}bkoWn>op>?jP?zJb78HXc6#xrHMPeLdeL{(B$lsC$yd6Z z@?xE`*r`xmsg8~*RdDUr1xS>Got`5=fdz2iG1wV>%-9MC8fXcXC6T^GL?&73ISvhQ zQb*xb1Bq$D*s?HhBP}WU#?zp0F7mOOar?7#BogFpmjOkH?2~~OniJF+_-Nu9;N$`&e+`6y`DGE3n6n#o4Qw}iQ5!~ z=j7{f9rl|5Y=n~pB=+%+=n3a ze6*MsFxT5x!Vv#_r5H+Ln2i}4nYe$P+x1J*0j~u_(uwss*K__Fv22tgPO<{sarrq1 zgIP7QQ#5@~kSWuHm>R*&T@U$V-fil3XQU9W-%AHEv|iBl7dR9F~!c&zv#V^ z*EFhMh<$Ou8vKv%DA$u$e9Nwhr^E+cbkL9O7@(f&u9B53IHS()K>EMYoL4f4AkLSB z>w)mNrYnLQ=*$GaAIU&+AbyZND6bub#1bTot^smrC){`>BpByFA;=@RCZNctcRjB= zaWHI!j|_^1#}`stdu`OO2I{5gMKr3iz}^r63FP#6-6GHv(rg$X~403|6fE!ILebLLc>1DLP7G=~aZWGly8Ys)* z%YNwz0)0XDi+1X9dEiGUit1K-A;WVo397rHaW7Xt4)OUFls7Hu|H&>xBVJOM%OYedfsJJI90gN-tq8F|glSBd*28k-% zAvM_*pFh@O&xYaNf(#%}LO=26OUa#nuDMvr&YzR|DtDadoxeE$McG#-URn@vGv0SB zsv^n_PFN`-*_9`SQd)Jn>^LlhKokwB1?ygvzGl~Aw{VQ1Kx~DFN_)N}EIfoM?s|g9 z-E$&H&Qj7k$?n6KIC|BvVC4Jdl4!wjNG32r7!o#E*Hu>8zh>?(Hcc|22acOeFg6?!ELC`L~ei4EK{JRm<#Yc@OY=JF2x>7d~nAf z*F8q`UAse`-vD0(rtX+Jq>dY$qg}G!BKkoNp%4*>s3)V8SHH;pXJz21hu)#@S$3#S3Hs?e(4BuAlP#P1a3na-R_3}M-d=LiDF#>Rts7+Ds&{vK( zPxOL+O)mn+3M@dJJQideB(WJyiI@@l$#erMXB?NWdBgtGXFIYBQ!+t39zIn(jE_gy zc>fB|3Kx+F5eq^PU|I){{+=Ap1loIiYNWP#fP0Qe@E5(3;2Xghde%};=dDv7+fQUu z1Ob!4c@AMF;glItrK*Ckk0V-g0^D}*COW1bux7BC|gewovEmCv)$w~NtWfM=)H#wqYs8-DIZ~KE z!!IQecW>myNaG!TK&!iHwVi6O}k509O z{x}*|CCdsA8-JNzDw;>h88x~Nw%a5LJnX93?cy+yq3{6jFC7_v8pj_GwPA?t*ug&x zPl4@21<0AceouXu)5quB&G)dm*$3H{d59Se$yocB6q^7QRom0ID|N~>QOKu#d*Gy8c(sz|G|)HDJkh0C`Pl5BE~s- zrnl-3vtuV{Mg~&B+hQEJ3|)D~6x0`S;&JeSLFAIe(lMuW0tea7Ni1P#J4?^1{88Eq z>s?tQPf1dL>{AGJ0M}QpIiqQI=(xYtZyvHNOTafVf5RZ^P3~Yses6f!x7x11Yte`+ zCZ32fv3&b^Ok<}|zFD_YN+<5)Fc4-G&u3~~2x5qF6WE?daa zBER^l)8m+Vs?$--zWv66=Ow#B@X=Z4&(64C1O-n5mXV&4cq9(q{y5_@o(SzBvFveq zEMee24z2hPp8Zoo-V_$xfVVTAJgHO66PR>CrU4@ z?Li?OKIlRap$e3*BXftT{mlvp@KJd19({woB zDbhA$V)N-*v(dwsLh%kKjH$N--#tadIdb=8lr6 zA+l#sbuz_^tF?{supW3oqjk)-8daLZDqDc{ASZ}AuJNJM1%`Z1<*+NiUV5aH8!U#p zjfp(Co$d=WWfK({SH2;U?Mr;u<8__U><+5yBrH;fVcZf4-12hRJ4WqO?~XZ%kp}O; z;Mq(~k5jU3`io#$f20h@d3T4nb`W#Ky_QsS#ff*71sRa_`#h>_&+e?uUiI;5BTuO; z{N@vDs7Curej93JxLy5~DbNDkTNhpbt*YlbZ_lgx#aCRr5|OS`89&J465+WZw^RV- z*?818Hv6$aY=bkVx3~w4g!%i*|JSIUKQ(!+aRARo0+NJKl)N!vGgScrSt3b+Y=lJx z1)+5X3L|#CUB`P4`&CIuMHDt`!sLo#^-A4Ol2uhmx z-T|~sY-z*ge)C3Qn1&qwKpCRF`;ZaDoIOO$VtF_-&%{kyXBL@yO8x*NQJxz9vnoTF zSH_N13@fj842gi8y_ z(6y2#bTcCTYsYvJ>$~=}-Kp|iy$FgS7fq*OdAD=3+kkHk7!r?>?CdGOLf!hsxQM#Z z`kjk1)=bM(8!)RvJlfZ(^Vb+LIuUj5V{)TQ&NJFUqf7lbrd(tG%4*O?Gwnd~5{3X@ zUPN(H1>M9EpsLk-5#sLekEe}=hq14v&E#w*%UVE$*Waun7OA4nZLL{1Y&v6=FKKOElKHgQEjK>wzaWkd%`^oyKiPq<5T1lEIJSY;$f+wDa$Pi2b@VG0W$X?>*`B70oJ5w$KI`Lxx8Km(+yD%Um6EpVbsuX znF}T4yn~f})u_L8v`xJ`fz!84vCh2%ACr&B5PjW=J!~Hs%D90Q*THLD*$thym{)#0 zK_`))&m2+~BZPqD%DQwQRG!`+lvSqS!&qr z9r?6rFmM#O@{vn0m(@&F*zR0GX zvnBI(zcPNl-g>Zc?p>{n2j*o7Pxo7DH;x)w@*-fbB$|*oLo^tKJ3l2{63al}+0%E) z`_4m)UC7mOQnGZdYT2yiV*b{OhRL(tnUgj~u9UWNH*D7CoUUy}!t$o82IcA$_WPo4 z{~kK%uQh)YDRctiAb1-FEiY{qcTZ(B^FT-?v}4Cojd7jM*L2_Ed!F1;h}f1%kGTb2 z`MHk`ZN$)@{y?vE8x?>3npPyQ$^#zNpJ+0$$`fXzY&X|jhb5pY3fN}5xkgXV{_j0^ zoO45>u}C*GNxHMW-#K0x9|J=#Lt7xXqkW|mH2md@8MH&j{m3NTn#-*6L?zc47$)7Q z*;QCfy#&P2urEsDA2=3wY+~}a9v*j}3?CJBEcPUnj6jOxA1ox!nu)B*B$SQ)AWa6z zK*V}MfF}q1p*Zk&$M!pF>-0gn!ILY9!V<7@@j+8;D_yy~ti|i;FLMUKKxvXJXlY8O z%0aDl93J=3x+eKlISh&%mu2Q3;#0J#yj+G@Gl^A;G^D|Cr|~Aiz8z3>nzyYv(o?74 z+ScdE1L4m@{2%Ryl;wA{(}5VE9uT_qw4&e=E;{;<=Nsh@mtp%b4ME2|SDj$<0j&Fi z=;pF5Adg|(u+R_J#DtZ?mjdxzw?V|o|KLRzcB&P4a9kWskHIS&GE6+ z4qVh*fe|nYLe*0auOQkdo=3_zKYqKF1(zQ);;=411R>LG2||*(WDtrlzD;Hm0Q3 z7Hcj}wEEOPsfHW&zO8n=U6zl%xVOgMr0fUI{8UkcjSHz7H1?lq?i5>|O_8Q6qxH=o zR%q9Sr?>aUfQ4^vHo7&Llhzr5`GOP`KC_(|M|#a%9Em__caYKq;_nQ^iD7$N_n~sN zB7Gp^?yZ#p{ZU=+UA7p9Da z8l4E<0iwH6)N86w2J&_MA=wosB`Bg|hthvo)F*3h>nfS9L1qT`nqKRQYh4!S!)*~C z$b0mP+Gc#0-Gv0F&3xci&@Nhjmo+2L)=gkx*Ux@cru=+Ck}A9UwJvf^#-mi#`ayX5 zKc?XJ3DTsiW;Au#LwZ-Pm+YR(W)PdnQB08pW`51YR$R)KK2GTK`_ ze`;S0wj50)_&vpr!Xjoc4bVjky19q<_GTN<5B7bl)t~7L1*bq1A61Kp-E{B1gK_cZ zbE=V;M3#W=0<)}3yel>tlB`@AxOvnJ)4zHa|CiWK`l7Q6;X<>DJwcye$>3<{>sisW zg{hETqHY&adMT#GXXMyy;Z5kSf@gAZM2+J6P;jWljc?7bWbQ|?N}@vNi?UR*m)C?B z%ESSY%*T#xggKST_Vo8~d*O;kE;nA8WJtgz?O{LlC%hrZF$EVM>|@Lj4pWjrg0T*U zw)qm!niu#YamaPO1MfF*1@V(NDj-^1`=gt%gdZF2dJUhMJKbscHRPBxM2xJMF%5a1 z*;yoO&@D*x5jjbo0Miy+fY$B6saNZdR3F%aG>IOeVO7%?aUnQhblE}}L?}eu>IuGF z2Ol$)1;$4SV4^BBM5wux`@ni=xY$Ql*`&ueo?HKHO^*1_qEc!of{V5*!1HeIx|c)c z){jiIvH#_L=E<#B?-w}Lox*Rl{oD%(grC}$V%lr!N#?s5!lvPO2R5hBXAr*WIC z#$9zMRs^4Qb$N(@I!nUQw=T}FjC`mTzwv+(#pisJDawG#F;6>GEe?`2AF~(v!>V8N z+z6F;M1+|qA9Jy>`6!spFdZzQjY4Czxb`ANPW&AA-zkZexcE-K*^7t}3+^wUMf1_f z=BfX|iMpWwC6xX>q5Th|G6^YM&fgd$li`B=jc58lbd_nA=Nz=etYby~=6m3evk=qT M6udR)S|C^WPo%OIlmGw# literal 0 HcmV?d00001

t!P~mFw>$dack2)M5 zoFm`>@*DRp9iSY7>q(Hse3^f4`0`vIbC#GjP7>_3Px(kK4%E1dKv4)v20N2;bu<)y zx60~{>0Wnu_pINee*XBD)15Z~YOz?}`0V}$c{t3BQ@*LiFU)Y|XHsblF!Wu*;0z3J zk}li=p!XGag(_)0(DBXvY4sNVS{F#{WfI2X2uNh41amxHslo32u)Zl6_YS1_^3<%c z&D;q&8_l6j3WFZ~(TFJ=gLTrImLms8}p{Xk?H0Zk?jqeB;{i9>85naIcj~ z2ppG~I%3@T2I{h5M5S6(?%9{wq=(uznW@9;GzJ2Rhc~ z-s0Rqocz*!*DFVlJ2*WKPhcXXOi?h>c4-lYh zrp)$n@^)?qi6yOilh&p!wNHQu9U5e(QsMA3O`qPdx&+`x-^X9oeC=5|9mryvz<~0o zm5*yhb-ozA_297VFDocB(^pzFy4_#}+?Eq|VL$}2ucnnPhig6B+1voY{=ti{YWwMu zK7~W4J1>K&ajlj%?(K>193Wr&N-&racRXr;`^lHE4Um#BjI1WD`ieuD!9k^L?oX z^lMg{`r9#yDLsvG9JUUOT~?JEUH@5Y>c_X+sNEMu7ZhL(5cLKN@T$y#QD6-bj zD2CxS93Kl7*<-LXf9Xv^WfKZZTEqTRXXKbk5}c9V3n@%Iw3i@?Zyd|4cjvfFKLen% z8ESf4^4w`ZMo9EEu)M8)B_)E$UrWSqezGLVUn<1Apy6qRmL&i7Cl71ufHx5$<>buI z1qZE;)o)$9#-61@4%IH8)di;@08cK&E4#QH5ImG!3tSQAQ4`$n50(A%(Jj2ZOIS|M ztpOm;mvuR21(a#7WV!XyH!`YDq2AY&u!Aq)4O+fD@{RH@n!EF3Ud<$kp{{fw0N{O~ zLR#8_uEbZksbeV~Y3V;-cYO&+zWjEZ+|-OeY1sZD#lNr_8uz??svQWdKK_>=tFKi- zFvGsSwg6uOv0OWa*I4R^9nf{(NZ3nC?rPM_T`J>O zo2F!!1nc!nOZ|2~=&uPk$5KtNB=xzs)FdEzd%ab_{4>0K28oF1P0ltBX(rxP#FDB67p@l2u zRIVvdoy7S{T~88XmF6MQc|8v5*aZ&NwY3V!AT5}ngQ_!WX^U@k)hwTDqh~ouq!#yi zHv5>N7%UU}R`*Mc%&F%TPz+e*k() zhr4pih3tIDz_bz6YICE6cS_W*>;P9Zw3S2w_oX`nv{4Y|Y(g@f=`|-ctNg|s1Ol~0 zE+lFE31~F%M8Mm=%2#m?ayXXXfB!I39ze30wc1iTJ~POFUOE8}?yVYGR=If7bE-jN zevtv6hvEIsg@)JMA1N^WF+7#U_RHCsz&oa6Ez(rhO=IaF7O^lo(EPd9uw~`l+l)v+ z30?Z43_1s}ErZp`Jc!~)a_Vv#6A%3u83gmk>;G(Sd6+sl$M8xa+;XyO(aXko|(g3^d8jdFtD^Cjkeu7>#*tr+ivC}2T>gyO=7-UgKaj1{k~ zM=$B5_%Bw+aV$y2w>*7YME=<$!Pqy2G>LW*!l`ZTMz)PqcZIh;`GrEiD#HCywug?wP zXdo+D?A_XmEYUbd5F&W9k8Q&#(LXv@%CH-+o{2YMpMYqhQ!kZ%hZk_M2$Q5dteDmp zuF$&Xkiq#ST3XTmrQuge@DI1DfkE|8QGy8!rjYby&dQwM#}L{j$;*ou9n7RCu~?w$ zJpSeqXQSxe<|2zo`{r6o8@Q0Wu+ z8Ui{k1UtM$;#VI#zR&bN)Vz7atej~J#9%`nzbz`g$Xkkxr%0SdcQ#Ui{x79lpui)w zNY=VLyqspuD*Czr4#yQCKQSRnf!UZ5 z;vOKlue^$v1u6o_o7j?+U>~Wn8DR5ICIt}ygO`m0wAg0%)ghvJDAUr+!kiyfSu##O z6DPyfXx@1JX9=2GT52l`rU2YYo8t?&N!AQd&)4-rp;AD?yNePI8S(uzjf?lwTvb8pc|vL={kuC z2e403V0$n0hj$TdyX8C;FXd7e8tjuT{93H&h-d7`m4AXl>`^_z?PCn>Sr)Ng+KkIx)R2c)JWa?s&3-&V zGG@1L6(169mYbVApjAr7ReBieXQUMi96RlyLvJb5#6R4YV&fA^;Z}`G-t!V!I&+w- zzFUI6Pby9|xgDK40Dbng21=lZalTrhuLt_rTVOtW^dAL!5a#_%2i??y=wdE+8Qxw5 zj0)+*gF3+T!;i^3U`&8`fl4W>D|b&Gx4mY|jEoz%zuSRH!ksT!TpO}pjL^&VVqBq0 zPI_n>$HJ=jGsam<3j}$^ZBwnMjO=2QT*aB=B{n~-b4Z17{2MEOz7yY;HA_dC${7dL z)n!GjH&{LOV=|$%^gTdz7{IN|$)pmMd|dBhRaum{=Hl~xrRXX`o*}Axg>rp@*0Fis zO^u{Bv|4=K4)8nBcmQYiYRcxP^rm1qFb0kHfT*r+190EZ$GhaEOL%zW0W*jcxe{v? z%_@KaV{|SliLkvz&n9mhC^B^m1UW1YhmzS$&-)>Be#Vv|l2Ny$LX`eZ=#myY<3Lbe0=jtyK&w$3?zF4^?2@rq*gX_fFw3F9c2|8~@0V!IV#_el zKECipnlDhT+LSS=#>6@D9X9rEF?4jsfgA|G>wTbdp?|z>Yyo*?#^lkD89;Aza>`nP zsl3u^Ct&+qss_#7WM`cI!X|ntAXi&d0YG5Tq@ew-PQ9%e@X*c&E6Rg@zUQFe0EmG( zTq~TU@2ZBR*WYgtFD*j-X__ur?aOwuOMGf%=R zCP~32zTP_w7Uv~XG-02Y-n~;dh05Klk7VRSk)K^8X|mU(Wt-HN=u90Cn^2T@R)2KT zQ?exb|MO)3OdItgGq5;e3b~6RCu;dY$>PFp0%VPof zBE#Jrm9MglF+IO@b?r80_&llBCr-ib%UZIL<$Yf$I;lYQ0moy8V&Sd{fDLu4eGO_w zR1H^dzr2(TxK0mXtS&q*a**IFQ3Yxi?m{V#!UIxIFvXDa5s+M8j{>D9x`*A=GJ(Th zC4{5X^Y01SFCG9B|3h7>x_Y!N^vQB6m?MGthdM`oUrG&AcrC9N#Yc_%%L_lv>n$xB zjIf3FUt2;62mn`SirKvz`#VR0qARUI$UcW-pnLjf+2=F`h?gN+{?J?MM#D|<2D5H0H=wC}?^JaJ$Au|- zY`i)YooOtt_giOgqrN8f_o>I)x=_Ae{H{C5A3@p~hK_OMm3-PZ_~g#XDLv2ysKx`2 z(PzG1U)559j6=21FbzJ1n&u^m#AeF(D(<=|%6|@SVSSLJk}%pZnICy-l2m3>oz7o+ z1@f$f@Sl&Il66=Ad&JWHpA0+!7SA2CwYu8n-S?M8cNRhBD6T0iuXL zUTf=KLZAWpqfEb<`7*z0kF6hA%dWaV}=KjnGYIi}N`il~2IYknV~D+EgjPcDTPNO2-Lxd8=({PW{fDu8eK zDeiO*EQsurwNYnT{hh&zlrO-dCbox7g1WSr`~3!3T`-&k0D~|)up4! z^&lvGqkdcvF8ceo|8o(iq`~=r45qyXH8yTY1$$j^D7IPK{2#tZ!kFCiT@DX?{ibKZ zEnMxn)5GKsl-)IxO(*ePQy{Xz6znkD1^7ZaHQ=QU(hOLa%Cdw<+X3@KEG61U%W^U{ z_^N}UyH~~0zdV^H`wI?DchGWpoY-4T8L+0h?lsi63=Ofe`oYJZu-U>7@){y`2$)Y% ztMFhKWYgfx#FNsiD@h8r+7=xhz7su9On#gaVJA`TZY~dX0BeKGOnob|nxG+|~Td4uRur^RLXFt}r zn-CQESq&FwC4%XwA6(d8y;v8uO0z;^r$KBU+P(bo)*}1{{Z3V;KT-M;7iO|%_7T;> zN}IL90})?-CVl*A}Mu0bVH&>#V^?i9^(0lBk-i1ISY-Xg5qMYWySrTsMD++^D!TkpZQ{iT8k2^$l z19RthQQ`fTQ(5C}e@rcoL1OoOf6MI!vDNkMs?`A@e5&cRYoY3}2dI_fK|WS#cS*nzs6^e^%kvq*lgr8MA^qhL@H>Xq!zH=b#wmZ55jexy5*R)5x9th{S&GX0 z_nX^?ewo!rS0Banw!rT71z`MbgLImPO0{RqsXOdz?cfXOu<2~u1Ls|0CPLFft4<-j z9gf?fv>IJcMw_Se6n;!9pQw|%xxpLX_~*Cwmm23MxXA@9H_NEf&288?fhEu(JoNqe zM{EcBs0iv4v8`mri>aM2~x&>7OS8v4ji0q z&zSl$-$2DZ=3X~`n7f_7QJiwi2KyPG)Fke&AZ_P}o&?rola6d}KXk*N!hY#5$3}ti zo1Vn_jf(*@t8V&*YgI!BiJwTQ|&Xy4U?zQBC1{*otGZAAz~71e|jJBNV~sQ)j^U4EJcX za4v<+Ww+HK2+JND`l}R-d1z)WFNHEVbDS7eyyn79JD_ zW}R({=V*&31!yX&c$K^KZ!!*51M_gX(Ef+sGqKWdGrT_~G`fA{kgoKBV5OTt!q-g} z);kjq&khh2D6O8D-xz3iVw0Uw7&jdiO1RFu68Sx?sFqPBU;5eYT~rz}H_%yY`FHbl zU5!mh-GXyb9n+t(KM|loDcj&QChiCFVj5Umzs&B zS~Kc6s`S(8n$#AZ@U%a+S7kXvkZW@FIfS3WF`3S|ryTA*$ss<+O;45;YEXIcu|61`nYd9}#8=plGeEzq%+Ws0 zOx*7+ZIHuBj_ygo>Ugwp16tt?vAbC1@6Gox2eVk~SLF9hc7ntgY^ps2u??%wA2pfp zoojJkO{m*7*6BOP2ZPnuBp_W<;Ta`cS*CDPxT=}=QQ(GN!=V*XZluKkot(L4s{m*G zu@;p%-#|Rl5!{U;Xp)_8Wc)eo(o%W)r$rP+=NESH2{yRI=5HTk*FqMdEOe`%j`v+v zrDC%VJ()Rd=sG^OQPKJ|tm&{xpBuZp9~pN~N>q9xYK?o9+O7Do!P74Rsf&|hojTRk zOZ`B~<8JH^=;h1KEuQ-A7BiRYMk_J70Wk>J3o&(NgR*NU%tJfwepZmEj{BV ztghwIe&}1()JC4Sx!((zLt)YxZp56+#ikdmavIp0GG}F&ls`c*U*#?Sn#md#BmBZ) zqQ4;lkA}%8Y*UEYNiqrW^hbJVjPNOTi6C>Pbfg@0(XyoVstjGjU_ z>|C6A)2%Rse}IS{O?pvRu_K;rc*VM^u*iGnxbAiONYijbJICGKjSXwm_to9N&zR#y z2UJnaI=gDeP^L6w$mJcVYe6(7RjQKqT)%2zUtX5DW<mL6WUcG?1^$bn2yq} zg6;Vi58Zc|lCRdm3X!K>3LCZmNC+rD46(lTumt{WK&mr+IDd6kVv04g_vu~X%N^36 zP|tAbbomwisikBV%V$^1T_n?K5%%z@CsLEj!*7H;w@SvSaZd#w`H(3eeq)fUpeNfg zTL(@)ctGsL_IjC<^3BDynng}4mPnV9@S=j^>13cqjD zch+acNUT6+{k@qHtO}?$l6>Zar6l}~e3ko}=YjWQ4n4>?a*K3#|Xw0mH2X9CL>gR8;c> zlQh=vF*>rU$0R?OJlE(SUbreW7W~=Tt7bl$D6HR1<~RCrxHK@<8XZn?K}MB(hp;Cd z@U(I-u4$@ZFk%VOIHH(v$kJ_7;9ZPMBKNqfI=M!z%(5GGd;IQ*XDBnI-yIoO^L6^J zmJt~brpI6EUMg}pMc&@t11BLDBe7kgOWdmprBS*f)JGJR^YJU>#-^Wn6GUQWYT`o;7mmDTR%qEw+T!{rUy0z@E^;fU&!9^Xj z^6gG39ZRoo%=k%a3-|iHi^bZ{b%;^DPln&&EymiO5LdQ+Q1a%D^R5_}?P)B_HlxW* zv^7O&dCValOVPzVPq&>~u!2kXoO90}V-q&U%B<;34Se(_D^VD#K>fI2`CQKY*+VTI z_w)UZ6D}J^pMH!!JeI^~recN(7WgA>30S9TdDptN-{2v!L|)1G5WbNq)J6lOdTRv`VTz+{aXO8eA?)tqFmqI5;$;2{M-mT{YOPDRWo#SHB;=&^~nUTXm zEFbX7${Ew)C@onZ#>ToyM`c(n<)O#j|mRj6^sm881|zx^lM1wWh6 zn^qs1_)XIJ1+c2#Px2ngy;6op;V;lQ&KMZG`+*hy$&Vr$NGS)S1H5*GbuGbNKf6VF zoL~ga0}L0jpw#VdxOQol`gg}(c|Lqv<}MTZxN)dL@v%Z>b7}Z-%)wNHJ$YbK#o-lS zWw_yo>>YorU(4)=;Gh=0S5umJY!mHjihB z@LAK!DU~Ql?YIt6KJ>^1W^{T|o^@YFa}BXJ+^K02YIda^m(0)$P?rRGkRNP|2`#`q>)$?uoFMap|f%lHMCMrkgka+eOI@gN-Qdd;(}hF&irs_k;Z>IJ)A z%>6TBsB4>(KKwv`D&L@NkJ355Lu}q3nETr{WdN*Rt9&wWLjk@4j=CUCtlNP$auOfF zovW_@>Rrm>)UI9xDbVVy&H87M(WaTYPVehH6F@{(@XJ8CfbLsiOrEFaZyX}b^63lv zK;5qj%5)-FFu`|DoeY;fOsDDAjpIwHcjS4@Sg|(-hb-q@rX1&Bv_DoKDHaI0r1;wm zfTT+L%^11)FI)yEDpJ8xk)VnN`$nE%Fz$~}9$=ucq}iP!_OBIq(T2)xQ-_W&28;`C zL%U$Zi;u_5#cP?>eO4PI{kZ10_=@9LEeoyJ+JmPiAQiBR1pU3_$O*kNckXsQ_Sz=t zn{sU5HaBv=3Mmx_k2&mlCw7Ibz+&4?U$1obrldL=Ml6VUi01-;Q<47UkK3wS1;u2Y zj~d&P>$jVs7YX^)+byr$bMRWqmNh zAp95nyb|Ih_VOeuUw{7|-N2P8@O3enl9i$_HyfO2RpsONZ}yCNrD~#KB|E=Aq>WVGdGAOiBm-!%fzZ~t--kpDj)H~w$0F6p2D fm#-w}MH~dzYA;=*l`uP@t{y(nzF%?gamarGi`24) literal 0 HcmV?d00001 diff --git a/Term Deposit Prediction/Images/img2.png b/Term Deposit Prediction/Images/img2.png new file mode 100644 index 0000000000000000000000000000000000000000..41273a5f94734b35d28e3d1534d9551915dc61b4 GIT binary patch literal 45380 zcmeFZbySq$);ElbA|j$7AdLvpATe}EN%ssLN(|i~9io7MbV+v&4Cv6U(%oIs-6j3r zGwOMsv(7o+dcJpk-+KRfSUo4zl) zSdW>xQ>6UqPQh)*??p7-z4t0_Z*sLDsLEb4C*Vdn(&&|ySNfGw>tZS2yNlItarc#h zk@Rc)MPZ(X(*wbkE?(Yuq&(D558Te4@E#=dMn$#rIzWXEF1>`NnG%7?0YA2{dN{6c zqF(;I|Ip|L>Xp<@UnbNGH0hV&$h$y8qr|+6`28034G{v=D<5jgw%^|jM@Oy-@+Z=V zveV35k5^qxa;d;2*vtq1s`*%mNJ}FfI*9t)mrCf*+i>p%iRV-?*sx>qgQGgIE{i+m z3@L^x*A5PcI*37}pn{eOm34ScUJEDn{QX;0CWj@8qwV?*t2P40#<{;5Q5U-DpTd+p zOq-eqy@WEeFbvFwF)P^}(L#UU!Rn`*ct+Ah9Aes|(UpS;ox!nuBa3)f&+Wqi{XF|M zBYdM=*l7Cmn8!UTd$I4Kx`rAl72Av7bJEG27JIEFR&8o+RDDP+QVYaBOnbmB&wDhe^@&R1ar& z*pINOnrdGqaY()e=l_yC+0b%MR&$TfA(C;sQeLY zv3zh6H)j1Zoz+#1zrXc(L*_wJOfcv7%|?sXUdWz4akm?4gG$B2X*Sci1P{KnbmtGO z z;+!894q|x=HGfGL12NQJD_?#od?8_#R4V_%G2b}JLKbyjQV18a5f|u*u5g<4S-i@Lt z*vFZ9k&0~`<#dj(qN|y&ch*Anc$0=pEO zSu}H;RWzUEQJx#<{w$16fcsh8i`fzAX;aNE35_=hm;gh#H*&n0h8p5$Z8j1Fu(><6 z$~MweT9?hn*=N0yxTNYH46lFnzT8;5or>$y?Uj4td@1f!t;Ip`*!{e3+}ojO6pakr z-swH;Rr1?>ywEjuFpgGYHa3H=uNZ#q33hCbHd<_ZeZ3PF4{P07d*-Q>4%u<*_Noy6 z6~5n)kQ1FU<5BE2TJZDT#+GD=RvFusQo`UsaRYmjx3DRn87M8Mt|vT}yxRVy_tE-x zS-v|Cb|r)ADM#+QHf9cEm8Zg2Xc$@HjpY-Is82eALcH3I4V#l;vsIF})uko%+_V#W z9O)p5$=kCaRV+fq;jKoMI?vV3hT^ah=dod1c{ zo!RSsF_GEz^=I?-NdnHbm@E8qc3qe?4}8AO#K`tl&VZAWqG!WPVUM$lv*|M}kcZou zn2sCov`J(}Lmfr3H_34L&+zO)=W6d!@(47@ShI|D$@RDslUd_8)OfmBA_NN`qxiFI zC_HBpw>;j0U=yb&LE!94Z1|Jtf|aW!sIk|!;pKL-{iW@h&gCWZNmZaWq0N0gqE&@! zXOshTBtqBxq*u3f?dhR(UOUd=@MB}Ek1^sY7p;?A;*7?I^?|k+hO0bnguQ$bLH(~! zT(xS2vn-X894!w9BvMD#^Szk{_Oq4(rIWPB+un)<>rt5~s$3VL=9eUn_MWM=v={EO z5SQ~*zwFx884eTP)w(d}Dk{646?;E85!;vLy5LqZ+P>;&;?W*&QKXjC}e{`k;8wfC7KlV;a7w)>?ugO-1Xp7ZpvW)l?Y1556g$+vL;Agb7bxACqJq z%GTzDyEJ}zkou9kiN1d{X{vz{H5FRCO3KbFXZ_)Q^-YXARnDIV#ohTc2S;q91#!e6 z=N2l+7CYfDS|R1`j@xH*B^cR^2&YVkcNCe{h9ShFB8hmdL%VS%pwoOU_w!Lk+IK!u zSduuf)A!w4SK{xi8FX^_bPF#e?Kv+V*BNp#dxD!8xeHjp_2YJjcvcgZ4bP91&WzLb zs{`DQ%dW>YvS+P=^;6DDhZ}O&afC2Wba)XJYMtKfiZnG@a}_4$Uq&~dA2>OTUTkc@ z9yEJB0QU8YtVQrqaga(z@#*28<)wxt8gqozWTioEI#6q0ga}IdCLut`=>1)|;9G^)Mgmw*BTdu#M~vE- zu<&&%G>`HbDgM4C{cvACeg_lNgE+RCQo7kIvZ(;(!!z>~z2qqP4QQo8Bct%Z>~*ke z2pv@^yl*G2A+703uuHUoM_3!Cyq8B6^SMgntMDv+Os!jwqoBs4NsH`&J2>m<2@~&` zy}ag&c_SJuR&65S#>_I1R7)b%E{UwR57Y&yU>qsuN%csm-&ecpBGP(-|Jv@bfA{=K zlMxCvKg7=&vazYz%DK)ri6fA_twH6sdTe$=cfCQlLB)}}KP)GBRZxCMLt%bC806A4 zoB-Cy^LEd!H1^5HZ?w7oN^rGsL`-(XpSz|VMKM5;ag%hwNBiE)~IvU^KUb#*Wt@s{vllFlg8ktFkxIc)OM4pg`mY%GeBH_1nA2j-*P7GQkDw9VHc67!4B9G0WY z4Lph4T3WWLCpq=dk@50UjicFpIE6_KbCcyQU^rb25dudEU9ZZ%9Bzgwa+)hW`bJtp zhK6czua(_$0{F_qj~&bA_$E{6kfnS_jLb|P8#c(TC{OLw`OK~1evM`chk2QsXB7Wr zEkcKe$Ti`~6>omW*HQIxH!F7LZ@gwFl5VP+XVt6^?c2F+hIxk9-cRQ|4Yg`u985H{ z!N!pEpTftZt8&b%e+xhSF4>)vo;_xT+>e(g1bs%>WD(k1J#?86&ZcESTb zr6L2NuiW$D`Tg}tq*;ev+f>gW>JOq}>vdR7{%2Zdudnl-O0AFT$HPY7vOc(#lvwW) zU!|DCqMy+2{mz!Cx}K_KZM)*(3}nR6Lc%>#|KJm_Tg;+NyZ9M|d-K zY;;V4!1tGu9X_1-)ymjVp_IIrasv66F-2O#TkHqls#XV>1l6uQL)@37r$2KvCqktT zIvqewg}87{MtxYc*4n%IMLoNUy%CU>Q^F+jzI=M<9tPSNMost|5fE6+eO~^o!{9Hh z7@U}C41d*1U467-W@fuzOUKs_=jfu_E`R4B({(c$28h%9}jfvvQOe`voyn45Gy9 zQKED}a2D$qz-%M6yuD&S=8-bm1zd8Poj;)G=&t$piQmywJrfoUz&*S$mK7CUJNO~A zk(|S((p9bJMVJhGIpDl~UJ?sciEEFJ4F4gV{j8x zxt*6U8r+$6K_XhGa>v48jxt6-{}E<}rK@fU48!d3E~{@O`}0=yuWfS>W|i%av5oXT z4sGGr5j1uCSp)$=R=o3fL~8{YMg?E6DUioFm;L%GvjuV}stmMJEJvCb+UnHJ7dm+; zQ-N4PIreLxzJzj7bJ@t&S{wK4_TDM$B79RF3yIgvbu9J%^{~;;wr4^$U$S03hr7El zx+uVlNH@}Tha%W%axktU;o&G5@nKNB9Zmgj+chz)RMKE<^fCy*b9LqOBy^fv!Dqa5 zopmy@IKBJs$@i}I0g>MctxvA!d#2^(8V~O2ZoYjCtsmSym)ye(0)(a#z*-|`igvRp z%l%_k$d_!W#oSF=rzV3K$=p@&)y?ZXKk$-VuPPMmc9&ACt87-%B9Oab@aT7fjgI#nkDBOr8vXJG2n6f7qV;@fNl5tf5Qvt(X^E%Y z;cZ*Moji1Gv}ucljl$T=8#{_#akpE!33JRQFmFH%in-m;zduPL9rl}eH0;;+rdk># zdAvUR!0R=!?_7?M8Sy|#@g-fK@^fIr71k`(2=`?`=bbFHYPxhVc@P6RBr9@C)GAqE ztn|j-Bfue}Yxcd73paLLD9CyGMD2(|7Mb{`Mah_l(*Rh#iQ;wOt}iRJC6)+Z?yH|K z6VZDxMAw3Np%A0gmr|CWs?GO-Sa`Dquv#y3?YP_#Xk>m#|N9)mzl1Jd>)39A7R`~$ zm2g+|(h_Tx?ua_#>0dCjyZ(^NR&%M|`r~Kr7{KUhs%!3VaE_{edT@+hU0KZ9U78%& zam0OYkZ$-Ua1+Q}e&6X`gbVVZta9>+g)fb-2oGLQ&m226Z?8xX<|I+J`Kqz$+yy>I zd#FJhTHz@ZyBy;HD*Ynb4JB`hRlz2Mz~rIFI^uu0ktAbaJ!6XL856raM*r*0_mD3+ z;#jR&38zJYl)vwY>^m8Glnp?Agsm_3XYK#!V>j8y$=r)=KE5|z+NNit91_oQFt;Mf zigm<<$$EgJe-C>y@ZfAJU16?#HC>R|OK-@2X9eGet)%Gl=!>!+rKvT4Xqmnlm~6~Z z%Uvs7)p>CUGjPc$j6@={U)bX+PMO3>@j2aEx`I+A4pg10EsJ#e_*(eGcv()^ zM`Z)wu4LE_RABZ&KnV33LI$fUKZYmE%y##C+f|`QS`dH!RwE0|&5htuHG+FnV+TgPp{voIwpVtsWV%StPmG=U^SF@?ZEKIfMHCWM99-EAX zVt)G&7jK3{5&MIL98K-h(7N(g*LLRjFLiJI;jpR`-niC3<-t$*c}K|Od+b!3QdZmJ zX*`;zNIHhW?c?AG;X$++L2Fd}$gn8WAC_xX=jEPB}&qu z!sdu&DC{n0dY8c4fUPDlqrESs%wSBuO2@~D4oBRbS2S>^l)>YsYCDPB{+nBZ{bvuU zx%Fi=t9C#md7sxsk%twHvMPzXOaYW8H4|N!!O5(>KvU#&Kh=^|Js%-@syOo`-M9*x zetA)-Y+rE0?;ukSKDtTReV|%WW-Fh*pSh3V5%YZYp(6Fm8&??9;dNK@Kr$^6%VMqn zZL|8L(Tx@sCEYw^DrOf8+U7MPzp+)A2zD?ke#KpHPVD;za{U$MbJ}K*3BoG)Om9rg zlZ9uttE}OA!dZug)dRXbVcjL4x@I%L`oiI5>1%Y&By<7g_{ijm>3&SlB;xtM@D3N! z)A7|zxxV-u(rH!ti&uf_>8uNNYW>-v-tUXG> zVsw*Y4NG)9QdW-e`RuP!=Iope2=y)d=^+pN^Yt)(kbDXhc1Qq*=6FXTZPAf74WujFHvjwtlLliy>r=aOy*Z?!Gu}ew^Z>{bYkAp^nLyf6 z_Suo#qBkOm1=Ya?7yKp9K(ztWh2unJT6HtQh)U^??E9Q-7Y-^hhQ-B*Ba>JjlrKR` z!mIWQZ>INL8bUugp&Lic#Klx;It?>-zLtn7H8%$*-=VKdt!aBPo+RI%{~JL`J#3k~ zvMd(=O&P6D+>HEH{;D}M2yC#NWvQ)Ik5(-okPFSE^J@B(JVm2P zdiL%CYg~{jE=&~fRq~rl8|2!cp{26SMm59l4$0s|RsS$xCLJWLs0eI`laXN*)V!Ds zJ$Eojk#u_M_ymUK`p2~puhFKi4*~~A3$HJsC^f3N8?KV>;jM^Y0oN-L z6I8u8RZm)~NA#wzh#y(n5gSzWQ(emdTrw7?#p^6*EI}Zet+vmDfNP}Ix4l;2B62p$MZ~@ z?m5_J2H-q05(#+P_V;p3BC*>x*UhD+BE>U&LKcri2uc|!hyD04{^^9GYfh+kMiB7u z-%N-?QBXcTsyQa z(?Kc@M-%zL_`mBee&UPfi(H=bR+4_N+q z;L^nBRdFL$(n`y4s3P~UgYL0~ZTT8Y=Lq}t@n3_gm!25TW5`~U(SP(g znvFy2aVRFkKZXVyhY)AMGH%-Bg>W3UGGX3+{i9QKaOhr1ty81JezaztTFmyBl;<(R z`srQD>gT?6LJDcrhFOS671 zZjIa99_jmARgwAV+82LA^bOJPv2ZLz_WCOj9m?g)Sw}a0CTF+cvKTxogP(xy4mWl- zj&K__bKI=LDwt&G##8{WqN3YKpZf6bpWtK44Ppq*ZyB6YVl_S-MLXZyB}uwqlwgbT z*<2CFW(;CAmJ8i4kOifqQo{py(~CMisNmde&Lv0EVs*Olf}!3*N0qe={>tp?=tyC; zIlbq%wc~^}t-rIh24YA*uOcF7ptOs+e)x-kl_#5GP)DaqR`tk!f%qQoPrgP^YXLK= z3GmWme2elfrR=_5+o(OhPMK1s9t+3vcy^%^l`r3K$(=j*d@!ne>oOoi8Nx z0RqkB7Vm$Rr~U<6{y)^ZZm#?a>{W2TsU?QF@>U$v#PNv?kNaQu_Q7HBd!yTB!`pQm&3{zkz*$H=M)5(Op-3ey8XY}c*Cl7SThu};6|UsVF{&=1d@TmI@F zqEvsW*jauLZeHdrQyzPYyO#6mNxs~$1;3fL0?FUmCGzXgvdfu>#)BcVmaL`&$7Cu{ zV$g>kiN97LnMkl?u{s2lNBZw?e9c7yn+PEv^s*JIzs`ZAI9KM%m#BkRnv{mq@$L%2 z-w#S6xy`$tO~$G?SBBFcPz`5YkRBpRRSJwc8UJ7Os0;DaYl&j9w)R9>9e3whMv=;yzbkNBd8 zC)$}B{=7M#Tm4Gt=!MK>Ynx`2z^hbF7kL9W}bd61)%XS{y1d>0O=M z4oPf|=`4C|lgP>_GMc5AClvMrbXnE)&8?!u%Ljr8^-L0d5cc;kuxkzMwee9eqaEay zIx+x6TDlNnlFjmjK5#Uv3+hFSDK5U1CQbNFyRC+)Pr)`+>P@wLOyAu{h-1jrzHVDr zZr0*?&Q960R>m%pjwWr1*8J$QmO$i*q};AQB^KX(5rSeQm`i?Tau>lgd5{usQB!<; zg^LV$F1(su8s!)KV&B7|!;p%uDFI5W@Y2kFJ#&kHAQ`FQm|J2r~~C4tda2R9~0l4SB&%4 z*37>gf|H=kjW6+iK$!EY?bDx@cfsM!-6e=;tb8^yjPJq$W(AI}dEu&^;ZXU6t@jx% zupGSqK%dD`w|Pi>2Yd68EXiVLGj3$Y;r;xgr+juY;Lw=LMz4fY&w%LoWh>_GzI5FX zm`Xy?Cxw&We0g=+H+0P@9i}QjJO8aLhLs*m2!36Wd=3q1c-7M(M&mEf2_C4lAK*t& zcEpZ?3f#h9h3!(&(Hq)F>+8Z+$}3CCpT|sYFgkxwCm=>H2b!bV_a`ii%j)@~o1f=| zyta4KGPF2oms;C1=O17)aBvV0*}DU8ssLol(kmPagUW||_Z$8G0O|XLqUw(en<~gY z{nLg^VrUADJL{xw^S)WeJy?2I*Y%8&SS0o>klvE{QwEQswjq-PUGu7Xk%R2li?0sN z4axSR>N>9P;%{Xr|3sB;A8JSnS)V&zq`9h?EM&Dkfe^QI1OYt3Z#eXJaS@$NYn8EZ zfPN^?1zev~_^GItB#vY#zF?oLkeKt2so$;r&Y+>1;b*9oPq4tvq^Lbws;BY1?XM5i zE01=Iu`1Z|mRzzh1@Am6<_;WOR$z9kX<`c7lAj0H9x=1d7)%Uj?ThZL@IV|Id&4H` zE4JDkEZHWpaHNBXQWlT90<~Droc!FkD|>?*6x0DW8o8`K$LvgsF@Eo}?w`+sXeNla z1?SOugR*YxC2}y6Xut|>DVwzQ)HO);>YYRq*56iPS>Y$_e&B3na`1Z9KC~*p3;`Hl zCo$7=zm8&-;jR&X4Bi{Dd)YE4btxU9X6}pyE3JjxonF@9&?mHchb